Package: libmysqlclient15off Version: 5.0.24-3 Severity: normal This breaks programs that link to both libmysqlclient15off and libssl0.9.8. Simple test case:
$ cat test.cc #include <openssl/ssl.h> BIGNUM *bn = 0; const unsigned char src[] = {0x42, 0x42, 0x42, 0x42}; const int nel = sizeof(src); int main (void) { printf ("creating bn from array of size %i\n", nel); bn = BN_bin2bn (src, nel, 0); unsigned int u = BN_get_word (bn); printf ("u is %x\n", u); return 0; } $ g++ -W -Wall -o test -lstdc++ -lssl test.cc $ ./test creating bn from array of size 4 u is 42424242 $ g++ -W -Wall -o test -lstdc++ -lssl -lmysqlclient test.cc $ ./test creating bn from array of size 4 u is 0 -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.17-2-k7 Locale: LANG=sk_SK.UTF-8, LC_CTYPE=sk_SK.UTF-8 (charmap=UTF-8) Versions of packages libmysqlclient15off depends on: ii libc6 2.3.6.ds1-2 GNU C Library: Shared libraries ii mysql-common 5.0.24-3 mysql database common files (e.g. ii zlib1g 1:1.2.3-13 compression library - runtime libmysqlclient15off recommends no packages. -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]