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

 ID:                 52408
 Updated by:         ka...@php.net
 Reported by:        dmhilker at gmail dot com
 Summary:            Configure script incorrectly assumes that all HP-UX
                     OS's use .sl extensions
-Status:             Open
+Status:             Analyzed
 Type:               Bug
 Package:            Compile Failure
 Operating System:   HP-UX 11.31
 PHP Version:        5.3.3
 Block user comment: N



Previous Comments:
------------------------------------------------------------------------
[2010-08-07 21:22:35] ka...@php.net

Hi



I belive we should have a check for the newer versions of HPUX and
override those values to keep BC with older versions, however Im not
familiar with the Unix build system, but if you can provide such a patch
one of us will commit it

------------------------------------------------------------------------
[2010-07-22 17:21:08] dmhilker at gmail dot com

Description:
------------
The php configure script assumes that all hp-ux os's use .sl extension
for shared libraries.  HP-UX 11.31 now uses .so extension for shared
libraries.  If the configure script is used on HP-UX 11.31, it will not
find the shared libraries because it is always looking for the .sl
extension.  The configure script will have to test what version of hpux
is being used in order to set the configure shlib suffix name variables
correctly.





Test script:
---------------
Snip from configure:

 *hpux*)

   SHLIB_SUFFIX_NAME=sl

   SHLIB_DL_SUFFIX_NAME=sl



I changed to this to get it to work:





 *hpux*)

   SHLIB_SUFFIX_NAME=so

   SHLIB_DL_SUFFIX_NAME=so







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



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

Reply via email to