You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apreq-cvs@httpd.apache.org by ra...@apache.org on 2005/03/14 00:23:48 UTC

svn commit: r157355 - httpd/apreq/branches/multi-env-unstable/glue/perl/Makefile.PL

Author: randyk
Date: Sun Mar 13 15:23:46 2005
New Revision: 157355

URL: http://svn.apache.org/viewcvs?view=rev&rev=157355
Log:
using the current mod_perl-2 unstable branch, we no longer worry 
about finding and installing things under an Apache2/ subdirectory.

Modified:
    httpd/apreq/branches/multi-env-unstable/glue/perl/Makefile.PL

Modified: httpd/apreq/branches/multi-env-unstable/glue/perl/Makefile.PL
URL: http://svn.apache.org/viewcvs/httpd/apreq/branches/multi-env-unstable/glue/perl/Makefile.PL?view=diff&r1=157354&r2=157355
==============================================================================
--- httpd/apreq/branches/multi-env-unstable/glue/perl/Makefile.PL (original)
+++ httpd/apreq/branches/multi-env-unstable/glue/perl/Makefile.PL Sun Mar 13 15:23:46 2005
@@ -59,7 +59,7 @@
         die "Cannot find aprutil lib";
     $apr_libs .= ' -l' . basename($1, '.lib');
     $apreq_libname = 'apreq2';
-    $perl_lib = $Config{installsitelib} . '\Apache2\auto\libaprext';
+    $perl_lib = $Config{installsitelib} . '\auto\libaprext';
     $perl_lib =~ s{\\}{\\\\}g;
 }
 else {
@@ -166,15 +166,6 @@
     clean => { FILES => "xs t/logs t/TEST @scripts" },
     realclean => { FILES => "xsbuilder/tables" },
 );
-
-if (WIN32) {
-    my $PM = {
-        'lib/Apache/Request.pm' => '$(INST_LIB)/Apache/Request.pm',
-        'lib/Apache/Upload.pm' => '$(INST_LIB)/Apache/Upload.pm',
-        'lib/Apache/Cookie.pm' => '$(INST_LIB)/Apache/Cookie.pm',
-    };
-    $opts{PM} = $PM;
-}
 
 ModPerl::MM::WriteMakefile(%opts);