pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/security/cyrus-sasl
Module Name: pkgsrc
Committed By: richard
Date: Sun Sep 11 06:11:16 UTC 2016
Modified Files:
pkgsrc/security/cyrus-sasl: Makefile Makefile.common distinfo
options.mk
Added Files:
pkgsrc/security/cyrus-sasl/patches: patch-saslauthd_ipc__doors.c
Log Message:
Add 'db6' to supported bdb versions and finally commit ipctype 'doors'
for SunOS, while fixing a declaration prototype to match the definition.
PR pkg/47436
bump PKGREVISION
To generate a diff of this commit:
cvs rdiff -u -r1.70 -r1.71 pkgsrc/security/cyrus-sasl/Makefile
cvs rdiff -u -r1.23 -r1.24 pkgsrc/security/cyrus-sasl/Makefile.common
cvs rdiff -u -r1.33 -r1.34 pkgsrc/security/cyrus-sasl/distinfo
cvs rdiff -u -r1.1 -r1.2 pkgsrc/security/cyrus-sasl/options.mk
cvs rdiff -u -r0 -r1.1 \
pkgsrc/security/cyrus-sasl/patches/patch-saslauthd_ipc__doors.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/security/cyrus-sasl/Makefile
diff -u pkgsrc/security/cyrus-sasl/Makefile:1.70 pkgsrc/security/cyrus-sasl/Makefile:1.71
--- pkgsrc/security/cyrus-sasl/Makefile:1.70 Thu Oct 9 13:44:53 2014
+++ pkgsrc/security/cyrus-sasl/Makefile Sun Sep 11 06:11:15 2016
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.70 2014/10/09 13:44:53 wiz Exp $
+# $NetBSD: Makefile,v 1.71 2016/09/11 06:11:15 richard Exp $
-PKGREVISION= 4
+PKGREVISION= 5
COMMENT= Simple Authentication and Security Layer
.include "Makefile.common"
Index: pkgsrc/security/cyrus-sasl/Makefile.common
diff -u pkgsrc/security/cyrus-sasl/Makefile.common:1.23 pkgsrc/security/cyrus-sasl/Makefile.common:1.24
--- pkgsrc/security/cyrus-sasl/Makefile.common:1.23 Fri Feb 26 09:41:05 2016
+++ pkgsrc/security/cyrus-sasl/Makefile.common Sun Sep 11 06:11:15 2016
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.23 2016/02/26 09:41:05 jperkin Exp $
+# $NetBSD: Makefile.common,v 1.24 2016/09/11 06:11:15 richard Exp $
#
# used by security/cyrus-sasl/Makefile
# used by security/cy2-anonymous/Makefile
@@ -56,6 +56,10 @@ CONFIGURE_ARGS+= --disable-java
CONFIGURE_ARGS.Darwin+= --disable-macos-framework
+.if ${OPSYS} == "SunOS"
+CONFIGURE_ARGS+= --with-ipctype=doors
+.endif
+
# Authentication mechanisms
CONFIGURE_ARGS+= --disable-anon # ANONYMOUS
CONFIGURE_ARGS+= --disable-checkapop # CHECKAPOP
Index: pkgsrc/security/cyrus-sasl/distinfo
diff -u pkgsrc/security/cyrus-sasl/distinfo:1.33 pkgsrc/security/cyrus-sasl/distinfo:1.34
--- pkgsrc/security/cyrus-sasl/distinfo:1.33 Tue Nov 10 09:15:34 2015
+++ pkgsrc/security/cyrus-sasl/distinfo Sun Sep 11 06:11:15 2016
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.33 2015/11/10 09:15:34 abs Exp $
+$NetBSD: distinfo,v 1.34 2016/09/11 06:11:15 richard Exp $
SHA1 (cyrus-sasl-2.1.26.tar.gz) = d6669fb91434192529bd13ee95737a8a5040241c
RMD160 (cyrus-sasl-2.1.26.tar.gz) = 861a06d663cf3da37a198d0f971d99b249b5f4b8
@@ -15,5 +15,6 @@ SHA1 (patch-libsasl2.pc.in) = ef5679feef
SHA1 (patch-plugins_otp.c) = 482dfaa16efd9577274ed43d90aaec1bcf451337
SHA1 (patch-saslauthd_Makefile.in) = b7962486aef16ec1e5b27a05a3405d79540f8e20
SHA1 (patch-saslauthd_auth__rimap.c) = cc3e04ae0cf049eeb507df3226a2098528afaaab
+SHA1 (patch-saslauthd_ipc__doors.c) = 2470ed0f04a19f487811dec405f68ce91d4a4cd0
SHA1 (patch-saslauthd_md5global.h) = fc200c6aee12bf58877c7a755c121441ebaa1bde
SHA1 (patch-saslauthd_saslcache.c) = 725db77c5d56f58331255957a65d385267ddcaed
Index: pkgsrc/security/cyrus-sasl/options.mk
diff -u pkgsrc/security/cyrus-sasl/options.mk:1.1 pkgsrc/security/cyrus-sasl/options.mk:1.2
--- pkgsrc/security/cyrus-sasl/options.mk:1.1 Wed Mar 13 03:31:40 2013
+++ pkgsrc/security/cyrus-sasl/options.mk Sun Sep 11 06:11:15 2016
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.1 2013/03/13 03:31:40 obache Exp $
+# $NetBSD: options.mk,v 1.2 2016/09/11 06:11:15 richard Exp $
#
PKG_OPTIONS_VAR= PKG_OPTIONS.cyrus-sasl
@@ -28,7 +28,7 @@ FILES_SUBST+= DBEXT=.db
.elif !empty(PKG_OPTIONS:Mbdb)
SASL_DBTYPE= berkeley
FILES_SUBST+= DBEXT=
-BDB_ACCEPTED= db3 db4 db5
+BDB_ACCEPTED= db3 db4 db5 db6
. include "../../mk/bdb.buildlink3.mk"
CONFIGURE_ENV+= with_bdb=${BDB_TYPE}
.elif !empty(PKG_OPTIONS:Mgdbm)
Added files:
Index: pkgsrc/security/cyrus-sasl/patches/patch-saslauthd_ipc__doors.c
diff -u /dev/null pkgsrc/security/cyrus-sasl/patches/patch-saslauthd_ipc__doors.c:1.1
--- /dev/null Sun Sep 11 06:11:16 2016
+++ pkgsrc/security/cyrus-sasl/patches/patch-saslauthd_ipc__doors.c Sun Sep 11 06:11:15 2016
@@ -0,0 +1,13 @@
+$NetBSD: patch-saslauthd_ipc__doors.c,v 1.1 2016/09/11 06:11:15 richard Exp $
+match do_request() declaration signature to implementation
+--- saslauthd/ipc_doors.c.orig 2012-01-27 23:31:36.000000000 +0000
++++ saslauthd/ipc_doors.c
+@@ -74,7 +74,7 @@
+ /****************************************
+ * declarations/protos
+ *****************************************/
+-static void do_request(void *, char *, size_t, door_desc_t *, uint_t);
++static void do_request(void *, char *, size_t, door_desc_t *, size_t);
+ static void send_no(char *);
+ static void need_thread(door_info_t*);
+ static void *server_thread(void *);
Home |
Main Index |
Thread Index |
Old Index