diff options
author | manu <manu@pkgsrc.org> | 2009-12-01 08:43:52 +0000 |
---|---|---|
committer | manu <manu@pkgsrc.org> | 2009-12-01 08:43:52 +0000 |
commit | 231692b82e40d42d526151084d9c951aeb234474 (patch) | |
tree | d431b554d288d0610ed52b9f2932a8dec0f20f33 | |
parent | b5370b2d277db536746f054294b8184617c1d0d2 (diff) | |
download | pkgsrc-231692b82e40d42d526151084d9c951aeb234474.tar.gz |
Bugfix: NetBSD does not need -ldl n LIBS for dlopen()
This did not prevented xmlsec1 to build but caused trouble in packages
depending on this one
-rw-r--r-- | security/xmlsec1/Makefile | 3 | ||||
-rw-r--r-- | security/xmlsec1/distinfo | 3 | ||||
-rw-r--r-- | security/xmlsec1/patches/patch-ad | 9 |
3 files changed, 13 insertions, 2 deletions
diff --git a/security/xmlsec1/Makefile b/security/xmlsec1/Makefile index b8a5c51ce5f..a5c92b07736 100644 --- a/security/xmlsec1/Makefile +++ b/security/xmlsec1/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.17 2009/10/30 19:32:11 tnn Exp $ +# $NetBSD: Makefile,v 1.18 2009/12/01 08:43:52 manu Exp $ # DISTNAME= xmlsec1-1.2.13 +PKGREVISION= 1 CATEGORIES= security MASTER_SITES= http://www.aleksey.com/xmlsec/download/ diff --git a/security/xmlsec1/distinfo b/security/xmlsec1/distinfo index c1330c66944..3d0a41346d1 100644 --- a/security/xmlsec1/distinfo +++ b/security/xmlsec1/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.5 2009/10/30 19:32:11 tnn Exp $ +$NetBSD: distinfo,v 1.6 2009/12/01 08:43:52 manu Exp $ SHA1 (xmlsec1-1.2.13.tar.gz) = 7953be1ba966fe7ca379839631299bd6963c418f RMD160 (xmlsec1-1.2.13.tar.gz) = 4743dbf406cc63db60ececb3257967398a1416a6 Size (xmlsec1-1.2.13.tar.gz) = 1576354 bytes SHA1 (patch-ab) = 34856f6c7d810f9bd51b871ccb870b28f05b1fd8 SHA1 (patch-ac) = 550f37db0db36ce5fa88c6c0d0acd6725aa69470 +SHA1 (patch-ad) = 99d400098b41e1ae0d9e89efcd591ece21552f07 diff --git a/security/xmlsec1/patches/patch-ad b/security/xmlsec1/patches/patch-ad new file mode 100644 index 00000000000..65ab16f2b3e --- /dev/null +++ b/security/xmlsec1/patches/patch-ad @@ -0,0 +1,9 @@ +$NetBSD: patch-ad,v 1.1 2009/12/01 08:43:52 manu Exp $ +--- configure.orig 2009-11-30 22:21:32.000000000 +0100 ++++ configure 2009-11-30 22:23:40.000000000 +0100 +@@ -24212,4 +24212,5 @@ + *-*-mingw*) openssl_exlibs=;; + *-*-osf5*) openssl_exlibs=;; ++ *-*-netbsd*) openssl_exlibs=;; + #FIXME: check if lib "dl" is required + *) openssl_exlibs=-ldl;; |