On Mon, 3 Apr 2000, Paul G. Weiss wrote:
> Question: is there anyway that I can do the same with
> command line arguments without having to patch the Makefile's
> (a goal here was not to have to rebuild Perl yet again)?
this patch will pass along all of Perl's ccflags when compiling the apache
sources. this should fix the problem for you. what i'm worried about, is
if it will break anything else. works fine on my laptop (suse linux), if
some other folks could run a 'make test' with the patch on other systems,
aix, hpux, bsd, etc., i would very much appreciate any feedback.
--- Makefile.PL 2000/04/03 03:56:11 1.155
+++ Makefile.PL 2000/04/04 21:28:29
@@ -177,7 +177,7 @@
$PERL_DEBUG = "";
$PERL_DESTRUCT_LEVEL = "";
$PERL_STATIC_EXTS = "";
-$PERL_EXTRA_CFLAGS = "";
+$PERL_EXTRA_CFLAGS = $Config{ccflags};
$SSLCacheServerPort = 8539;
$SSL_BASE = "";
$Port = $ENV{HTTP_PORT} || 8529;