Enable classic mode.
[dockapps.git] / wmwifi / configure.scan
blob8fd2323285459429587627795b2419cbc1ae02c1
1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT(src/dockapp.c)
4 dnl Checks for programs.
5 AC_PROG_CC
6 AC_PROG_INSTALL
7 AC_PROG_AWK
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:
17 AC_CHECK_LIB(e, main)
18 dnl Replace `main' with a function in -links:
19 AC_CHECK_LIB(inks, main)
21 dnl Checks for header files.
22 AC_PATH_X
23 AC_HEADER_STDC
24 AC_CHECK_HEADERS(strings.h sys/time.h unistd.h)
26 dnl Checks for typedefs, structures, and compiler characteristics.
27 AC_HEADER_TIME
29 dnl Checks for library functions.
30 AC_CHECK_FUNCS(select)
32 AC_OUTPUT(Makefile src/Makefile)