diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-10-10 19:27:07 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-10-10 19:27:07 +0000 |
commit | 7482171293db61132b62cd9a86728fd912412aa3 (patch) | |
tree | 7fa29c18f9e28fb0a99df17a40deefd8e79726e0 /configure.in | |
parent | 6cb67de133d4bc256dce49a631f5b2b7b34a382e (diff) | |
download | fetchmail-7482171293db61132b62cd9a86728fd912412aa3.tar.gz fetchmail-7482171293db61132b62cd9a86728fd912412aa3.tar.bz2 fetchmail-7482171293db61132b62cd9a86728fd912412aa3.zip |
Part of the Kerberos changes.
svn path=/trunk/; revision=284
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.in b/configure.in index bde50e8f..b52f6bbe 100644 --- a/configure.in +++ b/configure.in @@ -53,6 +53,13 @@ then EXTRAOBJ="$EXTRAOBJ alloca.o" fi +if test -f "/usr/kerberos/include/krb.h" +then + CFLAGS="$CFLAGS -DKERBEROS_V4 -I/usr/kerberos/include" + LDFLAGS="$LDFLAGS -L/usr/kerberos/lib" + LIBS="$LIBS -lkrb -ldes" +fi + dnl All AC_CHECK_FUNCs must precede the following AC_SUBSTs AC_SUBST(EXTRASRC) |