Edit report at https://bugs.php.net/bug.php?id=63451&edit=1

 ID:                 63451
 Updated by:         [email protected]
 Reported by:        kemcline at au1 dot ibm dot com
 Summary:            config.guess file does not have AIX 7 defined,
                     shared objects are not created
-Status:             Open
+Status:             Closed
 Type:               Bug
 Package:            Apache2 related
 Operating System:   AIX 7.1
 PHP Version:        5.4.8
 Block user comment: N
 Private report:     N

 New Comment:

Automatic comment on behalf of [email protected]
Revision: 
http://git.php.net/?p=php-src.git;a=commit;h=44a6fe84113c152fbd24ec3be6d75ef72c4fbd0f
Log: - Fixed bug #63451 (config.guess file does not have AIX 7 defined, shared 
objects are not created)


Previous Comments:
------------------------------------------------------------------------
[2012-11-07 03:51:20] 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


------------------------------------------------------------------------



-- 
Edit this bug report at https://bugs.php.net/bug.php?id=63451&edit=1

Reply via email to