From: Michael Jerris Date: Thu, 12 Jun 2014 22:34:02 +0000 (-0500) Subject: don't require more libs than we really need when linking embedded perl modules X-Git-Tag: v1.5.13~193 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=09ae3a9841f1832b46f932a51cce4e3316e4ad2b;p=thirdparty%2Ffreeswitch.git don't require more libs than we really need when linking embedded perl modules --- diff --git a/configure.ac b/configure.ac index 294f6b469d..c6ff69b3ae 100644 --- a/configure.ac +++ b/configure.ac @@ -1238,7 +1238,7 @@ if test "x$ac_cv_have_perl" != "xno" ; then PERL_LIBDIR="-L`$PERL -MConfig -e 'print $Config{archlib}'`/CORE" PERL_LIBS="`$PERL -MConfig -e 'print $Config{libs}'`" PERL_CFLAGS="-w -DMULTIPLICITY `$PERL -MExtUtils::Embed -e ccopts` -DEMBED_PERL" - PERL_LDFLAGS="`$PERL -MExtUtils::Embed -e ldopts` `$PERL -MConfig -e 'print $Config{libs}'`" + PERL_LDFLAGS="`$PERL -MExtUtils::Embed -e ldopts`" PERL_INC="`$PERL -MExtUtils::Embed -e perl_inc`" AC_SUBST(PERL_SITEDIR) AC_SUBST(PERL_LIBDIR)