Branch: Tag:

1998-11-22

1998-11-22 13:02:08 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>

some bugs fixed..

Rev: src/modules/Perl/.cvsignore:1.2
Rev: src/modules/Perl/Makefile.in:1.2
Rev: src/modules/Perl/acconfig.h:1.1
Rev: src/modules/Perl/configure.in:1.2
Rev: src/modules/Perl/perlmod.c:1.2
Rev: src/modules/Perl/testsuite.in:1.2

1: - # $Id: configure.in,v 1.1 1998/11/22 11:05:04 hubbe Exp $ + # $Id: configure.in,v 1.2 1998/11/22 13:02:06 hubbe Exp $   AC_INIT(perlmod.c) -  + AC_CONFIG_HEADER(perl_machine.h)      AC_MODULE_INIT()      AC_CHECK_PROGS(perl, perl perl5, x)    -  + objs= +    if test x$perl != xx ; then    # We have perl, but do we have perlembed?   # PERL_LDFLAGS=`perl -V:lddlflags | sed "s/^lddlflags='\(.*\);$/\1/"`
12:       PERL_LDFLAGS=`perl -MExtUtils::Embed -e ldopts`    PERL_CCFLAGS=`perl -MExtUtils::Embed -e ccopts` +  +  if test "x$PERL_LDFLAGS$PERL_CCFLAGS" != x; then +  extra_objs='perlxsi.o' +  AC_DEFINE(HAVE_PERL)    fi -  + fi      AC_SUBST(perl) -  + AC_SUBST(extra_objs)   AC_SUBST(PERL_LDFLAGS)   AC_SUBST(PERL_CCFLAGS) -  +  +    AC_OUTPUT(Makefile,echo FOO >stamp-h )