Edit report at http://bugs.php.net/bug.php?id=53540&edit=1
ID: 53540 Updated by: [email protected] Reported by: dputz at sybase dot com Summary: Correct Sybase 15.0 libraries not found by configure -Status: Assigned +Status: Closed Type: Bug Package: *Configuration Issues Operating System: Linux PHP Version: 5.3.4 Assigned To: thekid Block user comment: N Private report: N New Comment: This bug has been fixed in SVN. Snapshots of the sources are packaged every three hours; this change will be in the next snapshot. You can grab the snapshot at http://snaps.php.net/. Thank you for the report, and for helping us make PHP better. Previous Comments: ------------------------------------------------------------------------ [2011-06-08 10:14:51] [email protected] Automatic comment from SVN on behalf of thekid Revision: http://svn.php.net/viewvc/?view=revision&revision=311917 Log: - Changed output to be more verbose as to what libraries are used - Changed check for 64-bit vs 32-bit build environment to check sizeof(int) instead of assuming that if libsybct64.so exists, it must be 64-bit # Bug #53540: Correct Sybase 15.0 libraries not found by configure ------------------------------------------------------------------------ [2010-12-13 18:16:04] dputz at sybase dot com Description: ------------ The Makefile ends up with incorrect library names when using Sybase 15.0 or newer libraries. In the configure script, line 92631 reads: elif test -f $SYBASE_CT_INCDIR/libsybct64.so; then and should be elif test -f $SYBASE_CT_LIBDIR/libsybct64.so; then Line 93262 reads: elif test -f $SYBASE_CT_INCDIR/libsybct.so; then and should be elif test -f $SYBASE_CT_LIBDIR/libsybct.so; then I have tested the fix for the second line (32-bit version) and it worked correctly. ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/bug.php?id=53540&edit=1
