dougm 00/04/27 15:45:30
Modified: . Changes Makefile.PL
Log:
pass $Config{ccflags} to apache for 5.6.0+
Revision Changes Path
1.476 +2 -0 modperl/Changes
Index: Changes
===================================================================
RCS file: /home/cvs/modperl/Changes,v
retrieving revision 1.475
retrieving revision 1.476
diff -u -r1.475 -r1.476
--- Changes 2000/04/27 22:29:46 1.475
+++ Changes 2000/04/27 22:45:30 1.476
@@ -10,6 +10,8 @@
=item 1.23_01-dev
+pass $Config{ccflags} to apache for 5.6.0+
+
fix Apache->httpd_conf, thanks to Will Trillich for the spot
fixed 'make clean' to remove FILES => passed to MakeMaker
1.160 +1 -1 modperl/Makefile.PL
Index: Makefile.PL
===================================================================
RCS file: /home/cvs/modperl/Makefile.PL,v
retrieving revision 1.159
retrieving revision 1.160
diff -u -r1.159 -r1.160
--- Makefile.PL 2000/04/21 19:37:45 1.159
+++ Makefile.PL 2000/04/27 22:45:30 1.160
@@ -186,7 +186,7 @@
$PERL_DEBUG = "";
$PERL_DESTRUCT_LEVEL = "";
$PERL_STATIC_EXTS = "";
-$PERL_EXTRA_CFLAGS = "";
+$PERL_EXTRA_CFLAGS = $] >= 5.006 ? $Config{ccflags} : "";
$SSLCacheServerPort = 8539;
$SSL_BASE = "";
$Port = $ENV{HTTP_PORT} || 8529;