diff options
author | Palle Girgensohn <girgen@FreeBSD.org> | 2005-07-27 01:59:42 +0000 |
---|---|---|
committer | Palle Girgensohn <girgen@FreeBSD.org> | 2005-07-27 01:59:42 +0000 |
commit | 4efba361e649a33052f3704a63a93b5d12dfbc0a (patch) | |
tree | 1b25b660f33c6e450330b7f31a4b5822be7be6d0 /www/mod_jk2/files/patch-Makefile-in | |
parent | - Update WWW: line (diff) |
JK2 is officially deprecated due to lack of developer interest. See
http://jakarta.apache.org/tomcat/connectors-doc/news/20041100.html#20041115.1
Upgrading to last released version, 2.0.4.
ports/67839 is fixed, probably also ports/71479.
ports/74622 handles configuration problems; I will not address this PR
fully since the software is deprecated, although I did add some
helping notes, and the port now installs the sample config file.
PR: ports/67839, ports/71479, ports/74622
Approved by: seanc, ade (implicit)
Diffstat (limited to 'www/mod_jk2/files/patch-Makefile-in')
-rw-r--r-- | www/mod_jk2/files/patch-Makefile-in | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/www/mod_jk2/files/patch-Makefile-in b/www/mod_jk2/files/patch-Makefile-in new file mode 100644 index 000000000000..ac3dddb8e32a --- /dev/null +++ b/www/mod_jk2/files/patch-Makefile-in @@ -0,0 +1,27 @@ +--- Makefile.in~ Wed Mar 24 14:33:15 2004 ++++ Makefile.in Thu Sep 9 04:06:21 2004 +@@ -8,6 +8,8 @@ + + clean-apxs: @APR_CLEAN@ jk2-clean-apxs + ++install: jk2-install ++ + install-apxs: jk2-install-apxs + + jk2-build: +@@ -25,6 +27,15 @@ + echo "Making $$target in $$i"; \ + if test "$$i" != "."; then \ + (cd $$i && $(MAKE) -f Makefile.apxs) || exit 1; \ ++ fi; \ ++ done; ++ ++jk2-install: ++ list='@WEBSERVERS@'; \ ++ for i in $$list; do \ ++ echo "Making $$target in $$i"; \ ++ if test "$$i" != "."; then \ ++ (cd $$i && $(MAKE) install) || exit 1; \ + fi; \ + done; + |