summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorTom Lane2013-01-10 04:46:44 +0000
committerTom Lane2013-01-10 04:46:44 +0000
commit9d5a160ca3af8f9488d2556fb28b9941d4926ff7 (patch)
tree9b9c00439ed82e2e070696ef155773c10b43982d /configure.in
parent1f3ed51f8e197e9bbf18737a1aa1148ed730f7d8 (diff)
Test linking libperl.so using only Perl's required libraries.
It appears that perl_embed_ldflags should already mention all the libraries that are required by libperl.so itself. So let's try the test link with just those and not the other LIBS we've found up to now. This should more nearly reproduce what will happen when plperl is linked, and perhaps will fix buildfarm member okapi's problem.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index dd1b616673..3e72af471f 100644
--- a/configure.in
+++ b/configure.in
@@ -1803,7 +1803,7 @@ if test "$with_perl" = yes; then
# this writing Debian packages them separately. There is no known reason to
# waste cycles on separate probes for the Tcl or Python libraries, though.
pgac_save_LIBS=$LIBS
- LIBS="$perl_embed_ldflags $LIBS"
+ LIBS="$perl_embed_ldflags"
AC_MSG_CHECKING([for libperl])
AC_TRY_LINK([
#include <EXTERN.h>