diff options
author | joerg <joerg@pkgsrc.org> | 2006-01-08 15:37:32 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-01-08 15:37:32 +0000 |
commit | 259a0ea43f4a4c2afa21dbc8c7e204530b46d83e (patch) | |
tree | 5390dedb66323bbb002e5e7eae7e083757f00163 /mail/cue | |
parent | 611d2a44a907e50d1e0db69ffc16e6173a62e433 (diff) | |
download | pkgsrc-259a0ea43f4a4c2afa21dbc8c7e204530b46d83e.tar.gz |
Assume that DragonFly's getaddrinfo works, the test is broken for
jails which don't have IPv6 addresses even if the same package can be
used on normal system.
Include openssl/dsa.h to get struct dsa_st on newer OpenSSL versions.
Diffstat (limited to 'mail/cue')
-rw-r--r-- | mail/cue/distinfo | 4 | ||||
-rw-r--r-- | mail/cue/patches/patch-aa | 20 | ||||
-rw-r--r-- | mail/cue/patches/patch-ab | 12 |
3 files changed, 35 insertions, 1 deletions
diff --git a/mail/cue/distinfo b/mail/cue/distinfo index 9a5abab326f..1e141155076 100644 --- a/mail/cue/distinfo +++ b/mail/cue/distinfo @@ -1,5 +1,7 @@ -$NetBSD: distinfo,v 1.24 2005/02/24 09:59:21 agc Exp $ +$NetBSD: distinfo,v 1.25 2006/01/08 15:37:32 joerg Exp $ SHA1 (cue-snap-20050131.tar.gz) = 4701a6194281203330a0ea732892642998428e8c RMD160 (cue-snap-20050131.tar.gz) = e325ce89e89eda4c63069e8015f939dc01748733 Size (cue-snap-20050131.tar.gz) = 169347 bytes +SHA1 (patch-aa) = 943611e7b8a363fe90fb5a49c2bb0a8977e4e242 +SHA1 (patch-ab) = 066709e7087e95b704366bf82226781acdb58f6f diff --git a/mail/cue/patches/patch-aa b/mail/cue/patches/patch-aa new file mode 100644 index 00000000000..6917d238fca --- /dev/null +++ b/mail/cue/patches/patch-aa @@ -0,0 +1,20 @@ +$NetBSD: patch-aa,v 1.3 2006/01/08 15:37:33 joerg Exp $ + +--- configure.orig 2003-11-13 11:18:48.000000000 +0000 ++++ configure +@@ -1126,6 +1126,7 @@ rm -fr conftest* + fi + + ++if test ${OPSYS} != "DragonFly"; then + if test "$buggygetaddrinfo" = "yes"; then + if test "$ipv6" = "yes"; then + echo 'Fatal: You must get working getaddrinfo() function.' +@@ -1133,6 +1134,7 @@ if test "$buggygetaddrinfo" = "yes"; the + exit 1 + fi + fi ++fi + + echo $ac_n "checking if --enable-idea option is specified""... $ac_c" 1>&6 + echo "configure:1139: checking if --enable-idea option is specified" >&5 diff --git a/mail/cue/patches/patch-ab b/mail/cue/patches/patch-ab new file mode 100644 index 00000000000..da23f78c900 --- /dev/null +++ b/mail/cue/patches/patch-ab @@ -0,0 +1,12 @@ +$NetBSD: patch-ab,v 1.3 2006/01/08 15:37:33 joerg Exp $ + +--- pgp.c.orig 2006-01-08 15:32:55.000000000 +0000 ++++ pgp.c +@@ -37,6 +37,7 @@ + + #ifdef OPENSSL + #include <openssl/bn.h> ++#include <openssl/dsa.h> + #include <openssl/rsa.h> + #include <openssl/evp.h> + #include <openssl/rand.h> |