Mailing List Archive

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.

jim
RE: patch to record win32 build information [ In reply to ]
> -----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
>