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

Commit e1b735a

Browse files
committed
Last-gasp attempt to save libperl.so configure probe.
I notice that plperl's makefile adds the -I for $perl_archlibexp/CORE at the end of CPPFLAGS not the beginning. It seems somewhat unlikely that the include search order has anything to do with why buildfarm member okapi is failing, but I'm about out of other ideas.
1 parent 9d5a160 commit e1b735a

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
@@ -29127,7 +29127,7 @@ fi
2912729127
# check for <perl.h>
2912829128
if test "$with_perl" = yes; then
2912929129
ac_save_CPPFLAGS=$CPPFLAGS
29130-
CPPFLAGS="-I$perl_archlibexp/CORE $CPPFLAGS"
29130+
CPPFLAGS="$CPPFLAGS -I$perl_archlibexp/CORE"
2913129131
{ $as_echo "$as_me:$LINENO: checking for perl.h" >&5
2913229132
$as_echo_n "checking for perl.h... " >&6; }
2913329133
if test "${ac_cv_header_perl_h+set}" = set; then

configure.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1795,7 +1795,7 @@ fi
17951795
# check for <perl.h>
17961796
if test "$with_perl" = yes; then
17971797
ac_save_CPPFLAGS=$CPPFLAGS
1798-
CPPFLAGS="-I$perl_archlibexp/CORE $CPPFLAGS"
1798+
CPPFLAGS="$CPPFLAGS -I$perl_archlibexp/CORE"
17991799
AC_CHECK_HEADER(perl.h, [], [AC_MSG_ERROR([header file <perl.h> is required for Perl])],
18001800
[#include <EXTERN.h>])
18011801
# While we're at it, check that we can link to libperl.

0 commit comments

Comments
 (0)