From:             kemcline at au1 dot ibm dot com
Operating system: AIX 7.1
PHP version:      5.4.8
Package:          Apache2 related
Bug Type:         Bug
Bug description:config.guess file does not have AIX 7 defined, shared objects 
are not created

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

-- 
Edit bug report at https://bugs.php.net/bug.php?id=63451&edit=1
-- 
Try a snapshot (PHP 5.4):   
https://bugs.php.net/fix.php?id=63451&r=trysnapshot54
Try a snapshot (PHP 5.3):   
https://bugs.php.net/fix.php?id=63451&r=trysnapshot53
Try a snapshot (trunk):     
https://bugs.php.net/fix.php?id=63451&r=trysnapshottrunk
Fixed in SVN:               https://bugs.php.net/fix.php?id=63451&r=fixed
Fixed in release:           https://bugs.php.net/fix.php?id=63451&r=alreadyfixed
Need backtrace:             https://bugs.php.net/fix.php?id=63451&r=needtrace
Need Reproduce Script:      https://bugs.php.net/fix.php?id=63451&r=needscript
Try newer version:          https://bugs.php.net/fix.php?id=63451&r=oldversion
Not developer issue:        https://bugs.php.net/fix.php?id=63451&r=support
Expected behavior:          https://bugs.php.net/fix.php?id=63451&r=notwrong
Not enough info:            
https://bugs.php.net/fix.php?id=63451&r=notenoughinfo
Submitted twice:            
https://bugs.php.net/fix.php?id=63451&r=submittedtwice
register_globals:           https://bugs.php.net/fix.php?id=63451&r=globals
PHP 4 support discontinued: https://bugs.php.net/fix.php?id=63451&r=php4
Daylight Savings:           https://bugs.php.net/fix.php?id=63451&r=dst
IIS Stability:              https://bugs.php.net/fix.php?id=63451&r=isapi
Install GNU Sed:            https://bugs.php.net/fix.php?id=63451&r=gnused
Floating point limitations: https://bugs.php.net/fix.php?id=63451&r=float
No Zend Extensions:         https://bugs.php.net/fix.php?id=63451&r=nozend
MySQL Configuration Error:  https://bugs.php.net/fix.php?id=63451&r=mysqlcfg

Reply via email to