diff options
| author | Alexander Barton <alex@barton.de> | 2001-12-29 03:04:06 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2001-12-29 03:04:06 +0000 |
| commit | 680e2ad6b160069a20716fe4472567db8f2a358f (patch) | |
| tree | 1b9bb7a659b799a98ea7bcd15ad4fd71ed908a0c /configure.in | |
| parent | 41099fd63f72e5470ef1f3f4febb4a57c4e682c7 (diff) | |
| download | ngircd-680e2ad6b160069a20716fe4472567db8f2a358f.tar.gz ngircd-680e2ad6b160069a20716fe4472567db8f2a358f.zip | |
- neue configure-Option "--enable-strict-rfc".
Diffstat (limited to 'configure.in')
| -rw-r--r-- | configure.in | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/configure.in b/configure.in index ec0b68bd..c71d0678 100644 --- a/configure.in +++ b/configure.in @@ -9,9 +9,12 @@ # Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste # der an comBase beteiligten Autoren finden Sie in der Datei AUTHORS. # -# $Id: configure.in,v 1.10 2001/12/27 16:25:36 alex Exp $ +# $Id: configure.in,v 1.11 2001/12/29 03:04:06 alex Exp $ # # $Log: configure.in,v $ +# Revision 1.11 2001/12/29 03:04:06 alex +# - neue configure-Option "--enable-strict-rfc". +# # Revision 1.10 2001/12/27 16:25:36 alex # - neue configure-Option "--with-portab=DIR". # @@ -143,6 +146,14 @@ AC_ARG_ENABLE(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(debug, [ --enable-debug show additional debug output], if test "$enableval" = "yes"; then |