mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-10 04:50:03 -04:00
17 lines
469 B
Plaintext
17 lines
469 B
Plaintext
$NetBSD: patch-aa,v 1.1 2008/11/18 05:46:55 he Exp $
|
|
|
|
Trick perl into emitting use of -lgmp. Actual library
|
|
location will be handled via buildlink / wrapper.
|
|
|
|
--- Makefile.PL.orig 2008-11-18 05:39:39.000000000 +0000
|
|
+++ Makefile.PL
|
|
@@ -8,7 +8,7 @@ my $output = WriteMakefile
|
|
(
|
|
'NAME' => 'Math::GMP',
|
|
'VERSION_FROM' => 'lib/Math/GMP.pm',
|
|
- 'LIBS' => ['-lgmp'],
|
|
+ 'LIBS' => ["-L$ENV{PREFIX}/lib -lgmp"],
|
|
'NO_META' => 1,
|
|
);
|
|
|