summaryrefslogtreecommitdiff
path: root/textproc/libxml2/files/patch-ac
diff options
context:
space:
mode:
authorAde Lovett <ade@FreeBSD.org>2000-11-15 16:29:26 +0000
committerAde Lovett <ade@FreeBSD.org>2000-11-15 16:29:26 +0000
commit5ab6c2fc42d15dd3bc0c5e1d9d25f2cad52176da (patch)
treefb6639d778a32280b09790395de52e9074248843 /textproc/libxml2/files/patch-ac
parentGently persuade apache13-modssl to install in the same filesystem (diff)
Persuade libxml2 to install into different filesystem space than
libxml (cursing the author all the way for having two incompatible versions of their software do this). This is still not 100%, but a step in the right direction for those ports that need libxml2, but also have to co-exist with GNOME (which, for the moment, uses libxml exclusively). Max will be committing a port shortly to show exactly how to tell a port to use libxml2 under this new scheme of things. As and when GNOME (the primary consumer of libxml) moves over to libxml2, these hacks will be reverted, and similar hacks put in to libxml until it dies a quiet death. Submitted by: sobomax
Diffstat (limited to 'textproc/libxml2/files/patch-ac')
-rw-r--r--textproc/libxml2/files/patch-ac22
1 files changed, 22 insertions, 0 deletions
diff --git a/textproc/libxml2/files/patch-ac b/textproc/libxml2/files/patch-ac
new file mode 100644
index 000000000000..1b305d6e71d3
--- /dev/null
+++ b/textproc/libxml2/files/patch-ac
@@ -0,0 +1,22 @@
+--- include/Makefile.in 2000/11/15 09:53:28 1.1
++++ include/Makefile.in 2000/11/15 10:12:23
+@@ -143,8 +143,8 @@
+ $(mkinstalldirs) $(DESTDIR)$(xmlincdir)
+ @list='$(xmlinc_HEADERS)'; for p in $$list; do \
+ if test -f "$$p"; then d= ; else d="$(srcdir)/"; fi; \
+- echo " $(INSTALL_DATA) $$d$$p $(DESTDIR)$(xmlincdir)/$$p"; \
+- $(INSTALL_DATA) $$d$$p $(DESTDIR)$(xmlincdir)/$$p; \
++ echo " $(INSTALL_DATA) $$d$$p $(DESTDIR)$(xmlincdir)/`echo $$p | sed 's|libxml/|libxml2/|'`"; \
++ $(INSTALL_DATA) $$d$$p $(DESTDIR)$(xmlincdir)/`echo $$p | sed 's|libxml/|libxml2/|'`; \
+ done
+
+ uninstall-xmlincHEADERS:
+@@ -266,7 +266,7 @@
+
+
+ install-exec-hook:
+- $(mkinstalldirs) $(DESTDIR)$(xmlincdir) $(DESTDIR)$(xmlincdir)/libxml
++ $(mkinstalldirs) $(DESTDIR)$(xmlincdir) $(DESTDIR)$(xmlincdir)/libxml2
+
+ # 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.