1 dnl Process this file with autoconf to produce a configure script.
4 dnl Checks for programs.
9 dnl Checks for libraries.
10 dnl Replace `main' with a function in -lX11:
11 AC_CHECK_LIB(X11, main)
12 dnl Replace `main' with a function in -lXext:
13 AC_CHECK_LIB(Xext, main)
14 dnl Replace `main' with a function in -lXpm:
15 AC_CHECK_LIB(Xpm, main)
16 dnl Replace `main' with a function in -le:
18 dnl Replace `main' with a function in -links:
19 AC_CHECK_LIB(inks, main)
21 dnl Checks for header files.
24 AC_CHECK_HEADERS(strings.h sys/time.h unistd.h)
26 dnl Checks for typedefs, structures, and compiler characteristics.
29 dnl Checks for library functions.
30 AC_CHECK_FUNCS(select)
32 AC_OUTPUT(Makefile src/Makefile)