diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-02-05 07:30:08 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-02-05 07:30:08 +0000 |
commit | 1e9f6566e26ee9b56cd64f3be578d60ca40e080f (patch) | |
tree | dbf51b38bc259b6c42bff0f47f0ef0462225c079 /dev-php/mod_php/files | |
parent | Added patch to fix compilation in gcc2 provided in bug #40370 by Tristan Hend... (diff) | |
download | historical-1e9f6566e26ee9b56cd64f3be578d60ca40e080f.tar.gz historical-1e9f6566e26ee9b56cd64f3be578d60ca40e080f.tar.bz2 historical-1e9f6566e26ee9b56cd64f3be578d60ca40e080f.zip |
amd64 fix #35956
Diffstat (limited to 'dev-php/mod_php/files')
-rw-r--r-- | dev-php/mod_php/files/mod_php-4.3.4-amd64hack.diff | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/dev-php/mod_php/files/mod_php-4.3.4-amd64hack.diff b/dev-php/mod_php/files/mod_php-4.3.4-amd64hack.diff new file mode 100644 index 000000000000..2e36b25b9a08 --- /dev/null +++ b/dev-php/mod_php/files/mod_php-4.3.4-amd64hack.diff @@ -0,0 +1,28 @@ +--- ltmain.sh_orig 2004-01-29 02:00:07.202890120 -0500 ++++ ltmain.sh 2004-01-29 02:05:30.628721920 -0500 +@@ -2586,6 +2586,12 @@ + set dummy $deplibs_check_method + file_magic_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"` + for a_deplib in $deplibs; do ++ ++ if test "x$a_deplib" = "x-lc-client" ; then ++ newdeplibs="$newdeplibs $a_deplib" ++ continue ++ fi ++ + name="`expr $a_deplib : '-l\(.*\)'`" + # If $name is empty we are operating on a -L argument. + if test -n "$name" && test "$name" != "0"; then +@@ -2645,6 +2651,12 @@ + set dummy $deplibs_check_method + match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"` + for a_deplib in $deplibs; do ++ ++ if test "x$a_deplib" = "x-lc-client" ; then ++ newdeplibs="$newdeplibs $a_deplib" ++ continue ++ fi ++ + name="`expr $a_deplib : '-l\(.*\)'`" + # If $name is empty we are operating on a -L argument. + if test -n "$name" && test "$name" != "0"; then |