]> jfr.im git - irc/gameservirc.git/blame - gameserv/configure.in
Back to the old version... new one didn't work on sunos either! ARGH
[irc/gameservirc.git] / gameserv / configure.in
CommitLineData
c1068b6e 1dnl Process this file with autoconf to produce a configure script.
991b8a65 2AC_INIT(aClient.cpp)
c1068b6e 3
4dnl Create the config.h
5AC_CONFIG_HEADER(config.h)
6
7dnl Checks for programs.
8AC_PROG_CXX
ee05c957 9dnl AC_PROG_CC
c1068b6e 10
11dnl Checks for libraries.
12AC_CHECK_LIB(crypt, crypt)
13
14dnl Checks for header files.
15AC_HEADER_STDC
16AC_CHECK_HEADERS(limits.h unistd.h crypt.h)
17
18dnl Checks for typedefs, structures, and compiler characteristics.
19AC_C_CONST
20AC_TYPE_SIZE_T
21
22dnl Checks for library functions.
653c4f62 23AC_CHECK_FUNCS(socket strcspn strspn strtol strtok)
c1068b6e 24
991b8a65 25AC_OUTPUT(Makefile)