diff options
| author | Alexander Barton <alex@barton.de> | 2003-02-25 14:07:26 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2003-02-25 14:07:26 +0000 |
| commit | b896f8acda3cf53e6d6020c70d551e8bc8c629b0 (patch) | |
| tree | 9e83f66d0d36e8bb6cf2cd71f569280ca65a38cf | |
| parent | 29bd35bc4fa858f0ed36e39a3d00830859ce22c8 (diff) | |
| download | ngircd-b896f8acda3cf53e6d6020c70d551e8bc8c629b0.tar.gz ngircd-b896f8acda3cf53e6d6020c70d551e8bc8c629b0.zip | |
- better compatibility
| -rw-r--r-- | configure.in | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/configure.in b/configure.in index 8929f7cd..3f35d844 100644 --- a/configure.in +++ b/configure.in @@ -8,7 +8,7 @@ # (at your option) any later version. # Please read the file COPYING, README and AUTHORS for more information. # -# $Id: configure.in,v 1.80 2003/02/23 12:03:10 alex Exp $ +# $Id: configure.in,v 1.81 2003/02/25 14:07:26 alex Exp $ # # -- Initialisierung -- @@ -175,11 +175,12 @@ fi x_rendezvous_on=no AC_ARG_ENABLE(rendezvous, [ --enable-rendezvous enable Rendezvous on platforms that support it], - if test "$enableval" = "yes"; then - AC_CHECK_FUNCS(DNSServiceRegistrationCreate, x_rendezvous_on=yes, - AC_MSG_ERROR([Can't enable Rendezvous: DNSServiceRegistrationCreate() not available!]) - ) - fi + [ if test "$enableval" = "yes"; then + AC_CHECK_FUNCS(DNSServiceRegistrationCreate, x_rendezvous_on=yes, + AC_MSG_ERROR([Can't enable Rendezvous: DNSServiceRegistrationCreate() not available!]) + ) + fi + ] ) if test "$x_rendezvous_on" = "yes"; then AC_DEFINE(RENDEZVOUS, 1) @@ -212,7 +213,6 @@ AC_ARG_ENABLE(strict-rfc, fi ) - # -- Definitionen -- AC_DEFINE_UNQUOTED(TARGET_CPU, "$target_cpu" ) |