diff options
Diffstat (limited to 'www/apache20/files')
| -rw-r--r-- | www/apache20/files/apache.sh | 20 | ||||
| -rw-r--r-- | www/apache20/files/patch-Makefile.in | 123 | ||||
| -rw-r--r-- | www/apache20/files/patch-build:rules.mk | 14 | ||||
| -rw-r--r-- | www/apache20/files/patch-config.layout | 25 | ||||
| -rw-r--r-- | www/apache20/files/patch-configure | 50 | ||||
| -rw-r--r-- | www/apache20/files/patch-docs:conf:httpd-std.conf | 203 | ||||
| -rw-r--r-- | www/apache20/files/patch-include:httpd.h | 38 | ||||
| -rw-r--r-- | www/apache20/files/patch-srclib:apr-util:Makefile.in | 22 | ||||
| -rw-r--r-- | www/apache20/files/patch-srclib:apr:Makefile.in | 22 | ||||
| -rw-r--r-- | www/apache20/files/patch-support:apachectl.in | 24 | ||||
| -rw-r--r-- | www/apache20/files/patch-support:apxs.in | 11 | ||||
| -rw-r--r-- | www/apache20/files/patch-support:log_server_status.in | 24 | 
12 files changed, 0 insertions, 576 deletions
diff --git a/www/apache20/files/apache.sh b/www/apache20/files/apache.sh deleted file mode 100644 index ca4321814e5a..000000000000 --- a/www/apache20/files/apache.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh - -if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then -    echo "$0: Cannot determine the PREFIX" >&2 -    exit 1 -fi - -case "$1" in -start) -	[ -x ${PREFIX}/sbin/apachectl ] && ${PREFIX}/sbin/apachectl start > /dev/null && echo -n ' apache' -	;; -stop) -	[ -r /var/run/httpd.pid ] && ${PREFIX}/sbin/apachectl stop > /dev/null && echo -n ' apache' -	;; -*) -	echo "Usage: `basename $0` {start|stop}" >&2 -	;; -esac - -exit 0 diff --git a/www/apache20/files/patch-Makefile.in b/www/apache20/files/patch-Makefile.in deleted file mode 100644 index 341c8dfd087f..000000000000 --- a/www/apache20/files/patch-Makefile.in +++ /dev/null @@ -1,123 +0,0 @@ ---- Makefile.in.orig	Wed Apr  4 02:03:35 2001 -+++ Makefile.in	Sun Apr  8 06:06:58 2001 -@@ -16,7 +16,7 @@ - targets         = $(PROGRAMS) $(other_targets) - phony_targets   = $(srcdir)/buildmark.c - install_targets = install-conf install-htdocs install-icons install-other \ --	install-cgi install-include install-support install-suexec -+	install-cgi install-include install-support install-manpages install-suexec - DISTCLEAN_TARGETS  = include/config_auto.h modules.c aclocal.m4 buildmk.stamp \ - 	configure generated_lists include/ap_config_auto.h \ - 	include/ap_config_auto.h.in include/ap_config_path.h install-sh \ -@@ -28,25 +28,32 @@ - install-conf: - 	@echo Installing configuration files - 	@test -d $(sysconfdir) || $(MKINSTALLDIRS) $(sysconfdir) -+ - 	@cd docs/conf; \ - 	for i in mime.types magic; do \ --		$(INSTALL_DATA) $$i $(sysconfdir); \ -+		$(INSTALL_DATA) $$i $(sysconfdir)/$$i.default; \ -+		test -f $(sysconfdir)/$$i || cp -fp $(sysconfdir)/$$i.default $(sysconfdir)/$$i; \ - 	done; \ - 	for i in *-std*; do \ - 		sed -e 's#@@ServerRoot@@#$(prefix)#g' \ - 		    -e 's#@@Port@@#$(PORT)#g' \ --			< $$i > $(sysconfdir)/$$i; \ --		chmod 0644 $(sysconfdir)/$$i; \ -+			< $$i > $(sysconfdir)/$$i.default; \ -+		chmod 0644 $(sysconfdir)/$$i.default; \ -+		test -f $(sysconfdir)/$$i || cp -fp $(sysconfdir)/$$i.default $(sysconfdir)/$$i; \ - 		file=`echo $$i|sed s/-std//`; \ - 		if [ "$$file" = "httpd.conf" ]; then \ - 			file=`echo $$file|sed s/.*.conf/$(PROGRAM_NAME).conf/`; \ - 		fi; \ - 		if test "$$file" != "$$i" && test ! -f $(sysconfdir)/$$file; then \ --			$(INSTALL_DATA) $(sysconfdir)/$$i $(sysconfdir)/$$file; \ -+			$(INSTALL_DATA) $(sysconfdir)/$$i.default $(sysconfdir)/$$file.default; \ -+			test -f $(sysconfdir)/$$file || cp -fp $(sysconfdir)/$$file.default $(sysconfdir)/$$file; \ - 		fi; \ - 	done -  - htdocs-srcdir = docs/docroot -+htman-srcdir = docs/manual -+doc_prefix = $(prefix)/share/doc/apache -+man-srcdir = docs/man -  - docs:: - 	mkdir -p ./docs/api -@@ -57,11 +64,14 @@ -  - install-htdocs: - 	@echo Installing HTML documents --	@test -d $(htdocsdir) || $(MKINSTALLDIRS) $(htdocsdir) --	@test -d $(htdocs-srcdir) && (cd $(htdocs-srcdir) && cp -rp * $(htdocsdir)) --	@test -d $(htdocsdir)/manual || $(MKINSTALLDIRS) $(htdocsdir)/manual --	@test -d docs/manual && (cd docs/manual && cp -rp * $(htdocsdir)/manual) --	@(cd $(htdocsdir) && find . -name "CVS" -print | xargs rm -rf {} \;) -+	@test -d $(doc_prefix) || $(MKINSTALLDIRS) $(doc_prefix) -+	@test -d $(htdocs-srcdir) && (cd $(htdocs-srcdir) && cp -rp * $(doc_prefix)) -+	@test -d $(doc_prefix)/manual || $(MKINSTALLDIRS) $(doc_prefix)/manual -+	@test -d $(htman-srcdir) && (cd $(htman-srcdir) && cp -rp * $(doc_prefix)/manual) -+	@test -d $(htdocsdir) || ($(MKINSTALLDIRS) $(htdocsdir) && rm -rf $(htdocsdir)) -+	@test -d $(htdocsdir) || ln -s $(doc_prefix) $(htdocsdir) -+	@test -d $(htdocsdir).default || ln -s $(doc_prefix) $(htdocsdir).default -+	@(cd $(doc_prefix) && find . -name "CVS" -print | xargs rm -rf {} \;) -  - install-icons: - 	@echo Installing icons -@@ -71,24 +81,27 @@ -  - install-cgi: - 	@echo Installing CGIs --	@test -d $(cgidir) || $(MKINSTALLDIRS) $(cgidir) --	@(cd docs/cgi-examples && cp -rp * $(cgidir)) --	@(cd $(cgidir) && find . -name "CVS" -print | xargs rm -rf {} \;) -+	@test -d $(cgidir).default || $(MKINSTALLDIRS) $(cgidir).default -+	@(cd docs/cgi-examples && cp -rp * $(cgidir).default) -+	@test -d $(cgidir) || ln -s $(cgidir).default $(cgidir) -+	@(cd $(cgidir).default && find . -name "CVS" -print | xargs rm -rf {} \;) -  - install-support: - 	@echo Installing Support Binaries - 	@test -d $(bindir) || $(MKINSTALLDIRS) $(bindir) --	@cp -p $(srcdir)/support/httpd.exp $(bindir) -+	@test -d $(sbindir) || $(MKINSTALLDIRS) $(sbindir) -+	@test -d $(libexecdir) || $(MKINSTALLDIRS) $(libexecdir) -+	@cp -p $(srcdir)/support/httpd.exp $(libexecdir) - 	@cp -p $(builddir)/support/htpasswd $(bindir) - 	@cp -p $(builddir)/support/htdigest $(bindir) --	@cp -p $(builddir)/support/rotatelogs $(bindir) --	@cp -p $(builddir)/support/logresolve $(bindir) --	@cp -p $(builddir)/support/ab $(bindir) --	@cp -p $(builddir)/support/apachectl $(bindir) --	chmod 755 $(bindir)/apachectl -+	@cp -p $(builddir)/support/rotatelogs $(sbindir) -+	@cp -p $(builddir)/support/logresolve $(sbindir) -+	@cp -p $(builddir)/support/ab $(sbindir) -+	@cp -p $(builddir)/support/apachectl $(sbindir) -+	chmod 755 $(sbindir)/apachectl - 	@if test -f $(builddir)/support/apxs; then \ --	    cp -p $(builddir)/support/apxs $(bindir); \ --	    chmod 755 $(bindir)/apxs; \ -+	    cp -p $(builddir)/support/apxs $(sbindir); \ -+	    chmod 755 $(sbindir)/apxs; \ - 	fi -  -  -@@ -117,6 +130,15 @@ - 	@cp -p $(srcdir)/srclib/apr-util/include/*.h $(includedir) - 	@cp -p $(srcdir)/os/$(OS_DIR)/*.h $(includedir) - 	@chmod 644 $(includedir)/*.h -+ -+install-manpages: -+	@echo Installing manual pages -+	@test -d $(mandir) || $(MKINSTALLDIRS) $(mandir) -+	@for sect in 1 8; do \ -+		test -d $(mandir)/man$$sect || $(MKINSTALLDIRS) $(mandir)/man$$sect; \ -+		test -d $(man-srcdir) && (cd $(man-srcdir) && cp -p *.$$sect $(mandir)/man$$sect); \ -+	done; -+	@(cd $(mandir) && find . -name "CVS" -print | xargs rm -rf {} \;) -  - install-suexec: - 	@if test -f $(builddir)/support/suexec; then \ diff --git a/www/apache20/files/patch-build:rules.mk b/www/apache20/files/patch-build:rules.mk deleted file mode 100644 index d5058a91d8ca..000000000000 --- a/www/apache20/files/patch-build:rules.mk +++ /dev/null @@ -1,14 +0,0 @@ ---- build/rules.mk.orig	Sun Apr  8 01:06:22 2001 -+++ build/rules.mk	Sun Apr  8 01:05:46 2001 -@@ -172,9 +172,9 @@ - all-p: $(targets) - install-p: $(targets) $(install_targets) - 	@if test -n '$(PROGRAMS)'; then \ --		test -d $(bindir) || $(MKINSTALLDIRS) $(bindir); \ -+		test -d $(sbindir) || $(MKINSTALLDIRS) $(sbindir); \ - 		for i in "$(PROGRAMS)"; do \ --			$(INSTALL_PROGRAM) $$i $(bindir); \ -+			$(INSTALL_PROGRAM) $$i $(sbindir); \ - 		done; \ - 	fi -  diff --git a/www/apache20/files/patch-config.layout b/www/apache20/files/patch-config.layout deleted file mode 100644 index 75a700c6a805..000000000000 --- a/www/apache20/files/patch-config.layout +++ /dev/null @@ -1,25 +0,0 @@ ---- config.layout.orig	Sat Apr  7 04:19:44 2001 -+++ config.layout	Sat Apr  7 04:20:28 2001 -@@ -249,3 +249,22 @@ -     logfiledir:    $prefix/logs -     proxycachedir: $prefix/proxy - </Layout> -+ -+<Layout FreeBSD> -+    prefix:        /usr/local -+    exec_prefix:   $prefix -+    bindir:        $exec_prefix/bin -+    sbindir:       $exec_prefix/sbin -+    libexecdir:    $exec_prefix/libexec/apache -+    mandir:        $prefix/man -+    sysconfdir:    $prefix/etc/apache -+    datadir:       $prefix/www -+    iconsdir:      $datadir/icons -+    htdocsdir:     $datadir/data -+    cgidir:        $datadir/cgi-bin -+    includedir:    $prefix/include/apache -+    localstatedir: /var -+    runtimedir:    $localstatedir/run -+    logfiledir:    $localstatedir/log -+    proxycachedir: $datadir/proxy -+</Layout> diff --git a/www/apache20/files/patch-configure b/www/apache20/files/patch-configure deleted file mode 100644 index 2640a5466ac0..000000000000 --- a/www/apache20/files/patch-configure +++ /dev/null @@ -1,50 +0,0 @@ ---- configure.orig	Wed Apr  4 12:45:36 2001 -+++ configure	Sat Apr 14 18:25:08 2001 -@@ -3760,7 +3760,9 @@ -       -e "s/[ 	]*$/'/g" \ -       $srcdir/config.layout > $pldconf -   layout_name=$LAYOUT -+  prefix_backup=$prefix # poor patch to prevent override prefix arg with default -   . $pldconf -+  prefix=$prefix_backup -   rm $pldconf -   for var in prefix exec_prefix bindir sbindir libexecdir mandir \ -              sysconfdir datadir iconsdir htdocsdir cgidir includedir \ -@@ -3777,7 +3779,7 @@ -         ;; -     esac -     val=`echo $val | sed -e 's:\(.\)/*$:\1:'` --    val=`echo $val | sed -e 's:$\([a-z_]*\):$(\1):g'` -+    val=`echo $val | sed -e 's:$\([a-z_]*\):${\1}:g'` -     if test "$autosuffix" = "yes"; then -       if echo $val | grep apache >/dev/null; then -         addtarget=no -@@ -3788,7 +3790,7 @@ -         val="$val/apache" -       fi -     fi --    eval "$var='$val'" -+    eval "$var=\"$val\"" -   done -    -  -@@ -9678,6 +9680,10 @@ -  -    -   APACHE_VAR_SUBST="$APACHE_VAR_SUBST sysconfdir" -+  APACHE_VAR_SUBST="$APACHE_VAR_SUBST runtimedir" -+  APACHE_VAR_SUBST="$APACHE_VAR_SUBST logfiledir" -+  APACHE_VAR_SUBST="$APACHE_VAR_SUBST mandir" -+  APACHE_VAR_SUBST="$APACHE_VAR_SUBST libdir" -    -  -    -@@ -9814,7 +9820,7 @@ - EOF -  - cat >> confdefs.h <<EOF --#define SERVER_CONFIG_FILE "conf/$progname.conf" -+#define SERVER_CONFIG_FILE "etc/apache/$progname.conf" - EOF -  - cat >> confdefs.h <<EOF diff --git a/www/apache20/files/patch-docs:conf:httpd-std.conf b/www/apache20/files/patch-docs:conf:httpd-std.conf deleted file mode 100644 index f70a76bf17df..000000000000 --- a/www/apache20/files/patch-docs:conf:httpd-std.conf +++ /dev/null @@ -1,203 +0,0 @@ ---- docs/conf/httpd-std.conf.orig	Mon Mar 26 01:54:48 2001 -+++ docs/conf/httpd-std.conf	Sun Apr  8 04:26:54 2001 -@@ -64,7 +64,7 @@ - # PidFile: The file in which the server should record its process - # identification number when it starts. - # --PidFile logs/httpd.pid -+PidFile /var/run/httpd.pid -  - # - # ScoreBoardFile: File used to store internal server process information. -@@ -73,7 +73,7 @@ - # no two invocations of Apache share the same scoreboard file. - # - <IfModule !perchild.c> --ScoreBoardFile logs/apache_runtime_status -+ScoreBoardFile /var/run/apache_runtime_status - </IfModule> -  - # -@@ -182,6 +182,28 @@ - # - # Example: - # LoadModule foo_module modules/mod_foo.so -+#LoadModule auth_anon_module		libexec/apache/mod_auth_anon.so -+#LoadModule auth_db_module		libexec/apache/mod_auth_db.so -+#LoadModule auth_digest_module		libexec/apache/mod_auth_digest.so -+#LoadModule cern_meta_module		libexec/apache/mod_cern_meta.so -+#LoadModule cgid_module			libexec/apache/mod_cgid.so -+#LoadModule dav_module			libexec/apache/mod_dav.so -+#LoadModule dav_fs_module		libexec/apache/mod_dav_fs.so -+#LoadModule digest_module		libexec/apache/mod_digest.so -+#LoadModule expires_module		libexec/apache/mod_expires.so -+#LoadModule file_cache_module		libexec/apache/mod_file_cache.so -+#LoadModule headers_module		libexec/apache/mod_headers.so -+#LoadModule imap_module			libexec/apache/mod_imap.so -+#LoadModule include_module		libexec/apache/mod_include.so -+#LoadModule info_module			libexec/apache/mod_info.so -+#LoadModule mime_magic_module		libexec/apache/mod_mime_magic.so -+#LoadModule optional_fn_export_module	libexec/apache/mod_optional_fn_export.so -+#LoadModule optional_fn_import_module	libexec/apache/mod_optional_fn_import.so -+#LoadModule rewrite_module		libexec/apache/mod_rewrite.so -+#LoadModule speling_module		libexec/apache/mod_speling.so -+#LoadModule status_module		libexec/apache/mod_status.so -+#LoadModule unique_id_module		libexec/apache/mod_unique_id.so -+#LoadModule usertrack_module		libexec/apache/mod_usertrack.so -  - ### Section 2: 'Main' server configuration - # -@@ -221,7 +243,7 @@ - #  don't use Group #-1 on these systems! - # - User nobody --Group #-1 -+Group nogroup -  - # - # ServerAdmin: Your address, where problems with the server should be -@@ -249,7 +271,7 @@ - # documents. By default, all requests are taken from this directory, but - # symbolic links and aliases may be used to point to other locations. - # --DocumentRoot "@@ServerRoot@@/htdocs" -+DocumentRoot "@@ServerRoot@@/www/data" -  - # - # Each directory to which Apache has access, can be configured with respect -@@ -274,7 +296,7 @@ - # - # This should be changed to whatever you set DocumentRoot to. - # --<Directory "@@ServerRoot@@/htdocs"> -+<Directory "@@ServerRoot@@/www/data"> -  - # - # This may also be "None", "All", or any combination of "Indexes", -@@ -326,7 +348,22 @@ - # DirectoryIndex: Name of the file or files to use as a pre-written HTML - # directory index.  Separate multiple entries with spaces. - # --DirectoryIndex index.html -+<IfModule mod_php3.c> -+    <IfModule mod_php4.c> -+        DirectoryIndex index.php index.php3 index.html -+    </IfModule> -+    <IfModule !mod_php4.c> -+        DirectoryIndex index.php3 index.html -+    </IfModule> -+</IfModule> -+<IfModule !mod_php3.c> -+    <IfModule mod_php4.c> -+        DirectoryIndex index.php index.html -+    </IfModule> -+    <IfModule !mod_php4.c> -+        DirectoryIndex index.html -+    </IfModule> -+</IfModule> -  - # - # AccessFileName: The name of the file to look for in each directory -@@ -372,7 +409,7 @@ - # TypesConfig describes where the mime.types file (or equivalent) is - # to be found. - # --TypesConfig conf/mime.types -+TypesConfig etc/apache/mime.types -  - # - # DefaultType is the default MIME type the server will use for a document -@@ -397,7 +434,7 @@ - # module is part of the server. - # - <IfModule mod_mime_magic.c> --    MIMEMagicFile conf/magic -+    MIMEMagicFile etc/apache/magic - </IfModule> -  - # -@@ -417,7 +454,7 @@ - # logged here.  If you *do* define an error logfile for a <VirtualHost> - # container, that host's errors will be logged there and not here. - # --ErrorLog logs/error_log -+ErrorLog /var/log/httpd-error.log -  - # - # LogLevel: Control the number of messages logged to the error_log. -@@ -442,7 +479,7 @@ - # define per-<VirtualHost> access logfiles, transactions will be - # logged therein and *not* in this file. - # --CustomLog logs/access_log common -+#CustomLog logs/access_log common -  - # - # If you would like to have agent and referer logfiles, uncomment the -@@ -455,7 +492,7 @@ - # If you prefer a single logfile with access, agent, and referer information - # (Combined Logfile Format) you can use the following directive. - # --#CustomLog logs/access_log combined -+CustomLog /var/log/httpd-access.log combined -  - # - # Optionally add a line containing the server version and virtual host -@@ -474,9 +511,9 @@ - # require it to be present in the URL.  So "/icons" isn't aliased in this - # example, only "/icons/".. - # --Alias /icons/ "@@ServerRoot@@/icons/" -+Alias /icons/ "@@ServerRoot@@/www/icons/" -  --<Directory "@@ServerRoot@@/icons"> -+<Directory "@@ServerRoot@@/www/icons"> -     Options Indexes MultiViews -     AllowOverride None -     Order allow,deny -@@ -491,7 +528,7 @@ - # The same rules about trailing "/" apply to ScriptAlias directives as to - # Alias. - # --ScriptAlias /cgi-bin/ "@@ServerRoot@@/cgi-bin/" -+ScriptAlias /cgi-bin/ "@@ServerRoot@@/www/cgi-bin/" -  - <IfModule mod_cgid.c> - # -@@ -505,7 +542,7 @@ - # "@@ServerRoot@@/cgi-bin" should be changed to whatever your ScriptAliased - # CGI directory exists, if you have that configured. - # --<Directory "@@ServerRoot@@/cgi-bin"> -+<Directory "@@ServerRoot@@/www/cgi-bin"> -     AllowOverride None -     Options None -     Order allow,deny -@@ -657,6 +694,7 @@ - AddLanguage ja .ja - AddLanguage pl .po - AddLanguage kr .kr -+AddLanguage ko .kr - AddLanguage pt .pt - AddLanguage no .no - AddLanguage pt-br .pt-br -@@ -741,8 +779,17 @@ - # For example, the PHP3 module (not part of the Apache distribution - see - # http://www.php.net) will typically use: - # --#AddType application/x-httpd-php3 .php3 --#AddType application/x-httpd-php3-source .phps -+<IfModule mod_php3.c> -+    AddType application/x-httpd-php3 .php3 -+    AddType application/x-httpd-php3-source .php3s -+</IfModule> -+# -+# And for PHP 4.x, use: -+# -+<IfModule mod_php4.c> -+    AddType application/x-httpd-php .php -+    AddType application/x-httpd-php-source .phps -+</IfModule> -  - AddType application/x-tar .tgz -  diff --git a/www/apache20/files/patch-include:httpd.h b/www/apache20/files/patch-include:httpd.h deleted file mode 100644 index 9f8fdf34997b..000000000000 --- a/www/apache20/files/patch-include:httpd.h +++ /dev/null @@ -1,38 +0,0 @@ ---- include/httpd.h.orig	Sat Apr  7 09:11:19 2001 -+++ include/httpd.h	Sat Apr  7 09:08:43 2001 -@@ -127,7 +127,7 @@ - /* Set default for OS/2 file system */ - #define DOCUMENT_LOCATION  HTTPD_ROOT "/docs" - #else --#define DOCUMENT_LOCATION  HTTPD_ROOT "/htdocs" -+#define DOCUMENT_LOCATION  HTTPD_ROOT "/www/data" - #endif - #endif /* DOCUMENT_LOCATION */ -  -@@ -144,7 +144,7 @@ - #if defined(OS2) || defined(WIN32) - #define DEFAULT_ERRORLOG "logs/error.log" - #else --#define DEFAULT_ERRORLOG "logs/error_log" -+#define DEFAULT_ERRORLOG "/var/log/httpd-error.log" - #endif - #endif /* DEFAULT_ERRORLOG */ -  -@@ -160,7 +160,7 @@ -  - /* The name of the server config file */ - #ifndef SERVER_CONFIG_FILE --#define SERVER_CONFIG_FILE "conf/httpd.conf" -+#define SERVER_CONFIG_FILE "etc/apache/httpd.conf" - #endif -  - /* Whether we should enable rfc1413 identity checking */ -@@ -247,7 +247,7 @@ -  - /* The name of the MIME types file */ - #ifndef AP_TYPES_CONFIG_FILE --#define AP_TYPES_CONFIG_FILE "conf/mime.types" -+#define AP_TYPES_CONFIG_FILE "etc/apache/mime.types" - #endif -  - /* diff --git a/www/apache20/files/patch-srclib:apr-util:Makefile.in b/www/apache20/files/patch-srclib:apr-util:Makefile.in deleted file mode 100644 index 652901dae28a..000000000000 --- a/www/apache20/files/patch-srclib:apr-util:Makefile.in +++ /dev/null @@ -1,22 +0,0 @@ ---- srclib/apr-util/Makefile.in.orig	Wed Apr  4 12:27:42 2001 -+++ srclib/apr-util/Makefile.in	Sun Apr  8 03:34:15 2001 -@@ -22,8 +22,8 @@ -  - prefix=@prefix@ - exec_prefix=@exec_prefix@ --libdir=@libdir@ --includedir=@includedir@ -+libdir=$(prefix)/lib -+includedir=$(prefix)/include/apache -  - delete-lib: - 	@if test -f $(TARGET_LIB); then \ -@@ -43,7 +43,7 @@ - 	if [ ! -d $(libdir) ]; then \ - 	    @APR_SOURCE_DIR@/build/mkdir.sh $(libdir); \ - 	fi; \ --	libtool --mode=install cp $(TARGET_LIB) $(libdir) -+	../../libtool --mode=install cp $(TARGET_LIB) $(libdir) -  - $(TARGET_LIB): - 	@objects="`find $(SUBDIRS) -name '*.lo'`" ; \ diff --git a/www/apache20/files/patch-srclib:apr:Makefile.in b/www/apache20/files/patch-srclib:apr:Makefile.in deleted file mode 100644 index 4c0292f73af8..000000000000 --- a/www/apache20/files/patch-srclib:apr:Makefile.in +++ /dev/null @@ -1,22 +0,0 @@ ---- srclib/apr/Makefile.in.orig	Wed Apr  4 05:32:06 2001 -+++ srclib/apr/Makefile.in	Sun Apr  8 03:33:43 2001 -@@ -37,8 +37,8 @@ -  - prefix=@prefix@ - exec_prefix=@exec_prefix@ --libdir=@libdir@ --includedir=@includedir@ -+libdir=$(prefix)/lib -+includedir=$(prefix)/include/apache -  - delete-lib: - 	@if test -f $(TARGET_LIB); then \ -@@ -58,7 +58,7 @@ - 	if [ ! -d $(libdir) ]; then \ - 	    ./build/mkdir.sh $(libdir); \ - 	fi; \ --	libtool --mode=install cp $(TARGET_LIB) $(libdir) -+	../../libtool --mode=install cp $(TARGET_LIB) $(libdir) -  - $(TARGET_LIB): - 	@for i in $(SUBDIRS); do objects="$$objects $$i/*.lo"; done ; \ diff --git a/www/apache20/files/patch-support:apachectl.in b/www/apache20/files/patch-support:apachectl.in deleted file mode 100644 index 739a622d74de..000000000000 --- a/www/apache20/files/patch-support:apachectl.in +++ /dev/null @@ -1,24 +0,0 @@ ---- support/apachectl.in.orig	Fri Feb 16 13:26:53 2001 -+++ support/apachectl.in	Sun Apr  8 03:49:34 2001 -@@ -25,10 +25,10 @@ - # --------------------                              -------------------- - #  - # the path to your PID file --PIDFILE=@prefix@/logs/httpd.pid -+PIDFILE=/var/run/httpd.pid - # - # the path to your httpd binary, including options if necessary --HTTPD='@prefix@/bin/httpd' -+HTTPD='@prefix@/sbin/httpd' - # - # a command that outputs a formatted text version of the HTML at the - # url given on the command line.  Designed for lynx, however other -@@ -41,6 +41,8 @@ - # - # --------------------                              -------------------- - # ||||||||||||||||||||   END CONFIGURATION SECTION  |||||||||||||||||||| -+ -+eval `limits -e -C daemon` >/dev/null 2>&1 -  - ERROR=0 - ARGV="$@" diff --git a/www/apache20/files/patch-support:apxs.in b/www/apache20/files/patch-support:apxs.in deleted file mode 100644 index 70ca84075675..000000000000 --- a/www/apache20/files/patch-support:apxs.in +++ /dev/null @@ -1,11 +0,0 @@ ---- support/apxs.in.orig	Sat Apr  7 11:56:15 2001 -+++ support/apxs.in	Sat Apr  7 11:55:28 2001 -@@ -73,7 +73,7 @@ - my $prefix            = "$CFG_PREFIX"; - my $CFG_EXEC_PREFIX   = "@exec_prefix@"; - my $exec_prefix       = "$CFG_EXEC_PREFIX"; --my $CFG_SBINDIR       = "@bindir@"; -+my $CFG_SBINDIR       = "@sbindir@"; - my $CFG_INCLUDEDIR    = "@includedir@"; - my $CFG_LIBEXECDIR    = "@libexecdir@"; - my $CFG_SYSCONFDIR    = "@sysconfdir@"; diff --git a/www/apache20/files/patch-support:log_server_status.in b/www/apache20/files/patch-support:log_server_status.in deleted file mode 100644 index 3549aa89f8c5..000000000000 --- a/www/apache20/files/patch-support:log_server_status.in +++ /dev/null @@ -1,24 +0,0 @@ ---- support/log_server_status.in.orig	Mon Mar 12 08:40:47 2001 -+++ support/log_server_status.in	Sat Apr  7 05:45:42 2001 -@@ -63,10 +63,10 @@ - # - require 'sys/socket.ph'; -  --$wherelog = "/var/log/graph/";  # Logs will be like "/var/log/graph/19960312" -+$wherelog = "/var/log/httpd-status-"; - $server = "localhost";          # Name of server, could be "www.foo.com" - $port = "80";                   # Port on server --$request = "/status/?auto";     # Request to send -+$request = "/server-status/?auto";     # Request to send -  - sub tcp_connect - { -@@ -96,7 +96,7 @@ - 	chomp($date); - 	($day,$time)=split(/:/,$date); - 	$res=&tcp_connect($server,$port); --	open(OUT,">>$wherelog$day"); -+	open(OUT,">>$wherelog$day.log"); - 	if ($res) { - 		print OUT "$time:-1:-1:-1:-1:$res\n"; - 		exit 1;  | 
