1
0
Fork 0
mirror of https://github.com/vbatts/bvi.git synced 2025-08-02 07:30:28 +00:00

bvi-1.3.0.src.tar.gz

This commit is contained in:
Gerhard Bürgmann 2001-01-15 00:00:00 +00:00 committed by Vincent Batts
commit 0220b756fa
80 changed files with 17347 additions and 0 deletions

27
configure.scan Normal file
View file

@ -0,0 +1,27 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT(bvi.c)
dnl Checks for programs.
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
dnl Checks for libraries.
dnl Replace `main' with a function in -lcurses:
AC_CHECK_LIB(curses, main)
dnl Replace `main' with a function in -lncurses:
AC_CHECK_LIB(ncurses, main)
dnl Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS(fcntl.h unistd.h)
dnl Checks for typedefs, structures, and compiler characteristics.
AC_TYPE_SIZE_T
dnl Checks for library functions.
AC_TYPE_SIGNAL
AC_CHECK_FUNCS(strdup strtol)
AC_OUTPUT(Makefile)