Skip to content
Snippets Groups Projects
Commit c2d5a0e9 authored by Fredrik Hübinette (Hubbe)'s avatar Fredrik Hübinette (Hubbe)
Browse files

bugfix for perl tests

Rev: src/modules/Perl/configure.in:1.5
parent 4938ab21
No related branches found
No related tags found
No related merge requests found
# $Id: configure.in,v 1.4 1999/01/01 00:56:45 hubbe Exp $ # $Id: configure.in,v 1.5 1999/01/08 08:51:04 hubbe Exp $
AC_INIT(perlmod.c) AC_INIT(perlmod.c)
AC_CONFIG_HEADER(perl_machine.h) AC_CONFIG_HEADER(perl_machine.h)
AC_MODULE_INIT() AC_MODULE_INIT()
AC_CHECK_PROGS(perl, perl perl5, x)
AC_CACHE_VAL(pike_cv_perlmod_have_perl, AC_CACHE_VAL(pike_cv_perlmod_have_perl,
[ [
pike_cv_perlmod_have_perl=no pike_cv_perlmod_have_perl=no
AC_CHECK_PROGS(perl, perl perl5, x)
objs= objs=
if test x$perl != xx ; then if test x$perl != xx ; then
...@@ -58,6 +58,10 @@ fi ...@@ -58,6 +58,10 @@ fi
if test "x$pike_cv_perlmod_have_perl" = xyes ; then if test "x$pike_cv_perlmod_have_perl" = xyes ; then
extra_objs='perlxsi.o' extra_objs='perlxsi.o'
if test "x$PERL_CCFLAGS" = x ; then
PERL_LDFLAGS=`perl -MExtUtils::Embed -e ldopts`
PERL_CCFLAGS=`perl -MExtUtils::Embed -e ccopts`
fi
AC_DEFINE(HAVE_PERL) AC_DEFINE(HAVE_PERL)
AC_MSG_RESULT(yes) AC_MSG_RESULT(yes)
else else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment