diff options
Diffstat (limited to 'source3/configure.in')
-rw-r--r-- | source3/configure.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/source3/configure.in b/source3/configure.in index 617453c211..a2706769e6 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -1606,6 +1606,17 @@ AC_ARG_WITH(dfs, ################################################# +# see if this box has the RedHat location for kerberos +AC_MSG_CHECKING(for /usr/kerberos) +if test -d /usr/kerberos; then + LDFLAGS="$LDFLAGS -L/usr/kerberos/lib" + CFLAGS="$CFLAGS -I/usr/kerberos/include" + AC_MSG_RESULT(yes) +else + AC_MSG_RESULT(no) +fi + +################################################# # check for location of Kerberos 5 install AC_MSG_CHECKING(for kerberos 5 install path) AC_ARG_WITH(krb5, |