forked from curl/curl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rebase debian/patches for upstream/master
- Loading branch information
Showing
2 changed files
with
32 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,16 +17,16 @@ Signed-off-by: Simon McVittie <[email protected]> | |
1 file changed, 2 insertions(+), 1 deletion(-) | ||
|
||
diff --git a/configure.ac b/configure.ac | ||
index c6c0876..e2d6566 100644 | ||
index 0dfc7b8..b1ea6fc 100644 | ||
--- a/configure.ac | ||
+++ b/configure.ac | ||
@@ -1941,7 +1941,8 @@ if test x"$want_gss" = xyes; then | ||
gss_libs=`$GSSAPI_ROOT/bin/$host_alias-krb5-config --libs gssapi` | ||
LIBS="$gss_libs $LIBS" | ||
elif test "$PKGCONFIG" != "no" ; then | ||
- gss_libs=`$PKGCONFIG --libs mit-krb5-gssapi` | ||
+ LDFLAGS="$LDFLAGS `$PKGCONFIG --libs-only-L mit-krb5-gssapi`" | ||
+ gss_libs=`$PKGCONFIG --libs-only-l mit-krb5-gssapi` | ||
LIBS="$gss_libs $LIBS" | ||
@@ -1968,7 +1968,8 @@ if test x"$want_gss" = xyes; then | ||
gss_libs=`$GSSAPI_ROOT/bin/$host_alias-krb5-config --libs gssapi` | ||
LIBS="$gss_libs $LIBS" | ||
elif test "$PKGCONFIG" != "no"; then | ||
- gss_libs=`$PKGCONFIG --libs mit-krb5-gssapi` | ||
+ LDFLAGS="$LDFLAGS `$PKGCONFIG --libs-only-L mit-krb5-gssapi`" | ||
+ gss_libs=`$PKGCONFIG --libs-only-l mit-krb5-gssapi` | ||
LIBS="$gss_libs $LIBS" | ||
elif test -f "$KRB5CONFIG"; then | ||
dnl krb5-config doesn't have --libs-only-L or similar, put everything | ||
dnl krb5-config doesn't have --libs-only-L or similar, put everything |