diff options
author | joerg <joerg@pkgsrc.org> | 2012-12-20 22:52:37 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2012-12-20 22:52:37 +0000 |
commit | b1b4782309cc894cb69ddfcdf00634b2c13d8000 (patch) | |
tree | 36bf5e51a572a32a913dede3e515fc253905d81a /security/cyrus-sasl | |
parent | 026e039e529ee09d54b8a5be293397b5dc3b7d7e (diff) | |
download | pkgsrc-b1b4782309cc894cb69ddfcdf00634b2c13d8000.tar.gz |
sasl.h needs stddef.h to be self-contained. Bump revision.
Diffstat (limited to 'security/cyrus-sasl')
-rw-r--r-- | security/cyrus-sasl/Makefile | 3 | ||||
-rw-r--r-- | security/cyrus-sasl/distinfo | 3 | ||||
-rw-r--r-- | security/cyrus-sasl/patches/patch-include_sasl.h | 13 |
3 files changed, 17 insertions, 2 deletions
diff --git a/security/cyrus-sasl/Makefile b/security/cyrus-sasl/Makefile index 56405154821..fc3bb2bde93 100644 --- a/security/cyrus-sasl/Makefile +++ b/security/cyrus-sasl/Makefile @@ -1,5 +1,6 @@ -# $NetBSD: Makefile,v 1.65 2012/12/16 01:36:44 obache Exp $ +# $NetBSD: Makefile,v 1.66 2012/12/20 22:52:37 joerg Exp $ +PKGREVISION= 1 SVR4_PKGNAME= csasl COMMENT= Simple Authentication and Security Layer diff --git a/security/cyrus-sasl/distinfo b/security/cyrus-sasl/distinfo index 23034a3fdda..5c4508c20dd 100644 --- a/security/cyrus-sasl/distinfo +++ b/security/cyrus-sasl/distinfo @@ -1,8 +1,9 @@ -$NetBSD: distinfo,v 1.23 2012/12/19 10:46:55 obache Exp $ +$NetBSD: distinfo,v 1.24 2012/12/20 22:52:37 joerg Exp $ SHA1 (cyrus-sasl-2.1.26.tar.gz) = d6669fb91434192529bd13ee95737a8a5040241c RMD160 (cyrus-sasl-2.1.26.tar.gz) = 861a06d663cf3da37a198d0f971d99b249b5f4b8 Size (cyrus-sasl-2.1.26.tar.gz) = 5220231 bytes +SHA1 (patch-include_sasl.h) = db40d75998075a5e347209b776230540c54c9e35 SHA1 (patch-saslauthd_Makefile.in) = b7962486aef16ec1e5b27a05a3405d79540f8e20 SHA1 (patch-saslauthd_auth__rimap.c) = 6bc9fc13b0dfe14eb524e5fffe910fab74073be9 SHA1 (patch-saslauthd_md5global.h) = fc200c6aee12bf58877c7a755c121441ebaa1bde diff --git a/security/cyrus-sasl/patches/patch-include_sasl.h b/security/cyrus-sasl/patches/patch-include_sasl.h new file mode 100644 index 00000000000..d4ff802bf12 --- /dev/null +++ b/security/cyrus-sasl/patches/patch-include_sasl.h @@ -0,0 +1,13 @@ +$NetBSD: patch-include_sasl.h,v 1.1 2012/12/20 22:52:37 joerg Exp $ + +--- include/sasl.h.orig 2012-12-20 22:26:09.000000000 +0000 ++++ include/sasl.h +@@ -121,6 +121,8 @@ + #ifndef SASL_H + #define SASL_H 1 + ++#include <stddef.h> /* For size_t */ ++ + /* Keep in sync with win32/common.mak */ + #define SASL_VERSION_MAJOR 2 + #define SASL_VERSION_MINOR 1 |