diff options
author | joerg <joerg> | 2007-03-07 22:02:25 +0000 |
---|---|---|
committer | joerg <joerg> | 2007-03-07 22:02:25 +0000 |
commit | d14441ddbe80a359f0307d6354dc9e25e28222e1 (patch) | |
tree | 765dda4f84db90d580467a578df5d5eaf786ba99 | |
parent | c627d25a0b0e6f9cc2d3b31b3173875083a41841 (diff) | |
download | pkgsrc-d14441ddbe80a359f0307d6354dc9e25e28222e1.tar.gz |
Fix build on DragonFly as RNG_RNGInit was calling itself due to bad
linkage. I love platform dependent magic in each Makefile.
-rw-r--r-- | mail/thunderbird/distinfo | 3 | ||||
-rw-r--r-- | mail/thunderbird/patches/patch-dw | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/mail/thunderbird/distinfo b/mail/thunderbird/distinfo index 02bcaa3ca7a..2644fcee2a8 100644 --- a/mail/thunderbird/distinfo +++ b/mail/thunderbird/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.35 2007/03/02 14:12:24 ghen Exp $ +$NetBSD: distinfo,v 1.36 2007/03/07 22:02:25 joerg Exp $ SHA1 (thunderbird-1.5.0.10-source.tar.bz2) = a6467c946f9e668bcf7b3a06dcaeceb601b98fce RMD160 (thunderbird-1.5.0.10-source.tar.bz2) = 926484cd1880e7921bf10ba0774064e43acc9283 @@ -52,3 +52,4 @@ SHA1 (patch-dm) = eb86aee54fd213eb64a89e5bc2754971db9648f4 SHA1 (patch-do) = bdb018e157dcb5ef706b69184d8b739cfd32d8c3 SHA1 (patch-ds) = 1e2e371b9ff7ab9049a947d8e0a63483a1fd244e SHA1 (patch-dt) = 9eef43663de12721ecc38124d5bd4a90a825eefc +SHA1 (patch-dw) = eb4acb8c6c59ef3c73a7ba7e6d6956e325de9d85 diff --git a/mail/thunderbird/patches/patch-dw b/mail/thunderbird/patches/patch-dw new file mode 100644 index 00000000000..2db0ca1ead2 --- /dev/null +++ b/mail/thunderbird/patches/patch-dw @@ -0,0 +1,13 @@ +$NetBSD: patch-dw,v 1.1 2007/03/07 22:02:26 joerg Exp $ + +--- security/nss/lib/freebl/Makefile.orig 2007-03-07 20:19:17.000000000 +0000 ++++ security/nss/lib/freebl/Makefile +@@ -192,7 +192,7 @@ endif + # to bind the blapi function references in FREEBLVector vector + # (ldvector.c) to the blapi functions defined in the freebl + # shared libraries. +-ifeq (,$(filter-out BSD_OS FreeBSD Linux NetBSD, $(OS_TARGET))) ++ifeq (,$(filter-out BSD_OS FreeBSD Linux NetBSD DragonFly, $(OS_TARGET))) + MKSHLIB += -Wl,-Bsymbolic + endif + |