diff options
author | Vanilla I. Shu <vanilla@FreeBSD.org> | 2004-06-11 09:55:35 +0000 |
---|---|---|
committer | Vanilla I. Shu <vanilla@FreeBSD.org> | 2004-06-11 09:55:35 +0000 |
commit | e9f2fe72ad04f329e5b43dfc0a906112da2d9f29 (patch) | |
tree | 220e0964eb6ed240a7edb7f8d81d49d5e8eede29 /www/p5-libapreq2/files/patch-Makefile.in | |
parent | - Unbreak (diff) |
Add p5-libapreq2 2.02r02, generic Apache2 Request Library.
PR: ports/67591
Submitted by: Autrijus Tang autrijus_at_autrijus.org
Notes
Notes:
svn path=/head/; revision=111264
Diffstat (limited to 'www/p5-libapreq2/files/patch-Makefile.in')
-rw-r--r-- | www/p5-libapreq2/files/patch-Makefile.in | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/www/p5-libapreq2/files/patch-Makefile.in b/www/p5-libapreq2/files/patch-Makefile.in new file mode 100644 index 000000000000..bab9964d67a0 --- /dev/null +++ b/www/p5-libapreq2/files/patch-Makefile.in @@ -0,0 +1,43 @@ +--- Makefile.in.orig Sat Jun 5 11:37:37 2004 ++++ Makefile.in Sat Jun 5 11:38:18 2004 +@@ -493,7 +493,7 @@ + -rm -rf $(distdir) + tar xzvf $(distdir).tar.gz + @cd $(distdir); @PERL@ -M$(EUM) -e "die 'Bogus MANIFEST' if $(EUM)::manicheck" +- @cd $(distdir); @PERL@ Makefile.PL -apxs @APACHE2_APXS@ && make test ++ @cd $(distdir); @PERL@ Makefile.PL -apxs @APACHE2_APXS@ && $(MAKE) test + rm -rf $(distdir) + @echo "$(distdir).tar.gz is kosher." + +@@ -534,26 +534,26 @@ + test: lib_test env_test $(PERL_TEST) + + env_test: +- cd env; make test ++ cd env; $(MAKE) test + + lib_test: check + t/testall -v + + perl_install: +- cd glue/perl; make install ++ cd glue/perl; $(MAKE) install + + perl_test: +- cd glue/perl; make test ++ cd glue/perl; $(MAKE) test + + perl_glue: + cd glue/perl; @PERL@ ../../build/xsbuilder.pl run + cd glue/perl; @PERL@ Makefile.PL -apxs @APACHE2_APXS@ +- cd glue/perl; make ++ cd glue/perl; $(MAKE) + + @BUILD_HTTPD_TRUE@install-exec-local: httpd_install + + @BUILD_HTTPD_TRUE@httpd_install: +-@BUILD_HTTPD_TRUE@ cd @APACHE2_SRC@; make install ++@BUILD_HTTPD_TRUE@ cd @APACHE2_SRC@; $(MAKE) install + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: |