]> jfr.im git - irc/gameservirc.git/commitdiff
Added the configure.in back for developers
authorkainazzzo <redacted>
Wed, 30 Jun 2004 13:47:46 +0000 (13:47 +0000)
committerkainazzzo <redacted>
Wed, 30 Jun 2004 13:47:46 +0000 (13:47 +0000)
git-svn-id: https://svn.code.sf.net/p/gameservirc/code/trunk@258 bc333340-6410-0410-a689-9d09f3c113fa

gameserv/configure.in [new file with mode: 0644]

diff --git a/gameserv/configure.in b/gameserv/configure.in
new file mode 100644 (file)
index 0000000..77f538c
--- /dev/null
@@ -0,0 +1,27 @@
+dnl Process this file with autoconf to produce a configure script.
+AC_INIT(aClient.cpp)
+
+dnl Create the config.h
+AC_CONFIG_HEADER(config.h)
+
+dnl Checks for programs.
+AC_PROG_CXX
+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.
+AC_C_CONST
+AC_TYPE_SIZE_T
+
+dnl Checks for library functions.
+AC_CHECK_FUNCS(socket strcspn strspn strtol strtok)
+AC_OUTPUT(Makefile)
+