diff options
author | brook <brook> | 2011-09-17 18:51:35 +0000 |
---|---|---|
committer | brook <brook> | 2011-09-17 18:51:35 +0000 |
commit | c83bfb62659ea297d643622acd2734d9d6130486 (patch) | |
tree | 0cb28366847793dd314ee205b65295a8eca35ddd /lang/perl5/files | |
parent | 15338682ff500d2946664872f461651a745e5df1 (diff) | |
download | pkgsrc-c83bfb62659ea297d643622acd2734d9d6130486.tar.gz |
The CPAN module DB_File tries to link against -ldb, but NetBSD does not
provide a separate library so compilation fails. Add a hints file to
correct the list of libraries used on NetBSD.
Diffstat (limited to 'lang/perl5/files')
-rw-r--r-- | lang/perl5/files/cpan-DB_File-hints-netbsd.pl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lang/perl5/files/cpan-DB_File-hints-netbsd.pl b/lang/perl5/files/cpan-DB_File-hints-netbsd.pl new file mode 100644 index 00000000000..aa2de3357cd --- /dev/null +++ b/lang/perl5/files/cpan-DB_File-hints-netbsd.pl @@ -0,0 +1,6 @@ +# $NetBSD: cpan-DB_File-hints-netbsd.pl,v 1.1 2011/09/17 18:51:36 brook Exp $ + +# cpan/DB_File: +# NetBSD does not provide -ldb, so avoid linking to it + +$self->{LIBS} = ['']; |