]> jfr.im git - irc/gameservirc.git/blobdiff - gameserv/configure.in
Added files to the .cvsignore
[irc/gameservirc.git] / gameserv / configure.in
index f31655310929de0a68504015817c2ee5b63357c4..77f538cb34c2ba3d9ef3fca2fa42587335037ae0 100644 (file)
@@ -1,19 +1,20 @@
 dnl Process this file with autoconf to produce a configure script.
-AC_INIT
-AC_CONFIG_SRCDIR([aClient.cpp])
+AC_INIT(aClient.cpp)
 
 dnl Create the config.h
 AC_CONFIG_HEADER(config.h)
 
 dnl Checks for programs.
 AC_PROG_CXX
-dnl AC_PROG_CC
+AC_PROG_CXXCPP
+AC_PROG_CC
 
 dnl Checks for libraries.
 AC_CHECK_LIB(crypt, crypt)
 
 dnl Checks for header files.
 AC_HEADER_STDC
+AC_HEADER_TIME
 AC_CHECK_HEADERS(limits.h unistd.h crypt.h)
 
 dnl Checks for typedefs, structures, and compiler characteristics.
@@ -22,6 +23,5 @@ AC_TYPE_SIZE_T
 
 dnl Checks for library functions.
 AC_CHECK_FUNCS(socket strcspn strspn strtol strtok)
+AC_OUTPUT(Makefile)
 
-AC_CONFIG_FILES([Makefile])
-AC_OUTPUT