Sat, 06 Oct 2012 16:24:01 +0200
Update to new vendor software version and adjust patch code accordingly.
Unfortunately the vendor has apparently failed to properly test this
release which depends on missing object symbols in libsasl2.a(common.o):
undefined reference to `sasl_randcreate'
undefined reference to `sasl_mkchal'
undefined reference to `sasl_utf8verify'
undefined reference to `sasl_rand'
undefined reference to `sasl_churn'
undefined reference to `sasl_encode64'
undefined reference to `sasl_decode64'
undefined reference to `sasl_erasebuffer'
undefined reference to `sasl_randfree'
undefined reference to `sasl_strlower'
undefined reference to `get_fqhostname'
...yet to be patched.
michael@559 | 1 | Index: perl/Makefile.PL |
michael@559 | 2 | --- perl/Makefile.PL.orig 2007-01-01 19:13:18 +0100 |
michael@559 | 3 | +++ perl/Makefile.PL 2008-07-17 09:58:04 +0200 |
michael@559 | 4 | @@ -61,7 +61,7 @@ |
michael@559 | 5 | NO_META => 1, |
michael@559 | 6 | # cruel hack to workaround the conflict between OSSP uuid's |
michael@559 | 7 | # uuid_create() function and one from FreeBSD's libc |
michael@559 | 8 | - (( "$Config{'osname'}$Config{'osvers'}" =~ m/^freebsd[56]\./ |
michael@559 | 9 | + (( "$Config{'osname'}$Config{'osvers'}" =~ m/^freebsd[5-8]\./ |
michael@559 | 10 | and $Config{'ld'} =~ m/cc$/ and -f "/usr/include/uuid.h") ? |
michael@559 | 11 | ( LDDLFLAGS => $Config{'lddlflags'} . ' -Wl,-Bsymbolic') : ()) |
michael@559 | 12 | ); |