]> jfr.im git - irc/gameservirc.git/blame - gameserv/configure.in~
New autoconf
[irc/gameservirc.git] / gameserv / configure.in~
CommitLineData
9323eb49 1dnl Process this file with autoconf to produce a configure script.
2AC_INIT(aClient.cpp)
3
4dnl Create the config.h
5AC_CONFIG_HEADER(config.h)
6
7dnl Checks for programs.
8AC_PROG_CXX
9dnl AC_PROG_CC
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.
23AC_CHECK_FUNCS(socket strcspn strspn strtol strtok)
24
25AC_OUTPUT(Makefile)