|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-03-07 16:55 UTC] web at affenkrieger dot de
[2003-03-08 10:46 UTC] sniper@php.net
[2003-03-08 11:29 UTC] nils at affenkrieger dot de
[2003-03-08 11:37 UTC] web at affenkrieger dot de
[2003-03-08 11:42 UTC] sniper@php.net
[2003-03-08 11:46 UTC] web at affenkrieger dot de
[2003-03-10 04:29 UTC] web at affenkrieger dot de
[2003-03-10 10:45 UTC] sniper@php.net
[2003-03-23 13:14 UTC] jmdault at mandrakesoft dot com
[2003-03-24 03:19 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Dec 06 22:00:02 2025 UTC |
Hi, i tried to compile and use the Sybase-CT extension of PHP, but it won't work. Here we go: I have a Mandrake Linux 9.0 system with a fully configured Apache + PHP webserver. PHP 4.2.3 works fine as a Apache module. I downloaded the sources of PHP 4.2.3 from php.net and compiled the Sybase-CT extension as a shared object: $ ./configure --with-apxs=/path/to/apxs --with-sybase-ct=shared,/opt/sybase-11.9.2 The Sybase ASE 11.9.2 resides in /opt/sybase-11.9.2, the libs are available under /opt/sybase-11.9.2/lib Compilation works fine, but when i include the new .so in the PHP.ini and restart the Apache webserver, it throws this warning into the error_log: > PHP Warning: Unable to load dynamic library > '/usr/lib/php/extensions/sybase_ct.so' - > /opt/sybase-11.9.2/lib/libsybtcl.so: undefined symbol: > comn_free in Unknown on line 0 Trying to use Sybase functions in PHP result in segmentation faults. $ ldd sybase_ct.so libinsck.so => /opt/sybase-11.9.2/lib/libinsck.so (0x40008000) libsybtcl.so => /opt/sybase-11.9.2/lib/libsybtcl.so (0x4000b000) libintl.so.2 => /lib/libintl.so.2 (0x40038000) ^^^^^^^^^^^^^^^^ libcomn.so => /opt/sybase-11.9.2/lib/libcomn.so (0x40040000) libct.so => /opt/sybase-11.9.2/lib/libct.so (0x40098000) libcs.so => /opt/sybase-11.9.2/lib/libcs.so (0x400f5000) libc.so.6 => /lib/i686/libc.so.6 (0x40102000) /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x80000000) It seems that the sybase_ct.so has been linked to a wrong library in /lib, instead of $SYBASE/lib, and i found no way to tell the system, to use the Sybase one. /usr/lib/libintl.so & /lib/libintl.so.2 are symlinks to /lib/libintl.so.2.0.1 It seems to be a lib of the "gettext" program. Yes, $SYBASE/lib is added to /etc/ld.so.conf Yes, the Sybase lib are correctly listed by 'ldconfig -p' No, setting LD_LIBRARY_PATH doesn't affect the result of ldd No, normally LD_LIBRARY_PATH isn't set at all. DBD::Sybase works fine with Sybase ASE. Micheal Peppler wrote in sybase.public.ase.linux (news:xYJM84O5CHA.289@forums.sybase.com) that it might be a PHP compilation problem, and he knows a bit of that Sybase stuff ;-) Regards, Nils.