summaryrefslogtreecommitdiff
path: root/www/apache22
diff options
context:
space:
mode:
authorWill Andrews <will@FreeBSD.org>2001-04-17 17:26:55 +0000
committerWill Andrews <will@FreeBSD.org>2001-04-17 17:26:55 +0000
commitd0166f0dd30091718b27a3a844f663f01924a97d (patch)
treef4fe77c20bd8af0e42ec58eeb04086ca687fc9ca /www/apache22
parentSwitch to .bz2 distfile to save a bit of space (diff)
Fix problems with configure bug that doesn't evaluate variables for
support/*.in. PR: 26570 Submitted by: maintainer Found by: mharo
Notes
Notes: svn path=/head/; revision=41579
Diffstat (limited to 'www/apache22')
-rw-r--r--www/apache22/Makefile1
-rw-r--r--www/apache22/files/patch-configure20
2 files changed, 20 insertions, 1 deletions
diff --git a/www/apache22/Makefile b/www/apache22/Makefile
index a549fead3c9e..5ce2baf3327c 100644
--- a/www/apache22/Makefile
+++ b/www/apache22/Makefile
@@ -7,6 +7,7 @@
PORTNAME= apache
PORTVERSION= 2.0.16
+PORTREVISION= 1
CATEGORIES= www ipv6
MASTER_SITES= http://httpd.apache.org/dist/httpd/ \
http://www.cybernic.com/mirror/dist/httpd/ \
diff --git a/www/apache22/files/patch-configure b/www/apache22/files/patch-configure
index 5419d37c531c..2640a5466ac0 100644
--- a/www/apache22/files/patch-configure
+++ b/www/apache22/files/patch-configure
@@ -1,5 +1,5 @@
--- configure.orig Wed Apr 4 12:45:36 2001
-+++ configure Sun Apr 8 03:25:31 2001
++++ configure Sat Apr 14 18:25:08 2001
@@ -3760,7 +3760,9 @@
-e "s/[ ]*$/'/g" \
$srcdir/config.layout > $pldconf
@@ -10,6 +10,24 @@
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 @@