diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-03-03 21:52:02 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-03-03 21:52:02 +0000 |
commit | 9a70234c1d61dafc5c08f7e861575cd71f06e9dc (patch) | |
tree | 071796bf8760ca3c7023a42955cf1708200cbd8f /configure.in | |
parent | 6421b138290aeecda414de1c753ace9d04681f7c (diff) | |
download | fetchmail-9a70234c1d61dafc5c08f7e861575cd71f06e9dc.tar.gz fetchmail-9a70234c1d61dafc5c08f7e861575cd71f06e9dc.tar.bz2 fetchmail-9a70234c1d61dafc5c08f7e861575cd71f06e9dc.zip |
Fix Kerberos V configuration.
svn path=/trunk/; revision=1683
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 b9354b94..f36e4df0 100644 --- a/configure.in +++ b/configure.in @@ -271,7 +271,7 @@ AC_ARG_WITH(kerberos5, # The "then" arm (nonempty $with_kerberos5) is kind of a crock. It works for # configuring the BSD/OS Kerberos IV support, though. -if test "$with_kerberos5" != "yes" +if test -n "$with_kerberos5" then # Path given CEFLAGS="$CEFLAGS -DKERBEROS_V5 -I$with_kerberos5/include" |