* Updated test files from the Math::BigInt distribution * Updated bundled Devel::CheckLib from v0.92 to v0.93 * Math::BigInt::GMP now requires Math::BigInt v1.997 * Include "^MYMETA\.(yml|json)\z" in MANIFEST.SKIP. Whereas META.* are generated by the distribution author at packaging time, MYMETA.* are generated by the end user at configure time after any dynamic dependencies are known. * Changed Makefile.PL so that a "make dist" makes a META.yml and META.json. * Updated common test files from the Math::BigInt distribution.
17 lines
548 B
Text
17 lines
548 B
Text
$NetBSD: patch-aa,v 1.4 2012/02/24 16:29:43 adam Exp $
|
|
|
|
From p5-Math-GMP/patches/patch-aa:
|
|
|
|
Trick perl into emitting use of -lgmp. Actual library
|
|
location will be handled via buildlink / wrapper.
|
|
|
|
--- Makefile.PL.orig 2011-09-04 14:31:50.000000000 +0000
|
|
+++ Makefile.PL
|
|
@@ -28,6 +28,6 @@ WriteMakefile
|
|
Math::BigInt => 1.997,
|
|
XSLoader => 0.02,
|
|
},
|
|
- 'LIBS' => ['-lgmp'],
|
|
+ 'LIBS' => ["-L$ENV{PREFIX}/lib -lgmp"],
|
|
'SIGN' => 1,
|
|
);
|