blob: 9d1115ce54eacbbecd602d4fd42322583f654043 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
--- Makefile.PL.orig 2014-02-21 16:08:09 UTC
+++ Makefile.PL
@@ -121,6 +121,7 @@ if (!defined($curl_h)) {
open (H, "<", $curl_h) or die ("Cannot open $curl_h: ".$!);
while(<H>) {
if (/^#define (CURL[A-Za-z0-9_]*)/) {
+ next if ($1 eq 'CURL_DID_MEMORY_FUNC_TYPEDEFS' || $1 eq 'CURL_STRICTER' || $1 eq 'CURLINC_CURL_H' );
push @syms, $1;
}
}
|