lib64 not handled correctly in ming extension
| Bug #34257 | lib64 not handled correctly in ming extension | ||||
|---|---|---|---|---|---|
| Submitted: | 2005-08-25 19:31 UTC | Modified: | 2005-08-26 00:11 UTC | ||
| From: | arekm at pld-linux dot org | Assigned: | helly (profile) | ||
| Status: | Closed | Package: | Compile Failure | ||
| PHP Version: | 5.0.* | OS: | Linux | ||
| Private report: | No | CVE-ID: | None | ||
[2005-08-25 19:31 UTC] arekm at pld-linux dot org
Description: ------------ When building ming extension configure script checks only /usr/lib (where lib is hardcoded) so no support for ie. amd64 platform when lib64 is used.
Patches
Pull Requests
History
AllCommentsChangesGit/SVN commits
[2005-08-25 19:32 UTC] arekm at pld-linux dot org
diff -urN php-5.1.0RC1.org/ext/ming/config.m4 php-5.1.0RC1/ext/ming/config.m4 --- php-5.1.0RC1.org/ext/ming/config.m4 2005-07-18 01:58:39.000000000 +0200 +++ php-5.1.0RC1/ext/ming/config.m4 2005-08-25 19:23:28.356268128 +0200 @@ -9,7 +9,7 @@ AC_CHECK_LIB(m, sin) for i in $PHP_MING /usr/local /usr; do - if test -f $i/lib/libming.$SHLIB_SUFFIX_NAME -o -f $i/lib/libming.a; then + if test -f $i/$PHP_LIBDIR/libming.$SHLIB_SUFFIX_NAME -o -f $i/$PHP_LIBDIR/libming.a; then MING_DIR=$i break fi[2005-08-25 22:50 UTC] helly@php.net
[2005-08-26 00:11 UTC] helly@php.net