php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #53540 Correct Sybase 15.0 libraries not found by configure
Submitted: 2010-12-13 18:16 UTC Modified: 2011-06-08 10:15 UTC
From: dputz at sybase dot com Assigned: thekid (profile)
Status: Closed Package: *Configuration Issues
PHP Version: 5.3.4 OS: Linux
Private report: No CVE-ID: None
 [2010-12-13 18:16 UTC] 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.


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2010-12-13 21:33 UTC] felipe@php.net
-Status: Open +Status: Assigned -Assigned To: +Assigned To: thekid
 [2011-06-08 10:14 UTC] thekid@php.net
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
 [2011-06-08 10:15 UTC] thekid@php.net
-Status: Assigned +Status: Closed
 [2011-06-08 10:15 UTC] thekid@php.net
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.


 [2011-06-11 20:55 UTC] thekid@php.net
Automatic comment from SVN on behalf of thekid
Revision: http://svn.php.net/viewvc/?view=revision&revision=312059
Log: - MFH Bugfix for bug #53540
 [2011-06-11 20:55 UTC] thekid@php.net
Automatic comment from SVN on behalf of thekid
Revision: http://svn.php.net/viewvc/?view=revision&revision=312060
Log: - MFH Bugfix for bug #53540
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 23 18:01:34 2024 UTC