]> jfr.im git - irc/gameservirc.git/blame - gameserv/configure.in
Cleaned up the aClient.cpp code
[irc/gameservirc.git] / gameserv / configure.in
CommitLineData
f107f702 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
9AC_PROG_CXXCPP
10AC_PROG_CC
11
12dnl Checks for libraries.
13AC_CHECK_LIB(crypt, crypt)
14
15dnl Checks for header files.
16AC_HEADER_STDC
17AC_HEADER_TIME
18AC_CHECK_HEADERS(limits.h unistd.h crypt.h)
19
20dnl Checks for typedefs, structures, and compiler characteristics.
21AC_C_CONST
22AC_TYPE_SIZE_T
23
24dnl Checks for library functions.
285f72cf 25AC_CHECK_FUNCS(socket strcspn strspn strtol strtok gethostbyname)
f107f702 26AC_OUTPUT(Makefile)
27