diff options
author | joerg <joerg@pkgsrc.org> | 2010-02-26 18:11:08 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2010-02-26 18:11:08 +0000 |
commit | 8f061383e9ac20f3285fe4815a5963267ff31f1a (patch) | |
tree | 644d6aa139f5b9e73d35d52bbe19d44c666becb9 /www | |
parent | 09dc413bb06f9ed8fbe9a6c1c602cc46b18ce5c3 (diff) | |
download | pkgsrc-8f061383e9ac20f3285fe4815a5963267ff31f1a.tar.gz |
Do not pass "-I" to the linker.
Diffstat (limited to 'www')
-rw-r--r-- | www/p5-HTTP-GHTTP/distinfo | 3 | ||||
-rw-r--r-- | www/p5-HTTP-GHTTP/patches/patch-aa | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/www/p5-HTTP-GHTTP/distinfo b/www/p5-HTTP-GHTTP/distinfo index dcdcafd6c07..844d225dc28 100644 --- a/www/p5-HTTP-GHTTP/distinfo +++ b/www/p5-HTTP-GHTTP/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.1.1.1 2005/10/16 05:01:06 minskim Exp $ +$NetBSD: distinfo,v 1.2 2010/02/26 18:11:08 joerg Exp $ SHA1 (HTTP-GHTTP-1.07.tar.gz) = ea8db0a43f2a78f376db9b3ed238843c2a2bff94 RMD160 (HTTP-GHTTP-1.07.tar.gz) = b5c37619a4d218561c2496807e88e36b4305a799 Size (HTTP-GHTTP-1.07.tar.gz) = 8205 bytes +SHA1 (patch-aa) = 3fef15e154a84794a89aaf4d96883b660d2c08ed diff --git a/www/p5-HTTP-GHTTP/patches/patch-aa b/www/p5-HTTP-GHTTP/patches/patch-aa new file mode 100644 index 00000000000..06993fc82c3 --- /dev/null +++ b/www/p5-HTTP-GHTTP/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1 2010/02/26 18:11:08 joerg Exp $ + +--- Makefile.PL.orig 2010-02-26 17:56:40.000000000 +0000 ++++ Makefile.PL +@@ -41,7 +41,7 @@ OPT + + } + +-my $LINK = "$Config{ld} -o conftest $Config{ccflags} -I$Config{incpath} %s $Config{ldflags} conftest.c $Config{libs} %s %s"; ++my $LINK = "$Config{ld} -o conftest $Config{ccflags} %s $Config{ldflags} conftest.c $Config{libs} %s %s"; + + if ($config{LIBS} !~ /\-lghttp/) { + $config{LIBS} .= ' -lghttp'; |