summaryrefslogtreecommitdiff
path: root/www/apache13-fp/files/patch-fa
diff options
context:
space:
mode:
authorMario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>2001-12-30 22:12:02 +0000
committerMario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>2001-12-30 22:12:02 +0000
commit22f826c536a3dc7c122f5554c8bbd003015ac80a (patch)
tree94dd03a808f008e6e4a5f2edd19cb0e9eab5ee93 /www/apache13-fp/files/patch-fa
parento Fix deinstall problem: do not use variables before defining them (diff)
Remove files no longer necessary after Makefile rev 1.29
PR: 33319 Submitted by: maintainer
Notes
Notes: svn path=/head/; revision=52427
Diffstat (limited to 'www/apache13-fp/files/patch-fa')
-rw-r--r--www/apache13-fp/files/patch-fa52
1 files changed, 0 insertions, 52 deletions
diff --git a/www/apache13-fp/files/patch-fa b/www/apache13-fp/files/patch-fa
deleted file mode 100644
index 88797383aafe..000000000000
--- a/www/apache13-fp/files/patch-fa
+++ /dev/null
@@ -1,52 +0,0 @@
---- frontpage/version4.0/change_server.sh.orig Mon Aug 14 11:51:36 2000
-+++ frontpage/version4.0/change_server.sh Wed Mar 7 22:12:02 2001
-@@ -38,9 +38,12 @@
- {
- VERSION="4.0"
- PATH=".:/bin:/usr/bin:/sbin:/usr/sbin:/usr/ucb:/etc:/usr/bsd"
-- NEWHTTPDNEW="/usr/local/frontpage/version${VERSION}/apache-fp/httpd"
-- NEWHTTPDCOMPAT="/usr/local/frontpage/version${VERSION}/apache-fp/httpd.Compat"
-- DEFAULTHTTPD="/usr/local/apache/sbin/httpd"
-+ AP_TARGET=`PREFIX/sbin/apxs -q TARGET`
-+ NEWHTTPDNEW="PREFIX/sbin/${AP_TARGET}"
-+ NEWMODFPNEW="PREFIX/libexec/apache/mod_frontpage.so"
-+ NEWHTTPDCOMPAT="${NEWHTTPDNEW}"
-+ NEWMODFPCOMAPT="${NEWMODFPNEW}"
-+ DEFAULTHTTPD="PREFIX/sbin/${AP_TARGET}"
-
- case "`echo 'x\c'`" in
- 'x\c') echo="echo -n" nnl= ;; #BSD
-@@ -217,8 +220,22 @@
-
- clear
-
-+ if ($strings $httpdfile | $fgrep "etc/apache/${AP_TARGET}.conf" > /dev/null)
-+ then
-+ NEWHTTPD=$NEWHTTPDNEW
-+ NEWMODFP=$NEWMODFPNEW
-+ echo "Selected server uses FreeBSD directory structure:"
-+
-+ targetVersionNumber=`$httpdfile -v | sed 's%^.*Apache/\([0-9\.]*\).*%\1%' | head -1`
-+ targetFPVersionNumber=`$strings \`dirname \\\`dirname $httpdfile\\\`\`/libexec/apache/mod_frontpage.so | \
-+ $fgrep "FrontPage/" 2> /dev/null | sed -e 's%^.*FrontPage/\([0-9\.]*\).*%\1%' | tail -1`
-+
-+ sourceVersionNumber=`$NEWHTTPD -v | sed 's%^.*Apache/\([0-9\.]*\).*%\1%' | head -1`
-+ sourceFPVersionNumber=`$strings $NEWMODFP | $fgrep "FrontPage/" 2> /dev/null | \
-+ sed -e 's%^.*FrontPage/\([0-9\.]*\).*%\1%' | tail -1`
-+ else
-
-- if ($strings $httpdfile | $fgrep "etc/httpd.conf" > /dev/null)
-+ if ($strings $httpdfile | $fgrep "etc/${AP_TARGET}.conf" > /dev/null)
- then
- NEWHTTPD=$NEWHTTPDNEW
- echo "Selected server uses NEW directory structure:"
-@@ -235,7 +252,8 @@
- sourceVersionNumber=`$NEWHTTPD -v | sed 's%^.*Apache/\([0-9\.]*\).*%\1%' | head -1`
- sourceFPVersionNumber=`$strings $NEWHTTPD | $fgrep "FrontPage/" 2> /dev/null | sed -e '
- s%^.*FrontPage/\([0-9\.]*\).*%\1%' | tail -1`
--
-+ fi
-+
- echo
- echo "Currently running Apache/${targetVersionNumber} FrontPage/${nnl}"
- if [ "${targetFPVersionNumber}" = "" ]