diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-06-07 21:30:32 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-06-07 21:30:32 +0000 |
commit | 6c83adb8c65f9a19ee28d3912fd7a2aebacd790e (patch) | |
tree | 2099640329222b9746a754c5f2ea92b33b79a65b | |
parent | 0123c3f70c4d80e58ba8f2dfd8d4128691b7a06e (diff) | |
download | fetchmail-6c83adb8c65f9a19ee28d3912fd7a2aebacd790e.tar.gz fetchmail-6c83adb8c65f9a19ee28d3912fd7a2aebacd790e.tar.bz2 fetchmail-6c83adb8c65f9a19ee28d3912fd7a2aebacd790e.zip |
Brendan Cully's fix for his fix.
svn path=/trunk/; revision=1927
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index b361f998..e819034b 100644 --- a/configure.in +++ b/configure.in @@ -225,8 +225,8 @@ if test "$with_gssapi" != "no" then if test "$with_gssapi" != "yes" -a -n "$with_gssapi" then - CFLAGS="$CEFLAGS -I$with_gssapi/include" - LDFLAGS="$LDEFLAGS -L$with_gssapi/lib" + CFLAGS="$CFLAGS -I$with_gssapi/include" + LDFLAGS="$LDFLAGS -L$with_gssapi/lib" fi AC_CHECK_LIB(krb5, krb5_init_context,, AC_MSG_ERROR([could not find libkrb5 which is needed for GSSAPI support])) |