aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1999-06-12 23:02:37 +0000
committerEric S. Raymond <esr@thyrsus.com>1999-06-12 23:02:37 +0000
commit1f00c246cf0327c33ee2a711cc01467598c9861f (patch)
treeb17359ff6e1fa634413b79d692cda52158545615 /configure.in
parent7bf74d9aba6d96eac8011fc96b1c3fc8dba9e422 (diff)
downloadfetchmail-1f00c246cf0327c33ee2a711cc01467598c9861f.tar.gz
fetchmail-1f00c246cf0327c33ee2a711cc01467598c9861f.tar.bz2
fetchmail-1f00c246cf0327c33ee2a711cc01467598c9861f.zip
OpenBSD port patches.
svn path=/trunk/; revision=2499
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index f4cc65f8..54722f86 100644
--- a/configure.in
+++ b/configure.in
@@ -331,10 +331,10 @@ AC_ARG_WITH(kerberos,
# The "elif" arm (nonempty $with_kerberos) is kind of a crock. It works for
# configuring the BSD/OS Kerberos IV support, though.
-# Check for a NetBSD special case
-if test "$with_kerberos" = "yes" -a `uname` = "NetBSD"
+# Check for a NetBSD/OpenBSD special case
+if test "$with_kerberos" = "yes" -a `uname` = "NetBSD" -o `uname` = "OpenBSD"
then
- echo "Configuring kerberosIV for NetBSD"
+ echo "Configuring kerberosIV for `uname`"
CEFLAGS="$CEFLAGS -DKERBEROS_V4 -I/usr/include/kerberosIV"
LIBS="$LIBS -lkrb -ldes"
elif test -n "$with_kerberos" -a -n "$with_kerberos5"