]> arthur.barton.de Git - ngircd-alex.git/blobdiff - configure.in
- Enhanced (and fixed) CHANINFO command (channel keys, user limits).
[ngircd-alex.git] / configure.in
index 28de5fce9e82545c748e102aed36a663b8e264ca..a82df0871147c1e6c002ce1fc9bf3daf58883fd8 100644 (file)
@@ -9,16 +9,15 @@
 # Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
 # der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
 #
-# $Id: configure.in,v 1.69 2002/11/30 22:14:47 alex Exp $
+# $Id: configure.in,v 1.77 2003/01/04 13:07:54 alex Exp $
 #
 
 # -- Initialisierung --
 
-AC_INIT
-AC_PREREQ(2.50)
+AC_INIT(ngircd, CVSHEAD)
+AC_CONFIG_SRCDIR(src/ngircd/ngircd.c)
 AC_CANONICAL_TARGET
-AC_CONFIG_SRCDIR(src/config.h.in)
-AM_INIT_AUTOMAKE(ngircd,CVSHEAD)
+AM_INIT_AUTOMAKE
 AM_CONFIG_HEADER(src/config.h)
 
 # -- Templates fuer config.h --
@@ -81,7 +80,7 @@ AC_CHECK_HEADERS([ \
        strings.h sys/socket.h sys/time.h unistd.h \
        ],,AC_MSG_ERROR([required C header missing!]))
 
-AC_CHECK_HEADERS(arpa/inet.h ctype.h malloc.h stdint.h sys/select.h varargs.h)
+AC_CHECK_HEADERS([arpa/inet.h ctype.h malloc.h stdint.h varargs.h])
 
 # -- Datentypen --
 
@@ -118,11 +117,16 @@ AC_FUNC_STRFTIME
 
 AC_CHECK_FUNCS([ \
        bind gethostbyaddr gethostbyname gethostname inet_ntoa memmove \
-       memset select setsockopt socket strcasecmp strchr strerror \
-       strstr waitpid \
+       memset setsockopt socket strcasecmp strchr strerror strstr waitpid \
        ],,AC_MSG_ERROR([required function missing!]))
 
-AC_CHECK_FUNCS(inet_aton isdigit sigaction snprintf vsnprintf)
+AC_CHECK_FUNCS(inet_aton isdigit sigaction snprintf vsnprintf strlcpy strlcat)
+
+AC_CHECK_FUNCS(poll,[AC_CHECK_HEADER(sys/poll.h)],
+       [AC_CHECK_FUNCS(select,[AC_CHECK_HEADER(sys/select.h)],
+               AC_MSG_ERROR([neither poll() nor select() is available!]))
+       ]
+)
 
 # -- Konfigurationsoptionen --
 
@@ -201,19 +205,21 @@ AC_DEFINE_UNQUOTED(TARGET_OS, "$target_os" )
 # -- Variablen --
 
 if test "$GCC" = "yes"; then
-       CFLAGS="-Wall $CFLAGS"
+       the_CFLAGS="-Wall -Wtraditional -Wpointer-arith -Wstrict-prototypes"
+       add_CFLAGS="$CFLAGS $CFLAGS_ADD"
+else
+       the_CFLAGS="$CFLAGS"
+       add_CFLAGS="$CFLAGS_ADD"
 fi
 
-the_CFLAGS="$CFLAGS"
-
-CFLAGS="$CFLAGS -DSYSCONFDIR='\"\$(sysconfdir)\"'"
+CFLAGS="$the_CFLAGS $add_CFLAGS -DSYSCONFDIR='\"\$(sysconfdir)\"'"
 
 # -- Ausgabe der Dateien --
 
 AC_OUTPUT([ \
        Makefile \
        doc/Makefile \
-       doc/en/Makefile \
+       doc/de/Makefile \
        MacOSX/Makefile \
        MacOSX/ngircd.pbproj/Makefile \
        src/Makefile \
@@ -237,6 +243,7 @@ M=`eval echo ${mandir}` ; M=`eval echo ${M}`
 echo "                host: ${host}"
 echo "            compiler: ${CC}"
 echo "      compiler flags: ${the_CFLAGS}"
+test -n "$add_CFLAGS" && echo "                      ${add_CFLAGS}"
 echo "  preprocessor flags: ${CPPFLAGS}"
 echo "        linker flags: ${LDFLAGS}"
 echo "           libraries: ${LIBS}"