]> arthur.barton.de Git - ngircd.git/blobdiff - configure.in
Updated version number to 0.6.1 :-)
[ngircd.git] / configure.in
index 470fcfb105cc9411fd877799ce300ed4a0c3d0d4..e7f36b5a471a69146fee906a3d7a41f58551f455 100644 (file)
@@ -1,15 +1,14 @@
 #
 # ngIRCd -- The Next Generation IRC Daemon
-# Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
+# Copyright (c)2001-2003 by Alexander Barton (alex@barton.de)
 #
-# Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen
-# der GNU General Public License (GPL), wie von der Free Software Foundation
-# herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2
-# der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version.
-# Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
-# der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+# Please read the file COPYING, README and AUTHORS for more information.
 #
-# $Id: configure.in,v 1.67 2002/11/15 22:08:19 alex Exp $
+# $Id: configure.in,v 1.69.2.5 2003/01/21 21:23:34 alex Exp $
 #
 
 # -- Initialisierung --
@@ -18,7 +17,7 @@ AC_INIT
 AC_PREREQ(2.50)
 AC_CANONICAL_TARGET
 AC_CONFIG_SRCDIR(src/config.h.in)
-AM_INIT_AUTOMAKE(ngircd,CVSHEAD)
+AM_INIT_AUTOMAKE(ngircd,0.6.1)
 AM_CONFIG_HEADER(src/config.h)
 
 # -- Templates fuer config.h --
@@ -28,6 +27,7 @@ AH_TEMPLATE([HAVE_socklen_t], [Define if socklen_t exists])
 AH_TEMPLATE([SNIFFER], [Define if IRC sniffer should be enabled])
 AH_TEMPLATE([STRICT_RFC], [Define if ngIRCd should behave strict RFC compliant])
 AH_TEMPLATE([USE_SYSLOG], [Define if syslog should be used for logging])
+AH_TEMPLATE([USE_ZLIB], [Define if zlib compression should be enabled])
 AH_TEMPLATE([IRCPLUS], [Define if IRC+ protocol should be used])
 
 AH_TEMPLATE([TARGET_OS], [Target operating system name])
@@ -80,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 malloc.h stdint.h sys/select.h varargs.h)
+AC_CHECK_HEADERS(arpa/inet.h ctype.h malloc.h stdint.h sys/select.h varargs.h)
 
 # -- Datentypen --
 
@@ -121,7 +121,7 @@ AC_CHECK_FUNCS([ \
        strstr waitpid \
        ],,AC_MSG_ERROR([required function missing!]))
 
-AC_CHECK_FUNCS(inet_aton sigaction snprintf vsnprintf)
+AC_CHECK_FUNCS(inet_aton isdigit sigaction snprintf vsnprintf)
 
 # -- Konfigurationsoptionen --
 
@@ -141,6 +141,22 @@ if test "$x_syslog_on" = "yes"; then
        AC_CHECK_LIB(be,syslog)
 fi
 
+x_zlib_on=no
+AC_ARG_ENABLE(zlib,
+       [  --disable-zlib          disable zlib compression (autodetected by default)],
+       [       if test "$enableval" = "yes"; then
+                       AC_CHECK_HEADER(zlib.h, x_zlib_on=yes,
+                               AC_MSG_ERROR([Can't enable zlib: zlib.h not found!])
+                       )
+               fi
+       ],
+       [       AC_CHECK_HEADER(zlib.h, x_zlib_on=yes) ]
+)
+if test "$x_zlib_on" = "yes"; then
+       AC_DEFINE(USE_ZLIB, 1)
+       AC_CHECK_LIB(z,deflate)
+fi
+
 x_ircplus_on=yes
 AC_ARG_ENABLE(ircplus,
        [  --disable-ircplus       disable IRC+ protocol],
@@ -231,6 +247,7 @@ echo
 
 echo $ECHO_N "      active options: $ECHO_C"
 test "$x_syslog_on" = "yes"    && echo $ECHO_N "Syslog $ECHO_C"
+test "$x_zlib_on" = "yes"      && echo $ECHO_N "zLib $ECHO_C"
 test "$x_debug_on" = "yes"     && echo $ECHO_N "Debug $ECHO_C"
 test "$x_sniffer_on" = "yes"   && echo $ECHO_N "Sniffer $ECHO_C"
 test "$x_strict_rfc_on" = "yes"        && echo $ECHO_N "Strict-RFC $ECHO_C"