- Fix Utmp.xs to compile on NetBSD (fixes PR pkg/42082) - Apply patch from RT#52369 (FreeBSD 7.2: compilation error and host support) see https://rt.cpan.org/Ticket/Display.html?id=52369
13 lines
268 B
Text
13 lines
268 B
Text
$NetBSD: patch-ab,v 1.1 2010/07/19 12:32:24 sno Exp $
|
|
|
|
--- Makefile.PL.orig 2006-10-13 12:39:33.000000000 +0000
|
|
+++ Makefile.PL
|
|
@@ -5,7 +5,7 @@ my (
|
|
$libs
|
|
);
|
|
|
|
-if ( $^O =~ /bsd/i )
|
|
+if ( $^O =~ m/bsd/i && $^O ne 'netbsd' )
|
|
{
|
|
$define = '-DNOUTFUNCS';
|
|
}
|