diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2013-08-20 18:59:40 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2013-08-20 18:59:40 +0200 |
commit | 6412c41158515b8d1ec02056d076bbd0d6c07a06 (patch) | |
tree | f0221a1f292752b85e57fd62ebece065c8be29a8 /package/heimdal/patches | |
parent | 805407432ca9328faf20214acdf73d88e2eb0c95 (diff) |
fix heimdal musl compile
Diffstat (limited to 'package/heimdal/patches')
-rw-r--r-- | package/heimdal/patches/patch-tools_krb5-config.in | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/package/heimdal/patches/patch-tools_krb5-config.in b/package/heimdal/patches/patch-tools_krb5-config.in new file mode 100644 index 000000000..76f1ac7e5 --- /dev/null +++ b/package/heimdal/patches/patch-tools_krb5-config.in @@ -0,0 +1,20 @@ +diff -Nur heimdal-1.5.2.orig/tools/krb5-config.in heimdal-1.5.2/tools/krb5-config.in +--- heimdal-1.5.2.orig/tools/krb5-config.in 2012-01-10 22:53:51.000000000 +0100 ++++ heimdal-1.5.2/tools/krb5-config.in 2013-08-20 09:44:59.580220171 +0200 +@@ -120,7 +120,6 @@ + fi + + if test "$do_libs" = "yes"; then +- lib_flags="-L${libdir}" + case $library in + gssapi) + lib_flags="$lib_flags -lgssapi -lheimntlm" +@@ -142,7 +141,7 @@ + echo $lib_flags + fi + if test "$do_cflags" = "yes"; then +- echo "-I${includedir} @INCLUDE_hcrypto@" ++ echo "@INCLUDE_hcrypto@" + fi + + exit 0 |