summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2000-10-29 22:49:19 +0000
committerBen Lindstrom <mouring@eviladmin.org>2000-10-29 22:49:19 +0000
commit23e1371d9d3893afd4b32cd408971d830b594746 (patch)
treefe37314735657ab0ee77c048cfb54161afde8b1a
parent9be6e267b5769f0783fdb83b38a19418c6bd83d1 (diff)
- (bal) Resolved more $xno and $xyes issues in configure.in
-rw-r--r--ChangeLog1
-rw-r--r--configure.in4
2 files changed, 3 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 2c29b9940..f2d7e6725 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,7 @@
2 - (stevesk) Fix typo in auth.c: USE_PAM not PAM 2 - (stevesk) Fix typo in auth.c: USE_PAM not PAM
3 - (stevesk) Create contrib/cygwin/ directory; patch from 3 - (stevesk) Create contrib/cygwin/ directory; patch from
4 Corinna Vinschen <vinschen@redhat.com> 4 Corinna Vinschen <vinschen@redhat.com>
5 - (bal) Resolved more $xno and $xyes issues in configure.in
5 6
620001028 720001028
7 - (djm) fix select hack in serverloop.c from Philippe WILLEM 8 - (djm) fix select hack in serverloop.c from Philippe WILLEM
diff --git a/configure.in b/configure.in
index 5a30819b4..6f27c3b99 100644
--- a/configure.in
+++ b/configure.in
@@ -380,7 +380,7 @@ fi
380AC_ARG_WITH(ssl-dir, 380AC_ARG_WITH(ssl-dir,
381 [ --with-ssl-dir=PATH Specify path to OpenSSL installation ], 381 [ --with-ssl-dir=PATH Specify path to OpenSSL installation ],
382 [ 382 [
383 if test "x$withval" != "$xno" ; then 383 if test "x$withval" != "xno" ; then
384 tryssldir=$withval 384 tryssldir=$withval
385 fi 385 fi
386 ] 386 ]
@@ -1043,7 +1043,7 @@ AC_ARG_WITH(kerberos4,
1043 [ 1043 [
1044 if test "x$withval" != "xno" ; then 1044 if test "x$withval" != "xno" ; then
1045 1045
1046 if test "x$withval" != "$xyes" ; then 1046 if test "x$withval" != "xyes" ; then
1047 CFLAGS="$CFLAGS -I${withval}/include" 1047 CFLAGS="$CFLAGS -I${withval}/include"
1048 LDFLAGS="$LDFLAGS -L${withval}/lib" 1048 LDFLAGS="$LDFLAGS -L${withval}/lib"
1049 if test ! -z "$need_dash_r" ; then 1049 if test ! -z "$need_dash_r" ; then