diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2000-10-29 23:49:19 +0100 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2000-10-29 23:49:19 +0100 |
commit | 23e1371d9d3893afd4b32cd408971d830b594746 (patch) | |
tree | fe37314735657ab0ee77c048cfb54161afde8b1a | |
parent | - (stevesk) Create contrib/cygwin/ directory; patch from (diff) | |
download | openssh-23e1371d9d3893afd4b32cd408971d830b594746.tar.xz openssh-23e1371d9d3893afd4b32cd408971d830b594746.zip |
- (bal) Resolved more $xno and $xyes issues in configure.in
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -2,6 +2,7 @@ - (stevesk) Fix typo in auth.c: USE_PAM not PAM - (stevesk) Create contrib/cygwin/ directory; patch from Corinna Vinschen <vinschen@redhat.com> + - (bal) Resolved more $xno and $xyes issues in configure.in 20001028 - (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 AC_ARG_WITH(ssl-dir, [ --with-ssl-dir=PATH Specify path to OpenSSL installation ], [ - if test "x$withval" != "$xno" ; then + if test "x$withval" != "xno" ; then tryssldir=$withval fi ] @@ -1043,7 +1043,7 @@ AC_ARG_WITH(kerberos4, [ if test "x$withval" != "xno" ; then - if test "x$withval" != "$xyes" ; then + if test "x$withval" != "xyes" ; then CFLAGS="$CFLAGS -I${withval}/include" LDFLAGS="$LDFLAGS -L${withval}/lib" if test ! -z "$need_dash_r" ; then |