diff options
author | sborrill <sborrill> | 2016-10-05 12:39:57 +0000 |
---|---|---|
committer | sborrill <sborrill> | 2016-10-05 12:39:57 +0000 |
commit | 959d2e4fea7219c225d81d68042f9fefbe3f61f8 (patch) | |
tree | 31cce1c2e2e374737a72db34b02f9740e45bfa14 /mail/dovecot2 | |
parent | 06a0cb6be1b2fce51f8a73a7abc33b0ecafea3d0 (diff) | |
download | pkgsrc-959d2e4fea7219c225d81d68042f9fefbe3f61f8.tar.gz |
Fix static array check in configure. Patch will be in next dovecot release,
so can be removed after that.
Diffstat (limited to 'mail/dovecot2')
-rw-r--r-- | mail/dovecot2/distinfo | 3 | ||||
-rw-r--r-- | mail/dovecot2/patches/patch-configure | 17 |
2 files changed, 19 insertions, 1 deletions
diff --git a/mail/dovecot2/distinfo b/mail/dovecot2/distinfo index d3420ca2d14..9a38e49edea 100644 --- a/mail/dovecot2/distinfo +++ b/mail/dovecot2/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.65 2016/07/06 10:39:22 adam Exp $ +$NetBSD: distinfo,v 1.66 2016/10/05 12:39:57 sborrill Exp $ SHA1 (dovecot-2.2.25.tar.gz) = 7fd23e4fef4f6f25a43196d36686449d6515f2b8 RMD160 (dovecot-2.2.25.tar.gz) = 4e6494326b15bb1205e927ac227974575707808d @@ -8,6 +8,7 @@ SHA1 (patch-aa) = ea185011f0c1ee3aa1ff528e61f6f356fe385666 SHA1 (patch-ab) = d637a64feec8e4eafacda149cf0193aa1b70a054 SHA1 (patch-ae) = 51d8cb998cc2ded8bfc767710e465b752c50e656 SHA1 (patch-af) = c066e94dd6593d16eec3e66f5f4d26f021918498 +SHA1 (patch-configure) = 89a64ba84a94d9d93144d1bd224852c24d050be3 SHA1 (patch-src_lib-ldap_ldap-private.h) = 2d5ce32330ad4164cc75f8d209ba499d37ed01fc SHA1 (patch-src_lib_buffer.h) = d75017a1093c1ca34827d01ec85b06e6b03105d2 SHA1 (patch-src_master_service-listen.c) = 58351083d928206e67bff3ae88a67556d6b43711 diff --git a/mail/dovecot2/patches/patch-configure b/mail/dovecot2/patches/patch-configure new file mode 100644 index 00000000000..bbdd60faea2 --- /dev/null +++ b/mail/dovecot2/patches/patch-configure @@ -0,0 +1,17 @@ +$NetBSD: patch-configure,v 1.4 2016/10/05 12:39:57 sborrill Exp $ + +configure: Fix static array check + +https://github.com/dovecot/core/commit/d9c865ce774aae9f2f17b89e7e94c3cfca29dea7 + +--- configure.orig 2016-10-05 12:03:18.000000000 +0100 ++++ configure 2016-10-05 12:03:30.000000000 +0100 +@@ -21188,7 +21188,7 @@ + cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + +- void foo(int arr[static 20]); ++ void foo(unsigned char[static 20]); + + int + main () |