summaryrefslogtreecommitdiff
path: root/www/apache2/patches/patch-aa
blob: afb217301a4d0ce76d158173a9895d1a272538e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
$NetBSD: patch-aa,v 1.9 2003/05/25 08:58:10 epg Exp $

--- Makefile.in.orig	Mon Sep 30 10:34:40 2002
+++ Makefile.in
@@ -14,7 +14,7 @@ PROGRAM_DEPENDENCIES = \
 PROGRAMS        = $(PROGRAM_NAME)
 TARGETS         = $(PROGRAMS) $(shared_build) $(other_targets)
 PHONY_TARGETS   = $(srcdir)/buildmark.c
-INSTALL_TARGETS = install-conf install-htdocs install-error install-icons \
+INSTALL_TARGETS = install-htdocs install-error install-icons \
 	install-other install-cgi install-include install-suexec install-man \
 	install-build
 
@@ -71,6 +71,7 @@ install-conf:
 	    				< $$i; \
 	    		fi \
 	    	) > $(DESTDIR)$(sysconfdir)/$$i; \
+		if false; then \
 	    	chmod 0644 $(DESTDIR)$(sysconfdir)/$$i; \
 	    	file=`echo $$i|sed s/-std//`; \
 	    	if [ "$$file" = "httpd.conf" ]; then \
@@ -79,21 +80,22 @@ install-conf:
 	    	if test "$$file" != "$$i" && test ! -f $(DESTDIR)$(sysconfdir)/$$file; then \
 	    		$(INSTALL_DATA) $(DESTDIR)$(sysconfdir)/$$i $(DESTDIR)$(sysconfdir)/$$file; \
 	    	fi; \
+	    	fi; \
 	    done ; \
 	done ; \
 	if test -f "$(builddir)/envvars-std"; then \
 	    cp -p envvars-std $(DESTDIR)$(sbindir); \
+	    if false; then \
 	    if test ! -f $(DESTDIR)$(sbindir)/envvars; then \
 	        cp -p envvars-std $(DESTDIR)$(sbindir)/envvars ; \
 	    fi ; \
+	    fi ; \
 	fi
 
 install-build:
 	@echo Installing build system files 
 	@test -d $(DESTDIR)$(installbuilddir) || $(MKINSTALLDIRS) $(DESTDIR)$(installbuilddir) 
 	@cp build/*.mk $(DESTDIR)$(installbuilddir); \
-	sed 's#LIBTOOL = \(.*\)#LIBTOOL = $(SHELL) $(installbuilddir)/libtool $(LTFLAGS)#' \
-	    build/config_vars.mk > $(DESTDIR)$(installbuilddir)/config_vars.mk; \
 	cp $(top_srcdir)/build/instdso.sh $(DESTDIR)$(installbuilddir);
 
 htdocs-srcdir = $(top_srcdir)/docs/docroot
@@ -106,7 +108,7 @@ dox::
 	doxygen $(top_srcdir)/docs/doxygen.conf
 
 install-htdocs:
-	-@if [ -d $(DESTDIR)$(htdocsdir) ]; then \
+	-@if false; then \
            echo "[PRESERVING EXISTING HTDOCS SUBDIR: $(DESTDIR)$(htdocsdir)]"; \
         else \
 	    echo Installing HTML documents ; \
@@ -116,7 +118,7 @@ install-htdocs:
 	fi
 
 install-error:
-	-@if [ -d $(DESTDIR)$(errordir) ]; then \
+	-@if false; then \
            echo "[PRESERVING EXISTING ERROR SUBDIR: $(DESTDIR)$(errordir)]"; \
         else \
 	    echo Installing error documents ; \
@@ -126,7 +128,7 @@ install-error:
 	fi
 
 install-icons:
-	-@if [ -d $(DESTDIR)$(iconsdir) ]; then \
+	-@if false; then \
            echo "[PRESERVING EXISTING ICONS SUBDIR: $(DESTDIR)$(iconsdir)]"; \
         else \
 	    echo Installing icons ; \
@@ -136,7 +138,7 @@ install-icons:
 	fi
 
 install-cgi:
-	-@if [ -d $(DESTDIR)$(cgidir) ];then \
+	-@if false; then \
 	    echo "[PRESERVING EXISTING CGI SUBDIR: $(DESTDIR)$(cgidir)]"; \
 	else \
 	   echo Installing CGIs ; \