diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1999-09-16 06:39:56 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1999-09-16 06:39:56 +0000 |
commit | e1b85c91f52dc5c29c38a097a54622b2b0bc0ef6 (patch) | |
tree | f3642cd38acb970831d5d88d783dd7563527fb76 /configure.in | |
parent | 2577a80a8110ec4366efdd399d80777e325c0c84 (diff) | |
download | fetchmail-e1b85c91f52dc5c29c38a097a54622b2b0bc0ef6.tar.gz fetchmail-e1b85c91f52dc5c29c38a097a54622b2b0bc0ef6.tar.bz2 fetchmail-e1b85c91f52dc5c29c38a097a54622b2b0bc0ef6.zip |
Minor fixes.
svn path=/trunk/; revision=2563
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index ace29821..f146305e 100644 --- a/configure.in +++ b/configure.in @@ -354,7 +354,7 @@ AC_ARG_WITH(kerberos, # configuring the BSD/OS Kerberos IV support, though. # Check for a NetBSD/OpenBSD special case -if test "$with_kerberos" = "yes" -a `uname` = "NetBSD" -o `uname` = "OpenBSD" +if test "$with_kerberos" = "yes" && test `uname` = "NetBSD" -o `uname` = "OpenBSD" then echo "Configuring kerberosIV for `uname`" CEFLAGS="$CEFLAGS -DKERBEROS_V4 -I/usr/include/kerberosIV" |