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