dougm 01/01/29 10:11:42
Modified: src/modules/perl Makefile
. Changes
apaci mod_perl.config.sh
Log:
xsubpp now run with -nolinenumbers (5.004_04 bombs otherwise)
Revision Changes Path
1.14 +2 -2 modperl/src/modules/perl/Makefile
Index: Makefile
===================================================================
RCS file: /home/cvs/modperl/src/modules/perl/Makefile,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- Makefile 2001/01/26 16:42:49 1.13
+++ Makefile 2001/01/29 18:11:32 1.14
@@ -50,7 +50,7 @@
#
# Makefile for the Apache mod_perl library
#
-# $Id: Makefile,v 1.13 2001/01/26 16:42:49 dougm Exp $
+# $Id: Makefile,v 1.14 2001/01/29 18:11:32 dougm Exp $
#
#__ORIGINAL__
@@ -129,7 +129,7 @@
$(XS_INIT)
.xs.c:
- $(PERL) $(PRIVLIB)/ExtUtils/xsubpp -typemap $(PRIVLIB)/ExtUtils/typemap $*.xs
> $@
+ $(PERL) $(PRIVLIB)/ExtUtils/xsubpp -nolinenumbers -typemap
$(PRIVLIB)/ExtUtils/typemap $*.xs > $@
PERLSRC=mod_perl_opmask.c mod_perl.c perlxsi.c perl_config.c perl_util.c perlio.c
$(STATIC_SRC)
1.576 +2 -0 modperl/Changes
Index: Changes
===================================================================
RCS file: /home/cvs/modperl/Changes,v
retrieving revision 1.575
retrieving revision 1.576
diff -u -r1.575 -r1.576
--- Changes 2001/01/26 06:15:45 1.575
+++ Changes 2001/01/29 18:11:37 1.576
@@ -10,6 +10,8 @@
=item 1.24_02-dev
+xsubpp now run with -nolinenumbers (5.004_04 bombs otherwise)
+
DSO support for hpux with native cc
document Apache->server->register_cleanup
1.23 +1 -1 modperl/apaci/mod_perl.config.sh
Index: mod_perl.config.sh
===================================================================
RCS file: /home/cvs/modperl/apaci/mod_perl.config.sh,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- mod_perl.config.sh 2001/01/26 06:04:26 1.22
+++ mod_perl.config.sh 2001/01/29 18:11:41 1.23
@@ -163,7 +163,7 @@
perl_privlibexp="`$perl_interp -MConfig -e 'print $Config{privlibexp}'`"
perl_archlibexp="`$perl_interp -MConfig -e 'print $Config{archlibexp}'`"
perl_xsinit="$perl_interp -MExtUtils::Embed -e xsinit"
-perl_xsubpp="$perl_interp ${perl_privlibexp}/ExtUtils/xsubpp -typemap
${perl_privlibexp}/ExtUtils/typemap"
+perl_xsubpp="$perl_interp ${perl_privlibexp}/ExtUtils/xsubpp -nolinenumbers
-typemap ${perl_privlibexp}/ExtUtils/typemap"
perl_ar="`$perl_interp -MConfig -e 'print $Config{ar}'`"
perl_ranlib=`$perl_interp -MConfig -e 'print $Config{ranlib}'`