You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@perl.apache.org by Geoffrey Young <gy...@laserlink.net> on 2000/12/01 14:18:13 UTC

RE: patch to record win32 build information


> -----Original Message-----
> From: Jim Winstead [mailto:jimw@trainedmonkey.com]
> Sent: Thursday, November 30, 2000 5:03 PM
> To: dev@perl.apache.org
> Subject: patch to record win32 build information
> 
> 
> attached is a patch from randy kobes that records the win32 build
> information so that packages like libapreq can find things when
> they are built.

I sent this for the API hooks is a while ago - it would be nice to
incorporate both, I think, so everyone can see all of the important build
options without resorting to a live server

--- Makefile.PL.old     Tue Oct  3 10:17:22 2000
+++ Makefile.PL Tue Oct 10 13:23:07 2000
@@ -1899,12 +1899,19 @@
 #
 # Configuartion for mod_perl and Apache::...
 #
-package Apache::MyConfig ;
+package Apache::MyConfig;
 
 %Setup = (
    'Apache_Src' => \'$APACHE_SRC\',
    'SSL_BASE' => \'$SSL_BASE\',
    'APXS' => \'$WITH_APXS\',
+EOT
+
+    foreach my $key (sort @callback_hooks) {
+      print FH "   \'$key\' => \'$callback_hooks{$key}\',\n";
+    }
+
+    print FH <<EOT;
 );
 
 1;


--Geoff

> 
> jim
>