X-Git-Url: https://git.sven.stormbind.net/?p=sven%2Ftclcurl.git;a=blobdiff_plain;f=debian%2Fpatches%2Fcorrect-linking;fp=debian%2Fpatches%2Fcorrect-linking;h=0000000000000000000000000000000000000000;hp=11fcaaea42452b46a99b8f31fac63c2adc807f81;hb=d97402733dcb1f0019d84cf12325a625265b0ea1;hpb=bf7bf60bcf78d500cf389941fea6cd65adc0e827 diff --git a/debian/patches/correct-linking b/debian/patches/correct-linking deleted file mode 100644 index 11fcaae..0000000 --- a/debian/patches/correct-linking +++ /dev/null @@ -1,43 +0,0 @@ -Strip out a few libs from the linker to lower the amount of direct depedencies -for this package. -See: http://lists.debian.org/debian-devel-announce/2006/09/msg00018.html ---- a/configure -+++ b/configure -@@ -4939,7 +4939,16 @@ fi - $as_echo "yes" >&6; } - - -- vars="`$curlpath/curl-config --libs`" -+# We need to modify this original line to strip a few things -+# See: http://lists.debian.org/debian-devel-announce/2006/09/msg00018.html -+ -+ vars="`$curlpath/curl-config --libs|sed \ -+ -e 's/\-lkrb5\>//g' \ -+ -e 's/\-lgssapi_krb5//g' \ -+ -e 's/\-lk5crypto//g' \ -+ -e 's/\-lkrb5support//g' \ -+ `" -+ - for i in $vars; do - if test "${TEA_PLATFORM}" = "windows" -a "$GCC" = "yes" ; then - # Convert foo.lib to -lfoo for GCC. No-op if not *.lib ---- a/configure.in -+++ b/configure.in -@@ -134,7 +134,16 @@ if test "${CURL_VERSION}" != "" ; then - fi - AC_MSG_RESULT(yes) - --TEA_ADD_LIBS([`$curlpath/curl-config --libs`]) -+# We need to modify this original line to strip a few things -+# See: http://lists.debian.org/debian-devel-announce/2006/09/msg00018.html -+ -+TEA_ADD_LIBS([`$curlpath/curl-config --libs|sed \ -+ -e 's/\-lkrb5\>//g' \ -+ -e 's/\-lgssapi_krb5//g' \ -+ -e 's/\-lk5crypto//g' \ -+ -e 's/\-lkrb5support//g' \ -+ `]) -+ - - #-------------------------------------------------------------------- - # __CHANGE__