config.guess file does not have AIX 7 defined, shared objects are not created
| Bug #63451 | config.guess file does not have AIX 7 defined, shared objects are not created | ||||
|---|---|---|---|---|---|
| Submitted: | 2012-11-07 03:51 UTC | Modified: | 2012-11-07 08:43 UTC | ||
| From: | kemcline at au1 dot ibm dot com | Assigned: | |||
| Status: | Closed | Package: | Apache2 related | ||
| PHP Version: | 5.4.8 | OS: | AIX 7.1 | ||
| Private report: | No | CVE-ID: | None | ||
[2012-11-07 03:51 UTC] kemcline at au1 dot ibm dot com
Description:
------------
The config.guess is not written to have support for AIX 7. This causes the configure script to make shared libraries not available.
The AIX456 line in the system type case statement is currently defined as:
*:AIX:*:[456])
The line needs to be changed to include the 7 for AIX 7. In the aclocal.m4 file, the similar line for aix is aix[[4-9]]*), planning for future versions of AIX.
The result you will see without the 7 in the config.guess file is:
checking whether the cc -qlanglvl=extc89 linker (/usr/bin/ld) supports shared libraries... no
As a workaround, this can be resolved by adding a 7 to the line:
*:AIX:*:[4567])
Expected result:
----------------
checking whether the cc -qlanglvl=extc89 linker (/usr/bin/ld) supports shared libraries... yes
Actual result:
--------------
checking whether the cc -qlanglvl=extc89 linker (/usr/bin/ld) supports shared libraries... no
Patches
Pull Requests
History
AllCommentsChangesGit/SVN commits