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 @@ -6914,7 +6914,16 @@ fi echo "${ECHO_T}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 @@ -127,7 +127,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' \ + `]) + #-------------------------------------------------------------------- # A few miscellaneous platform-specific items: