diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-03-03 09:16:36 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-03-03 09:16:36 +0000 |
commit | 533519cc9ccda476ba99cd3e97f82e75a4847a7f (patch) | |
tree | 0bd688a3d5aed7666379b0e25564056c99f52571 | |
parent | 7c85be9435538b20eb4924e5ec69fe28bca9bc9e (diff) |
Dan Fandrich fixed some GSS detection flaws
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index a746aa5d1..3d9a8d9c9 100644 --- a/configure.ac +++ b/configure.ac @@ -617,7 +617,7 @@ if test x"$want_gss" = xyes; then if test -f "$GSSAPI_ROOT/bin/krb5-config"; then GSSAPI_INCS=`$GSSAPI_ROOT/bin/krb5-config --cflags gssapi` else - GSSAPI_INCS=="-I$GSSAPI_ROOT/include" + GSSAPI_INCS="-I$GSSAPI_ROOT/include" fi fi CPPFLAGS="$CPPFLAGS $GSSAPI_INCS" @@ -627,7 +627,7 @@ if test x"$want_gss" = xyes; then gss_ldflags=`$GSSAPI_ROOT/bin/krb5-config --libs gssapi` LDFLAGS="$LDFLAGS $gss_ldflags" else - LDFLAGS="$LDFLAGS $GSSAPI_ROOT/lib -lgssapi" + LDFLAGS="$LDFLAGS -L$GSSAPI_ROOT/lib -lgssapi" fi else LDFLAGS="$LDFLAGS $GSSAPI_LIB_DIR" |