Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 9d5a160

Browse files
committed
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.
1 parent 1f3ed51 commit 9d5a160

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

configure

+1-1
Original file line numberDiff line numberDiff line change
@@ -29187,7 +29187,7 @@ fi
2918729187
# this writing Debian packages them separately. There is no known reason to
2918829188
# waste cycles on separate probes for the Tcl or Python libraries, though.
2918929189
pgac_save_LIBS=$LIBS
29190-
LIBS="$perl_embed_ldflags $LIBS"
29190+
LIBS="$perl_embed_ldflags"
2919129191
{ $as_echo "$as_me:$LINENO: checking for libperl" >&5
2919229192
$as_echo_n "checking for libperl... " >&6; }
2919329193
cat >conftest.$ac_ext <<_ACEOF

configure.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1803,7 +1803,7 @@ if test "$with_perl" = yes; then
18031803
# this writing Debian packages them separately. There is no known reason to
18041804
# waste cycles on separate probes for the Tcl or Python libraries, though.
18051805
pgac_save_LIBS=$LIBS
1806-
LIBS="$perl_embed_ldflags $LIBS"
1806+
LIBS="$perl_embed_ldflags"
18071807
AC_MSG_CHECKING([for libperl])
18081808
AC_TRY_LINK([
18091809
#include <EXTERN.h>

0 commit comments

Comments
 (0)