1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
dnl Process this file with autoconf to produce a configure script.
AC_INIT(src/atfs/afarchive.c)
dnl Checks for programs.
AC_PROG_CXX
AC_PROG_AWK
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_PROG_RANLIB
dnl Checks for libraries.
dnl Replace `main' with a function in -lgen:
AC_CHECK_LIB(gen, main)
dnl Replace `main' with a function in -lnsl:
AC_CHECK_LIB(nsl, main)
dnl Checks for header files.
AC_HEADER_DIRENT
AC_HEADER_STDC
AC_HEADER_SYS_WAIT
AC_CHECK_HEADERS(fcntl.h limits.h sys/ioctl.h sys/time.h syslog.h unistd.h)
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_TYPE_UID_T
AC_TYPE_MODE_T
AC_TYPE_OFF_T
AC_TYPE_PID_T
AC_TYPE_SIZE_T
AC_STRUCT_TM
dnl Checks for library functions.
AC_TYPE_GETGROUPS
AC_PROG_GCC_TRADITIONAL
AC_FUNC_MEMCMP
AC_TYPE_SIGNAL
AC_FUNC_UTIME_NULL
AC_FUNC_VFORK
AC_CHECK_FUNCS(getcwd gethostname getwd mkdir mktime re_comp regcmp strdup)
AC_OUTPUT(src/vc/vfind/Makefile src/sttk/Makefile src/patches/Makefile src/vc/vl/Makefile src/atfstk/Makefile src/atfs/Makefile src/vc/rcs2atfs/Makefile src/vc/scripts/Makefile src/vc/vadm/Makefile src/shape/Makefile src/interface/Makefile src/rms/Makefile src/vc/atfsit/Makefile src/vc/save/Makefile src/vc/Makefile Makefile src/vc/retrv/Makefile)
|