aboutsummaryrefslogtreecommitdiff
path: root/www/apache20
diff options
context:
space:
mode:
authorPatrick Li <pat@FreeBSD.org>2002-04-14 20:37:28 +0000
committerPatrick Li <pat@FreeBSD.org>2002-04-14 20:37:28 +0000
commitff132cd6d84305a99e6457e194dcb8fbc52882c0 (patch)
tree6bb3d3648830ed5a9741945f00f6a3c3939efd34 /www/apache20
parent55cac08b3dc0112de63ef379bd78c3c4646dfab1 (diff)
downloadports-ff132cd6d84305a99e6457e194dcb8fbc52882c0.tar.gz
ports-ff132cd6d84305a99e6457e194dcb8fbc52882c0.zip
Notes
Diffstat (limited to 'www/apache20')
-rw-r--r--www/apache20/files/patch-srclib:apr:build:ltmain.sh49
1 files changed, 0 insertions, 49 deletions
diff --git a/www/apache20/files/patch-srclib:apr:build:ltmain.sh b/www/apache20/files/patch-srclib:apr:build:ltmain.sh
deleted file mode 100644
index db3756689e34..000000000000
--- a/www/apache20/files/patch-srclib:apr:build:ltmain.sh
+++ /dev/null
@@ -1,49 +0,0 @@
---- srclib/apr/build/ltmain.sh.orig Sun Apr 7 23:04:28 2002
-+++ srclib/apr/build/ltmain.sh Sun Apr 7 23:05:33 2002
-@@ -1959,14 +1959,14 @@
- if test $? -eq 0 ; then
- ldd_output=`ldd conftest`
- for i in $deplibs; do
-- name="`expr $i : '-l\(.*\)'`"
-+ name="`expr -- $i : '-l\(.*\)'`"
- # If $name is empty we are operating on a -L argument.
- if test "$name" != "" ; then
- libname=`eval \\$echo \"$libname_spec\"`
- deplib_matches=`eval \\$echo \"$library_names_spec\"`
- set dummy $deplib_matches
- deplib_match=$2
-- if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
-+ if test `expr -- "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
- newdeplibs="$newdeplibs $i"
- else
- droppeddeps=yes
-@@ -1984,7 +1984,7 @@
- # Error occured in the first compile. Let's try to salvage the situation:
- # Compile a seperate program for each library.
- for i in $deplibs; do
-- name="`expr $i : '-l\(.*\)'`"
-+ name="`expr -- $i : '-l\(.*\)'`"
- # If $name is empty we are operating on a -L argument.
- if test "$name" != "" ; then
- $rm conftest
-@@ -1996,7 +1996,7 @@
- deplib_matches=`eval \\$echo \"$library_names_spec\"`
- set dummy $deplib_matches
- deplib_match=$2
-- if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
-+ if test `expr -- "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
- newdeplibs="$newdeplibs $i"
- else
- droppeddeps=yes
-@@ -2022,9 +2022,9 @@
- ;;
- file_magic*)
- set dummy $deplibs_check_method
-- file_magic_regex="`expr \"$deplibs_check_method\" : \"$2 \(.*\)\"`"
-+ file_magic_regex="`expr -- \"$deplibs_check_method\" : \"$2 \(.*\)\"`"
- for a_deplib in $deplibs; do
-- name="`expr $a_deplib : '-l\(.*\)'`"
-+ name="`expr -- $a_deplib : '-l\(.*\)'`"
- # If $name is empty we are operating on a -L argument.
- if test "$name" != "" ; then
- libname=`eval \\$echo \"$libname_spec\"`