ngircd-tor/configure.in

161 lines
3.6 KiB
Plaintext
Raw Normal View History

2001-12-11 22:53:04 +01:00
#
# ngIRCd -- The Next Generation IRC Daemon
2002-01-02 03:52:09 +01:00
# Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
2001-12-11 22:53:04 +01:00
#
# 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
2001-12-31 03:21:00 +01:00
# der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
2001-12-11 22:53:04 +01:00
#
# $Id: configure.in,v 1.36 2002/03/12 14:37:51 alex Exp $
2001-12-11 22:53:04 +01:00
#
# -- Initialisierung --
AC_INIT
AC_CANONICAL_TARGET
AC_CONFIG_SRCDIR(src/config.h.in)
AM_INIT_AUTOMAKE(ngircd,0.3.0-CVS)
2001-12-11 22:53:04 +01:00
AM_CONFIG_HEADER(src/config.h)
# -- Templates fuer config.h --
AH_TEMPLATE([DEBUG], [Define if debug-mode should be enabled])
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])
2001-12-11 22:53:04 +01:00
# -- C Compiler --
AC_PROG_CC
AC_LANG_C
# -- Hilfsprogramme --
AC_PROG_AWK
AC_PROG_INSTALL
AC_PROG_LN_S
2001-12-11 22:53:04 +01:00
AC_PROG_MAKE_SET
AC_PROG_RANLIB
# -- Header --
AC_HEADER_STDC
AC_HEADER_TIME
AC_CHECK_HEADERS(arpa/inet.h)
AC_CHECK_HEADERS([ \
errno.h fcntl.h netdb.h netinet/in.h stdlib.h string.h \
sys/socket.h sys/time.h sys/wait.h unistd.h \
],,AC_MSG_ERROR([required C header missing!]))
2001-12-11 22:53:04 +01:00
# -- Datentypen --
2001-12-12 02:58:52 +01:00
AC_MSG_CHECKING(whether socklen_t exists)
AC_TRY_COMPILE([
#include <sys/socket.h>
#include <sys/types.h>
],[
socklen_t a, b;
a = 2; b = 4; a += b;
],[
AC_DEFINE(HAVE_socklen_t) AC_MSG_RESULT(yes)
],[
AC_MSG_RESULT(no)
])
# -- Libraries --
AC_CHECK_LIB(UTIL,memmove)
2001-12-11 22:53:04 +01:00
# -- Funktionen --
AC_FUNC_MALLOC
AC_CHECK_FUNCS([ \
bind gethostbyaddr gethostbyname gethostname inet_ntoa memmove \
memset select setsockopt socket strcasecmp strchr strerror strftime \
strstr vsnprintf waitpid \
],,AC_MSG_ERROR([required function missing!]))
2001-12-11 22:53:04 +01:00
AC_CHECK_FUNCS(inet_aton)
AC_CHECK_FUNCS(sigaction)
2001-12-11 22:53:04 +01:00
# -- Konfigurationsoptionen --
AC_ARG_ENABLE(syslog,
[ --disable-syslog disable syslog (autodetected by default)],
[ if test "$enableval" = "yes"; then
AC_CHECK_HEADER(syslog.h,
[ AC_DEFINE(USE_SYSLOG, 1)
AC_CHECK_LIB(be,syslog)
],
AC_MSG_ERROR([Can't enable syslog: syslog.h not found!])
)
else
AC_MSG_RESULT([disabling syslog])
fi
],
[ AC_CHECK_HEADER(syslog.h,
[ AC_DEFINE(USE_SYSLOG, 1)
AC_CHECK_LIB(be,syslog)
]
)
]
)
AC_ARG_ENABLE(strict-rfc,
[ --enable-strict-rfc strict RFC conformance, may break clients],
if test "$enableval" = "yes"; then
AC_DEFINE(STRICT_RFC, 1)
AC_MSG_RESULT([enabling strict RFC conformance])
fi
)
AC_ARG_ENABLE(sniffer,
[ --enable-sniffer enable network traffic monitor (enables debug mode!)],
if test "$enableval" = "yes"; then
AC_DEFINE(SNIFFER, 1)
AC_MSG_RESULT([enabling network traffic monitor])
x_debug_on=yes
fi
)
AC_ARG_ENABLE(debug,
[ --enable-debug show additional debug output],
if test "$enableval" = "yes"; then x_debug_on=yes; fi
)
if test "$x_debug_on" = "yes"; then
AC_DEFINE(DEBUG, 1)
AC_MSG_RESULT([enabling additional debug output])
fi
# -- Variablen II --
if test "$GCC" = "yes"; then
CFLAGS="-Wall $CFLAGS"
fi
CFLAGS="$CFLAGS -DSYSCONFDIR='\"\$(sysconfdir)\"'"
CFLAGS="$CFLAGS -DLOCALSTATEDIR='\"\$(localstatedir)\"'"
2001-12-11 22:53:04 +01:00
# -- Ausgabe --
2001-12-31 17:02:30 +01:00
AC_OUTPUT([ \
Makefile \
doc/Makefile \
MacOSX/Makefile \
MacOSX/ngircd.pbproj/Makefile \
src/Makefile \
src/portab/Makefile \
2001-12-31 17:02:30 +01:00
src/ngircd/Makefile \
])
2001-12-11 22:53:04 +01:00
# -eof-