Index: ossp-pkg/uuid/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/ChangeLog,v rcsdiff -q -kk '-r1.61' '-r1.62' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/ChangeLog,v' 2>/dev/null --- ChangeLog 2004/11/18 15:57:00 1.61 +++ ChangeLog 2004/11/18 15:58:53 1.62 @@ -13,6 +13,10 @@ Changes between 1.1.0 and 1.1.1 (03-Nov-2004 to 18-Nov-2004) + o Apply the FreeBSD libc uuid_create() related workaround + in the Perl bindings also under FreeBSD 6.0-CURRENT. + [Ralf S. Engelschall] + o Fix --with-perl configure option processing: Perl is only required if --with-perl is used although we search for Perl always in order to provide the PERL variable substitution. Index: ossp-pkg/uuid/perl/Makefile.PL RCS File: /v/ossp/cvs/ossp-pkg/uuid/perl/Attic/Makefile.PL,v rcsdiff -q -kk '-r1.3' '-r1.4' -u '/v/ossp/cvs/ossp-pkg/uuid/perl/Attic/Makefile.PL,v' 2>/dev/null --- Makefile.PL 2004/11/03 18:30:49 1.3 +++ Makefile.PL 2004/11/18 15:58:54 1.4 @@ -46,7 +46,7 @@ NO_META => 1, # cruel hack to workaround the conflict between OSSP uuid's # uuid_create() function and one from FreeBSD's libc - (( "$Config{'osname'}$Config{'osvers'}" =~ m/^freebsd5\./ + (( "$Config{'osname'}$Config{'osvers'}" =~ m/^freebsd[56]\./ and $Config{'ld'} =~ m/cc$/ and -f "/usr/include/uuid.h") ? ( LDDLFLAGS => $Config{'lddlflags'} . ' -Wl,-Bsymbolic') : ()) );