openbsd-ports/devel/uuid/patches/patch-perl_Makefile_PL
sthen 34692245c6 Rename the devel/uuid (ossp-uuid) libraries to ossp-uuid, as done in
various Linux distros. Earlier version ok ajacoutot@ (only a wantlib tweak
since then).
2013-06-19 14:34:50 +00:00

26 lines
1.1 KiB
Plaintext

$OpenBSD: patch-perl_Makefile_PL,v 1.1 2013/06/19 14:34:51 sthen Exp $
--- perl/Makefile.PL.orig Tue Jun 18 15:05:09 2013
+++ perl/Makefile.PL Tue Jun 18 15:05:50 2013
@@ -33,9 +33,9 @@ use Config;
use ExtUtils::MakeMaker;
# determine source directory
-my ($srcdir) = map { my $d = $_; $d =~ s/\/libuuid\.la$//; $d }
- grep { -f $_ } ("../libuuid.la", glob("../*/libuuid.la"))
- or die "no source directory found (where libuuid.la is located)";
+my ($srcdir) = map { my $d = $_; $d =~ s/\/libossp-uuid\.la$//; $d }
+ grep { -f $_ } ("../libossp-uuid.la", glob("../*/libossp-uuid.la"))
+ or die "no source directory found (where libossp-uuid.la is located)";
# determine extra build options
my $compat = 0;
@@ -47,7 +47,7 @@ WriteMakefile(
VERSION_FROM => 'uuid.pm',
ABSTRACT_FROM => 'uuid.pod',
PREREQ_PM => {},
- LIBS => [ "-L$srcdir/.libs -L$srcdir -luuid" ],
+ LIBS => [ "-L$srcdir/.libs -L$srcdir -lossp-uuid" ],
DEFINE => '',
INC => "-I. -I$srcdir",
PM => { 'uuid.pm' => '$(INST_LIBDIR)/uuid.pm',