- Test auf zlib sowie neue Option "--disable-zlib".
This commit is contained in:
parent
7cc12a3d63
commit
e553829a59
20
configure.in
20
configure.in
|
@ -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.
|
||||
#
|
||||
# $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 --
|
||||
|
@ -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([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])
|
||||
|
@ -141,6 +142,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 +248,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"
|
||||
|
|
Loading…
Reference in New Issue