diff options
| author | Alexander Barton <alex@barton.de> | 2002-02-19 02:11:26 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2002-02-19 02:11:26 +0000 |
| commit | b80fc259d8c8ec2d515a35f0ce99732b3aca8518 (patch) | |
| tree | d27765168906f5396aa682895df340fd0392490a /configure.in | |
| parent | efe152336c7eca274b4f6d3e59963d6fce73577d (diff) | |
| download | ngircd-b80fc259d8c8ec2d515a35f0ce99732b3aca8518.tar.gz ngircd-b80fc259d8c8ec2d515a35f0ce99732b3aca8518.zip | |
- auf die "libbe" wird nur noch getestet, wenn syslog ueberhaupt verwendet wird.
Diffstat (limited to 'configure.in')
| -rw-r--r-- | configure.in | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/configure.in b/configure.in index 631a21e0..6297422f 100644 --- a/configure.in +++ b/configure.in @@ -9,9 +9,12 @@ # 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.28 2002/02/17 22:17:33 alex Exp $ +# $Id: configure.in,v 1.29 2002/02/19 02:11:26 alex Exp $ # # $Log: configure.in,v $ +# Revision 1.29 2002/02/19 02:11:26 alex +# - auf die "libbe" wird nur noch getestet, wenn syslog ueberhaupt verwendet wird. +# # Revision 1.28 2002/02/17 22:17:33 alex # - Versionsnummer im CVS auf 0.2.2-pre angehoben ... # @@ -186,19 +189,26 @@ AC_CHECK_FUNCS(inet_aton) # -- Libraries -- -AC_CHECK_LIB(be,syslog) - # -- 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_MSG_ERROR([Can't enable syslog: syslog.h not found!])) + 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_HEADER(syslog.h, + [ AC_DEFINE(USE_SYSLOG, 1) + AC_CHECK_LIB(be,syslog) + ] + ) ] ) |