]> arthur.barton.de Git - ngircd-alex.git/commitdiff
- Test auf zlib sowie neue Option "--disable-zlib".
authorAlexander Barton <alex@barton.de>
Tue, 26 Nov 2002 23:05:06 +0000 (23:05 +0000)
committerAlexander Barton <alex@barton.de>
Tue, 26 Nov 2002 23:05:06 +0000 (23:05 +0000)
configure.in

index 470fcfb105cc9411fd877799ce300ed4a0c3d0d4..5ce47a20f5fa14f88f00c170ab57b8346749eff0 100644 (file)
@@ -9,7 +9,7 @@
 # Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
 # der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
 #
 # 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.67 2002/11/15 22:08:19 alex Exp $
+# $Id: configure.in,v 1.68 2002/11/26 23:05:06 alex Exp $
 #
 
 # -- Initialisierung --
 #
 
 # -- Initialisierung --
@@ -28,6 +28,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([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])
 AH_TEMPLATE([IRCPLUS], [Define if IRC+ protocol should be used])
 
 AH_TEMPLATE([TARGET_OS], [Target operating system name])
@@ -141,6 +142,22 @@ if test "$x_syslog_on" = "yes"; then
        AC_CHECK_LIB(be,syslog)
 fi
 
        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],
 x_ircplus_on=yes
 AC_ARG_ENABLE(ircplus,
        [  --disable-ircplus       disable IRC+ protocol],
@@ -231,6 +248,7 @@ echo
 
 echo $ECHO_N "      active options: $ECHO_C"
 test "$x_syslog_on" = "yes"    && echo $ECHO_N "Syslog $ECHO_C"
 
 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"
 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"