CVS commit: src/etc

2023-07-30 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul 30 09:09:38 UTC 2023

Modified Files:
src/etc: services

Log Message:
Resolve the port 2049 conflict by commenting out the entries for "shilp".
Now "netstat" will produce sensible output for NFS connections again.


To generate a diff of this commit:
cvs rdiff -u -r1.104 -r1.105 src/etc/services

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/services
diff -u src/etc/services:1.104 src/etc/services:1.105
--- src/etc/services:1.104	Mon Nov 28 02:48:33 2022
+++ src/etc/services	Sun Jul 30 09:09:38 2023
@@ -1,4 +1,4 @@
-# $NetBSD: services,v 1.104 2022/11/28 02:48:33 jschauma Exp $
+# $NetBSD: services,v 1.105 2023/07/30 09:09:38 tron Exp $
 # See also: services(5), https://www.iana.org/assignments/service-names-port-numbers/
 #
 #  Service Name and Transport Protocol Port Number Registry
@@ -4659,8 +4659,8 @@ dls2047/tcp
 dls2047/udp
 dls-monitor2048/tcp
 dls-monitor2048/udp
-shilp  2049/tcp# <== NOTE Conflict on 2049 !
-shilp  2049/udp# <== NOTE Conflict on 2049 !
+#shilp  2049/tcp# <== NOTE Conflict on 2049 !
+#shilp  2049/udp# <== NOTE Conflict on 2049 !
 nfs2049/tcp# Network File System - Sun[Brent_Callaghan] [Brent_Callaghan]Defined TXT keys: path=
 # Microsystems
 nfs2049/udp# Network File System - Sun[Brent_Callaghan] [Brent_Callaghan]Defined TXT keys: path=



CVS commit: src/etc

2023-07-30 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul 30 09:09:38 UTC 2023

Modified Files:
src/etc: services

Log Message:
Resolve the port 2049 conflict by commenting out the entries for "shilp".
Now "netstat" will produce sensible output for NFS connections again.


To generate a diff of this commit:
cvs rdiff -u -r1.104 -r1.105 src/etc/services

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/acpi

2019-02-16 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sat Feb 16 23:28:57 UTC 2019

Modified Files:
src/sys/dev/acpi: xhci_acpi.c

Log Message:
Fix cut & paste error in comment


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/dev/acpi/xhci_acpi.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/acpi

2019-02-16 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sat Feb 16 23:28:57 UTC 2019

Modified Files:
src/sys/dev/acpi: xhci_acpi.c

Log Message:
Fix cut & paste error in comment


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/dev/acpi/xhci_acpi.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/acpi/xhci_acpi.c
diff -u src/sys/dev/acpi/xhci_acpi.c:1.2 src/sys/dev/acpi/xhci_acpi.c:1.3
--- src/sys/dev/acpi/xhci_acpi.c:1.2	Fri Nov 16 23:18:17 2018
+++ src/sys/dev/acpi/xhci_acpi.c	Sat Feb 16 23:28:56 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: xhci_acpi.c,v 1.2 2018/11/16 23:18:17 jmcneill Exp $ */
+/* $NetBSD: xhci_acpi.c,v 1.3 2019/02/16 23:28:56 tron Exp $ */
 
 /*-
  * Copyright (c) 2018 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: xhci_acpi.c,v 1.2 2018/11/16 23:18:17 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: xhci_acpi.c,v 1.3 2019/02/16 23:28:56 tron Exp $");
 
 #include 
 #include 
@@ -50,8 +50,8 @@ __KERNEL_RCSID(0, "$NetBSD: xhci_acpi.c,
 #include 
 
 static const char * const compatible[] = {
-	"PNP0D10",	/* EHCI-compliant USB controller without standard debug */
-	"PNP0D15",	/* EHCI-compliant USB controller with standard debug */
+	"PNP0D10",	/* XHCI-compliant USB controller without standard debug */
+	"PNP0D15",	/* XHCI-compliant USB controller with standard debug */
 	NULL
 };
 



CVS commit: src/external/mit/xorg/server/xorg-server/os

2019-01-22 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Tue Jan 22 12:45:26 UTC 2019

Modified Files:
src/external/mit/xorg/server/xorg-server/os: Makefile

Log Message:
Fix build with "USE_SSP" set to "yes"


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 \
src/external/mit/xorg/server/xorg-server/os/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/mit/xorg/server/xorg-server/os/Makefile
diff -u src/external/mit/xorg/server/xorg-server/os/Makefile:1.16 src/external/mit/xorg/server/xorg-server/os/Makefile:1.17
--- src/external/mit/xorg/server/xorg-server/os/Makefile:1.16	Mon Dec 31 11:14:06 2018
+++ src/external/mit/xorg/server/xorg-server/os/Makefile	Tue Jan 22 12:45:25 2019
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.16 2018/12/31 11:14:06 mrg Exp $
+#	$NetBSD: Makefile,v 1.17 2019/01/22 12:45:25 tron Exp $
 
 .include "../Makefile.serverlib"
 .include "../Makefile.servermod"
@@ -37,6 +37,7 @@ COPTS.xdmauth.c=	-Wno-error	# XXX
 COPTS.xstrans.c=	-Wno-error	# XXX
 COPTS.access.c=		-Wno-error	# XXX bigreqstr.h
 COPTS.io.c=		-Wno-error	# XXX bigreqstr.h
+COPTS.backtrace.c=	-Wno-stack-protector
 
 .include 
 .include 



CVS commit: src/external/mit/xorg/server/xorg-server/os

2019-01-22 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Tue Jan 22 12:45:26 UTC 2019

Modified Files:
src/external/mit/xorg/server/xorg-server/os: Makefile

Log Message:
Fix build with "USE_SSP" set to "yes"


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 \
src/external/mit/xorg/server/xorg-server/os/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/mit/xorg/lib/libxcb/dri3

2018-04-03 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Tue Apr  3 08:18:11 UTC 2018

Modified Files:
src/external/mit/xorg/lib/libxcb/dri3: Makefile

Log Message:
Fix build with "USE_SSP=yes".


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/external/mit/xorg/lib/libxcb/dri3/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/mit/xorg/lib/libxcb/dri3/Makefile
diff -u src/external/mit/xorg/lib/libxcb/dri3/Makefile:1.1 src/external/mit/xorg/lib/libxcb/dri3/Makefile:1.2
--- src/external/mit/xorg/lib/libxcb/dri3/Makefile:1.1	Mon Mar 17 07:25:34 2014
+++ src/external/mit/xorg/lib/libxcb/dri3/Makefile	Tue Apr  3 08:18:11 2018
@@ -1,5 +1,7 @@
-#	$NetBSD: Makefile,v 1.1 2014/03/17 07:25:34 mrg Exp $
+#	$NetBSD: Makefile,v 1.2 2018/04/03 08:18:11 tron Exp $
 
 XCBEXT=	dri3
 
+COPTS.dri3.c +=	-Wno-stack-protector
+
 .include "../xcb.mk"



CVS commit: src/external/mit/xorg/lib/libxcb/dri3

2018-04-03 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Tue Apr  3 08:18:11 UTC 2018

Modified Files:
src/external/mit/xorg/lib/libxcb/dri3: Makefile

Log Message:
Fix build with "USE_SSP=yes".


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/external/mit/xorg/lib/libxcb/dri3/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/pci

2016-08-14 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Aug 14 07:47:15 UTC 2016

Modified Files:
src/sys/dev/pci: virtio.c

Log Message:
Prevent a panic during system shutdown when vioif(4) is used


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/sys/dev/pci/virtio.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/pci/virtio.c
diff -u src/sys/dev/pci/virtio.c:1.16 src/sys/dev/pci/virtio.c:1.17
--- src/sys/dev/pci/virtio.c:1.16	Mon Jul 11 06:14:51 2016
+++ src/sys/dev/pci/virtio.c	Sun Aug 14 07:47:15 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: virtio.c,v 1.16 2016/07/11 06:14:51 knakahara Exp $	*/
+/*	$NetBSD: virtio.c,v 1.17 2016/08/14 07:47:15 tron Exp $	*/
 
 /*
  * Copyright (c) 2010 Minoura Makoto.
@@ -26,7 +26,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: virtio.c,v 1.16 2016/07/11 06:14:51 knakahara Exp $");
+__KERNEL_RCSID(0, "$NetBSD: virtio.c,v 1.17 2016/08/14 07:47:15 tron Exp $");
 
 #include 
 #include 
@@ -418,7 +418,8 @@ virtio_detach(device_t self, int flags)
 		pci_intr_disestablish(sc->sc_pc, sc->sc_ihs[i]);
 	}
 	pci_intr_release(sc->sc_pc, sc->sc_ihp, sc->sc_ihs_num);
-	kmem_free(sc->sc_ihs, sizeof(*sc->sc_ihs) * sc->sc_ihs_num);
+	if (sc->sc_ihs != NULL)
+		kmem_free(sc->sc_ihs, sizeof(*sc->sc_ihs) * sc->sc_ihs_num);
 	sc->sc_ihs_num = 0;
 	if (sc->sc_iosize)
 		bus_space_unmap(sc->sc_iot, sc->sc_ioh, sc->sc_iosize);



CVS commit: src/sys/dev/pci

2016-08-14 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Aug 14 07:47:15 UTC 2016

Modified Files:
src/sys/dev/pci: virtio.c

Log Message:
Prevent a panic during system shutdown when vioif(4) is used


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/sys/dev/pci/virtio.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/gpl2/gettext

2016-01-15 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Fri Jan 15 18:03:32 UTC 2016

Modified Files:
src/external/gpl2/gettext/bin/msgmerge: Makefile
src/external/gpl2/gettext/lib/libnlspr: Makefile

Log Message:
Fix build with "USE_SSP" set to "yes"


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/gpl2/gettext/bin/msgmerge/Makefile
cvs rdiff -u -r1.2 -r1.3 src/external/gpl2/gettext/lib/libnlspr/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/gpl2/gettext

2016-01-15 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Fri Jan 15 18:03:32 UTC 2016

Modified Files:
src/external/gpl2/gettext/bin/msgmerge: Makefile
src/external/gpl2/gettext/lib/libnlspr: Makefile

Log Message:
Fix build with "USE_SSP" set to "yes"


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/gpl2/gettext/bin/msgmerge/Makefile
cvs rdiff -u -r1.2 -r1.3 src/external/gpl2/gettext/lib/libnlspr/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/gpl2/gettext/bin/msgmerge/Makefile
diff -u src/external/gpl2/gettext/bin/msgmerge/Makefile:1.2 src/external/gpl2/gettext/bin/msgmerge/Makefile:1.3
--- src/external/gpl2/gettext/bin/msgmerge/Makefile:1.2	Wed Jan 13 12:48:51 2016
+++ src/external/gpl2/gettext/bin/msgmerge/Makefile	Fri Jan 15 18:03:32 2016
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.2 2016/01/13 12:48:51 christos Exp $
+#	$NetBSD: Makefile,v 1.3 2016/01/15 18:03:32 tron Exp $
 
 PROG=	msgmerge
 SRCS=msgmerge.c msgl-fsearch.c
@@ -6,4 +6,6 @@ SRCS=msgmerge.c msgl-fsearch.c
 LDADD+=	-lm
 DPADD+= ${LIBM}
 
+COPTS.msgmerge.c = -Wno-stack-protector
+
 .include "${.CURDIR}/../Makefile.inc.prog"

Index: src/external/gpl2/gettext/lib/libnlspr/Makefile
diff -u src/external/gpl2/gettext/lib/libnlspr/Makefile:1.2 src/external/gpl2/gettext/lib/libnlspr/Makefile:1.3
--- src/external/gpl2/gettext/lib/libnlspr/Makefile:1.2	Wed Jan 13 12:48:51 2016
+++ src/external/gpl2/gettext/lib/libnlspr/Makefile	Fri Jan 15 18:03:32 2016
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.2 2016/01/13 12:48:51 christos Exp $
+#	$NetBSD: Makefile,v 1.3 2016/01/15 18:03:32 tron Exp $
 
 LIBISPRIVATE=	yes
 
@@ -83,10 +83,13 @@ CPPFLAGS+=-DLIBDIR=\"/usr/share\"
 CPPFLAGS+=-DGETTEXTJAR=\"/usr/share/gettext/gettext.jar\"
 CPPFLAGS+=-DGETTEXTDATADIR=\"/usr/share/gettext\"
 
+COPTS.clean-temp.c = -Wno-stack-protector
 COPTS.format-java.c = -Wno-stack-protector
+COPTS.message.c = -Wno-stack-protector
 COPTS.msgl-cat.c = -Wno-stack-protector
 COPTS.msgl-charset.c = -Wno-stack-protector
 COPTS.msgl-iconv.c = -Wno-stack-protector
+COPTS.plural-exp.c = -Wno-stack-protector
 COPTS.plural.c = -Wno-stack-protector
 COPTS.po-charset.c = -Wno-stack-protector
 COPTS.po-gram-gen.c = -Wno-stack-protector



CVS commit: src/usr.bin/ftp

2015-12-13 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Dec 13 14:06:13 UTC 2015

Modified Files:
src/usr.bin/ftp: fetch.c ftp.c

Log Message:
(Hopefully) fix build without IPv6 support


To generate a diff of this commit:
cvs rdiff -u -r1.208 -r1.209 src/usr.bin/ftp/fetch.c
cvs rdiff -u -r1.165 -r1.166 src/usr.bin/ftp/ftp.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/ftp/fetch.c
diff -u src/usr.bin/ftp/fetch.c:1.208 src/usr.bin/ftp/fetch.c:1.209
--- src/usr.bin/ftp/fetch.c:1.208	Fri Dec 11 08:37:31 2015
+++ src/usr.bin/ftp/fetch.c	Sun Dec 13 14:06:13 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: fetch.c,v 1.208 2015/12/11 08:37:31 tron Exp $	*/
+/*	$NetBSD: fetch.c,v 1.209 2015/12/13 14:06:13 tron Exp $	*/
 
 /*-
  * Copyright (c) 1997-2015 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
 
 #include 
 #ifndef lint
-__RCSID("$NetBSD: fetch.c,v 1.208 2015/12/11 08:37:31 tron Exp $");
+__RCSID("$NetBSD: fetch.c,v 1.209 2015/12/13 14:06:13 tron Exp $");
 #endif /* not lint */
 
 /*
@@ -763,13 +763,17 @@ fetch_url(const char *url, const char *p
 			}
 
 			if (verbose && res0->ai_next) {
+#ifdef INET6
 if(res->ai_family == AF_INET6) {
 	fprintf(ttyout, "Trying [%s]:%s ...\n",
 	hname, sname);
 } else {
+#endif
 	fprintf(ttyout, "Trying %s:%s ...\n",
 	hname, sname);
+#ifdef INET6
 }
+#endif
 			}
 
 			s = socket(res->ai_family, SOCK_STREAM,

Index: src/usr.bin/ftp/ftp.c
diff -u src/usr.bin/ftp/ftp.c:1.165 src/usr.bin/ftp/ftp.c:1.166
--- src/usr.bin/ftp/ftp.c:1.165	Fri Dec 11 08:37:31 2015
+++ src/usr.bin/ftp/ftp.c	Sun Dec 13 14:06:13 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: ftp.c,v 1.165 2015/12/11 08:37:31 tron Exp $	*/
+/*	$NetBSD: ftp.c,v 1.166 2015/12/13 14:06:13 tron Exp $	*/
 
 /*-
  * Copyright (c) 1996-2009 The NetBSD Foundation, Inc.
@@ -92,7 +92,7 @@
 #if 0
 static char sccsid[] = "@(#)ftp.c	8.6 (Berkeley) 10/27/94";
 #else
-__RCSID("$NetBSD: ftp.c,v 1.165 2015/12/11 08:37:31 tron Exp $");
+__RCSID("$NetBSD: ftp.c,v 1.166 2015/12/13 14:06:13 tron Exp $");
 #endif
 #endif /* not lint */
 
@@ -200,13 +200,17 @@ hookup(const char *host, const char *por
 		}
 		if (verbose && res0->ai_next) {
 /* if we have multiple possibilities */
+#ifdef INET6
 			if(res->ai_family == AF_INET6) {
 fprintf(ttyout, "Trying [%s]:%s ...\n", hname,
 sname);
 			} else {
+#endif
 fprintf(ttyout, "Trying %s:%s ...\n", hname,
 sname);
+#ifdef INET6
 			}
+#endif
 		}
 		s = socket(res->ai_family, SOCK_STREAM, res->ai_protocol);
 		if (s < 0) {



CVS commit: src/usr.bin/ftp

2015-12-13 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Dec 13 14:06:13 UTC 2015

Modified Files:
src/usr.bin/ftp: fetch.c ftp.c

Log Message:
(Hopefully) fix build without IPv6 support


To generate a diff of this commit:
cvs rdiff -u -r1.208 -r1.209 src/usr.bin/ftp/fetch.c
cvs rdiff -u -r1.165 -r1.166 src/usr.bin/ftp/ftp.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: othersrc/usr.bin/tnftp/src

2015-12-13 Thread Matthias Scheler
Module Name:othersrc
Committed By:   tron
Date:   Sun Dec 13 14:08:09 UTC 2015

Modified Files:
othersrc/usr.bin/tnftp/src: fetch.c ftp.c

Log Message:
(Hopefully) fix build without IPv6 support


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 othersrc/usr.bin/tnftp/src/fetch.c
cvs rdiff -u -r1.20 -r1.21 othersrc/usr.bin/tnftp/src/ftp.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: othersrc/usr.bin/tnftp/src/fetch.c
diff -u othersrc/usr.bin/tnftp/src/fetch.c:1.22 othersrc/usr.bin/tnftp/src/fetch.c:1.23
--- othersrc/usr.bin/tnftp/src/fetch.c:1.22	Fri Dec 11 08:47:52 2015
+++ othersrc/usr.bin/tnftp/src/fetch.c	Sun Dec 13 14:08:09 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: fetch.c,v 1.22 2015/12/11 08:47:52 tron Exp $	*/
+/*	$NetBSD: fetch.c,v 1.23 2015/12/13 14:08:09 tron Exp $	*/
 /*	from	NetBSD: fetch.c,v 1.207 2015/09/12 19:38:42 wiz Exp	*/
 
 /*-
@@ -770,13 +770,17 @@ fetch_url(const char *url, const char *p
 			}
 
 			if (verbose && res0->ai_next) {
+#ifdef INET6
 if(res->ai_family == AF_INET6) {
 	fprintf(ttyout, "Trying [%s]:%s ...\n",
 	hname, sname);
 } else {
+#endif
 	fprintf(ttyout, "Trying %s:%s ...\n",
 	hname, sname);
+#ifdef INET6
 }
+#endif
 			}
 
 			s = socket(res->ai_family, SOCK_STREAM,

Index: othersrc/usr.bin/tnftp/src/ftp.c
diff -u othersrc/usr.bin/tnftp/src/ftp.c:1.20 othersrc/usr.bin/tnftp/src/ftp.c:1.21
--- othersrc/usr.bin/tnftp/src/ftp.c:1.20	Fri Dec 11 08:47:52 2015
+++ othersrc/usr.bin/tnftp/src/ftp.c	Sun Dec 13 14:08:09 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: ftp.c,v 1.20 2015/12/11 08:47:52 tron Exp $	*/
+/*	$NetBSD: ftp.c,v 1.21 2015/12/13 14:08:09 tron Exp $	*/
 /*	from	NetBSD: ftp.c,v 1.164 2012/07/04 06:09:37 is Exp	*/
 
 /*-
@@ -208,13 +208,17 @@ hookup(const char *host, const char *por
 		}
 		if (verbose && res0->ai_next) {
 /* if we have multiple possibilities */
+#ifdef INET6
 			if(res->ai_family == AF_INET6) {
 fprintf(ttyout, "Trying [%s]:%s ...\n", hname,
 sname);
 			} else {
+#endif
 fprintf(ttyout, "Trying %s:%s ...\n", hname,
 sname);
+#ifdef INET6
 			}
+#endif
 		}
 		s = socket(res->ai_family, SOCK_STREAM, res->ai_protocol);
 		if (s < 0) {



CVS commit: othersrc/usr.bin/tnftp/src

2015-12-13 Thread Matthias Scheler
Module Name:othersrc
Committed By:   tron
Date:   Sun Dec 13 14:08:09 UTC 2015

Modified Files:
othersrc/usr.bin/tnftp/src: fetch.c ftp.c

Log Message:
(Hopefully) fix build without IPv6 support


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 othersrc/usr.bin/tnftp/src/fetch.c
cvs rdiff -u -r1.20 -r1.21 othersrc/usr.bin/tnftp/src/ftp.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/usr.bin/ftp

2015-12-11 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Fri Dec 11 08:37:32 UTC 2015

Modified Files:
src/usr.bin/ftp: fetch.c ftp.c

Log Message:
Use the proper format "[IPv6 address]:port" when reporting connection
attempts to IPv6 endpoints.


To generate a diff of this commit:
cvs rdiff -u -r1.207 -r1.208 src/usr.bin/ftp/fetch.c
cvs rdiff -u -r1.164 -r1.165 src/usr.bin/ftp/ftp.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/ftp/fetch.c
diff -u src/usr.bin/ftp/fetch.c:1.207 src/usr.bin/ftp/fetch.c:1.208
--- src/usr.bin/ftp/fetch.c:1.207	Sat Sep 12 19:38:42 2015
+++ src/usr.bin/ftp/fetch.c	Fri Dec 11 08:37:31 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: fetch.c,v 1.207 2015/09/12 19:38:42 wiz Exp $	*/
+/*	$NetBSD: fetch.c,v 1.208 2015/12/11 08:37:31 tron Exp $	*/
 
 /*-
  * Copyright (c) 1997-2015 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
 
 #include 
 #ifndef lint
-__RCSID("$NetBSD: fetch.c,v 1.207 2015/09/12 19:38:42 wiz Exp $");
+__RCSID("$NetBSD: fetch.c,v 1.208 2015/12/11 08:37:31 tron Exp $");
 #endif /* not lint */
 
 /*
@@ -763,8 +763,13 @@ fetch_url(const char *url, const char *p
 			}
 
 			if (verbose && res0->ai_next) {
-fprintf(ttyout, "Trying %s:%s ...\n",
-hname, sname);
+if(res->ai_family == AF_INET6) {
+	fprintf(ttyout, "Trying [%s]:%s ...\n",
+	hname, sname);
+} else {
+	fprintf(ttyout, "Trying %s:%s ...\n",
+	hname, sname);
+}
 			}
 
 			s = socket(res->ai_family, SOCK_STREAM,

Index: src/usr.bin/ftp/ftp.c
diff -u src/usr.bin/ftp/ftp.c:1.164 src/usr.bin/ftp/ftp.c:1.165
--- src/usr.bin/ftp/ftp.c:1.164	Wed Jul  4 06:09:37 2012
+++ src/usr.bin/ftp/ftp.c	Fri Dec 11 08:37:31 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: ftp.c,v 1.164 2012/07/04 06:09:37 is Exp $	*/
+/*	$NetBSD: ftp.c,v 1.165 2015/12/11 08:37:31 tron Exp $	*/
 
 /*-
  * Copyright (c) 1996-2009 The NetBSD Foundation, Inc.
@@ -92,7 +92,7 @@
 #if 0
 static char sccsid[] = "@(#)ftp.c	8.6 (Berkeley) 10/27/94";
 #else
-__RCSID("$NetBSD: ftp.c,v 1.164 2012/07/04 06:09:37 is Exp $");
+__RCSID("$NetBSD: ftp.c,v 1.165 2015/12/11 08:37:31 tron Exp $");
 #endif
 #endif /* not lint */
 
@@ -200,7 +200,13 @@ hookup(const char *host, const char *por
 		}
 		if (verbose && res0->ai_next) {
 /* if we have multiple possibilities */
-			fprintf(ttyout, "Trying %s:%s ...\n", hname, sname);
+			if(res->ai_family == AF_INET6) {
+fprintf(ttyout, "Trying [%s]:%s ...\n", hname,
+sname);
+			} else {
+fprintf(ttyout, "Trying %s:%s ...\n", hname,
+sname);
+			}
 		}
 		s = socket(res->ai_family, SOCK_STREAM, res->ai_protocol);
 		if (s < 0) {



CVS commit: src/usr.bin/ftp

2015-12-11 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Fri Dec 11 08:37:32 UTC 2015

Modified Files:
src/usr.bin/ftp: fetch.c ftp.c

Log Message:
Use the proper format "[IPv6 address]:port" when reporting connection
attempts to IPv6 endpoints.


To generate a diff of this commit:
cvs rdiff -u -r1.207 -r1.208 src/usr.bin/ftp/fetch.c
cvs rdiff -u -r1.164 -r1.165 src/usr.bin/ftp/ftp.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: othersrc/usr.bin/tnftp/src

2015-12-11 Thread Matthias Scheler
Module Name:othersrc
Committed By:   tron
Date:   Fri Dec 11 08:47:53 UTC 2015

Modified Files:
othersrc/usr.bin/tnftp/src: fetch.c ftp.c

Log Message:
Use the proper format "[IPv6 address]:port" when reporting connection
attempts to IPv6 endpoints.


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 othersrc/usr.bin/tnftp/src/fetch.c
cvs rdiff -u -r1.19 -r1.20 othersrc/usr.bin/tnftp/src/ftp.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: othersrc/usr.bin/tnftp/src

2015-12-11 Thread Matthias Scheler
Module Name:othersrc
Committed By:   tron
Date:   Fri Dec 11 08:47:53 UTC 2015

Modified Files:
othersrc/usr.bin/tnftp/src: fetch.c ftp.c

Log Message:
Use the proper format "[IPv6 address]:port" when reporting connection
attempts to IPv6 endpoints.


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 othersrc/usr.bin/tnftp/src/fetch.c
cvs rdiff -u -r1.19 -r1.20 othersrc/usr.bin/tnftp/src/ftp.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: othersrc/usr.bin/tnftp/src/fetch.c
diff -u othersrc/usr.bin/tnftp/src/fetch.c:1.21 othersrc/usr.bin/tnftp/src/fetch.c:1.22
--- othersrc/usr.bin/tnftp/src/fetch.c:1.21	Sun Oct  4 04:53:26 2015
+++ othersrc/usr.bin/tnftp/src/fetch.c	Fri Dec 11 08:47:52 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: fetch.c,v 1.21 2015/10/04 04:53:26 lukem Exp $	*/
+/*	$NetBSD: fetch.c,v 1.22 2015/12/11 08:47:52 tron Exp $	*/
 /*	from	NetBSD: fetch.c,v 1.207 2015/09/12 19:38:42 wiz Exp	*/
 
 /*-
@@ -770,8 +770,13 @@ fetch_url(const char *url, const char *p
 			}
 
 			if (verbose && res0->ai_next) {
-fprintf(ttyout, "Trying %s:%s ...\n",
-hname, sname);
+if(res->ai_family == AF_INET6) {
+	fprintf(ttyout, "Trying [%s]:%s ...\n",
+	hname, sname);
+} else {
+	fprintf(ttyout, "Trying %s:%s ...\n",
+	hname, sname);
+}
 			}
 
 			s = socket(res->ai_family, SOCK_STREAM,

Index: othersrc/usr.bin/tnftp/src/ftp.c
diff -u othersrc/usr.bin/tnftp/src/ftp.c:1.19 othersrc/usr.bin/tnftp/src/ftp.c:1.20
--- othersrc/usr.bin/tnftp/src/ftp.c:1.19	Sun May  5 11:17:31 2013
+++ othersrc/usr.bin/tnftp/src/ftp.c	Fri Dec 11 08:47:52 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: ftp.c,v 1.19 2013/05/05 11:17:31 lukem Exp $	*/
+/*	$NetBSD: ftp.c,v 1.20 2015/12/11 08:47:52 tron Exp $	*/
 /*	from	NetBSD: ftp.c,v 1.164 2012/07/04 06:09:37 is Exp	*/
 
 /*-
@@ -208,7 +208,13 @@ hookup(const char *host, const char *por
 		}
 		if (verbose && res0->ai_next) {
 /* if we have multiple possibilities */
-			fprintf(ttyout, "Trying %s:%s ...\n", hname, sname);
+			if(res->ai_family == AF_INET6) {
+fprintf(ttyout, "Trying [%s]:%s ...\n", hname,
+sname);
+			} else {
+fprintf(ttyout, "Trying %s:%s ...\n", hname,
+sname);
+			}
 		}
 		s = socket(res->ai_family, SOCK_STREAM, res->ai_protocol);
 		if (s < 0) {



CVS commit: src/lib/libc/rpc

2015-11-13 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Fri Nov 13 10:43:32 UTC 2015

Modified Files:
src/lib/libc/rpc: svc.c

Log Message:
Avoid broken state if realloc(3) fails.


To generate a diff of this commit:
cvs rdiff -u -r1.36 -r1.37 src/lib/libc/rpc/svc.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libc/rpc/svc.c
diff -u src/lib/libc/rpc/svc.c:1.36 src/lib/libc/rpc/svc.c:1.37
--- src/lib/libc/rpc/svc.c:1.36	Sat Nov  7 17:34:33 2015
+++ src/lib/libc/rpc/svc.c	Fri Nov 13 10:43:32 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: svc.c,v 1.36 2015/11/07 17:34:33 christos Exp $	*/
+/*	$NetBSD: svc.c,v 1.37 2015/11/13 10:43:32 tron Exp $	*/
 
 /*
  * Copyright (c) 2010, Oracle America, Inc.
@@ -37,7 +37,7 @@
 static char *sccsid = "@(#)svc.c 1.44 88/02/08 Copyr 1984 Sun Micro";
 static char *sccsid = "@(#)svc.c	2.4 88/08/11 4.0 RPCSRC";
 #else
-__RCSID("$NetBSD: svc.c,v 1.36 2015/11/07 17:34:33 christos Exp $");
+__RCSID("$NetBSD: svc.c,v 1.37 2015/11/13 10:43:32 tron Exp $");
 #endif
 #endif
 
@@ -131,7 +131,7 @@ static bool_t
 xprt_alloc(int sock)
 {
 	int maxset;
-	char *newxports;
+	SVCXPRT **oldxports, **newxports;
 
 	if (++sock < 0)
 		return FALSE;
@@ -143,15 +143,16 @@ xprt_alloc(int sock)
 	if (__svc_xports != NULL && maxset <= __svc_maxxports)
 		return TRUE;
 
-	if (__svc_xports != NULL)
-		--__svc_xports;
-	newxports = realloc(__svc_xports, maxset * sizeof(SVCXPRT *));
+	oldxports = __svc_xports;
+	if (oldxports != NULL)
+		--oldxports;
+	newxports = realloc(oldxports, maxset * sizeof(SVCXPRT *));
 	if (newxports == NULL) {
 		warn("%s: out of memory", __func__);
 		return FALSE;
 	}
 
-	memset(newxports + __svc_maxxports * sizeof(SVCXPRT *), 0,
+	memset([__svc_maxxports], 0,
 	(maxset - __svc_maxxports) * sizeof(SVCXPRT *));
 
 	__svc_xports = (void *)newxports;



CVS commit: src/lib/libc/rpc

2015-11-13 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Fri Nov 13 11:23:08 UTC 2015

Modified Files:
src/lib/libc/rpc: rpc_soc.c

Log Message:
Don't try to use listen(2) on a UDP socket which will always fail.
Previously this was not a problem because the return value of listen(2)
was ignored. With this fix amd(8) no longer fails to start with the
error message "cannot create rpc/udp service".

TL;DR: Make amd(8) work again


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/lib/libc/rpc/rpc_soc.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/lib/libc/rpc

2015-11-13 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Fri Nov 13 11:23:08 UTC 2015

Modified Files:
src/lib/libc/rpc: rpc_soc.c

Log Message:
Don't try to use listen(2) on a UDP socket which will always fail.
Previously this was not a problem because the return value of listen(2)
was ignored. With this fix amd(8) no longer fails to start with the
error message "cannot create rpc/udp service".

TL;DR: Make amd(8) work again


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/lib/libc/rpc/rpc_soc.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libc/rpc/rpc_soc.c
diff -u src/lib/libc/rpc/rpc_soc.c:1.21 src/lib/libc/rpc/rpc_soc.c:1.22
--- src/lib/libc/rpc/rpc_soc.c:1.21	Tue Nov 10 20:56:20 2015
+++ src/lib/libc/rpc/rpc_soc.c	Fri Nov 13 11:23:08 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: rpc_soc.c,v 1.21 2015/11/10 20:56:20 christos Exp $	*/
+/*	$NetBSD: rpc_soc.c,v 1.22 2015/11/13 11:23:08 tron Exp $	*/
 
 /*
  * Copyright (c) 2010, Oracle America, Inc.
@@ -45,7 +45,7 @@
 #if 0
 static char sccsid[] = "@(#)rpc_soc.c 1.41 89/05/02 Copyr 1988 Sun Micro";
 #else
-__RCSID("$NetBSD: rpc_soc.c,v 1.21 2015/11/10 20:56:20 christos Exp $");
+__RCSID("$NetBSD: rpc_soc.c,v 1.22 2015/11/13 11:23:08 tron Exp $");
 #endif
 #endif
 
@@ -255,8 +255,13 @@ svc_com_create(int fd, u_int sendsize, u
 	memset(, 0, sizeof sccsin);
 	sccsin.sin_family = AF_INET;
 	(void)bindresvport(fd, );
-	if (listen(fd, SOMAXCONN) == -1)
-		goto out;
+	if (strcmp(netid, "udp") != 0 && listen(fd, SOMAXCONN) == -1) {
+		(void) syslog(LOG_ERR,
+		   "svc%s_create: listen(2) failed: %s",
+		   netid, strerror(errno));
+		(void) freenetconfigent(nconf);
+ 		goto out;
+	}
 	svc = svc_tli_create(fd, nconf, NULL, sendsize, recvsize);
 	(void) freenetconfigent(nconf);
 	if (svc == NULL)



CVS commit: src/lib/libc/rpc

2015-11-13 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Fri Nov 13 11:43:26 UTC 2015

Modified Files:
src/lib/libc/rpc: svc.c

Log Message:
Remove now unnecessary cast.


To generate a diff of this commit:
cvs rdiff -u -r1.37 -r1.38 src/lib/libc/rpc/svc.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/lib/libc/rpc

2015-11-13 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Fri Nov 13 11:43:26 UTC 2015

Modified Files:
src/lib/libc/rpc: svc.c

Log Message:
Remove now unnecessary cast.


To generate a diff of this commit:
cvs rdiff -u -r1.37 -r1.38 src/lib/libc/rpc/svc.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libc/rpc/svc.c
diff -u src/lib/libc/rpc/svc.c:1.37 src/lib/libc/rpc/svc.c:1.38
--- src/lib/libc/rpc/svc.c:1.37	Fri Nov 13 10:43:32 2015
+++ src/lib/libc/rpc/svc.c	Fri Nov 13 11:43:26 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: svc.c,v 1.37 2015/11/13 10:43:32 tron Exp $	*/
+/*	$NetBSD: svc.c,v 1.38 2015/11/13 11:43:26 tron Exp $	*/
 
 /*
  * Copyright (c) 2010, Oracle America, Inc.
@@ -37,7 +37,7 @@
 static char *sccsid = "@(#)svc.c 1.44 88/02/08 Copyr 1984 Sun Micro";
 static char *sccsid = "@(#)svc.c	2.4 88/08/11 4.0 RPCSRC";
 #else
-__RCSID("$NetBSD: svc.c,v 1.37 2015/11/13 10:43:32 tron Exp $");
+__RCSID("$NetBSD: svc.c,v 1.38 2015/11/13 11:43:26 tron Exp $");
 #endif
 #endif
 
@@ -155,7 +155,7 @@ xprt_alloc(int sock)
 	memset([__svc_maxxports], 0,
 	(maxset - __svc_maxxports) * sizeof(SVCXPRT *));
 
-	__svc_xports = (void *)newxports;
+	__svc_xports = newxports;
 	__svc_xports++;
 	__svc_maxxports = maxset;
 



CVS commit: src/lib/libc/rpc

2015-11-13 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Fri Nov 13 10:43:32 UTC 2015

Modified Files:
src/lib/libc/rpc: svc.c

Log Message:
Avoid broken state if realloc(3) fails.


To generate a diff of this commit:
cvs rdiff -u -r1.36 -r1.37 src/lib/libc/rpc/svc.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/libexec/httpd

2015-10-30 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Fri Oct 30 18:53:26 UTC 2015

Modified Files:
src/libexec/httpd: Makefile

Log Message:
Fix build with "USE_SSP" set to "yes".


To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 src/libexec/httpd/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/libexec/httpd/Makefile
diff -u src/libexec/httpd/Makefile:1.24 src/libexec/httpd/Makefile:1.25
--- src/libexec/httpd/Makefile:1.24	Wed Aug  5 06:50:44 2015
+++ src/libexec/httpd/Makefile	Fri Oct 30 18:53:26 2015
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.24 2015/08/05 06:50:44 mrg Exp $
+#	$NetBSD: Makefile,v 1.25 2015/10/30 18:53:26 tron Exp $
 #
 #	$eterna: Makefile,v 1.30 2010/07/11 00:34:27 mrg Exp $
 #
@@ -48,6 +48,9 @@ CPPFLAGS+=	-DHAVE_NBUTIL_H
 LDADD+=		-lnbutil
 .endif
 
+COPTS.bozohttpd.c=	-Wno-stack-protector
+
+
 .include 
 
 .if ${MKCRYPTO} != "no"



CVS commit: src/libexec/httpd

2015-10-30 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Fri Oct 30 18:53:26 UTC 2015

Modified Files:
src/libexec/httpd: Makefile

Log Message:
Fix build with "USE_SSP" set to "yes".


To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 src/libexec/httpd/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/ibm-public/postfix/dist

2015-09-12 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sat Sep 12 08:23:24 UTC 2015

Modified Files:
src/external/ibm-public/postfix/dist: makedefs
src/external/ibm-public/postfix/dist/README_FILES: TLS_README
src/external/ibm-public/postfix/dist/html: TLS_README.html
postconf.5.html
src/external/ibm-public/postfix/dist/man/man5: postconf.5
src/external/ibm-public/postfix/dist/proto: TLS_README.html
postconf.proto
src/external/ibm-public/postfix/dist/src/global: mail_params.h
src/external/ibm-public/postfix/dist/src/smtp: smtp.c
src/external/ibm-public/postfix/dist/src/smtpd: smtpd.c
src/external/ibm-public/postfix/dist/src/util: sys_defs.h

Log Message:
Resolve conflicts from last import


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/external/ibm-public/postfix/dist/makedefs
cvs rdiff -u -r1.9 -r1.10 \
src/external/ibm-public/postfix/dist/README_FILES/TLS_README
cvs rdiff -u -r1.10 -r1.11 \
src/external/ibm-public/postfix/dist/html/TLS_README.html
cvs rdiff -u -r1.13 -r1.14 \
src/external/ibm-public/postfix/dist/html/postconf.5.html
cvs rdiff -u -r1.13 -r1.14 \
src/external/ibm-public/postfix/dist/man/man5/postconf.5
cvs rdiff -u -r1.9 -r1.10 \
src/external/ibm-public/postfix/dist/proto/TLS_README.html
cvs rdiff -u -r1.13 -r1.14 \
src/external/ibm-public/postfix/dist/proto/postconf.proto
cvs rdiff -u -r1.12 -r1.13 \
src/external/ibm-public/postfix/dist/src/global/mail_params.h
cvs rdiff -u -r1.8 -r1.9 src/external/ibm-public/postfix/dist/src/smtp/smtp.c
cvs rdiff -u -r1.12 -r1.13 \
src/external/ibm-public/postfix/dist/src/smtpd/smtpd.c
cvs rdiff -u -r1.7 -r1.8 \
src/external/ibm-public/postfix/dist/src/util/sys_defs.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/ibm-public/postfix/dist/makedefs
diff -u src/external/ibm-public/postfix/dist/makedefs:1.10 src/external/ibm-public/postfix/dist/makedefs:1.11
--- src/external/ibm-public/postfix/dist/makedefs:1.10	Sat Jan 24 18:10:52 2015
+++ src/external/ibm-public/postfix/dist/makedefs	Sat Sep 12 08:23:23 2015
@@ -109,6 +109,8 @@ case $# in
  # Officially supported usage.
  0) SYSTEM=`(uname -s) 2>/dev/null`
 RELEASE=`(uname -r) 2>/dev/null`
+# No ${x%%y} support in Solaris 11 /bin/sh
+RELEASE_MAJOR=`expr "$RELEASE" : '\([0-9]*\)'` || exit 1
 VERSION=`(uname -v) 2>/dev/null`
 case "$VERSION" in
  dcosx*) SYSTEM=$VERSION;;
@@ -158,6 +160,9 @@ case "$SYSTEM.$RELEASE" in
 		;;
   FreeBSD.9*)	SYSTYPE=FREEBSD9
 		;;
+  FreeBSD.10*)	SYSTYPE=FREEBSD10
+		: ${CC=cc}
+		;;
  DragonFly.*)	SYSTYPE=DRAGONFLY
 		;;
   OpenBSD.2*)	SYSTYPE=OPENBSD2
@@ -362,7 +367,7 @@ EOF
 		   fi;;
 		esac
 		;;
-Linux.3*)	SYSTYPE=LINUX3
+  Linux.[34].*)	SYSTYPE=LINUX$RELEASE_MAJOR
 		case "$CCARGS" in
 		 *-DNO_DB*) ;;
 		 *-DHAS_DB*) ;;
@@ -470,7 +475,6 @@ ReliantUNIX-?.5.43) SYSTYPE=ReliantUnix5
 Darwin.*)   SYSTYPE=MACOSX
 		# Use the native compiler by default
 		: ${CC=cc}
-		CCARGS="$CCARGS \$(WARN)"
 		# Darwin > 1.3 uses awk and flat_namespace
 		case $RELEASE in
 		 1.[0-3]) AWK=gawk;;
@@ -624,7 +628,7 @@ esac
 # een burned once by a compiler that lies about what warnings it
 # produces, not taking that chance again.
 
-: ${CC='gcc $(WARN)'} ${OPT='-O'} ${DEBUG='-g'} ${AWK=awk} \
+: ${CC=gcc} ${OPT='-O'} ${DEBUG='-g'} ${AWK=awk} \
 ${WARN='-Wall -Wno-comment -Wformat -Wimplicit -Wmissing-prototypes \
 	-Wparentheses -Wstrict-prototypes -Wswitch -Wuninitialized \
 	-Wunused -Wno-missing-braces'}
@@ -647,7 +651,7 @@ AR	= $AR
 ARFL	= $ARFL
 RANLIB	= $RANLIB
 SYSLIBS	= $AUXLIBS $SYSLIBS
-CC	= $CC $CCARGS
+CC	= $CC $CCARGS \$(WARN)
 OPT	= $OPT
 DEBUG	= $DEBUG
 AWK	= $AWK

Index: src/external/ibm-public/postfix/dist/README_FILES/TLS_README
diff -u src/external/ibm-public/postfix/dist/README_FILES/TLS_README:1.9 src/external/ibm-public/postfix/dist/README_FILES/TLS_README:1.10
--- src/external/ibm-public/postfix/dist/README_FILES/TLS_README:1.9	Sun Jul  6 19:45:50 2014
+++ src/external/ibm-public/postfix/dist/README_FILES/TLS_README	Sat Sep 12 08:23:23 2015
@@ -569,13 +569,15 @@ use public-key fingerprints, upgrade to 
 
 SSeerrvveerr--ssiiddee cciipphheerr ccoonnttrroollss
 
-The Postfix SMTP server supports 5 distinct cipher security levels as specified
-by the smtpd_tls_mandatory_ciphers configuration parameter, which determines
-the cipher grade with mandatory TLS encryption. The default value is "medium"
-which is essentially 128-bit encryption or better. With opportunistic TLS
-encryption, the minimum accepted cipher grade is typically "export". The
-corresponding smtpd_tls_ciphers parameter (Postfix >= 2.6) controls the cipher
-grade used with opportunistic TLS.
+The Postfix SMTP server supports 5 distinct cipher grades as specified by the

CVS commit: src/external/ibm-public/postfix/dist

2015-09-12 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sat Sep 12 08:23:24 UTC 2015

Modified Files:
src/external/ibm-public/postfix/dist: makedefs
src/external/ibm-public/postfix/dist/README_FILES: TLS_README
src/external/ibm-public/postfix/dist/html: TLS_README.html
postconf.5.html
src/external/ibm-public/postfix/dist/man/man5: postconf.5
src/external/ibm-public/postfix/dist/proto: TLS_README.html
postconf.proto
src/external/ibm-public/postfix/dist/src/global: mail_params.h
src/external/ibm-public/postfix/dist/src/smtp: smtp.c
src/external/ibm-public/postfix/dist/src/smtpd: smtpd.c
src/external/ibm-public/postfix/dist/src/util: sys_defs.h

Log Message:
Resolve conflicts from last import


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/external/ibm-public/postfix/dist/makedefs
cvs rdiff -u -r1.9 -r1.10 \
src/external/ibm-public/postfix/dist/README_FILES/TLS_README
cvs rdiff -u -r1.10 -r1.11 \
src/external/ibm-public/postfix/dist/html/TLS_README.html
cvs rdiff -u -r1.13 -r1.14 \
src/external/ibm-public/postfix/dist/html/postconf.5.html
cvs rdiff -u -r1.13 -r1.14 \
src/external/ibm-public/postfix/dist/man/man5/postconf.5
cvs rdiff -u -r1.9 -r1.10 \
src/external/ibm-public/postfix/dist/proto/TLS_README.html
cvs rdiff -u -r1.13 -r1.14 \
src/external/ibm-public/postfix/dist/proto/postconf.proto
cvs rdiff -u -r1.12 -r1.13 \
src/external/ibm-public/postfix/dist/src/global/mail_params.h
cvs rdiff -u -r1.8 -r1.9 src/external/ibm-public/postfix/dist/src/smtp/smtp.c
cvs rdiff -u -r1.12 -r1.13 \
src/external/ibm-public/postfix/dist/src/smtpd/smtpd.c
cvs rdiff -u -r1.7 -r1.8 \
src/external/ibm-public/postfix/dist/src/util/sys_defs.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS import: src/external/ibm-public/postfix/dist

2015-09-12 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sat Sep 12 08:20:44 UTC 2015

Update of /cvsroot/src/external/ibm-public/postfix/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv24166

Log Message:
Import Postfix 2.11.6. Changes since version 2.11.4:
- Preparation for OpenSSL 1.2 API changes
- The sender_dependent_relayhost_maps feature ignored the relayhost setting
  in the case of a DUNNO lookup result. It would use the recipient domain
  instead.
- The default TLS settings no longer enable export-grade ciphers, and no
  longer enable the SSLv2 and SSLv3 protocols. These ciphers and protocols
  have little if any legitimate use today, and have instead become a
  vehicle for downgrade attacks.

Status:

Vendor Tag: VENEMA
Release Tags:   PFIX-2-11-6

U src/external/ibm-public/postfix/dist/INSTALL
U src/external/ibm-public/postfix/dist/Makefile
U src/external/ibm-public/postfix/dist/COMPATIBILITY
U src/external/ibm-public/postfix/dist/AAAREADME
U src/external/ibm-public/postfix/dist/COPYRIGHT
U src/external/ibm-public/postfix/dist/HISTORY
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.1
U src/external/ibm-public/postfix/dist/IPv6-ChangeLog
U src/external/ibm-public/postfix/dist/LICENSE
C src/external/ibm-public/postfix/dist/makedefs
U src/external/ibm-public/postfix/dist/Makefile.in
U src/external/ibm-public/postfix/dist/Makefile.init
U src/external/ibm-public/postfix/dist/PORTING
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-1.0
U src/external/ibm-public/postfix/dist/RELEASE_NOTES
U src/external/ibm-public/postfix/dist/TLS_CHANGES
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-1.1
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.0
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.10
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.2
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.3
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.4
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.5
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.6
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.7
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.8
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.9
U src/external/ibm-public/postfix/dist/TLS_ACKNOWLEDGEMENTS
U src/external/ibm-public/postfix/dist/TLS_LICENSE
U src/external/ibm-public/postfix/dist/TLS_TODO
U src/external/ibm-public/postfix/dist/US_PATENT_6321267
U src/external/ibm-public/postfix/dist/pflogsumm_quickfix.txt
U src/external/ibm-public/postfix/dist/postfix-install
U src/external/ibm-public/postfix/dist/README_FILES/RELEASE_NOTES
U src/external/ibm-public/postfix/dist/README_FILES/ADDRESS_REWRITING_README
U src/external/ibm-public/postfix/dist/README_FILES/BACKSCATTER_README
U src/external/ibm-public/postfix/dist/README_FILES/LMDB_README
U src/external/ibm-public/postfix/dist/README_FILES/ADDRESS_VERIFICATION_README
U src/external/ibm-public/postfix/dist/README_FILES/ADDRESS_CLASS_README
U src/external/ibm-public/postfix/dist/README_FILES/FILTER_README
U src/external/ibm-public/postfix/dist/README_FILES/DSN_README
U src/external/ibm-public/postfix/dist/README_FILES/ETRN_README
U src/external/ibm-public/postfix/dist/README_FILES/INSTALL
U src/external/ibm-public/postfix/dist/README_FILES/BASIC_CONFIGURATION_README
U src/external/ibm-public/postfix/dist/README_FILES/BUILTIN_FILTER_README
U src/external/ibm-public/postfix/dist/README_FILES/CDB_README
U src/external/ibm-public/postfix/dist/README_FILES/CONNECTION_CACHE_README
U src/external/ibm-public/postfix/dist/README_FILES/CONTENT_INSPECTION_README
U src/external/ibm-public/postfix/dist/README_FILES/CYRUS_README
U src/external/ibm-public/postfix/dist/README_FILES/DATABASE_README
U src/external/ibm-public/postfix/dist/README_FILES/DB_README
U src/external/ibm-public/postfix/dist/README_FILES/DEBUG_README
U src/external/ibm-public/postfix/dist/README_FILES/FORWARD_SECRECY_README
U src/external/ibm-public/postfix/dist/README_FILES/SCHEDULER_README
U src/external/ibm-public/postfix/dist/README_FILES/MAILDROP_README
U src/external/ibm-public/postfix/dist/README_FILES/IPV6_README
U src/external/ibm-public/postfix/dist/README_FILES/LDAP_README
U src/external/ibm-public/postfix/dist/README_FILES/LINUX_README
U src/external/ibm-public/postfix/dist/README_FILES/AAAREADME
U src/external/ibm-public/postfix/dist/README_FILES/QSHAPE_README
U src/external/ibm-public/postfix/dist/README_FILES/LOCAL_RECIPIENT_README
U src/external/ibm-public/postfix/dist/README_FILES/MEMCACHE_README
U src/external/ibm-public/postfix/dist/README_FILES/MILTER_README
U src/external/ibm-public/postfix/dist/README_FILES/MULTI_INSTANCE_README
U src/external/ibm-public/postfix/dist/README_FILES/MYSQL_README
U src/external/ibm-public/postfix/dist/README_FILES/NFS_README
U src/external/ibm-public/postfix/dist/README_FILES/OVERVIEW
U src/external/ibm-public/postfix/dist/README_FILES/PACKAGE_README
U 

CVS import: src/external/ibm-public/postfix/dist

2015-09-12 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sat Sep 12 08:20:44 UTC 2015

Update of /cvsroot/src/external/ibm-public/postfix/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv24166

Log Message:
Import Postfix 2.11.6. Changes since version 2.11.4:
- Preparation for OpenSSL 1.2 API changes
- The sender_dependent_relayhost_maps feature ignored the relayhost setting
  in the case of a DUNNO lookup result. It would use the recipient domain
  instead.
- The default TLS settings no longer enable export-grade ciphers, and no
  longer enable the SSLv2 and SSLv3 protocols. These ciphers and protocols
  have little if any legitimate use today, and have instead become a
  vehicle for downgrade attacks.

Status:

Vendor Tag: VENEMA
Release Tags:   PFIX-2-11-6

U src/external/ibm-public/postfix/dist/INSTALL
U src/external/ibm-public/postfix/dist/Makefile
U src/external/ibm-public/postfix/dist/COMPATIBILITY
U src/external/ibm-public/postfix/dist/AAAREADME
U src/external/ibm-public/postfix/dist/COPYRIGHT
U src/external/ibm-public/postfix/dist/HISTORY
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.1
U src/external/ibm-public/postfix/dist/IPv6-ChangeLog
U src/external/ibm-public/postfix/dist/LICENSE
C src/external/ibm-public/postfix/dist/makedefs
U src/external/ibm-public/postfix/dist/Makefile.in
U src/external/ibm-public/postfix/dist/Makefile.init
U src/external/ibm-public/postfix/dist/PORTING
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-1.0
U src/external/ibm-public/postfix/dist/RELEASE_NOTES
U src/external/ibm-public/postfix/dist/TLS_CHANGES
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-1.1
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.0
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.10
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.2
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.3
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.4
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.5
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.6
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.7
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.8
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.9
U src/external/ibm-public/postfix/dist/TLS_ACKNOWLEDGEMENTS
U src/external/ibm-public/postfix/dist/TLS_LICENSE
U src/external/ibm-public/postfix/dist/TLS_TODO
U src/external/ibm-public/postfix/dist/US_PATENT_6321267
U src/external/ibm-public/postfix/dist/pflogsumm_quickfix.txt
U src/external/ibm-public/postfix/dist/postfix-install
U src/external/ibm-public/postfix/dist/README_FILES/RELEASE_NOTES
U src/external/ibm-public/postfix/dist/README_FILES/ADDRESS_REWRITING_README
U src/external/ibm-public/postfix/dist/README_FILES/BACKSCATTER_README
U src/external/ibm-public/postfix/dist/README_FILES/LMDB_README
U src/external/ibm-public/postfix/dist/README_FILES/ADDRESS_VERIFICATION_README
U src/external/ibm-public/postfix/dist/README_FILES/ADDRESS_CLASS_README
U src/external/ibm-public/postfix/dist/README_FILES/FILTER_README
U src/external/ibm-public/postfix/dist/README_FILES/DSN_README
U src/external/ibm-public/postfix/dist/README_FILES/ETRN_README
U src/external/ibm-public/postfix/dist/README_FILES/INSTALL
U src/external/ibm-public/postfix/dist/README_FILES/BASIC_CONFIGURATION_README
U src/external/ibm-public/postfix/dist/README_FILES/BUILTIN_FILTER_README
U src/external/ibm-public/postfix/dist/README_FILES/CDB_README
U src/external/ibm-public/postfix/dist/README_FILES/CONNECTION_CACHE_README
U src/external/ibm-public/postfix/dist/README_FILES/CONTENT_INSPECTION_README
U src/external/ibm-public/postfix/dist/README_FILES/CYRUS_README
U src/external/ibm-public/postfix/dist/README_FILES/DATABASE_README
U src/external/ibm-public/postfix/dist/README_FILES/DB_README
U src/external/ibm-public/postfix/dist/README_FILES/DEBUG_README
U src/external/ibm-public/postfix/dist/README_FILES/FORWARD_SECRECY_README
U src/external/ibm-public/postfix/dist/README_FILES/SCHEDULER_README
U src/external/ibm-public/postfix/dist/README_FILES/MAILDROP_README
U src/external/ibm-public/postfix/dist/README_FILES/IPV6_README
U src/external/ibm-public/postfix/dist/README_FILES/LDAP_README
U src/external/ibm-public/postfix/dist/README_FILES/LINUX_README
U src/external/ibm-public/postfix/dist/README_FILES/AAAREADME
U src/external/ibm-public/postfix/dist/README_FILES/QSHAPE_README
U src/external/ibm-public/postfix/dist/README_FILES/LOCAL_RECIPIENT_README
U src/external/ibm-public/postfix/dist/README_FILES/MEMCACHE_README
U src/external/ibm-public/postfix/dist/README_FILES/MILTER_README
U src/external/ibm-public/postfix/dist/README_FILES/MULTI_INSTANCE_README
U src/external/ibm-public/postfix/dist/README_FILES/MYSQL_README
U src/external/ibm-public/postfix/dist/README_FILES/NFS_README
U src/external/ibm-public/postfix/dist/README_FILES/OVERVIEW
U src/external/ibm-public/postfix/dist/README_FILES/PACKAGE_README
U 

CVS commit: src/doc

2015-09-12 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sat Sep 12 09:49:21 UTC 2015

Modified Files:
src/doc: 3RDPARTY

Log Message:
Postfix 2.11.6 has been imported.


To generate a diff of this commit:
cvs rdiff -u -r1.1253 -r1.1254 src/doc/3RDPARTY

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/3RDPARTY
diff -u src/doc/3RDPARTY:1.1253 src/doc/3RDPARTY:1.1254
--- src/doc/3RDPARTY:1.1253	Fri Sep 11 08:02:20 2015
+++ src/doc/3RDPARTY	Sat Sep 12 09:49:21 2015
@@ -1,4 +1,4 @@
-#	$NetBSD: 3RDPARTY,v 1.1253 2015/09/11 08:02:20 tron Exp $
+#	$NetBSD: 3RDPARTY,v 1.1254 2015/09/12 09:49:21 tron Exp $
 #
 # This file contains a list of the software that has been integrated into
 # NetBSD where we are not the primary maintainer.
@@ -1140,13 +1140,13 @@ and more. Vern's ping is gone. We are to
 now to do a new import.
 
 Package:	Postfix
-Version:	2.11.4
+Version:	2.11.6
 Current Vers:	3.0.2
 Maintainer:	Wietse Venema 
 Archive Site:	ftp://postfix.cloud9.net/official/
 Home Page:	http://www.postfix.org/
 Mailing List:	postfix-us...@postfix.org
-Responsible:	christos, tron
+Responsible:	christos
 License:	IBM Public License. See also src/external/ibm-public/postfix/dist.
 Location:	external/ibm-public/postfix/dist
 Notes:
@@ -1376,7 +1376,7 @@ Maintainer:	Jean-loup Gailly and Mark Ad
 Archive Site:	http://www.zlib.net/
 Home Page:	http://www.zlib.net/
 Mailing List:
-Responsible:	gwr, tron, christos
+Responsible:	gwr, christos
 License:	BSD (3-clause)
 Location:	common/dist/zlib
 Notes:



CVS commit: src/doc

2015-09-12 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sat Sep 12 09:49:21 UTC 2015

Modified Files:
src/doc: 3RDPARTY

Log Message:
Postfix 2.11.6 has been imported.


To generate a diff of this commit:
cvs rdiff -u -r1.1253 -r1.1254 src/doc/3RDPARTY

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/doc

2015-09-11 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Fri Sep 11 08:02:20 UTC 2015

Modified Files:
src/doc: 3RDPARTY

Log Message:
XFree86 was removed from the source tree.


To generate a diff of this commit:
cvs rdiff -u -r1.1252 -r1.1253 src/doc/3RDPARTY

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/3RDPARTY
diff -u src/doc/3RDPARTY:1.1252 src/doc/3RDPARTY:1.1253
--- src/doc/3RDPARTY:1.1252	Mon Sep  7 10:35:10 2015
+++ src/doc/3RDPARTY	Fri Sep 11 08:02:20 2015
@@ -1,4 +1,4 @@
-#	$NetBSD: 3RDPARTY,v 1.1252 2015/09/07 10:35:10 wiz Exp $
+#	$NetBSD: 3RDPARTY,v 1.1253 2015/09/11 08:02:20 tron Exp $
 #
 # This file contains a list of the software that has been integrated into
 # NetBSD where we are not the primary maintainer.
@@ -1369,23 +1369,6 @@ Location:	external/bsd/wpa/dist
 Notes:
 See /usr/src/external/bsd/wpa/NetBSD-upgrade for update instructions.
 
-Package:	XFree86
-Version:	4.5.0
-Current Vers:	4.8.0
-Maintainer:	XFree86 Project, Inc.
-Archive Site:	ftp://ftp.xfree86.org/pub/XFree86/
-Home Page:	http://www.xfree86.org/
-Mailing List:	de...@xfree86.org
-Responsible:	tron
-License:	XFree
-Location:	(xsrc)
-Notes:
-4.x:
- Only X4??src-1 to X4??src-6 were imported. X4??src-7 contains postscript
- files which we don't need in our tree.
- ALL changes must be sent back to the XFree86 repository. Patches should
- be submitted back via http://bugzilla.xfree86.org.
-
 Package:	zlib
 Version:	1.2.3
 Current Vers:	1.2.8



CVS commit: src/doc

2015-09-11 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Fri Sep 11 08:02:20 UTC 2015

Modified Files:
src/doc: 3RDPARTY

Log Message:
XFree86 was removed from the source tree.


To generate a diff of this commit:
cvs rdiff -u -r1.1252 -r1.1253 src/doc/3RDPARTY

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/gpl3/gdb/lib/libbfd

2015-08-21 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Fri Aug 21 08:19:28 UTC 2015

Modified Files:
src/external/gpl3/gdb/lib/libbfd: Makefile

Log Message:
Fix build with USE_SSP=yes.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/external/gpl3/gdb/lib/libbfd/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/gpl3/gdb/lib/libbfd/Makefile
diff -u src/external/gpl3/gdb/lib/libbfd/Makefile:1.6 src/external/gpl3/gdb/lib/libbfd/Makefile:1.7
--- src/external/gpl3/gdb/lib/libbfd/Makefile:1.6	Sun Aug 16 09:51:58 2015
+++ src/external/gpl3/gdb/lib/libbfd/Makefile	Fri Aug 21 08:19:28 2015
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.6 2015/08/16 09:51:58 christos Exp $
+#	$NetBSD: Makefile,v 1.7 2015/08/21 08:19:28 tron Exp $
 
 .include bsd.own.mk
 .include ../Makefile.inc
@@ -27,6 +27,8 @@ CLEANFILES+=	elf32-target.h elf64-target
 
 .include bsd.lib.mk
 
+COPTS+= -Wno-stack-protector
+
 ${OBJS} ${SOBJS}: elf32-target.h elf64-target.h
 targets.o targets.pico: targmatch.h Makefile
 



CVS commit: src/external/gpl3/gdb/lib/libbfd

2015-08-21 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Fri Aug 21 08:19:28 UTC 2015

Modified Files:
src/external/gpl3/gdb/lib/libbfd: Makefile

Log Message:
Fix build with USE_SSP=yes.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/external/gpl3/gdb/lib/libbfd/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/doc

2015-03-02 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Tue Mar  3 07:32:56 UTC 2015

Modified Files:
src/doc: CHANGES CHANGES.prev

Log Message:
Postfix 2.11.4 will ship with NetBSD 7.0.


To generate a diff of this commit:
cvs rdiff -u -r1.2048 -r1.2049 src/doc/CHANGES
cvs rdiff -u -r1.125 -r1.126 src/doc/CHANGES.prev

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES
diff -u src/doc/CHANGES:1.2048 src/doc/CHANGES:1.2049
--- src/doc/CHANGES:1.2048	Thu Feb 26 10:14:33 2015
+++ src/doc/CHANGES	Tue Mar  3 07:32:56 2015
@@ -1,4 +1,4 @@
-# LIST OF CHANGES FROM LAST RELEASE:			$Revision: 1.2048 $
+# LIST OF CHANGES FROM LAST RELEASE:			$Revision: 1.2049 $
 #
 #
 # [Note: This file does not mention every change made to the NetBSD source tree.
@@ -131,6 +131,5 @@ Changes from NetBSD 7.0 to NetBSD 8.0:
 	dhcpcd(8): Import dhcpcd-6.7.1. [roy 20150130]
 	zoneinfo: Import tzdata2015a. [apb 20150131]
 	libc: Import tzdata2015a. [christos 20150131]
-	postfix(1): Import version 2.11.4. [tron 20150221]
 	bind: patch to version 9.10.1-P2. [spz 20150221]
 	network: introduce RTF_LOCAL for local address routes. [roy 20150226]

Index: src/doc/CHANGES.prev
diff -u src/doc/CHANGES.prev:1.125 src/doc/CHANGES.prev:1.126
--- src/doc/CHANGES.prev:1.125	Tue Jan 27 18:20:56 2015
+++ src/doc/CHANGES.prev	Tue Mar  3 07:32:56 2015
@@ -1,4 +1,4 @@
-LIST OF CHANGES FROM PREVIOUS RELEASES:			$Revision: 1.125 $
+LIST OF CHANGES FROM PREVIOUS RELEASES:			$Revision: 1.126 $
 
 
 Changes from 386bsd 0.1 + patchkit 0.2.2 to NetBSD 0.8:
@@ -11712,3 +11712,4 @@ Changes from NetBSD 6.0 to NetBSD 7.0:
 			QEMU, KVM, and Google Compute Engine.  From OpenBSD.
 			[tls 20141026]
 	postfix(1): Import version 2.11.3. [tron 20150124]
+	postfix(1): Import version 2.11.4. [tron 20150221]



CVS commit: src/doc

2015-03-02 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Tue Mar  3 07:32:56 UTC 2015

Modified Files:
src/doc: CHANGES CHANGES.prev

Log Message:
Postfix 2.11.4 will ship with NetBSD 7.0.


To generate a diff of this commit:
cvs rdiff -u -r1.2048 -r1.2049 src/doc/CHANGES
cvs rdiff -u -r1.125 -r1.126 src/doc/CHANGES.prev

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS import: src/external/ibm-public/postfix/dist

2015-02-21 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sat Feb 21 11:57:03 UTC 2015

Update of /cvsroot/src/external/ibm-public/postfix/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv18093

Log Message:
Import Postfix 2.11.4. Changes since version 2.11.3:
- Fix a core dump when smtp_policy_maps specifies an invalid TLS level.
- Fix a missing  in \%s\, in postconf(1) fatal error messages, which
  violated the C language spec. Reported by Iain Hibbert.
- Stop excessive recursion in the cleanup server while recovering from a
  virtual alias expansion loop. Problem found at Two Sigma.
- Stop exponential memory allocation with virtual alias expansion loops.
  This came to light after fixing the previous problem.

Status:

Vendor Tag: VENEMA
Release Tags:   PFIX-2-11-4

U src/external/ibm-public/postfix/dist/Makefile
U src/external/ibm-public/postfix/dist/AAAREADME
U src/external/ibm-public/postfix/dist/COMPATIBILITY
U src/external/ibm-public/postfix/dist/COPYRIGHT
U src/external/ibm-public/postfix/dist/HISTORY
U src/external/ibm-public/postfix/dist/IPv6-ChangeLog
U src/external/ibm-public/postfix/dist/LICENSE
U src/external/ibm-public/postfix/dist/makedefs
U src/external/ibm-public/postfix/dist/Makefile.in
U src/external/ibm-public/postfix/dist/Makefile.init
U src/external/ibm-public/postfix/dist/PORTING
U src/external/ibm-public/postfix/dist/RELEASE_NOTES
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-1.0
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-1.1
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.0
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.1
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.10
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.2
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.3
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.4
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.5
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.6
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.7
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.8
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.9
U src/external/ibm-public/postfix/dist/TLS_ACKNOWLEDGEMENTS
U src/external/ibm-public/postfix/dist/TLS_CHANGES
U src/external/ibm-public/postfix/dist/TLS_LICENSE
U src/external/ibm-public/postfix/dist/TLS_TODO
U src/external/ibm-public/postfix/dist/US_PATENT_6321267
U src/external/ibm-public/postfix/dist/pflogsumm_quickfix.txt
U src/external/ibm-public/postfix/dist/postfix-install
U src/external/ibm-public/postfix/dist/INSTALL
U src/external/ibm-public/postfix/dist/README_FILES/BACKSCATTER_README
U src/external/ibm-public/postfix/dist/README_FILES/LMDB_README
U src/external/ibm-public/postfix/dist/README_FILES/ADDRESS_REWRITING_README
U src/external/ibm-public/postfix/dist/README_FILES/ADDRESS_CLASS_README
U src/external/ibm-public/postfix/dist/README_FILES/FILTER_README
U src/external/ibm-public/postfix/dist/README_FILES/DSN_README
U src/external/ibm-public/postfix/dist/README_FILES/ADDRESS_VERIFICATION_README
U src/external/ibm-public/postfix/dist/README_FILES/BASIC_CONFIGURATION_README
U src/external/ibm-public/postfix/dist/README_FILES/BUILTIN_FILTER_README
U src/external/ibm-public/postfix/dist/README_FILES/CDB_README
U src/external/ibm-public/postfix/dist/README_FILES/CONNECTION_CACHE_README
U src/external/ibm-public/postfix/dist/README_FILES/CONTENT_INSPECTION_README
U src/external/ibm-public/postfix/dist/README_FILES/CYRUS_README
U src/external/ibm-public/postfix/dist/README_FILES/DATABASE_README
U src/external/ibm-public/postfix/dist/README_FILES/DB_README
U src/external/ibm-public/postfix/dist/README_FILES/DEBUG_README
U src/external/ibm-public/postfix/dist/README_FILES/INSTALL
U src/external/ibm-public/postfix/dist/README_FILES/ETRN_README
U src/external/ibm-public/postfix/dist/README_FILES/SCHEDULER_README
U src/external/ibm-public/postfix/dist/README_FILES/FORWARD_SECRECY_README
U src/external/ibm-public/postfix/dist/README_FILES/IPV6_README
U src/external/ibm-public/postfix/dist/README_FILES/LDAP_README
U src/external/ibm-public/postfix/dist/README_FILES/LINUX_README
U src/external/ibm-public/postfix/dist/README_FILES/AAAREADME
U src/external/ibm-public/postfix/dist/README_FILES/LOCAL_RECIPIENT_README
U src/external/ibm-public/postfix/dist/README_FILES/MAILDROP_README
U src/external/ibm-public/postfix/dist/README_FILES/MEMCACHE_README
U src/external/ibm-public/postfix/dist/README_FILES/MILTER_README
U src/external/ibm-public/postfix/dist/README_FILES/MULTI_INSTANCE_README
U src/external/ibm-public/postfix/dist/README_FILES/MYSQL_README
U src/external/ibm-public/postfix/dist/README_FILES/NFS_README
U src/external/ibm-public/postfix/dist/README_FILES/OVERVIEW
U src/external/ibm-public/postfix/dist/README_FILES/PACKAGE_README
U src/external/ibm-public/postfix/dist/README_FILES/PCRE_README
U src/external/ibm-public/postfix/dist/README_FILES/PGSQL_README
U 

CVS import: src/external/ibm-public/postfix/dist

2015-02-21 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sat Feb 21 11:57:03 UTC 2015

Update of /cvsroot/src/external/ibm-public/postfix/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv18093

Log Message:
Import Postfix 2.11.4. Changes since version 2.11.3:
- Fix a core dump when smtp_policy_maps specifies an invalid TLS level.
- Fix a missing  in \%s\, in postconf(1) fatal error messages, which
  violated the C language spec. Reported by Iain Hibbert.
- Stop excessive recursion in the cleanup server while recovering from a
  virtual alias expansion loop. Problem found at Two Sigma.
- Stop exponential memory allocation with virtual alias expansion loops.
  This came to light after fixing the previous problem.

Status:

Vendor Tag: VENEMA
Release Tags:   PFIX-2-11-4

U src/external/ibm-public/postfix/dist/Makefile
U src/external/ibm-public/postfix/dist/AAAREADME
U src/external/ibm-public/postfix/dist/COMPATIBILITY
U src/external/ibm-public/postfix/dist/COPYRIGHT
U src/external/ibm-public/postfix/dist/HISTORY
U src/external/ibm-public/postfix/dist/IPv6-ChangeLog
U src/external/ibm-public/postfix/dist/LICENSE
U src/external/ibm-public/postfix/dist/makedefs
U src/external/ibm-public/postfix/dist/Makefile.in
U src/external/ibm-public/postfix/dist/Makefile.init
U src/external/ibm-public/postfix/dist/PORTING
U src/external/ibm-public/postfix/dist/RELEASE_NOTES
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-1.0
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-1.1
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.0
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.1
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.10
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.2
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.3
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.4
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.5
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.6
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.7
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.8
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.9
U src/external/ibm-public/postfix/dist/TLS_ACKNOWLEDGEMENTS
U src/external/ibm-public/postfix/dist/TLS_CHANGES
U src/external/ibm-public/postfix/dist/TLS_LICENSE
U src/external/ibm-public/postfix/dist/TLS_TODO
U src/external/ibm-public/postfix/dist/US_PATENT_6321267
U src/external/ibm-public/postfix/dist/pflogsumm_quickfix.txt
U src/external/ibm-public/postfix/dist/postfix-install
U src/external/ibm-public/postfix/dist/INSTALL
U src/external/ibm-public/postfix/dist/README_FILES/BACKSCATTER_README
U src/external/ibm-public/postfix/dist/README_FILES/LMDB_README
U src/external/ibm-public/postfix/dist/README_FILES/ADDRESS_REWRITING_README
U src/external/ibm-public/postfix/dist/README_FILES/ADDRESS_CLASS_README
U src/external/ibm-public/postfix/dist/README_FILES/FILTER_README
U src/external/ibm-public/postfix/dist/README_FILES/DSN_README
U src/external/ibm-public/postfix/dist/README_FILES/ADDRESS_VERIFICATION_README
U src/external/ibm-public/postfix/dist/README_FILES/BASIC_CONFIGURATION_README
U src/external/ibm-public/postfix/dist/README_FILES/BUILTIN_FILTER_README
U src/external/ibm-public/postfix/dist/README_FILES/CDB_README
U src/external/ibm-public/postfix/dist/README_FILES/CONNECTION_CACHE_README
U src/external/ibm-public/postfix/dist/README_FILES/CONTENT_INSPECTION_README
U src/external/ibm-public/postfix/dist/README_FILES/CYRUS_README
U src/external/ibm-public/postfix/dist/README_FILES/DATABASE_README
U src/external/ibm-public/postfix/dist/README_FILES/DB_README
U src/external/ibm-public/postfix/dist/README_FILES/DEBUG_README
U src/external/ibm-public/postfix/dist/README_FILES/INSTALL
U src/external/ibm-public/postfix/dist/README_FILES/ETRN_README
U src/external/ibm-public/postfix/dist/README_FILES/SCHEDULER_README
U src/external/ibm-public/postfix/dist/README_FILES/FORWARD_SECRECY_README
U src/external/ibm-public/postfix/dist/README_FILES/IPV6_README
U src/external/ibm-public/postfix/dist/README_FILES/LDAP_README
U src/external/ibm-public/postfix/dist/README_FILES/LINUX_README
U src/external/ibm-public/postfix/dist/README_FILES/AAAREADME
U src/external/ibm-public/postfix/dist/README_FILES/LOCAL_RECIPIENT_README
U src/external/ibm-public/postfix/dist/README_FILES/MAILDROP_README
U src/external/ibm-public/postfix/dist/README_FILES/MEMCACHE_README
U src/external/ibm-public/postfix/dist/README_FILES/MILTER_README
U src/external/ibm-public/postfix/dist/README_FILES/MULTI_INSTANCE_README
U src/external/ibm-public/postfix/dist/README_FILES/MYSQL_README
U src/external/ibm-public/postfix/dist/README_FILES/NFS_README
U src/external/ibm-public/postfix/dist/README_FILES/OVERVIEW
U src/external/ibm-public/postfix/dist/README_FILES/PACKAGE_README
U src/external/ibm-public/postfix/dist/README_FILES/PCRE_README
U src/external/ibm-public/postfix/dist/README_FILES/PGSQL_README
U 

CVS commit: src/external/ibm-public/postfix/dist/src/postconf

2015-02-21 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sat Feb 21 12:00:49 UTC 2015

Modified Files:
src/external/ibm-public/postfix/dist/src/postconf: postconf_master.c

Log Message:
Resolve conflicts from last import.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 \
src/external/ibm-public/postfix/dist/src/postconf/postconf_master.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/doc

2015-02-21 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sat Feb 21 12:05:47 UTC 2015

Modified Files:
src/doc: 3RDPARTY CHANGES

Log Message:
Postfix 2.11.4 was imported.


To generate a diff of this commit:
cvs rdiff -u -r1.1205 -r1.1206 src/doc/3RDPARTY
cvs rdiff -u -r1.2045 -r1.2046 src/doc/CHANGES

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/3RDPARTY
diff -u src/doc/3RDPARTY:1.1205 src/doc/3RDPARTY:1.1206
--- src/doc/3RDPARTY:1.1205	Sat Feb 21 08:57:48 2015
+++ src/doc/3RDPARTY	Sat Feb 21 12:05:47 2015
@@ -1,4 +1,4 @@
-#	$NetBSD: 3RDPARTY,v 1.1205 2015/02/21 08:57:48 wiz Exp $
+#	$NetBSD: 3RDPARTY,v 1.1206 2015/02/21 12:05:47 tron Exp $
 #
 # This file contains a list of the software that has been integrated into
 # NetBSD where we are not the primary maintainer.
@@ -1140,7 +1140,7 @@ and more. Vern's ping is gone. We are to
 now to do a new import.
 
 Package:	Postfix
-Version:	2.11.3
+Version:	2.11.4
 Current Vers:	3.0
 Maintainer:	Wietse Venema wie...@porcupine.org
 Archive Site:	ftp://postfix.cloud9.net/official/

Index: src/doc/CHANGES
diff -u src/doc/CHANGES:1.2045 src/doc/CHANGES:1.2046
--- src/doc/CHANGES:1.2045	Sat Jan 31 19:14:45 2015
+++ src/doc/CHANGES	Sat Feb 21 12:05:47 2015
@@ -1,4 +1,4 @@
-# LIST OF CHANGES FROM LAST RELEASE:			$Revision: 1.2045 $
+# LIST OF CHANGES FROM LAST RELEASE:			$Revision: 1.2046 $
 #
 #
 # [Note: This file does not mention every change made to the NetBSD source tree.
@@ -131,3 +131,4 @@ Changes from NetBSD 7.0 to NetBSD 8.0:
 	dhcpcd(8): Import dhcpcd-6.7.1. [roy 20150130]
 	zoneinfo: Import tzdata2015a. [apb 20150131]
 	libc: Import tzdata2015a. [christos 20150131]
+	postfix(1): Import version 2.11.4. [tron 20150221]



CVS commit: src/doc

2015-02-21 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sat Feb 21 12:05:47 UTC 2015

Modified Files:
src/doc: 3RDPARTY CHANGES

Log Message:
Postfix 2.11.4 was imported.


To generate a diff of this commit:
cvs rdiff -u -r1.1205 -r1.1206 src/doc/3RDPARTY
cvs rdiff -u -r1.2045 -r1.2046 src/doc/CHANGES

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/doc

2015-01-27 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Tue Jan 27 18:20:56 UTC 2015

Modified Files:
src/doc: CHANGES CHANGES.prev

Log Message:
Postfix 2.11.3 will ship with NetBSD 7.0.


To generate a diff of this commit:
cvs rdiff -u -r1.2039 -r1.2040 src/doc/CHANGES
cvs rdiff -u -r1.124 -r1.125 src/doc/CHANGES.prev

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES
diff -u src/doc/CHANGES:1.2039 src/doc/CHANGES:1.2040
--- src/doc/CHANGES:1.2039	Sun Jan 25 15:51:17 2015
+++ src/doc/CHANGES	Tue Jan 27 18:20:56 2015
@@ -1,4 +1,4 @@
-# LIST OF CHANGES FROM LAST RELEASE:			$Revision: 1.2039 $
+# LIST OF CHANGES FROM LAST RELEASE:			$Revision: 1.2040 $
 #
 #
 # [Note: This file does not mention every change made to the NetBSD source tree.
@@ -126,5 +126,4 @@ Changes from NetBSD 7.0 to NetBSD 8.0:
 		nfs3 rpc support for amfs [christos 20150117]
 	arm: Add support for Zynq SoC. [hkenken 20150123]
 	evbarm: Add support for the PARALLELLA (Zynq). [hkenken 20150123]
-	postfix(1): Import version 2.11.3. [tron 20150124]
 	blacklist: Added daemon and library [christos 20150125]

Index: src/doc/CHANGES.prev
diff -u src/doc/CHANGES.prev:1.124 src/doc/CHANGES.prev:1.125
--- src/doc/CHANGES.prev:1.124	Fri Jan  9 09:29:14 2015
+++ src/doc/CHANGES.prev	Tue Jan 27 18:20:56 2015
@@ -1,4 +1,4 @@
-LIST OF CHANGES FROM PREVIOUS RELEASES:			$Revision: 1.124 $
+LIST OF CHANGES FROM PREVIOUS RELEASES:			$Revision: 1.125 $
 
 
 Changes from 386bsd 0.1 + patchkit 0.2.2 to NetBSD 0.8:
@@ -11711,3 +11711,4 @@ Changes from NetBSD 6.0 to NetBSD 7.0:
 	viornd(4):	Add driver for VirtIO entropy source available on
 			QEMU, KVM, and Google Compute Engine.  From OpenBSD.
 			[tls 20141026]
+	postfix(1): Import version 2.11.3. [tron 20150124]



CVS commit: src/doc

2015-01-27 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Tue Jan 27 18:20:56 UTC 2015

Modified Files:
src/doc: CHANGES CHANGES.prev

Log Message:
Postfix 2.11.3 will ship with NetBSD 7.0.


To generate a diff of this commit:
cvs rdiff -u -r1.2039 -r1.2040 src/doc/CHANGES
cvs rdiff -u -r1.124 -r1.125 src/doc/CHANGES.prev

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/doc

2015-01-24 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sat Jan 24 19:24:08 UTC 2015

Modified Files:
src/doc: 3RDPARTY CHANGES

Log Message:
Postfix 2.11.3 was imported.


To generate a diff of this commit:
cvs rdiff -u -r1.1194 -r1.1195 src/doc/3RDPARTY
cvs rdiff -u -r1.2037 -r1.2038 src/doc/CHANGES

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/3RDPARTY
diff -u src/doc/3RDPARTY:1.1194 src/doc/3RDPARTY:1.1195
--- src/doc/3RDPARTY:1.1194	Sat Jan 17 17:48:41 2015
+++ src/doc/3RDPARTY	Sat Jan 24 19:24:08 2015
@@ -1,4 +1,4 @@
-#	$NetBSD: 3RDPARTY,v 1.1194 2015/01/17 17:48:41 christos Exp $
+#	$NetBSD: 3RDPARTY,v 1.1195 2015/01/24 19:24:08 tron Exp $
 #
 # This file contains a list of the software that has been integrated into
 # NetBSD where we are not the primary maintainer.
@@ -1115,8 +1115,8 @@ and more. Vern's ping is gone. We are to
 now to do a new import.
 
 Package:	Postfix
-Version:	2.11.1
-Current Vers:	2.11.1
+Version:	2.11.3
+Current Vers:	2.11.3
 Maintainer:	Wietse Venema wie...@porcupine.org
 Archive Site:	ftp://postfix.cloud9.net/official/
 Home Page:	http://www.postfix.org/

Index: src/doc/CHANGES
diff -u src/doc/CHANGES:1.2037 src/doc/CHANGES:1.2038
--- src/doc/CHANGES:1.2037	Fri Jan 23 12:37:54 2015
+++ src/doc/CHANGES	Sat Jan 24 19:24:08 2015
@@ -1,4 +1,4 @@
-# LIST OF CHANGES FROM LAST RELEASE:			$Revision: 1.2037 $
+# LIST OF CHANGES FROM LAST RELEASE:			$Revision: 1.2038 $
 #
 #
 # [Note: This file does not mention every change made to the NetBSD source tree.
@@ -126,3 +126,4 @@ Changes from NetBSD 7.0 to NetBSD 8.0:
 		nfs3 rpc support for amfs [christos 20150117]
 	arm: Add support for Zynq SoC. [hkenken 20150123]
 	evbarm: Add support for the PARALLELLA (Zynq). [hkenken 20150123]
+	postfix(1): Import version 2.11.3. [tron 20150124]



CVS commit: src/doc

2015-01-24 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sat Jan 24 19:24:08 UTC 2015

Modified Files:
src/doc: 3RDPARTY CHANGES

Log Message:
Postfix 2.11.3 was imported.


To generate a diff of this commit:
cvs rdiff -u -r1.1194 -r1.1195 src/doc/3RDPARTY
cvs rdiff -u -r1.2037 -r1.2038 src/doc/CHANGES

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/ibm-public/postfix/dist

2015-01-24 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sat Jan 24 18:10:52 UTC 2015

Modified Files:
src/external/ibm-public/postfix/dist: makedefs
src/external/ibm-public/postfix/dist/src/cleanup: cleanup.h
src/external/ibm-public/postfix/dist/src/smtpd: smtpd.c

Log Message:
Resolve conflicts from last import.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/external/ibm-public/postfix/dist/makedefs
cvs rdiff -u -r1.6 -r1.7 \
src/external/ibm-public/postfix/dist/src/cleanup/cleanup.h
cvs rdiff -u -r1.11 -r1.12 \
src/external/ibm-public/postfix/dist/src/smtpd/smtpd.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS import: src/external/ibm-public/postfix/dist

2015-01-24 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sat Jan 24 18:08:37 UTC 2015

Update of /cvsroot/src/external/ibm-public/postfix/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv13177

Log Message:
Import Postfix 2.11.3. Changes since version 2.11.1:
- Fix for DMARC implementations based on SPF policy plus DKIM Milter. The
  PREPEND access/policy action added headers ABOVE Postfix's own Received:
  header, exposing Postfix's own Received: header to Milters (protocol
  violation) and hiding the PREPENDed header from Milters. PREPENDed
  headers are now added BELOW Postfix's own Received: header and remain
  visible to Milters.
- The Postfix SMTP server logged an incorrect client name in reject
  messages for check_reverse_client_hostname_access and
  check_reverse_client_hostname_{mx,ns}_access. They replied with the
  verified client name, instead of the name that was rejected.
- The TLS client logged that an anonymous TLS connection was Untrusted,
  instead of Anonymous.
- Fix for configurations that prepend message headers with Postfix access
  maps, policy servers or Milter applications. Postfix now hides its own
  Received: header from Milters and exposes prepended headers to Milters,
  regardless of the mechanism used to prepend a header. This fix reverts
  a partial solution that was released on October 13, 2014, and replaces
  it with a complete solution.

Status:

Vendor Tag: VENEMA
Release Tags:   PFIX-2-11-3

U src/external/ibm-public/postfix/dist/Makefile
U src/external/ibm-public/postfix/dist/AAAREADME
U src/external/ibm-public/postfix/dist/COMPATIBILITY
U src/external/ibm-public/postfix/dist/COPYRIGHT
U src/external/ibm-public/postfix/dist/HISTORY
U src/external/ibm-public/postfix/dist/IPv6-ChangeLog
U src/external/ibm-public/postfix/dist/LICENSE
C src/external/ibm-public/postfix/dist/makedefs
U src/external/ibm-public/postfix/dist/Makefile.in
U src/external/ibm-public/postfix/dist/Makefile.init
U src/external/ibm-public/postfix/dist/PORTING
U src/external/ibm-public/postfix/dist/RELEASE_NOTES
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-1.0
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-1.1
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.0
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.1
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.10
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.2
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.3
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.4
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.5
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.6
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.7
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.8
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.9
U src/external/ibm-public/postfix/dist/TLS_ACKNOWLEDGEMENTS
U src/external/ibm-public/postfix/dist/TLS_CHANGES
U src/external/ibm-public/postfix/dist/TLS_LICENSE
U src/external/ibm-public/postfix/dist/TLS_TODO
U src/external/ibm-public/postfix/dist/US_PATENT_6321267
U src/external/ibm-public/postfix/dist/pflogsumm_quickfix.txt
U src/external/ibm-public/postfix/dist/postfix-install
U src/external/ibm-public/postfix/dist/INSTALL
U src/external/ibm-public/postfix/dist/README_FILES/BACKSCATTER_README
U src/external/ibm-public/postfix/dist/README_FILES/LMDB_README
U src/external/ibm-public/postfix/dist/README_FILES/ADDRESS_REWRITING_README
U src/external/ibm-public/postfix/dist/README_FILES/ADDRESS_CLASS_README
U src/external/ibm-public/postfix/dist/README_FILES/FILTER_README
U src/external/ibm-public/postfix/dist/README_FILES/DSN_README
U src/external/ibm-public/postfix/dist/README_FILES/ADDRESS_VERIFICATION_README
U src/external/ibm-public/postfix/dist/README_FILES/BASIC_CONFIGURATION_README
U src/external/ibm-public/postfix/dist/README_FILES/BUILTIN_FILTER_README
U src/external/ibm-public/postfix/dist/README_FILES/CDB_README
U src/external/ibm-public/postfix/dist/README_FILES/CONNECTION_CACHE_README
U src/external/ibm-public/postfix/dist/README_FILES/CONTENT_INSPECTION_README
U src/external/ibm-public/postfix/dist/README_FILES/CYRUS_README
U src/external/ibm-public/postfix/dist/README_FILES/DATABASE_README
U src/external/ibm-public/postfix/dist/README_FILES/DB_README
U src/external/ibm-public/postfix/dist/README_FILES/DEBUG_README
U src/external/ibm-public/postfix/dist/README_FILES/INSTALL
U src/external/ibm-public/postfix/dist/README_FILES/ETRN_README
U src/external/ibm-public/postfix/dist/README_FILES/SCHEDULER_README
U src/external/ibm-public/postfix/dist/README_FILES/FORWARD_SECRECY_README
U src/external/ibm-public/postfix/dist/README_FILES/IPV6_README
U src/external/ibm-public/postfix/dist/README_FILES/LDAP_README
U src/external/ibm-public/postfix/dist/README_FILES/LINUX_README
U src/external/ibm-public/postfix/dist/README_FILES/AAAREADME
U src/external/ibm-public/postfix/dist/README_FILES/LOCAL_RECIPIENT_README
U 

CVS import: src/external/ibm-public/postfix/dist

2015-01-24 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sat Jan 24 18:08:37 UTC 2015

Update of /cvsroot/src/external/ibm-public/postfix/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv13177

Log Message:
Import Postfix 2.11.3. Changes since version 2.11.1:
- Fix for DMARC implementations based on SPF policy plus DKIM Milter. The
  PREPEND access/policy action added headers ABOVE Postfix's own Received:
  header, exposing Postfix's own Received: header to Milters (protocol
  violation) and hiding the PREPENDed header from Milters. PREPENDed
  headers are now added BELOW Postfix's own Received: header and remain
  visible to Milters.
- The Postfix SMTP server logged an incorrect client name in reject
  messages for check_reverse_client_hostname_access and
  check_reverse_client_hostname_{mx,ns}_access. They replied with the
  verified client name, instead of the name that was rejected.
- The TLS client logged that an anonymous TLS connection was Untrusted,
  instead of Anonymous.
- Fix for configurations that prepend message headers with Postfix access
  maps, policy servers or Milter applications. Postfix now hides its own
  Received: header from Milters and exposes prepended headers to Milters,
  regardless of the mechanism used to prepend a header. This fix reverts
  a partial solution that was released on October 13, 2014, and replaces
  it with a complete solution.

Status:

Vendor Tag: VENEMA
Release Tags:   PFIX-2-11-3

U src/external/ibm-public/postfix/dist/Makefile
U src/external/ibm-public/postfix/dist/AAAREADME
U src/external/ibm-public/postfix/dist/COMPATIBILITY
U src/external/ibm-public/postfix/dist/COPYRIGHT
U src/external/ibm-public/postfix/dist/HISTORY
U src/external/ibm-public/postfix/dist/IPv6-ChangeLog
U src/external/ibm-public/postfix/dist/LICENSE
C src/external/ibm-public/postfix/dist/makedefs
U src/external/ibm-public/postfix/dist/Makefile.in
U src/external/ibm-public/postfix/dist/Makefile.init
U src/external/ibm-public/postfix/dist/PORTING
U src/external/ibm-public/postfix/dist/RELEASE_NOTES
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-1.0
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-1.1
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.0
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.1
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.10
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.2
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.3
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.4
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.5
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.6
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.7
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.8
U src/external/ibm-public/postfix/dist/RELEASE_NOTES-2.9
U src/external/ibm-public/postfix/dist/TLS_ACKNOWLEDGEMENTS
U src/external/ibm-public/postfix/dist/TLS_CHANGES
U src/external/ibm-public/postfix/dist/TLS_LICENSE
U src/external/ibm-public/postfix/dist/TLS_TODO
U src/external/ibm-public/postfix/dist/US_PATENT_6321267
U src/external/ibm-public/postfix/dist/pflogsumm_quickfix.txt
U src/external/ibm-public/postfix/dist/postfix-install
U src/external/ibm-public/postfix/dist/INSTALL
U src/external/ibm-public/postfix/dist/README_FILES/BACKSCATTER_README
U src/external/ibm-public/postfix/dist/README_FILES/LMDB_README
U src/external/ibm-public/postfix/dist/README_FILES/ADDRESS_REWRITING_README
U src/external/ibm-public/postfix/dist/README_FILES/ADDRESS_CLASS_README
U src/external/ibm-public/postfix/dist/README_FILES/FILTER_README
U src/external/ibm-public/postfix/dist/README_FILES/DSN_README
U src/external/ibm-public/postfix/dist/README_FILES/ADDRESS_VERIFICATION_README
U src/external/ibm-public/postfix/dist/README_FILES/BASIC_CONFIGURATION_README
U src/external/ibm-public/postfix/dist/README_FILES/BUILTIN_FILTER_README
U src/external/ibm-public/postfix/dist/README_FILES/CDB_README
U src/external/ibm-public/postfix/dist/README_FILES/CONNECTION_CACHE_README
U src/external/ibm-public/postfix/dist/README_FILES/CONTENT_INSPECTION_README
U src/external/ibm-public/postfix/dist/README_FILES/CYRUS_README
U src/external/ibm-public/postfix/dist/README_FILES/DATABASE_README
U src/external/ibm-public/postfix/dist/README_FILES/DB_README
U src/external/ibm-public/postfix/dist/README_FILES/DEBUG_README
U src/external/ibm-public/postfix/dist/README_FILES/INSTALL
U src/external/ibm-public/postfix/dist/README_FILES/ETRN_README
U src/external/ibm-public/postfix/dist/README_FILES/SCHEDULER_README
U src/external/ibm-public/postfix/dist/README_FILES/FORWARD_SECRECY_README
U src/external/ibm-public/postfix/dist/README_FILES/IPV6_README
U src/external/ibm-public/postfix/dist/README_FILES/LDAP_README
U src/external/ibm-public/postfix/dist/README_FILES/LINUX_README
U src/external/ibm-public/postfix/dist/README_FILES/AAAREADME
U src/external/ibm-public/postfix/dist/README_FILES/LOCAL_RECIPIENT_README
U 

CVS commit: src/external/ibm-public/postfix/dist

2015-01-24 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sat Jan 24 18:10:52 UTC 2015

Modified Files:
src/external/ibm-public/postfix/dist: makedefs
src/external/ibm-public/postfix/dist/src/cleanup: cleanup.h
src/external/ibm-public/postfix/dist/src/smtpd: smtpd.c

Log Message:
Resolve conflicts from last import.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/external/ibm-public/postfix/dist/makedefs
cvs rdiff -u -r1.6 -r1.7 \
src/external/ibm-public/postfix/dist/src/cleanup/cleanup.h
cvs rdiff -u -r1.11 -r1.12 \
src/external/ibm-public/postfix/dist/src/smtpd/smtpd.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/ibm-public/postfix/dist/makedefs
diff -u src/external/ibm-public/postfix/dist/makedefs:1.9 src/external/ibm-public/postfix/dist/makedefs:1.10
--- src/external/ibm-public/postfix/dist/makedefs:1.9	Sun Jul  6 19:45:50 2014
+++ src/external/ibm-public/postfix/dist/makedefs	Sat Jan 24 18:10:52 2015
@@ -491,9 +491,9 @@ ReliantUNIX-?.5.43) SYSTYPE=ReliantUnix5
 		 ?.*) CCARGS=$CCARGS -DRESOLVE_H_NEEDS_NAMESER8_COMPAT_H;;
 		   *) CCARGS=$CCARGS -DRESOLVE_H_NEEDS_ARPA_NAMESER_COMPAT_H;;
 		esac
-		# Darwin 12.x (MacOS X 10.8.x), maybe earlier, needs libresolv.
+		# Darwin 11.x (MacOS X 10.7.x), maybe earlier, needs libresolv.
 		case $RELEASE in
-	?.*|1[0-1].*) ;;
+		?.*|10.*) ;;
 		   *) SYSLIBS=$SYSLIBS -lresolv;;
 		esac
 		# kqueue and/or poll are broken in MacOS X 10.5 (Darwin 9).

Index: src/external/ibm-public/postfix/dist/src/cleanup/cleanup.h
diff -u src/external/ibm-public/postfix/dist/src/cleanup/cleanup.h:1.6 src/external/ibm-public/postfix/dist/src/cleanup/cleanup.h:1.7
--- src/external/ibm-public/postfix/dist/src/cleanup/cleanup.h:1.6	Sun Jul  6 19:45:50 2014
+++ src/external/ibm-public/postfix/dist/src/cleanup/cleanup.h	Sat Jan 24 18:10:52 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: cleanup.h,v 1.6 2014/07/06 19:45:50 tron Exp $	*/
+/*	$NetBSD: cleanup.h,v 1.7 2015/01/24 18:10:52 tron Exp $	*/
 
 /*++
 /* NAME
@@ -63,6 +63,7 @@ typedef struct CLEANUP_STATE {
 char   *orig_rcpt;			/* original recipient address */
 char   *return_receipt;		/* return-receipt address */
 char   *errors_to;			/* errors-to address */
+ARGV   *auto_hdrs;			/* MTA's own header(s) */
 int flags;			/* processing options, status flags */
 int qmgr_opts;			/* qmgr processing options */
 int errs;			/* any badness experienced */

Index: src/external/ibm-public/postfix/dist/src/smtpd/smtpd.c
diff -u src/external/ibm-public/postfix/dist/src/smtpd/smtpd.c:1.11 src/external/ibm-public/postfix/dist/src/smtpd/smtpd.c:1.12
--- src/external/ibm-public/postfix/dist/src/smtpd/smtpd.c:1.11	Sun Jul  6 19:45:50 2014
+++ src/external/ibm-public/postfix/dist/src/smtpd/smtpd.c	Sat Jan 24 18:10:52 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: smtpd.c,v 1.11 2014/07/06 19:45:50 tron Exp $	*/
+/*	$NetBSD: smtpd.c,v 1.12 2015/01/24 18:10:52 tron Exp $	*/
 
 /*++
 /* NAME
@@ -2987,7 +2987,7 @@ static int data_cmd(SMTPD_STATE *state, 
 }
 
 /*
- * PREPEND message headers.
+ * PREPEND message headers above our own Received: header.
  */
 if (state-prepend)
 	for (cpp = state-prepend-argv; *cpp; cpp++)
@@ -3082,6 +3082,7 @@ static int data_cmd(SMTPD_STATE *state, 
 		\t(envelope-from %s), STR(state-buffer));
 #endif
 }
+
 smtpd_chat_reply(state, 354 End data with CRLF.CRLF);
 state-where = SMTPD_AFTER_DATA;
 



CVS commit: src/external/gpl3/gcc/usr.bin/lto1

2015-01-14 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Wed Jan 14 20:26:41 UTC 2015

Modified Files:
src/external/gpl3/gcc/usr.bin/lto1: Makefile

Log Message:
Fix build with USE_SSP set to yes.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/external/gpl3/gcc/usr.bin/lto1/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/gpl3/gcc/usr.bin/lto1/Makefile
diff -u src/external/gpl3/gcc/usr.bin/lto1/Makefile:1.1 src/external/gpl3/gcc/usr.bin/lto1/Makefile:1.2
--- src/external/gpl3/gcc/usr.bin/lto1/Makefile:1.1	Wed Jan  7 02:02:44 2015
+++ src/external/gpl3/gcc/usr.bin/lto1/Makefile	Wed Jan 14 20:26:41 2015
@@ -1,10 +1,13 @@
-#	$NetBSD: Makefile,v 1.1 2015/01/07 02:02:44 christos Exp $
+#	$NetBSD: Makefile,v 1.2 2015/01/14 20:26:41 tron Exp $
 
 PROG=		lto1
 SRCS=		lto-partition.c lto-object.c lto.c lto-lang.c attribs.c main.c
 
 CPPFLAGS+=	-DPREFIX=\/usr\
 
+COPTS.lto.c+=		-Wno-stack-protector
+COPTS.lto-lang.c+=	-Wno-stack-protector
+
 .include ../Makefile.backend
 .include ../Makefile.backtrace
 .include ../Makefile.common



CVS commit: src/external/gpl3/gcc/usr.bin/lto1

2015-01-14 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Wed Jan 14 20:26:41 UTC 2015

Modified Files:
src/external/gpl3/gcc/usr.bin/lto1: Makefile

Log Message:
Fix build with USE_SSP set to yes.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/external/gpl3/gcc/usr.bin/lto1/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/mit/xorg/server/drivers/xf86-video-intel

2014-11-11 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Tue Nov 11 11:30:56 UTC 2014

Modified Files:
src/external/mit/xorg/server/drivers/xf86-video-intel: Makefile

Log Message:
Fix build with USE_SSP set to yes.


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 \
src/external/mit/xorg/server/drivers/xf86-video-intel/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/mit/xorg/server/drivers/xf86-video-intel/Makefile
diff -u src/external/mit/xorg/server/drivers/xf86-video-intel/Makefile:1.18 src/external/mit/xorg/server/drivers/xf86-video-intel/Makefile:1.19
--- src/external/mit/xorg/server/drivers/xf86-video-intel/Makefile:1.18	Thu Nov  6 18:58:18 2014
+++ src/external/mit/xorg/server/drivers/xf86-video-intel/Makefile	Tue Nov 11 11:30:55 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.18 2014/11/06 18:58:18 snj Exp $
+#	$NetBSD: Makefile,v 1.19 2014/11/11 11:30:55 tron Exp $
 
 .include bsd.own.mk
 
@@ -196,4 +196,6 @@ LIBDPLIBS+=	pthread		${NETBSDSRCDIR}/lib
 CWARNFLAGS.clang+=	-Wno-parentheses -Wno-tautological-compare \
 			-Wno-empty-body -Wno-error
 
+COPTS.sna_display.c=	-Wno-stack-protector
+
 .include bsd.subdir.mk



CVS commit: src/etc/defaults

2014-09-26 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Fri Sep 26 10:36:11 UTC 2014

Modified Files:
src/etc/defaults: rc.conf

Log Message:
Re-add default for rtsol. /etc/rc.d/network still checks for this
setting and complains if it isn't defined at all. Add a comment that
it is deprecated and suggest to use dhcpcd=YES instead.


To generate a diff of this commit:
cvs rdiff -u -r1.126 -r1.127 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/defaults/rc.conf
diff -u src/etc/defaults/rc.conf:1.126 src/etc/defaults/rc.conf:1.127
--- src/etc/defaults/rc.conf:1.126	Sat Sep 13 11:07:08 2014
+++ src/etc/defaults/rc.conf	Fri Sep 26 10:36:11 2014
@@ -1,187 +1,188 @@
-#	$NetBSD: rc.conf,v 1.126 2014/09/13 11:07:08 roy Exp $
-#
-# /etc/defaults/rc.conf --
-#	default configuration of /etc/rc.conf
-#
-# see rc.conf(5) for more information.
-#
-# DO NOT EDIT THIS FILE DIRECTLY; IT MAY BE REPLACED DURING A SYSTEM UPGRADE.
-# EDIT /etc/rc.conf INSTEAD.
-#
-
-#
-# Use program=YES to enable program, NO to disable it. program_flags are
-# passed to the program on the command line.
-#
-
-# Uncomment this if you want to use local paths in rc.
-#
-#export PATH=$PATH:/usr/pkg/sbin:/usr/pkg/bin:/usr/local/sbin:/usr/local/bin
-
-# Uncomment the following to execute each /etc/rc.d script in
-# the current shell rather than in a subshell.  This may be
-# faster on very slow machines that have an expensive fork(2).
-#	NOTE:	USE THIS AT YOUR OWN RISK; A ROGUE COMMAND
-#		MAY INADVERTENTLY PREVENT BOOT TO MULTIUSER.
-#
-#rc_fast_and_loose=YES
-
-# If rc_silent is true then /etc/rc will suppress most output to
-# the console.  The default is taken from the AB_SILENT flag passed
-# from the boot loader to the kernel in the boothowto(9) variable.
-#
-# rc_silent_cmd is executed once for each suppressed line of output.
-# Useful values are : and twiddle.
-#
-rc_silent=$( [ $(( $(/sbin/sysctl -n kern.boothowto 2/dev/null || echo 0) \
-		 0x4 )) != 0 ]  echo true || echo false )
-rc_silent_cmd=twiddle
-
-# Additional flags to the rcorder(8) that's run by /etc/rc.
-#
-rc_rcorder_flags=
-
-# The directories searched for rc scripts.
-# These directories must be part of the root file system.
-rc_directories=/etc/rc.d 
-
-# If this is set to NO, shutdown(8) will not run /etc/rc.shutdown.
-#
-do_rcshutdown=YES
-
-# Additional flags to the rcorder(8) that's run by /etc/rc.shutdown.
-#
-rcshutdown_rcorder_flags=
-
-# If this is non-blank, use as the number of seconds to run a watchdog
-# timer which will terminate /etc/rc.shutdown if the timeout expires.
-#
-rcshutdown_timeout=
-
-
-# Basic network configuration
-#
-
-# Fully Qualified Internet Domain Name (a.k.a. hostname, e.g. foo.baz.edu).
-# If blank, use /etc/myname.
-#
-hostname=
-
-# If there's only one way out of your IPv4 network, set this to the hostname
-# or the IPv4 address of the router that will get your packets off the LAN.
-# If blank, use /etc/mygate.
-#
-defaultroute=
-
-# Same thing for IPv6.  If blank, use /etc/mygate6.
-#
-defaultroute6=
-
-# The NIS domain name (formerly known as Yellow Pages); not in any way
-# related to Internet domain names.
-# If blank, use /etc/defaultdomain.
-#
-domainname=
-
-# Filesystems to mount early in boot-up.
-# Note that `/var' is needed in $critical_filesystems_local (or
-# implied as part of `/') as certain services that need /var (such as
-# dhclient) may be needed to get the network operational enough to mount
-# the $critical_filesystems_remote.  Prepending OPTIONAL:  means it
-# will not be an error if that file system is not present in fstab(5).
-#
-critical_filesystems_local=OPTIONAL:/var
-critical_filesystems_remote=OPTIONAL:/usr
-
-# Swap device controls.
-#
-no_swap=NO		# Set to YES if you have purposefully setup no swap
-			# partitions and don't want to be warned about it.
-swapoff=YES		# Remove block-type swap partitions upon shutdown
-			# This defaults to yes, so that raids shutdown cleanly
-
-# Concatenated disk driver.
-#
-ccd=YES
-
-# RAIDframe driver (manually configured devices).
-#
-raidframe=YES
-
-# Crypto file system.
-#
-cgd=YES
-
-# Logical Volume Manager
-#
-lvm=NO
-
-# One-time actions and programs on boot-up.
-#
-savecore=YES		savecore_flags=-z
-			savecore_dir=/var/crash
-per_user_tmp=NO	# per-user /tmp directories
-per_user_tmp_dir=/private/tmp			# real storage for /tmp
-clear_tmp=YES	# clear /tmp after reboot
-update_motd=YES	# updates /etc/motd
-dmesg=YES		dmesg_flags=		# write /var/run/dmesg.boot
-accounting=NO	# uses /var/account/acct
-newsyslog=NO		newsyslog_flags=	# trim log files
-quota=YES	# check and enable quotas
-ldconfig=YES	# rebuild a.out ldconfig cache
-sysdb=YES	# build system databases
-rndctl=NO		rndctl_flags=		# configure rndctl(8)
-gpio=NO		# configure GPIO devices
-
-# cope with other OSes using the real time clock at 

CVS commit: src/etc/defaults

2014-09-26 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Fri Sep 26 11:04:06 UTC 2014

Modified Files:
src/etc/defaults: rc.conf

Log Message:
Revert last change. This was already fixed differently and something
went wrong with the change anyway. Sorry


To generate a diff of this commit:
cvs rdiff -u -r1.127 -r1.128 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/defaults/rc.conf
diff -u src/etc/defaults/rc.conf:1.127 src/etc/defaults/rc.conf:1.128
--- src/etc/defaults/rc.conf:1.127	Fri Sep 26 10:36:11 2014
+++ src/etc/defaults/rc.conf	Fri Sep 26 11:04:06 2014
@@ -1,188 +1,187 @@
-#	$NetBSD: rc.conf,v 1.127 2014/09/26 10:36:11 tron Exp $
- #
- # /etc/defaults/rc.conf --
- #	default configuration of /etc/rc.conf
- #
- # see rc.conf(5) for more information.
- #
- # DO NOT EDIT THIS FILE DIRECTLY; IT MAY BE REPLACED DURING A SYSTEM UPGRADE.
- # EDIT /etc/rc.conf INSTEAD.
- #
-
- #
- # Use program=YES to enable program, NO to disable it. program_flags are
- # passed to the program on the command line.
- #
-
- # Uncomment this if you want to use local paths in rc.
- #
- #export PATH=$PATH:/usr/pkg/sbin:/usr/pkg/bin:/usr/local/sbin:/usr/local/bin
-
- # Uncomment the following to execute each /etc/rc.d script in
- # the current shell rather than in a subshell.  This may be
- # faster on very slow machines that have an expensive fork(2).
- #	NOTE:	USE THIS AT YOUR OWN RISK; A ROGUE COMMAND
- #		MAY INADVERTENTLY PREVENT BOOT TO MULTIUSER.
- #
- #rc_fast_and_loose=YES
-
- # If rc_silent is true then /etc/rc will suppress most output to
- # the console.  The default is taken from the AB_SILENT flag passed
- # from the boot loader to the kernel in the boothowto(9) variable.
- #
- # rc_silent_cmd is executed once for each suppressed line of output.
- # Useful values are : and twiddle.
- #
- rc_silent=$( [ $(( $(/sbin/sysctl -n kern.boothowto 2/dev/null || echo 0) \
-		  0x4 )) != 0 ]  echo true || echo false )
- rc_silent_cmd=twiddle
-
- # Additional flags to the rcorder(8) that's run by /etc/rc.
- #
- rc_rcorder_flags=
-
- # The directories searched for rc scripts.
- # These directories must be part of the root file system.
- rc_directories=/etc/rc.d 
-
- # If this is set to NO, shutdown(8) will not run /etc/rc.shutdown.
- #
- do_rcshutdown=YES
-
- # Additional flags to the rcorder(8) that's run by /etc/rc.shutdown.
- #
- rcshutdown_rcorder_flags=
-
- # If this is non-blank, use as the number of seconds to run a watchdog
- # timer which will terminate /etc/rc.shutdown if the timeout expires.
- #
- rcshutdown_timeout=
-
-
- # Basic network configuration
- #
-
- # Fully Qualified Internet Domain Name (a.k.a. hostname, e.g. foo.baz.edu).
- # If blank, use /etc/myname.
- #
- hostname=
-
- # If there's only one way out of your IPv4 network, set this to the hostname
- # or the IPv4 address of the router that will get your packets off the LAN.
- # If blank, use /etc/mygate.
- #
- defaultroute=
-
- # Same thing for IPv6.  If blank, use /etc/mygate6.
- #
- defaultroute6=
-
- # The NIS domain name (formerly known as Yellow Pages); not in any way
- # related to Internet domain names.
- # If blank, use /etc/defaultdomain.
- #
- domainname=
-
- # Filesystems to mount early in boot-up.
- # Note that `/var' is needed in $critical_filesystems_local (or
- # implied as part of `/') as certain services that need /var (such as
- # dhclient) may be needed to get the network operational enough to mount
- # the $critical_filesystems_remote.  Prepending OPTIONAL:  means it
- # will not be an error if that file system is not present in fstab(5).
- #
- critical_filesystems_local=OPTIONAL:/var
- critical_filesystems_remote=OPTIONAL:/usr
-
- # Swap device controls.
- #
- no_swap=NO		# Set to YES if you have purposefully setup no swap
-			 # partitions and don't want to be warned about it.
- swapoff=YES		# Remove block-type swap partitions upon shutdown
-			 # This defaults to yes, so that raids shutdown cleanly
-
- # Concatenated disk driver.
- #
- ccd=YES
-
- # RAIDframe driver (manually configured devices).
- #
- raidframe=YES
-
- # Crypto file system.
- #
- cgd=YES
-
- # Logical Volume Manager
- #
- lvm=NO
-
- # One-time actions and programs on boot-up.
- #
- savecore=YES		savecore_flags=-z
-			 savecore_dir=/var/crash
- per_user_tmp=NO	# per-user /tmp directories
- per_user_tmp_dir=/private/tmp			# real storage for /tmp
- clear_tmp=YES	# clear /tmp after reboot
- update_motd=YES	# updates /etc/motd
- dmesg=YES		dmesg_flags=		# write /var/run/dmesg.boot
- accounting=NO	# uses /var/account/acct
- newsyslog=NO		newsyslog_flags=	# trim log files
- quota=YES	# check and enable quotas
- ldconfig=YES	# rebuild a.out ldconfig cache
- sysdb=YES	# build system databases
- rndctl=NO		rndctl_flags=		# configure rndctl(8)
- gpio=NO		# configure GPIO devices
-
- # cope with other OSes 

CVS commit: src/etc/defaults

2014-09-26 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Fri Sep 26 10:36:11 UTC 2014

Modified Files:
src/etc/defaults: rc.conf

Log Message:
Re-add default for rtsol. /etc/rc.d/network still checks for this
setting and complains if it isn't defined at all. Add a comment that
it is deprecated and suggest to use dhcpcd=YES instead.


To generate a diff of this commit:
cvs rdiff -u -r1.126 -r1.127 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/defaults

2014-09-26 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Fri Sep 26 11:04:06 UTC 2014

Modified Files:
src/etc/defaults: rc.conf

Log Message:
Revert last change. This was already fixed differently and something
went wrong with the change anyway. Sorry


To generate a diff of this commit:
cvs rdiff -u -r1.127 -r1.128 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/cron/dist

2014-09-07 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Sep  7 13:35:27 UTC 2014

Modified Files:
src/external/bsd/cron/dist: env.c

Log Message:
Make crontab(1) work again which got broken by the last commit.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/external/bsd/cron/dist/env.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/cron/dist/env.c
diff -u src/external/bsd/cron/dist/env.c:1.3 src/external/bsd/cron/dist/env.c:1.4
--- src/external/bsd/cron/dist/env.c:1.3	Fri Sep  5 21:32:37 2014
+++ src/external/bsd/cron/dist/env.c	Sun Sep  7 13:35:27 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: env.c,v 1.3 2014/09/05 21:32:37 christos Exp $	*/
+/*	$NetBSD: env.c,v 1.4 2014/09/07 13:35:27 tron Exp $	*/
 
 /* Copyright 1988,1990,1993,1994 by Paul Vixie
  * All rights reserved
@@ -25,7 +25,7 @@
 #if 0
 static char rcsid[] = Id: env.c,v 1.10 2004/01/23 18:56:42 vixie Exp;
 #else
-__RCSID($NetBSD: env.c,v 1.3 2014/09/05 21:32:37 christos Exp $);
+__RCSID($NetBSD: env.c,v 1.4 2014/09/07 13:35:27 tron Exp $);
 #endif
 #endif
 
@@ -58,9 +58,9 @@ env_copy(char **envp) {
 	for (count = 0; envp[count] != NULL; count++)
 		continue;
 	p = malloc((count + 1) * sizeof(*p));  /* 1 for the NULL */
-	if (p != NULL)
-	return NULL;
-	for (i = 0; i  count; i++)
+	if (p == NULL)
+		return NULL;
+	for (i = 0; i  count; i++) {
 		if ((p[i] = strdup(envp[i])) == NULL) {
 			save_errno = errno;
 			for (count = 0; count  i; count++)
@@ -69,6 +69,7 @@ env_copy(char **envp) {
 			errno = save_errno;
 			return NULL;
 		}
+	}
 	p[count] = NULL;
 	return p;
 }



CVS commit: src/external/bsd/cron/dist

2014-09-07 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Sep  7 13:35:27 UTC 2014

Modified Files:
src/external/bsd/cron/dist: env.c

Log Message:
Make crontab(1) work again which got broken by the last commit.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/external/bsd/cron/dist/env.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/ibm-public/postfix/share

2014-07-20 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul 20 15:58:06 UTC 2014

Modified Files:
src/external/ibm-public/postfix/share/README_FILES: Makefile
src/external/ibm-public/postfix/share/html: Makefile
Added Files:
src/external/ibm-public/postfix/share: readme.mk

Log Message:
Rationalize README file handling:
1.) Install only README files that are relevant to the Postfix binaries
distributed with NetBSD.
2.) Create a single list of the above files that is used for both the
text versions and HTML versions.

Problem detected by wizd(8).


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/external/ibm-public/postfix/share/readme.mk
cvs rdiff -u -r1.7 -r1.8 \
src/external/ibm-public/postfix/share/README_FILES/Makefile
cvs rdiff -u -r1.8 -r1.9 src/external/ibm-public/postfix/share/html/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/ibm-public/postfix/share/README_FILES/Makefile
diff -u src/external/ibm-public/postfix/share/README_FILES/Makefile:1.7 src/external/ibm-public/postfix/share/README_FILES/Makefile:1.8
--- src/external/ibm-public/postfix/share/README_FILES/Makefile:1.7	Sun Jul  6 21:04:10 2014
+++ src/external/ibm-public/postfix/share/README_FILES/Makefile	Sun Jul 20 15:58:06 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.7 2014/07/06 21:04:10 tron Exp $
+#	$NetBSD: Makefile,v 1.8 2014/07/20 15:58:06 tron Exp $
 
 .include bsd.own.mk
 
@@ -9,26 +9,8 @@ BINDIR=	${PFIX_EXAMPLEDIR}
 DIST=	${NETBSDSRCDIR}/external/ibm-public/postfix/dist/README_FILES
 .PATH:	${DIST}
 
-FILES=	AAAREADME ADDRESS_CLASS_README ADDRESS_REWRITING_README \
-	ADDRESS_VERIFICATION_README BACKSCATTER_README \
-	BASIC_CONFIGURATION_README BUILTIN_FILTER_README \
-	CONNECTION_CACHE_README CONTENT_INSPECTION_README \
-	DATABASE_README DB_README DEBUG_README DSN_README ETRN_README \
-	FILTER_README FORWARD_SECRECY_README IPV6_README LDAP_README \
-	LMDB_README LOCAL_RECIPIENT_README MAILDROP_README \
-	MEMCACHE_README MILTER_README MULTI_INSTANCE_README MYSQL_README \
-	NFS_README OVERVIEW PCRE_README PGSQL_README POSTSCREEN_README \
-	QMQP_README QSHAPE_README ../RELEASE_NOTES RESTRICTION_CLASS_README \
-	SASL_README SCHEDULER_README SMTPD_ACCESS_README SMTPD_POLICY_README \
-	SMTPD_PROXY_README SOHO_README SQLITE_README \
-	STANDARD_CONFIGURATION_README STRESS_README TLS_LEGACY_README \
-	TLS_README TUNING_README UUCP_README VERP_README \
-	VIRTUAL_README XCLIENT_README XFORWARD_README
-
-# not installed:
-#	CYRUS_README CDB_README INSTALL
-#	LINUX_README PACKAGE_README ULTRIX_README
-
+.include ../readme.mk
+FILES=	${PFIX_README_FILES}
 .endif
 
 .include bsd.prog.mk

Index: src/external/ibm-public/postfix/share/html/Makefile
diff -u src/external/ibm-public/postfix/share/html/Makefile:1.8 src/external/ibm-public/postfix/share/html/Makefile:1.9
--- src/external/ibm-public/postfix/share/html/Makefile:1.8	Sun Jul  6 21:14:43 2014
+++ src/external/ibm-public/postfix/share/html/Makefile	Sun Jul 20 15:58:06 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.8 2014/07/06 21:14:43 tron Exp $
+#	$NetBSD: Makefile,v 1.9 2014/07/20 15:58:06 tron Exp $
 
 .include bsd.own.mk
 
@@ -27,25 +27,11 @@ PFX_CONFIG= access.5.html aliases.5.html
 	regexp_table.5.html relocated.5.html sqlite_table.5.html \
 	transport.5.html virtual.5.html postfix-wrapper.5.html \
 	postfix-manuals.html memcache_table.5.html
-PFX_READMES= ADDRESS_CLASS_README.html ADDRESS_REWRITING_README.html \
-	ADDRESS_VERIFICATION_README.html BACKSCATTER_README.html \
-	BASIC_CONFIGURATION_README.html BUILTIN_FILTER_README.html \
-	CONNECTION_CACHE_README.html \
-	CONTENT_INSPECTION_README.html DATABASE_README.html DB_README.html \
-	DEBUG_README.html DSN_README.html ETRN_README.html FILTER_README.html \
-	FORWARD_SECRECY_README.html IPV6_README.html \
-	LDAP_README.html LMDB_README.html \
-	LOCAL_RECIPIENT_README.html MAILDROP_README.html MEMCACHE_README.html \
-	MILTER_README.html MULTI_INSTANCE_README.html MYSQL_README.html \
-	NFS_README.html OVERVIEW.html PCRE_README.html \
-	PGSQL_README.html POSTSCREEN_README.html QSHAPE_README.html \
-	RESTRICTION_CLASS_README.html SASL_README.html SCHEDULER_README.html \
-	SMTPD_ACCESS_README.html SMTPD_POLICY_README.html \
-	SMTPD_PROXY_README.html SOHO_README.html SQLITE_README.html \
-	STANDARD_CONFIGURATION_README.html STRESS_README.html \
-	TLS_LEGACY_README.html TLS_README.html TUNING_README.html \
-	UUCP_README.html VERP_README.html VIRTUAL_README.html \
-	XCLIENT_README.html XFORWARD_README.html
+
+.include ../readme.mk
+.for PFX_README in ${PFIX_README_FILES}
+PFX_READMES+=	${PFX_README}.html
+.endfor
 
 FILES=	$(PFX_DAEMONS) $(PFX_COMMANDS) $(PFX_CONFIG) $(PFX_READMES) \
 	index.html postconf.5.html OVERVIEW.html postfix-logo.jpg
@@ -55,10 +41,6 @@ SYMLINKS+=bounce.8.html ${BINDIR}/trace.
 SYMLINKS+=sendmail.1.html ${BINDIR}/mailq.1.html
 SYMLINKS+=sendmail.1.html 

CVS commit: src/distrib/sets/lists/misc

2014-07-20 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul 20 15:58:40 UTC 2014

Modified Files:
src/distrib/sets/lists/misc: mi

Log Message:
Update list of Postfix README files.


To generate a diff of this commit:
cvs rdiff -u -r1.193 -r1.194 src/distrib/sets/lists/misc/mi

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/distrib/sets/lists/misc/mi
diff -u src/distrib/sets/lists/misc/mi:1.193 src/distrib/sets/lists/misc/mi:1.194
--- src/distrib/sets/lists/misc/mi:1.193	Sun Jul  6 21:06:48 2014
+++ src/distrib/sets/lists/misc/mi	Sun Jul 20 15:58:40 2014
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.193 2014/07/06 21:06:48 tron Exp $
+# $NetBSD: mi,v 1.194 2014/07/20 15:58:40 tron Exp $
 #
 # Note: don't delete entries from here - mark them as obsolete instead.
 #
@@ -913,19 +913,19 @@
 ./usr/share/doc/reference/ref8/postfix/FORWARD_SECRECY_README.html	misc-postfix-htmldoc	postfix,doc
 ./usr/share/doc/reference/ref8/postfix/IPV6_README.html			misc-postfix-htmldoc	postfix,doc
 ./usr/share/doc/reference/ref8/postfix/LDAP_README.html			misc-postfix-htmldoc	postfix,doc
-./usr/share/doc/reference/ref8/postfix/LMDB_README.html			misc-postfix-htmldoc	postfix,doc
+./usr/share/doc/reference/ref8/postfix/LMDB_README.html			misc-obsolete		obsolete
 ./usr/share/doc/reference/ref8/postfix/LOCAL_RECIPIENT_README.html	misc-postfix-htmldoc	postfix,doc
 ./usr/share/doc/reference/ref8/postfix/MAILDROP_README.html		misc-postfix-htmldoc	postfix,doc
 ./usr/share/doc/reference/ref8/postfix/MEMCACHE_README.html		misc-postfix-htmldoc	postfix,doc
 ./usr/share/doc/reference/ref8/postfix/MILTER_README.html		misc-postfix-htmldoc	postfix,doc
 ./usr/share/doc/reference/ref8/postfix/MULTI_INSTANCE_README.html	misc-postfix-htmldoc	postfix,doc
-./usr/share/doc/reference/ref8/postfix/MYSQL_README.html		misc-postfix-htmldoc	postfix,doc
+./usr/share/doc/reference/ref8/postfix/MYSQL_README.html		misc-obsolete		obsolete
 ./usr/share/doc/reference/ref8/postfix/NFS_README.html			misc-postfix-htmldoc	postfix,doc
 ./usr/share/doc/reference/ref8/postfix/OVERVIEW.html			misc-postfix-htmldoc	postfix,doc
-./usr/share/doc/reference/ref8/postfix/PCRE_README.html			misc-postfix-htmldoc	postfix,doc
-./usr/share/doc/reference/ref8/postfix/PGSQL_README.html		misc-postfix-htmldoc	postfix,doc
+./usr/share/doc/reference/ref8/postfix/PCRE_README.html			misc-obsolete		obsolete
+./usr/share/doc/reference/ref8/postfix/PGSQL_README.html		misc-obsolete		obsolete
 ./usr/share/doc/reference/ref8/postfix/POSTSCREEN_README.html		misc-postfix-htmldoc	postfix,doc
-./usr/share/doc/reference/ref8/postfix/QSHAPE_README.html		misc-postfix-htmldoc	postfix,doc
+./usr/share/doc/reference/ref8/postfix/QSHAPE_README.html		misc-obsolete		obsolete
 ./usr/share/doc/reference/ref8/postfix/RESTRICTION_CLASS_README.html	misc-postfix-htmldoc	postfix,doc
 ./usr/share/doc/reference/ref8/postfix/SASL_README.html			misc-postfix-htmldoc	postfix,doc
 ./usr/share/doc/reference/ref8/postfix/SCHEDULER_README.html		misc-postfix-htmldoc	postfix,doc
@@ -1490,7 +1490,7 @@
 ./usr/share/examples/postfix/FORWARD_SECRECY_README	misc-postfix-examples	postfix,doc
 ./usr/share/examples/postfix/IPV6_README	misc-postfix-examples	postfix,doc
 ./usr/share/examples/postfix/LDAP_README	misc-postfix-examples	postfix,doc
-./usr/share/examples/postfix/LMDB_README	misc-postfix-examples	postfix,doc
+./usr/share/examples/postfix/LMDB_README	misc-obsolete	obsolete
 ./usr/share/examples/postfix/LICENSE		misc-postfix-examples	postfix,share
 ./usr/share/examples/postfix/LMTP_README	misc-obsolete	obsolete
 ./usr/share/examples/postfix/LOCAL_RECIPIENT_README	misc-postfix-examples	postfix,doc
@@ -1498,14 +1498,14 @@
 ./usr/share/examples/postfix/MEMCACHE_README	misc-postfix-examples	postfix,doc
 ./usr/share/examples/postfix/MILTER_README	misc-postfix-examples	postfix,doc
 ./usr/share/examples/postfix/MULTI_INSTANCE_README	misc-postfix-examples	postfix,doc
-./usr/share/examples/postfix/MYSQL_README	misc-postfix-examples	postfix,doc
+./usr/share/examples/postfix/MYSQL_README	misc-obsolete	obsolete
 ./usr/share/examples/postfix/NFS_README		misc-postfix-examples	postfix,doc
 ./usr/share/examples/postfix/OVERVIEW		misc-postfix-examples	postfix,doc
-./usr/share/examples/postfix/PCRE_README	misc-postfix-examples	postfix,doc
-./usr/share/examples/postfix/PGSQL_README	misc-postfix-examples	postfix,doc
+./usr/share/examples/postfix/PCRE_README	misc-obsolete	obsolete
+./usr/share/examples/postfix/PGSQL_README	misc-obsolete	obsolete
 ./usr/share/examples/postfix/POSTSCREEN_README	misc-postfix-examples	postfix,doc
 ./usr/share/examples/postfix/QMQP_README	misc-obsolete	obsolete
-./usr/share/examples/postfix/QSHAPE_README	misc-postfix-examples	postfix,doc
+./usr/share/examples/postfix/QSHAPE_README	misc-obsolete	obsolete
 ./usr/share/examples/postfix/RELEASE_NOTES	misc-postfix-examples	postfix,doc
 

CVS commit: src/share/man/man8

2014-07-20 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul 20 16:04:48 UTC 2014

Modified Files:
src/share/man/man8: wizd.8

Log Message:
Sync wizd's feature list with reality.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/share/man/man8/wizd.8

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/share/man/man8/wizd.8
diff -u src/share/man/man8/wizd.8:1.6 src/share/man/man8/wizd.8:1.7
--- src/share/man/man8/wizd.8:1.6	Wed Apr 30 13:10:57 2008
+++ src/share/man/man8/wizd.8	Sun Jul 20 16:04:48 2014
@@ -1,6 +1,6 @@
-.\	$NetBSD: wizd.8,v 1.6 2008/04/30 13:10:57 martin Exp $
+.\	$NetBSD: wizd.8,v 1.7 2014/07/20 16:04:48 tron Exp $
 .\
-.\ Copyright (c) 2003 The NetBSD Foundation, Inc.
+.\ Copyright (c) 2003, 2014 The NetBSD Foundation, Inc.
 .\ All rights reserved.
 .\
 .\ Redistribution and use in source and binary forms, with or without
@@ -24,7 +24,7 @@
 .\ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 .\ POSSIBILITY OF SUCH DAMAGE.
 .\
-.Dd April 1, 2003
+.Dd July 20, 2014
 .Dt WIZD 8
 .Os
 .Sh NAME
@@ -45,6 +45,11 @@ is invoked by any
 commit to a man page.
 A standalone mode is also available by sending mail to
 .Aq w...@netbsd.org .
+.Pp
+.Nm
+also performs periodic sanity checks on the distribution set lists.
+E-mail alerts will be triggered if the build installs files that are marked
+as obsolete and therefore get automatically removed.
 .Sh SEE ALSO
 .Xr cvs 1 ,
 .Xr intro 1 ,



CVS commit: src/external/ibm-public/postfix/share

2014-07-20 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul 20 22:43:13 UTC 2014

Modified Files:
src/external/ibm-public/postfix/share: readme.mk
src/external/ibm-public/postfix/share/README_FILES: Makefile

Log Message:
Try to fix the build:
There is no AAAREADME.html. So only attempt to install the ASCII version.

Not sure why my full build didn't catch this problem. Sorry.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/external/ibm-public/postfix/share/readme.mk
cvs rdiff -u -r1.8 -r1.9 \
src/external/ibm-public/postfix/share/README_FILES/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/ibm-public/postfix/share/readme.mk
diff -u src/external/ibm-public/postfix/share/readme.mk:1.1 src/external/ibm-public/postfix/share/readme.mk:1.2
--- src/external/ibm-public/postfix/share/readme.mk:1.1	Sun Jul 20 15:58:06 2014
+++ src/external/ibm-public/postfix/share/readme.mk	Sun Jul 20 22:43:13 2014
@@ -1,6 +1,6 @@
-# $NetBSD: readme.mk,v 1.1 2014/07/20 15:58:06 tron Exp $
+# $NetBSD: readme.mk,v 1.2 2014/07/20 22:43:13 tron Exp $
 
-PFIX_README_FILES=	AAAREADME ADDRESS_CLASS_README \
+PFIX_README_FILES=	ADDRESS_CLASS_README \
 	ADDRESS_REWRITING_README ADDRESS_VERIFICATION_README \
 	BACKSCATTER_README BASIC_CONFIGURATION_README BUILTIN_FILTER_README \
 	CONNECTION_CACHE_README CONTENT_INSPECTION_README \

Index: src/external/ibm-public/postfix/share/README_FILES/Makefile
diff -u src/external/ibm-public/postfix/share/README_FILES/Makefile:1.8 src/external/ibm-public/postfix/share/README_FILES/Makefile:1.9
--- src/external/ibm-public/postfix/share/README_FILES/Makefile:1.8	Sun Jul 20 15:58:06 2014
+++ src/external/ibm-public/postfix/share/README_FILES/Makefile	Sun Jul 20 22:43:13 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.8 2014/07/20 15:58:06 tron Exp $
+#	$NetBSD: Makefile,v 1.9 2014/07/20 22:43:13 tron Exp $
 
 .include bsd.own.mk
 
@@ -10,7 +10,7 @@ DIST=	${NETBSDSRCDIR}/external/ibm-publi
 .PATH:	${DIST}
 
 .include ../readme.mk
-FILES=	${PFIX_README_FILES}
+FILES=	AAAREADME ${PFIX_README_FILES}
 .endif
 
 .include bsd.prog.mk



CVS commit: src/external/ibm-public/postfix/share

2014-07-20 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul 20 22:58:02 UTC 2014

Modified Files:
src/external/ibm-public/postfix/share: readme.mk
src/external/ibm-public/postfix/share/README_FILES: Makefile

Log Message:
There is also no HTML version of RELEASE_NOTES.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/ibm-public/postfix/share/readme.mk
cvs rdiff -u -r1.9 -r1.10 \
src/external/ibm-public/postfix/share/README_FILES/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/ibm-public/postfix/share/readme.mk
diff -u src/external/ibm-public/postfix/share/readme.mk:1.2 src/external/ibm-public/postfix/share/readme.mk:1.3
--- src/external/ibm-public/postfix/share/readme.mk:1.2	Sun Jul 20 22:43:13 2014
+++ src/external/ibm-public/postfix/share/readme.mk	Sun Jul 20 22:58:02 2014
@@ -1,4 +1,4 @@
-# $NetBSD: readme.mk,v 1.2 2014/07/20 22:43:13 tron Exp $
+# $NetBSD: readme.mk,v 1.3 2014/07/20 22:58:02 tron Exp $
 
 PFIX_README_FILES=	ADDRESS_CLASS_README \
 	ADDRESS_REWRITING_README ADDRESS_VERIFICATION_README \
@@ -8,14 +8,16 @@ PFIX_README_FILES=	ADDRESS_CLASS_README 
 	FILTER_README FORWARD_SECRECY_README IPV6_README LDAP_README \
 	LOCAL_RECIPIENT_README MAILDROP_README \
 	MEMCACHE_README MILTER_README MULTI_INSTANCE_README \
-	NFS_README OVERVIEW POSTSCREEN_README \
-	RELEASE_NOTES RESTRICTION_CLASS_README \
+	NFS_README OVERVIEW POSTSCREEN_README RESTRICTION_CLASS_README \
 	SASL_README SCHEDULER_README SMTPD_ACCESS_README SMTPD_POLICY_README \
 	SMTPD_PROXY_README SOHO_README SQLITE_README \
 	STANDARD_CONFIGURATION_README STRESS_README TLS_LEGACY_README \
 	TLS_README TUNING_README UUCP_README VERP_README \
 	VIRTUAL_README XCLIENT_README XFORWARD_README
 
+#	ASCII only:
+#	AAAREADME, RELEASE_NOTES
+
 #	Not installed:
 #	CDB_README, CYRUS_README, INSTALL, LINUX_README,  LMDB_README,
 #	MYSQL_README, PACKAGE_README, PCRE_README, PGSQL_README, QMQP_README,

Index: src/external/ibm-public/postfix/share/README_FILES/Makefile
diff -u src/external/ibm-public/postfix/share/README_FILES/Makefile:1.9 src/external/ibm-public/postfix/share/README_FILES/Makefile:1.10
--- src/external/ibm-public/postfix/share/README_FILES/Makefile:1.9	Sun Jul 20 22:43:13 2014
+++ src/external/ibm-public/postfix/share/README_FILES/Makefile	Sun Jul 20 22:58:02 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.9 2014/07/20 22:43:13 tron Exp $
+#	$NetBSD: Makefile,v 1.10 2014/07/20 22:58:02 tron Exp $
 
 .include bsd.own.mk
 
@@ -10,7 +10,7 @@ DIST=	${NETBSDSRCDIR}/external/ibm-publi
 .PATH:	${DIST}
 
 .include ../readme.mk
-FILES=	AAAREADME ${PFIX_README_FILES}
+FILES=	AAAREADME RELEASE_NOTES ${PFIX_README_FILES}
 .endif
 
 .include bsd.prog.mk



CVS commit: src/external/ibm-public/postfix/share

2014-07-20 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul 20 15:58:06 UTC 2014

Modified Files:
src/external/ibm-public/postfix/share/README_FILES: Makefile
src/external/ibm-public/postfix/share/html: Makefile
Added Files:
src/external/ibm-public/postfix/share: readme.mk

Log Message:
Rationalize README file handling:
1.) Install only README files that are relevant to the Postfix binaries
distributed with NetBSD.
2.) Create a single list of the above files that is used for both the
text versions and HTML versions.

Problem detected by wizd(8).


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/external/ibm-public/postfix/share/readme.mk
cvs rdiff -u -r1.7 -r1.8 \
src/external/ibm-public/postfix/share/README_FILES/Makefile
cvs rdiff -u -r1.8 -r1.9 src/external/ibm-public/postfix/share/html/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/distrib/sets/lists/misc

2014-07-20 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul 20 15:58:40 UTC 2014

Modified Files:
src/distrib/sets/lists/misc: mi

Log Message:
Update list of Postfix README files.


To generate a diff of this commit:
cvs rdiff -u -r1.193 -r1.194 src/distrib/sets/lists/misc/mi

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/man/man8

2014-07-20 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul 20 16:04:48 UTC 2014

Modified Files:
src/share/man/man8: wizd.8

Log Message:
Sync wizd's feature list with reality.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/share/man/man8/wizd.8

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/ibm-public/postfix/share

2014-07-20 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul 20 22:43:13 UTC 2014

Modified Files:
src/external/ibm-public/postfix/share: readme.mk
src/external/ibm-public/postfix/share/README_FILES: Makefile

Log Message:
Try to fix the build:
There is no AAAREADME.html. So only attempt to install the ASCII version.

Not sure why my full build didn't catch this problem. Sorry.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/external/ibm-public/postfix/share/readme.mk
cvs rdiff -u -r1.8 -r1.9 \
src/external/ibm-public/postfix/share/README_FILES/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/ibm-public/postfix/share

2014-07-20 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul 20 22:58:02 UTC 2014

Modified Files:
src/external/ibm-public/postfix/share: readme.mk
src/external/ibm-public/postfix/share/README_FILES: Makefile

Log Message:
There is also no HTML version of RELEASE_NOTES.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/ibm-public/postfix/share/readme.mk
cvs rdiff -u -r1.9 -r1.10 \
src/external/ibm-public/postfix/share/README_FILES/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/ibm-public/postfix

2014-07-06 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul  6 19:53:06 UTC 2014

Modified Files:
src/external/ibm-public/postfix/lib/global: Makefile
src/external/ibm-public/postfix/lib/tls: Makefile
src/external/ibm-public/postfix/lib/util: Makefile
src/external/ibm-public/postfix/libexec/smtp: Makefile
src/external/ibm-public/postfix/sbin/postconf: Makefile

Log Message:
Adapt makefiles for Postfix 2.11.1.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/external/ibm-public/postfix/lib/global/Makefile
cvs rdiff -u -r1.2 -r1.3 src/external/ibm-public/postfix/lib/tls/Makefile
cvs rdiff -u -r1.6 -r1.7 src/external/ibm-public/postfix/lib/util/Makefile
cvs rdiff -u -r1.1 -r1.2 \
src/external/ibm-public/postfix/libexec/smtp/Makefile
cvs rdiff -u -r1.6 -r1.7 \
src/external/ibm-public/postfix/sbin/postconf/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/ibm-public/postfix/lib/global/Makefile
diff -u src/external/ibm-public/postfix/lib/global/Makefile:1.5 src/external/ibm-public/postfix/lib/global/Makefile:1.6
--- src/external/ibm-public/postfix/lib/global/Makefile:1.5	Wed Sep 25 19:25:08 2013
+++ src/external/ibm-public/postfix/lib/global/Makefile	Sun Jul  6 19:53:05 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.5 2013/09/25 19:25:08 tron Exp $
+#	$NetBSD: Makefile,v 1.6 2014/07/06 19:53:05 tron Exp $
 
 LIBISPRIVATE=	yes
 
@@ -42,6 +42,7 @@ SRCS=	abounce.c anvil_clnt.c been_here.c
 	delivered_hdr.c fold_addr.c mkmap_proxy.c header_body_checks.c \
 	mail_conf_nint.c match_service.c match_service.h mail_conf_nbool.c \
 	smtp_reply_footer.c memcache_proto.c mkmap_fail.c safe_ultostr.c \
-	server_acl.c verify_sender_addr.c mail_version.c haproxy_srvr.c
+	server_acl.c verify_sender_addr.c mail_version.c haproxy_srvr.c \
+	mkmap_lmdb.c
 
 .include bsd.lib.mk

Index: src/external/ibm-public/postfix/lib/tls/Makefile
diff -u src/external/ibm-public/postfix/lib/tls/Makefile:1.2 src/external/ibm-public/postfix/lib/tls/Makefile:1.3
--- src/external/ibm-public/postfix/lib/tls/Makefile:1.2	Wed Mar  2 22:24:55 2011
+++ src/external/ibm-public/postfix/lib/tls/Makefile	Sun Jul  6 19:53:05 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.2 2011/03/02 22:24:55 tron Exp $
+#	$NetBSD: Makefile,v 1.3 2014/07/06 19:53:05 tron Exp $
 
 LIBISPRIVATE=	yes
 
@@ -13,6 +13,7 @@ SRCS=	tls_prng_dev.c tls_prng_egd.c tls_
 	tls_prng_exch.c tls_stream.c tls_bio_ops.c tls_misc.c tls_dh.c \
 	tls_rsa.c tls_verify.c tls_certkey.c tls_session.c \
 	tls_client.c tls_server.c tls_scache.c tls_mgr.c tls_seed.c \
-	tls_level.c tls_proxy_clnt.c tls_proxy_print.c
+	tls_level.c tls_proxy_clnt.c tls_proxy_print.c tls_dane.c \
+	tls_fprint.c
 
 .include bsd.lib.mk

Index: src/external/ibm-public/postfix/lib/util/Makefile
diff -u src/external/ibm-public/postfix/lib/util/Makefile:1.6 src/external/ibm-public/postfix/lib/util/Makefile:1.7
--- src/external/ibm-public/postfix/lib/util/Makefile:1.6	Wed Sep 25 19:25:08 2013
+++ src/external/ibm-public/postfix/lib/util/Makefile	Sun Jul  6 19:53:05 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.6 2013/09/25 19:25:08 tron Exp $
+#	$NetBSD: Makefile,v 1.7 2014/07/06 19:53:05 tron Exp $
 
 LIBISPRIVATE=	yes
 
@@ -28,7 +28,7 @@ SRCS=	alldig.c allprint.c argv.c argv_sp
 	mymalloc.c myrand.c mystrtok.c name_code.c name_mask.c netstring.c \
 	neuter.c non_blocking.c nvtable.c open_as.c open_limit.c open_lock.c \
 	peekfd.c percentm.c posix_signals.c printable.c rand_sleep.c \
-	read_wait.c readable.c readlline.c ring.c safe_getenv.c safe_open.c \
+	readlline.c ring.c safe_getenv.c safe_open.c \
 	sane_accept.c sane_connect.c sane_link.c sane_rename.c \
 	sane_socketpair.c sane_time.c scan_dir.c set_eugid.c set_ugid.c \
 	sigdelay.c skipblanks.c sock_addr.c spawn_command.c split_at.c \
@@ -38,14 +38,14 @@ SRCS=	alldig.c allprint.c argv.c argv_sp
 	translit.c trimblanks.c unescape.c unix_connect.c unix_listen.c \
 	unix_recv_fd.c unix_send_fd.c unix_trigger.c unsafe.c uppercase.c \
 	username.c valid_hostname.c vbuf.c vbuf_print.c vstream.c \
-	vstream_popen.c vstring.c vstring_vstream.c watchdog.c writable.c \
-	write_buf.c write_wait.c sane_basename.c format_tv.c allspace.c \
+	vstream_popen.c vstring.c vstring_vstream.c watchdog.c \
+	write_buf.c sane_basename.c format_tv.c allspace.c \
 	allascii.c load_file.c killme_after.c vstream_tweak.c edit_file.c \
 	inet_windowsize.c unix_pass_fd_fix.c dict_cache.c dict_thash.c \
 	ip_match.c nbbio.c valid_utf_8.c myrand.c base32_code.c dict_fail.c \
 	dict_surrogate.c dict_test.c msg_rate_delay.c warn_stat.c \
 	dict_sockmap.c line_number.c pass_accept.c pass_trigger.c \
-	recv_pass_attr.c
+	recv_pass_attr.c slmdb.c dict_lmdb.c poll_fd.c timecmp.c
 
 COPTS.unix_recv_fd.c = -Wno-stack-protector
 COPTS.unix_send_fd.c = -Wno-stack-protector

Index: src/external/ibm-public/postfix/libexec/smtp/Makefile
diff 

CVS commit: src/external/ibm-public/postfix

2014-07-06 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul  6 20:09:26 UTC 2014

Modified Files:
src/external/ibm-public/postfix/man/man1: Makefile
src/external/ibm-public/postfix/sbin: Makefile
Added Files:
src/external/ibm-public/postfix/sbin/posttls-finger: Makefile

Log Message:
Build and install posttls-finger(1).


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/external/ibm-public/postfix/man/man1/Makefile
cvs rdiff -u -r1.1 -r1.2 src/external/ibm-public/postfix/sbin/Makefile
cvs rdiff -u -r0 -r1.1 \
src/external/ibm-public/postfix/sbin/posttls-finger/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/ibm-public/postfix/man/man1/Makefile
diff -u src/external/ibm-public/postfix/man/man1/Makefile:1.1 src/external/ibm-public/postfix/man/man1/Makefile:1.2
--- src/external/ibm-public/postfix/man/man1/Makefile:1.1	Tue Jun 23 15:02:52 2009
+++ src/external/ibm-public/postfix/man/man1/Makefile	Sun Jul  6 20:09:26 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.1 2009/06/23 15:02:52 tron Exp $
+#	$NetBSD: Makefile,v 1.2 2014/07/06 20:09:26 tron Exp $
 
 .include bsd.own.mk
 
@@ -9,7 +9,7 @@ DIST=	${NETBSDSRCDIR}/external/ibm-publi
 MAN=	postalias.1 postcat.1 postconf.1 postfix.1 \
 	postkick.1 postlock.1 postlog.1 postdrop.1 \
 	postmap.1 sendmail.1 \
-	postqueue.1 postsuper.1 postmulti.1
+	postqueue.1 postsuper.1 postmulti.1 posttls-finger.1
 
 MLINKS=	sendmail.1 mailq.1 sendmail.1 newaliases.1
 

Index: src/external/ibm-public/postfix/sbin/Makefile
diff -u src/external/ibm-public/postfix/sbin/Makefile:1.1 src/external/ibm-public/postfix/sbin/Makefile:1.2
--- src/external/ibm-public/postfix/sbin/Makefile:1.1	Thu Jun 25 18:21:59 2009
+++ src/external/ibm-public/postfix/sbin/Makefile	Sun Jul  6 20:09:26 2014
@@ -1,8 +1,8 @@
-#	$NetBSD: Makefile,v 1.1 2009/06/25 18:21:59 tron Exp $
+#	$NetBSD: Makefile,v 1.2 2014/07/06 20:09:26 tron Exp $
 
 .include bsd.own.mk
 
 SUBDIR=	postalias postcat postconf postdrop postfix postkick postlock postlog \
-	postmap postmulti postqueue postsuper
+	postmap postmulti postqueue postsuper posttls-finger
 
 .include bsd.subdir.mk

Added files:

Index: src/external/ibm-public/postfix/sbin/posttls-finger/Makefile
diff -u /dev/null src/external/ibm-public/postfix/sbin/posttls-finger/Makefile:1.1
--- /dev/null	Sun Jul  6 20:09:26 2014
+++ src/external/ibm-public/postfix/sbin/posttls-finger/Makefile	Sun Jul  6 20:09:26 2014
@@ -0,0 +1,16 @@
+#	$NetBSD: Makefile,v 1.1 2014/07/06 20:09:26 tron Exp $
+
+NOMAN=	# defined
+
+.include bsd.own.mk
+
+PROG=	posttls-finger
+SRCS=	posttls-finger.c tlsmgrmem.c
+
+DIST=	${NETBSDSRCDIR}/external/ibm-public/postfix/dist/src/${PROG}
+.PATH:	${DIST}
+
+DPADD+= ${LIBPDNS} ${LIBPTLS} ${LIBPGLOBAL} ${LIBPUTIL}
+LDADD+= ${LIBPDNS} ${LIBPTLS} ${LIBPGLOBAL} ${LIBPUTIL}
+
+.include bsd.prog.mk



CVS commit: src/doc

2014-07-06 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul  6 20:14:08 UTC 2014

Modified Files:
src/doc: 3RDPARTY CHANGES

Log Message:
Postfix 2.11.1 was imported.


To generate a diff of this commit:
cvs rdiff -u -r1.1129 -r1.1130 src/doc/3RDPARTY
cvs rdiff -u -r1.1940 -r1.1941 src/doc/CHANGES

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/3RDPARTY
diff -u src/doc/3RDPARTY:1.1129 src/doc/3RDPARTY:1.1130
--- src/doc/3RDPARTY:1.1129	Wed Jul  2 21:10:32 2014
+++ src/doc/3RDPARTY	Sun Jul  6 20:14:08 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: 3RDPARTY,v 1.1129 2014/07/02 21:10:32 pettai Exp $
+#	$NetBSD: 3RDPARTY,v 1.1130 2014/07/06 20:14:08 tron Exp $
 #
 # This file contains a list of the software that has been integrated into
 # NetBSD where we are not the primary maintainer.
@@ -1073,8 +1073,8 @@ and more. Vern's ping is gone. We are to
 now to do a new import.
 
 Package:	Postfix
-Version:	2.10.3
-Current Vers:	2.11.0/2.10.3
+Version:	2.11.1
+Current Vers:	2.11.1
 Maintainer:	Wietse Venema wie...@porcupine.org
 Archive Site:	ftp://postfix.cloud9.net/official/
 Home Page:	http://www.postfix.org/

Index: src/doc/CHANGES
diff -u src/doc/CHANGES:1.1940 src/doc/CHANGES:1.1941
--- src/doc/CHANGES:1.1940	Mon Jun 30 05:52:24 2014
+++ src/doc/CHANGES	Sun Jul  6 20:14:08 2014
@@ -1,4 +1,4 @@
-# LIST OF CHANGES FROM LAST RELEASE:			$Revision: 1.1940 $
+# LIST OF CHANGES FROM LAST RELEASE:			$Revision: 1.1941 $
 #
 #
 # [Note: This file does not mention every change made to the NetBSD source tree.
@@ -435,3 +435,4 @@ Changes from NetBSD 6.0 to NetBSD 7.0:
 	dhcpcd(8): Import dhcpcd-6.4.0 [roy 20140614]
 	pigz(1): Update to pigz-2.3.1 [tls 20140615]
 	gdb(1): Updated to 7.7.1.  [christos 20140622]
+	postfix(1): Import version 2.11.1 [tron 20140706]



CVS commit: src/external/ibm-public/postfix/share/README_FILES

2014-07-06 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul  6 20:18:19 UTC 2014

Modified Files:
src/external/ibm-public/postfix/share/README_FILES: Makefile

Log Message:
Update list of readme files.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 \
src/external/ibm-public/postfix/share/README_FILES/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/ibm-public/postfix/share/README_FILES/Makefile
diff -u src/external/ibm-public/postfix/share/README_FILES/Makefile:1.3 src/external/ibm-public/postfix/share/README_FILES/Makefile:1.4
--- src/external/ibm-public/postfix/share/README_FILES/Makefile:1.3	Wed Jan  2 22:33:20 2013
+++ src/external/ibm-public/postfix/share/README_FILES/Makefile	Sun Jul  6 20:18:19 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.3 2013/01/02 22:33:20 tron Exp $
+#	$NetBSD: Makefile,v 1.4 2014/07/06 20:18:19 tron Exp $
 
 .include bsd.own.mk
 
@@ -9,21 +9,21 @@ BINDIR=	${PFIX_EXAMPLEDIR}
 DIST=	${NETBSDSRCDIR}/external/ibm-public/postfix/dist/README_FILES
 .PATH:	${DIST}
 
-FILES=	AAAREADME ADDRESS_CLASS_README ADDRESS_REWRITING_README \
+FILES=	ADDRESS_CLASS_README ADDRESS_REWRITING_README \
 	ADDRESS_VERIFICATION_README BACKSCATTER_README \
-	BASIC_CONFIGURATION_README BUILTIN_FILTER_README \
-	CONNECTION_CACHE_README CONTENT_INSPECTION_README \
-	DATABASE_README DSN_README DB_README DEBUG_README ETRN_README \
-	FILTER_README \
-	IPV6_README LDAP_README LOCAL_RECIPIENT_README \
-	MAILDROP_README MEMCACHE_README MILTER_README MULTI_INSTANCE_README \
-	MYSQL_README NFS_README OVERVIEW PCRE_README \
-	PGSQL_README POSTSCREEN_README QSHAPE_README ../RELEASE_NOTES \
-	RESTRICTION_CLASS_README SASL_README SCHEDULER_README \
-	SMTPD_ACCESS_README SMTPD_POLICY_README SMTPD_PROXY_README \
-	SOHO_README SQLITE_README STANDARD_CONFIGURATION_README \
-	TLS_README TLS_LEGACY_README TUNING_README UUCP_README \
-	VERP_README VIRTUAL_README XCLIENT_README XFORWARD_README
+	BASIC_CONFIGURATION_README BUILTIN_FILTER_README CDB_README \
+	CONNECTION_CACHE_README CONTENT_INSPECTION_README CYRUS_README \
+	DATABASE_README DB_README DEBUG_README DSN_README ETRN_README \
+	FILTER_README FORWARD_SECRECY_README IPV6_README LDAP_README \
+	LINUX_README LMDB_README LOCAL_RECIPIENT_README MAILDROP_README \
+	MEMCACHE_README MILTER_README MULTI_INSTANCE_README MYSQL_README \
+	NFS_README PACKAGE_README PCRE_README PGSQL_README POSTSCREEN_README \
+	QMQP_README QSHAPE_README RESTRICTION_CLASS_README SASL_README \
+	SCHEDULER_README SMTPD_ACCESS_README SMTPD_POLICY_README \
+	SMTPD_PROXY_README SOHO_README SQLITE_README \
+	STANDARD_CONFIGURATION_README STRESS_README TLS_LEGACY_README \
+	TLS_README TUNING_README ULTRIX_README UUCP_README VERP_README \
+	VIRTUAL_README XCLIENT_README XFORWARD_README
 
 # not installed:
 #	CYRUS_README CDB_README INSTALL



CVS commit: src/external/ibm-public/postfix/share/html

2014-07-06 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul  6 20:25:48 UTC 2014

Modified Files:
src/external/ibm-public/postfix/share/html: Makefile

Log Message:
Update list of HTML pages.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/external/ibm-public/postfix/share/html/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/ibm-public/postfix/share/html/Makefile
diff -u src/external/ibm-public/postfix/share/html/Makefile:1.3 src/external/ibm-public/postfix/share/html/Makefile:1.4
--- src/external/ibm-public/postfix/share/html/Makefile:1.3	Wed Jan  2 22:33:20 2013
+++ src/external/ibm-public/postfix/share/html/Makefile	Sun Jul  6 20:25:48 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.3 2013/01/02 22:33:20 tron Exp $
+#	$NetBSD: Makefile,v 1.4 2014/07/06 20:25:48 tron Exp $
 
 .include bsd.own.mk
 
@@ -19,7 +19,7 @@ PFX_COMMANDS= postalias.1.html postcat.1
 	postconf.1.html postdrop.1.html postfix.1.html postkick.1.html \
 	postlock.1.html postlog.1.html postmap.1.html postqueue.1.html \
 	postsuper.1.html qshape.1.html sendmail.1.html smtp-sink.1.html \
-	smtp-source.1.html postmulti.1.html
+	smtp-source.1.html postmulti.1.html posttls-finger.1.html
 PFX_CONFIG= access.5.html aliases.5.html canonical.5.html cidr_table.5.html \
 	generic.5.html header_checks.5.html ldap_table.5.html \
 	master.5.html mysql_table.5.html nisplus_table.5.html \
@@ -30,21 +30,22 @@ PFX_CONFIG= access.5.html aliases.5.html
 PFX_READMES= ADDRESS_CLASS_README.html ADDRESS_REWRITING_README.html \
 	ADDRESS_VERIFICATION_README.html BACKSCATTER_README.html \
 	BASIC_CONFIGURATION_README.html BUILTIN_FILTER_README.html \
-	CONNECTION_CACHE_README.html CONTENT_INSPECTION_README.html \
-	DATABASE_README.html DSN_README.html DB_README.html DEBUG_README.html \
-	ETRN_README.html FILTER_README.html IPV6_README.html \
-	LDAP_README.html \
-	LOCAL_RECIPIENT_README.html MAILDROP_README.html MYSQL_README.html \
-	MILTER_README.html \
-	NFS_README.html OVERVIEW.html PCRE_README.html \
+	CDB_README.html CONNECTION_CACHE_README.html \
+	CONTENT_INSPECTION_README.html DATABASE_README.html DB_README.html \
+	DEBUG_README.html DSN_README.html ETRN_README.html FILTER_README.html \
+	FORWARD_SECRECY_README.html INSTALL.html IPV6_README.html \
+	LDAP_README.html LINUX_README.html LMDB_README.html \
+	LOCAL_RECIPIENT_README.html MAILDROP_README.html MEMCACHE_README.html \
+	MILTER_README.html MULTI_INSTANCE_README.html MYSQL_README.html \
+	NFS_README.html OVERVIEW.html PACKAGE_README.html PCRE_README.html \
 	PGSQL_README.html POSTSCREEN_README.html QSHAPE_README.html \
 	RESTRICTION_CLASS_README.html SASL_README.html SCHEDULER_README.html \
 	SMTPD_ACCESS_README.html SMTPD_POLICY_README.html \
-	SMTPD_PROXY_README.html STANDARD_CONFIGURATION_README.html \
-	SOHO_README.html SQLITE_README.html \
-	TLS_README.html TLS_LEGACY_README.html TUNING_README.html \
+	SMTPD_PROXY_README.html SQLITE_README.html \
+	STANDARD_CONFIGURATION_README.html STRESS_README.html \
+	TLS_LEGACY_README.html TLS_README.html TUNING_README.html \
 	UUCP_README.html VERP_README.html VIRTUAL_README.html \
-	XCLIENT_README.html XFORWARD_README.html MULTI_INSTANCE_README.html
+	XCLIENT_README.html XFORWARD_README.html
 
 FILES=	$(PFX_DAEMONS) $(PFX_COMMANDS) $(PFX_CONFIG) $(PFX_READMES) \
 	index.html postconf.5.html OVERVIEW.html postfix-logo.jpg



CVS commit: src/external/ibm-public/postfix/share

2014-07-06 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul  6 20:38:34 UTC 2014

Modified Files:
src/external/ibm-public/postfix/share/README_FILES: Makefile
src/external/ibm-public/postfix/share/html: Makefile

Log Message:
Don't install files related to other operating systems.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 \
src/external/ibm-public/postfix/share/README_FILES/Makefile
cvs rdiff -u -r1.4 -r1.5 src/external/ibm-public/postfix/share/html/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/ibm-public/postfix/share/README_FILES/Makefile
diff -u src/external/ibm-public/postfix/share/README_FILES/Makefile:1.4 src/external/ibm-public/postfix/share/README_FILES/Makefile:1.5
--- src/external/ibm-public/postfix/share/README_FILES/Makefile:1.4	Sun Jul  6 20:18:19 2014
+++ src/external/ibm-public/postfix/share/README_FILES/Makefile	Sun Jul  6 20:38:34 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.4 2014/07/06 20:18:19 tron Exp $
+#	$NetBSD: Makefile,v 1.5 2014/07/06 20:38:34 tron Exp $
 
 .include bsd.own.mk
 
@@ -15,14 +15,14 @@ FILES=	ADDRESS_CLASS_README ADDRESS_REWR
 	CONNECTION_CACHE_README CONTENT_INSPECTION_README CYRUS_README \
 	DATABASE_README DB_README DEBUG_README DSN_README ETRN_README \
 	FILTER_README FORWARD_SECRECY_README IPV6_README LDAP_README \
-	LINUX_README LMDB_README LOCAL_RECIPIENT_README MAILDROP_README \
+	LMDB_README LOCAL_RECIPIENT_README MAILDROP_README \
 	MEMCACHE_README MILTER_README MULTI_INSTANCE_README MYSQL_README \
 	NFS_README PACKAGE_README PCRE_README PGSQL_README POSTSCREEN_README \
 	QMQP_README QSHAPE_README RESTRICTION_CLASS_README SASL_README \
 	SCHEDULER_README SMTPD_ACCESS_README SMTPD_POLICY_README \
 	SMTPD_PROXY_README SOHO_README SQLITE_README \
 	STANDARD_CONFIGURATION_README STRESS_README TLS_LEGACY_README \
-	TLS_README TUNING_README ULTRIX_README UUCP_README VERP_README \
+	TLS_README TUNING_README UUCP_README VERP_README \
 	VIRTUAL_README XCLIENT_README XFORWARD_README
 
 # not installed:

Index: src/external/ibm-public/postfix/share/html/Makefile
diff -u src/external/ibm-public/postfix/share/html/Makefile:1.4 src/external/ibm-public/postfix/share/html/Makefile:1.5
--- src/external/ibm-public/postfix/share/html/Makefile:1.4	Sun Jul  6 20:25:48 2014
+++ src/external/ibm-public/postfix/share/html/Makefile	Sun Jul  6 20:38:34 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.4 2014/07/06 20:25:48 tron Exp $
+#	$NetBSD: Makefile,v 1.5 2014/07/06 20:38:34 tron Exp $
 
 .include bsd.own.mk
 
@@ -34,7 +34,7 @@ PFX_READMES= ADDRESS_CLASS_README.html A
 	CONTENT_INSPECTION_README.html DATABASE_README.html DB_README.html \
 	DEBUG_README.html DSN_README.html ETRN_README.html FILTER_README.html \
 	FORWARD_SECRECY_README.html INSTALL.html IPV6_README.html \
-	LDAP_README.html LINUX_README.html LMDB_README.html \
+	LDAP_README.html LMDB_README.html \
 	LOCAL_RECIPIENT_README.html MAILDROP_README.html MEMCACHE_README.html \
 	MILTER_README.html MULTI_INSTANCE_README.html MYSQL_README.html \
 	NFS_README.html OVERVIEW.html PACKAGE_README.html PCRE_README.html \



CVS commit: src/external/ibm-public/postfix/share/html

2014-07-06 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul  6 20:39:14 UTC 2014

Modified Files:
src/external/ibm-public/postfix/share/html: Makefile

Log Message:
Don't install installation documentation. It is highly irrelevant.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/external/ibm-public/postfix/share/html/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/ibm-public/postfix/share/html/Makefile
diff -u src/external/ibm-public/postfix/share/html/Makefile:1.5 src/external/ibm-public/postfix/share/html/Makefile:1.6
--- src/external/ibm-public/postfix/share/html/Makefile:1.5	Sun Jul  6 20:38:34 2014
+++ src/external/ibm-public/postfix/share/html/Makefile	Sun Jul  6 20:39:13 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.5 2014/07/06 20:38:34 tron Exp $
+#	$NetBSD: Makefile,v 1.6 2014/07/06 20:39:13 tron Exp $
 
 .include bsd.own.mk
 
@@ -33,7 +33,7 @@ PFX_READMES= ADDRESS_CLASS_README.html A
 	CDB_README.html CONNECTION_CACHE_README.html \
 	CONTENT_INSPECTION_README.html DATABASE_README.html DB_README.html \
 	DEBUG_README.html DSN_README.html ETRN_README.html FILTER_README.html \
-	FORWARD_SECRECY_README.html INSTALL.html IPV6_README.html \
+	FORWARD_SECRECY_README.html IPV6_README.html \
 	LDAP_README.html LMDB_README.html \
 	LOCAL_RECIPIENT_README.html MAILDROP_README.html MEMCACHE_README.html \
 	MILTER_README.html MULTI_INSTANCE_README.html MYSQL_README.html \



CVS commit: src/external/ibm-public/postfix/share

2014-07-06 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul  6 20:41:56 UTC 2014

Modified Files:
src/external/ibm-public/postfix/share/README_FILES: Makefile
src/external/ibm-public/postfix/share/html: Makefile

Log Message:
More corrections.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 \
src/external/ibm-public/postfix/share/README_FILES/Makefile
cvs rdiff -u -r1.6 -r1.7 src/external/ibm-public/postfix/share/html/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/ibm-public/postfix/share/README_FILES/Makefile
diff -u src/external/ibm-public/postfix/share/README_FILES/Makefile:1.5 src/external/ibm-public/postfix/share/README_FILES/Makefile:1.6
--- src/external/ibm-public/postfix/share/README_FILES/Makefile:1.5	Sun Jul  6 20:38:34 2014
+++ src/external/ibm-public/postfix/share/README_FILES/Makefile	Sun Jul  6 20:41:56 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.5 2014/07/06 20:38:34 tron Exp $
+#	$NetBSD: Makefile,v 1.6 2014/07/06 20:41:56 tron Exp $
 
 .include bsd.own.mk
 
@@ -11,13 +11,13 @@ DIST=	${NETBSDSRCDIR}/external/ibm-publi
 
 FILES=	ADDRESS_CLASS_README ADDRESS_REWRITING_README \
 	ADDRESS_VERIFICATION_README BACKSCATTER_README \
-	BASIC_CONFIGURATION_README BUILTIN_FILTER_README CDB_README \
-	CONNECTION_CACHE_README CONTENT_INSPECTION_README CYRUS_README \
+	BASIC_CONFIGURATION_README BUILTIN_FILTER_README \
+	CONNECTION_CACHE_README CONTENT_INSPECTION_README \
 	DATABASE_README DB_README DEBUG_README DSN_README ETRN_README \
 	FILTER_README FORWARD_SECRECY_README IPV6_README LDAP_README \
 	LMDB_README LOCAL_RECIPIENT_README MAILDROP_README \
 	MEMCACHE_README MILTER_README MULTI_INSTANCE_README MYSQL_README \
-	NFS_README PACKAGE_README PCRE_README PGSQL_README POSTSCREEN_README \
+	NFS_README PCRE_README PGSQL_README POSTSCREEN_README \
 	QMQP_README QSHAPE_README RESTRICTION_CLASS_README SASL_README \
 	SCHEDULER_README SMTPD_ACCESS_README SMTPD_POLICY_README \
 	SMTPD_PROXY_README SOHO_README SQLITE_README \

Index: src/external/ibm-public/postfix/share/html/Makefile
diff -u src/external/ibm-public/postfix/share/html/Makefile:1.6 src/external/ibm-public/postfix/share/html/Makefile:1.7
--- src/external/ibm-public/postfix/share/html/Makefile:1.6	Sun Jul  6 20:39:13 2014
+++ src/external/ibm-public/postfix/share/html/Makefile	Sun Jul  6 20:41:56 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.6 2014/07/06 20:39:13 tron Exp $
+#	$NetBSD: Makefile,v 1.7 2014/07/06 20:41:56 tron Exp $
 
 .include bsd.own.mk
 
@@ -30,14 +30,14 @@ PFX_CONFIG= access.5.html aliases.5.html
 PFX_READMES= ADDRESS_CLASS_README.html ADDRESS_REWRITING_README.html \
 	ADDRESS_VERIFICATION_README.html BACKSCATTER_README.html \
 	BASIC_CONFIGURATION_README.html BUILTIN_FILTER_README.html \
-	CDB_README.html CONNECTION_CACHE_README.html \
+	CONNECTION_CACHE_README.html \
 	CONTENT_INSPECTION_README.html DATABASE_README.html DB_README.html \
 	DEBUG_README.html DSN_README.html ETRN_README.html FILTER_README.html \
 	FORWARD_SECRECY_README.html IPV6_README.html \
 	LDAP_README.html LMDB_README.html \
 	LOCAL_RECIPIENT_README.html MAILDROP_README.html MEMCACHE_README.html \
 	MILTER_README.html MULTI_INSTANCE_README.html MYSQL_README.html \
-	NFS_README.html OVERVIEW.html PACKAGE_README.html PCRE_README.html \
+	NFS_README.html OVERVIEW.html PCRE_README.html \
 	PGSQL_README.html POSTSCREEN_README.html QSHAPE_README.html \
 	RESTRICTION_CLASS_README.html SASL_README.html SCHEDULER_README.html \
 	SMTPD_ACCESS_README.html SMTPD_POLICY_README.html \



CVS commit: src/external/ibm-public/postfix/share/README_FILES

2014-07-06 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul  6 21:04:10 UTC 2014

Modified Files:
src/external/ibm-public/postfix/share/README_FILES: Makefile

Log Message:
Add a few files back.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 \
src/external/ibm-public/postfix/share/README_FILES/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/ibm-public/postfix/share/README_FILES/Makefile
diff -u src/external/ibm-public/postfix/share/README_FILES/Makefile:1.6 src/external/ibm-public/postfix/share/README_FILES/Makefile:1.7
--- src/external/ibm-public/postfix/share/README_FILES/Makefile:1.6	Sun Jul  6 20:41:56 2014
+++ src/external/ibm-public/postfix/share/README_FILES/Makefile	Sun Jul  6 21:04:10 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.6 2014/07/06 20:41:56 tron Exp $
+#	$NetBSD: Makefile,v 1.7 2014/07/06 21:04:10 tron Exp $
 
 .include bsd.own.mk
 
@@ -9,7 +9,7 @@ BINDIR=	${PFIX_EXAMPLEDIR}
 DIST=	${NETBSDSRCDIR}/external/ibm-public/postfix/dist/README_FILES
 .PATH:	${DIST}
 
-FILES=	ADDRESS_CLASS_README ADDRESS_REWRITING_README \
+FILES=	AAAREADME ADDRESS_CLASS_README ADDRESS_REWRITING_README \
 	ADDRESS_VERIFICATION_README BACKSCATTER_README \
 	BASIC_CONFIGURATION_README BUILTIN_FILTER_README \
 	CONNECTION_CACHE_README CONTENT_INSPECTION_README \
@@ -17,9 +17,9 @@ FILES=	ADDRESS_CLASS_README ADDRESS_REWR
 	FILTER_README FORWARD_SECRECY_README IPV6_README LDAP_README \
 	LMDB_README LOCAL_RECIPIENT_README MAILDROP_README \
 	MEMCACHE_README MILTER_README MULTI_INSTANCE_README MYSQL_README \
-	NFS_README PCRE_README PGSQL_README POSTSCREEN_README \
-	QMQP_README QSHAPE_README RESTRICTION_CLASS_README SASL_README \
-	SCHEDULER_README SMTPD_ACCESS_README SMTPD_POLICY_README \
+	NFS_README OVERVIEW PCRE_README PGSQL_README POSTSCREEN_README \
+	QMQP_README QSHAPE_README ../RELEASE_NOTES RESTRICTION_CLASS_README \
+	SASL_README SCHEDULER_README SMTPD_ACCESS_README SMTPD_POLICY_README \
 	SMTPD_PROXY_README SOHO_README SQLITE_README \
 	STANDARD_CONFIGURATION_README STRESS_README TLS_LEGACY_README \
 	TLS_README TUNING_README UUCP_README VERP_README \



CVS commit: src/distrib/sets/lists

2014-07-06 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul  6 21:06:48 UTC 2014

Modified Files:
src/distrib/sets/lists/base: mi
src/distrib/sets/lists/debug: mi
src/distrib/sets/lists/man: mi
src/distrib/sets/lists/misc: mi

Log Message:
Update set lists for Postfix 2.11.1.


To generate a diff of this commit:
cvs rdiff -u -r1.1070 -r1.1071 src/distrib/sets/lists/base/mi
cvs rdiff -u -r1.66 -r1.67 src/distrib/sets/lists/debug/mi
cvs rdiff -u -r1.1476 -r1.1477 src/distrib/sets/lists/man/mi
cvs rdiff -u -r1.192 -r1.193 src/distrib/sets/lists/misc/mi

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/distrib/sets/lists/base/mi
diff -u src/distrib/sets/lists/base/mi:1.1070 src/distrib/sets/lists/base/mi:1.1071
--- src/distrib/sets/lists/base/mi:1.1070	Sat Jul  5 22:08:14 2014
+++ src/distrib/sets/lists/base/mi	Sun Jul  6 21:06:48 2014
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.1070 2014/07/05 22:08:14 dholland Exp $
+# $NetBSD: mi,v 1.1071 2014/07/06 21:06:48 tron Exp $
 #
 # Note:	Don't delete entries from here - mark them as obsolete instead,
 #	unless otherwise stated below.
@@ -1471,6 +1471,7 @@
 ./usr/sbin/postmultibase-postfix-bin	postfix
 ./usr/sbin/postqueuebase-postfix-bin	postfix
 ./usr/sbin/postsuperbase-postfix-bin	postfix
+./usr/sbin/posttls-finger			base-postfix-bin	postfix
 ./usr/sbin/powerdbase-sysutil-bin
 ./usr/sbin/pppd	base-ppp-bin
 ./usr/sbin/pppdumpbase-ppp-bin

Index: src/distrib/sets/lists/debug/mi
diff -u src/distrib/sets/lists/debug/mi:1.66 src/distrib/sets/lists/debug/mi:1.67
--- src/distrib/sets/lists/debug/mi:1.66	Wed Jul  2 13:38:05 2014
+++ src/distrib/sets/lists/debug/mi	Sun Jul  6 21:06:48 2014
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.66 2014/07/02 13:38:05 alnsn Exp $
+# $NetBSD: mi,v 1.67 2014/07/06 21:06:48 tron Exp $
 
 ./etc/mtree/set.debug   comp-sys-root
 ./usr/lib/i18n/libBIG5_g.a			comp-c-debuglib		debuglib
@@ -1143,6 +1143,7 @@
 ./usr/libdata/debug/usr/sbin/postmulti.debug	comp-postfix-debug	postfix,debug
 ./usr/libdata/debug/usr/sbin/postqueue.debug	comp-postfix-debug	postfix,debug
 ./usr/libdata/debug/usr/sbin/postsuper.debug	comp-postfix-debug	postfix,debug
+./usr/libdata/debug/usr/sbin/posttls-finger.debug	comp-postfix-debug	postfix,debug
 ./usr/libdata/debug/usr/sbin/powerd.debug	comp-sysutil-debug	debug
 ./usr/libdata/debug/usr/sbin/pppd.debug		comp-ppp-debug		debug
 ./usr/libdata/debug/usr/sbin/pppdump.debug	comp-ppp-debug		debug

Index: src/distrib/sets/lists/man/mi
diff -u src/distrib/sets/lists/man/mi:1.1476 src/distrib/sets/lists/man/mi:1.1477
--- src/distrib/sets/lists/man/mi:1.1476	Mon Jun 23 15:22:07 2014
+++ src/distrib/sets/lists/man/mi	Sun Jul  6 21:06:48 2014
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.1476 2014/06/23 15:22:07 christos Exp $
+# $NetBSD: mi,v 1.1477 2014/07/06 21:06:48 tron Exp $
 #
 # Note: don't delete entries from here - mark them as obsolete instead.
 #
@@ -440,6 +440,7 @@
 ./usr/share/man/cat1/postmulti.0		man-postfix-catman	postfix,.cat
 ./usr/share/man/cat1/postqueue.0		man-postfix-catman	postfix,.cat
 ./usr/share/man/cat1/postsuper.0		man-postfix-catman	postfix,.cat
+./usr/share/man/cat1/posttls-finger.0		man-postfix-catman	postfix,.cat
 ./usr/share/man/cat1/pr.0			man-util-catman		.cat
 ./usr/share/man/cat1/prenice.0			man-util-catman		.cat
 ./usr/share/man/cat1/printenv.0			man-util-catman		.cat
@@ -3543,6 +3544,7 @@
 ./usr/share/man/html1/postmulti.html		man-postfix-htmlman	postfix,html
 ./usr/share/man/html1/postqueue.html		man-postfix-htmlman	postfix,html
 ./usr/share/man/html1/postsuper.html		man-postfix-htmlman	postfix,html
+./usr/share/man/html1/posttls-finger.html	man-postfix-htmlman	postfix,html
 ./usr/share/man/html1/pr.html			man-util-htmlman	html
 ./usr/share/man/html1/prenice.html		man-util-htmlman	html
 ./usr/share/man/html1/printenv.html		man-util-htmlman	html
@@ -6290,6 +6292,7 @@
 ./usr/share/man/man1/postmulti.1		man-postfix-man		postfix,.man
 ./usr/share/man/man1/postqueue.1		man-postfix-man		postfix,.man
 ./usr/share/man/man1/postsuper.1		man-postfix-man		postfix,.man
+./usr/share/man/man1/posttls-finger.1		man-postfix-man		postfix,.man
 ./usr/share/man/man1/pr.1			man-util-man		.man
 ./usr/share/man/man1/prenice.1			man-util-man		.man
 ./usr/share/man/man1/printenv.1			man-util-man		.man

Index: src/distrib/sets/lists/misc/mi
diff -u src/distrib/sets/lists/misc/mi:1.192 src/distrib/sets/lists/misc/mi:1.193
--- src/distrib/sets/lists/misc/mi:1.192	Sun Jul  6 18:22:03 2014
+++ src/distrib/sets/lists/misc/mi	Sun Jul  6 21:06:48 2014
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.192 2014/07/06 18:22:03 dholland Exp $
+# $NetBSD: mi,v 1.193 2014/07/06 21:06:48 tron Exp $
 #
 # Note: don't delete entries from here - mark them as obsolete instead.
 #
@@ -390,6 +390,7 @@
 ./usr/share/doc/html/postfix/postqueue.1.html	misc-obsolete	obsolete
 

CVS commit: src/external/ibm-public/postfix/share/html

2014-07-06 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul  6 21:14:43 UTC 2014

Modified Files:
src/external/ibm-public/postfix/share/html: Makefile

Log Message:
Add one more file back.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/external/ibm-public/postfix/share/html/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/ibm-public/postfix/share/html/Makefile
diff -u src/external/ibm-public/postfix/share/html/Makefile:1.7 src/external/ibm-public/postfix/share/html/Makefile:1.8
--- src/external/ibm-public/postfix/share/html/Makefile:1.7	Sun Jul  6 20:41:56 2014
+++ src/external/ibm-public/postfix/share/html/Makefile	Sun Jul  6 21:14:43 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.7 2014/07/06 20:41:56 tron Exp $
+#	$NetBSD: Makefile,v 1.8 2014/07/06 21:14:43 tron Exp $
 
 .include bsd.own.mk
 
@@ -41,7 +41,7 @@ PFX_READMES= ADDRESS_CLASS_README.html A
 	PGSQL_README.html POSTSCREEN_README.html QSHAPE_README.html \
 	RESTRICTION_CLASS_README.html SASL_README.html SCHEDULER_README.html \
 	SMTPD_ACCESS_README.html SMTPD_POLICY_README.html \
-	SMTPD_PROXY_README.html SQLITE_README.html \
+	SMTPD_PROXY_README.html SOHO_README.html SQLITE_README.html \
 	STANDARD_CONFIGURATION_README.html STRESS_README.html \
 	TLS_LEGACY_README.html TLS_README.html TUNING_README.html \
 	UUCP_README.html VERP_README.html VIRTUAL_README.html \



CVS commit: src/external/ibm-public/postfix/dist

2014-07-06 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul  6 19:45:51 UTC 2014

Modified Files:
src/external/ibm-public/postfix/dist: makedefs
src/external/ibm-public/postfix/dist/README_FILES:
ADDRESS_VERIFICATION_README INSTALL TLS_README
src/external/ibm-public/postfix/dist/conf: main.cf master.cf
postfix-files
src/external/ibm-public/postfix/dist/html:
ADDRESS_VERIFICATION_README.html INSTALL.html TLS_README.html
postconf.5.html
src/external/ibm-public/postfix/dist/man/man5: postconf.5
src/external/ibm-public/postfix/dist/proto:
ADDRESS_VERIFICATION_README.html INSTALL.html TLS_README.html
postconf.proto
src/external/ibm-public/postfix/dist/src/cleanup: cleanup.h
src/external/ibm-public/postfix/dist/src/dns: dns_lookup.c
src/external/ibm-public/postfix/dist/src/global: mail_params.h
src/external/ibm-public/postfix/dist/src/postconf: postconf_master.c
src/external/ibm-public/postfix/dist/src/smtp: smtp.c
src/external/ibm-public/postfix/dist/src/smtpd: smtpd.c
src/external/ibm-public/postfix/dist/src/tls: tls_client.c tls_server.c
src/external/ibm-public/postfix/dist/src/util: dict_sockmap.c
sys_defs.h
Removed Files:
src/external/ibm-public/postfix/dist/src/util: read_wait.c readable.c
writable.c write_wait.c

Log Message:
Resolve conflicts from last import.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/external/ibm-public/postfix/dist/makedefs
cvs rdiff -u -r1.6 -r1.7 \

src/external/ibm-public/postfix/dist/README_FILES/ADDRESS_VERIFICATION_README
cvs rdiff -u -r1.5 -r1.6 \
src/external/ibm-public/postfix/dist/README_FILES/INSTALL
cvs rdiff -u -r1.8 -r1.9 \
src/external/ibm-public/postfix/dist/README_FILES/TLS_README
cvs rdiff -u -r1.4 -r1.5 src/external/ibm-public/postfix/dist/conf/main.cf \
src/external/ibm-public/postfix/dist/conf/postfix-files
cvs rdiff -u -r1.6 -r1.7 src/external/ibm-public/postfix/dist/conf/master.cf
cvs rdiff -u -r1.6 -r1.7 \
src/external/ibm-public/postfix/dist/html/ADDRESS_VERIFICATION_README.html
cvs rdiff -u -r1.5 -r1.6 \
src/external/ibm-public/postfix/dist/html/INSTALL.html
cvs rdiff -u -r1.9 -r1.10 \
src/external/ibm-public/postfix/dist/html/TLS_README.html
cvs rdiff -u -r1.12 -r1.13 \
src/external/ibm-public/postfix/dist/html/postconf.5.html
cvs rdiff -u -r1.12 -r1.13 \
src/external/ibm-public/postfix/dist/man/man5/postconf.5
cvs rdiff -u -r1.6 -r1.7 \
src/external/ibm-public/postfix/dist/proto/ADDRESS_VERIFICATION_README.html
cvs rdiff -u -r1.5 -r1.6 \
src/external/ibm-public/postfix/dist/proto/INSTALL.html
cvs rdiff -u -r1.8 -r1.9 \
src/external/ibm-public/postfix/dist/proto/TLS_README.html
cvs rdiff -u -r1.12 -r1.13 \
src/external/ibm-public/postfix/dist/proto/postconf.proto
cvs rdiff -u -r1.5 -r1.6 \
src/external/ibm-public/postfix/dist/src/cleanup/cleanup.h
cvs rdiff -u -r1.2 -r1.3 \
src/external/ibm-public/postfix/dist/src/dns/dns_lookup.c
cvs rdiff -u -r1.11 -r1.12 \
src/external/ibm-public/postfix/dist/src/global/mail_params.h
cvs rdiff -u -r1.2 -r1.3 \
src/external/ibm-public/postfix/dist/src/postconf/postconf_master.c
cvs rdiff -u -r1.7 -r1.8 src/external/ibm-public/postfix/dist/src/smtp/smtp.c
cvs rdiff -u -r1.10 -r1.11 \
src/external/ibm-public/postfix/dist/src/smtpd/smtpd.c
cvs rdiff -u -r1.8 -r1.9 \
src/external/ibm-public/postfix/dist/src/tls/tls_client.c
cvs rdiff -u -r1.7 -r1.8 \
src/external/ibm-public/postfix/dist/src/tls/tls_server.c
cvs rdiff -u -r1.3 -r1.4 \
src/external/ibm-public/postfix/dist/src/util/dict_sockmap.c
cvs rdiff -u -r1.1.1.2 -r0 \
src/external/ibm-public/postfix/dist/src/util/read_wait.c
cvs rdiff -u -r1.1.1.1 -r0 \
src/external/ibm-public/postfix/dist/src/util/readable.c \
src/external/ibm-public/postfix/dist/src/util/writable.c \
src/external/ibm-public/postfix/dist/src/util/write_wait.c
cvs rdiff -u -r1.6 -r1.7 \
src/external/ibm-public/postfix/dist/src/util/sys_defs.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/ibm-public/postfix

2014-07-06 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul  6 19:53:06 UTC 2014

Modified Files:
src/external/ibm-public/postfix/lib/global: Makefile
src/external/ibm-public/postfix/lib/tls: Makefile
src/external/ibm-public/postfix/lib/util: Makefile
src/external/ibm-public/postfix/libexec/smtp: Makefile
src/external/ibm-public/postfix/sbin/postconf: Makefile

Log Message:
Adapt makefiles for Postfix 2.11.1.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/external/ibm-public/postfix/lib/global/Makefile
cvs rdiff -u -r1.2 -r1.3 src/external/ibm-public/postfix/lib/tls/Makefile
cvs rdiff -u -r1.6 -r1.7 src/external/ibm-public/postfix/lib/util/Makefile
cvs rdiff -u -r1.1 -r1.2 \
src/external/ibm-public/postfix/libexec/smtp/Makefile
cvs rdiff -u -r1.6 -r1.7 \
src/external/ibm-public/postfix/sbin/postconf/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/ibm-public/postfix

2014-07-06 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul  6 20:09:26 UTC 2014

Modified Files:
src/external/ibm-public/postfix/man/man1: Makefile
src/external/ibm-public/postfix/sbin: Makefile
Added Files:
src/external/ibm-public/postfix/sbin/posttls-finger: Makefile

Log Message:
Build and install posttls-finger(1).


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/external/ibm-public/postfix/man/man1/Makefile
cvs rdiff -u -r1.1 -r1.2 src/external/ibm-public/postfix/sbin/Makefile
cvs rdiff -u -r0 -r1.1 \
src/external/ibm-public/postfix/sbin/posttls-finger/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/doc

2014-07-06 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul  6 20:14:08 UTC 2014

Modified Files:
src/doc: 3RDPARTY CHANGES

Log Message:
Postfix 2.11.1 was imported.


To generate a diff of this commit:
cvs rdiff -u -r1.1129 -r1.1130 src/doc/3RDPARTY
cvs rdiff -u -r1.1940 -r1.1941 src/doc/CHANGES

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/ibm-public/postfix/share/README_FILES

2014-07-06 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul  6 20:18:19 UTC 2014

Modified Files:
src/external/ibm-public/postfix/share/README_FILES: Makefile

Log Message:
Update list of readme files.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 \
src/external/ibm-public/postfix/share/README_FILES/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/ibm-public/postfix/share/html

2014-07-06 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul  6 20:25:48 UTC 2014

Modified Files:
src/external/ibm-public/postfix/share/html: Makefile

Log Message:
Update list of HTML pages.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/external/ibm-public/postfix/share/html/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/ibm-public/postfix/share

2014-07-06 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul  6 20:38:34 UTC 2014

Modified Files:
src/external/ibm-public/postfix/share/README_FILES: Makefile
src/external/ibm-public/postfix/share/html: Makefile

Log Message:
Don't install files related to other operating systems.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 \
src/external/ibm-public/postfix/share/README_FILES/Makefile
cvs rdiff -u -r1.4 -r1.5 src/external/ibm-public/postfix/share/html/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/ibm-public/postfix/share/html

2014-07-06 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul  6 20:39:14 UTC 2014

Modified Files:
src/external/ibm-public/postfix/share/html: Makefile

Log Message:
Don't install installation documentation. It is highly irrelevant.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/external/ibm-public/postfix/share/html/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/ibm-public/postfix/share

2014-07-06 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul  6 20:41:56 UTC 2014

Modified Files:
src/external/ibm-public/postfix/share/README_FILES: Makefile
src/external/ibm-public/postfix/share/html: Makefile

Log Message:
More corrections.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 \
src/external/ibm-public/postfix/share/README_FILES/Makefile
cvs rdiff -u -r1.6 -r1.7 src/external/ibm-public/postfix/share/html/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/ibm-public/postfix/share/README_FILES

2014-07-06 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul  6 21:04:10 UTC 2014

Modified Files:
src/external/ibm-public/postfix/share/README_FILES: Makefile

Log Message:
Add a few files back.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 \
src/external/ibm-public/postfix/share/README_FILES/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/distrib/sets/lists

2014-07-06 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul  6 21:06:48 UTC 2014

Modified Files:
src/distrib/sets/lists/base: mi
src/distrib/sets/lists/debug: mi
src/distrib/sets/lists/man: mi
src/distrib/sets/lists/misc: mi

Log Message:
Update set lists for Postfix 2.11.1.


To generate a diff of this commit:
cvs rdiff -u -r1.1070 -r1.1071 src/distrib/sets/lists/base/mi
cvs rdiff -u -r1.66 -r1.67 src/distrib/sets/lists/debug/mi
cvs rdiff -u -r1.1476 -r1.1477 src/distrib/sets/lists/man/mi
cvs rdiff -u -r1.192 -r1.193 src/distrib/sets/lists/misc/mi

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/ibm-public/postfix/share/html

2014-07-06 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Sun Jul  6 21:14:43 UTC 2014

Modified Files:
src/external/ibm-public/postfix/share/html: Makefile

Log Message:
Add one more file back.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/external/ibm-public/postfix/share/html/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/gpl3/gcc/lib/libgomp

2014-06-04 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Wed Jun  4 19:07:22 UTC 2014

Modified Files:
src/external/gpl3/gcc/lib/libgomp: Makefile

Log Message:
Fix build with stack smash protection enabled.


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/external/gpl3/gcc/lib/libgomp/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/gpl3/gcc/lib/libgomp/Makefile
diff -u src/external/gpl3/gcc/lib/libgomp/Makefile:1.12 src/external/gpl3/gcc/lib/libgomp/Makefile:1.13
--- src/external/gpl3/gcc/lib/libgomp/Makefile:1.12	Sun Jun  1 19:51:01 2014
+++ src/external/gpl3/gcc/lib/libgomp/Makefile	Wed Jun  4 19:07:22 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.12 2014/06/01 19:51:01 mrg Exp $
+#	$NetBSD: Makefile,v 1.13 2014/06/04 19:07:22 tron Exp $
 
 # build GCC's libgomp, so that -fopenmp works.
 
@@ -50,8 +50,6 @@ CPPFLAGS+= \
 	-I${ARCHDIR}
 CFLAGS+=-pthread
 
-COPTS+=	-Wno-stack-protector
-
 CWARNFLAGS.clang+=	-Wno-conversion
 
 # libgomp is 1.0 is in GCC 4.5, and 1.1 in 4.8 since it added more symbols
@@ -75,4 +73,6 @@ libinstall::
 
 .include bsd.lib.mk
 
+COPTS+=	-Wno-stack-protector
+
 .PATH:	${ARCHDIR} ${DIST}/libgomp ${DIST}/libgomp/config/posix



CVS commit: src/external/gpl3/gcc/lib/libgomp

2014-06-04 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Wed Jun  4 19:07:22 UTC 2014

Modified Files:
src/external/gpl3/gcc/lib/libgomp: Makefile

Log Message:
Fix build with stack smash protection enabled.


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/external/gpl3/gcc/lib/libgomp/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



Re: CVS commit: src/lib/libc/rpc

2014-05-29 Thread Matthias Scheler
On Wed, May 28, 2014 at 10:49:28AM -0400, Christos Zoulas wrote:
 Module Name:  src
 Committed By: christos
 Date: Wed May 28 14:49:28 UTC 2014
 
 Modified Files:
   src/lib/libc/rpc: svc_generic.c
 
 Log Message:
 CID 975117: check listen(2) return .
 
 
 To generate a diff of this commit:
 cvs rdiff -u -r1.15 -r1.16 src/lib/libc/rpc/svc_generic.c

I don't think that this change is correct. It caused a lot of warnings
svc_tli_create: could not listen at anonymous port when my NetBSD NIS
client booted up.

I suspected that this function is also used on UDP sockets where
listen(2) will of course fail.

Kind regards

-- 
Matthias Scheler  http://zhadum.org.uk/


Re: CVS commit: src/external/gpl3/gcc

2014-05-28 Thread Matthias Scheler
On Wed, May 28, 2014 at 09:09:40AM +, Matthew Green wrote:
 Module Name:  src
 Committed By: mrg
 Date: Wed May 28 09:09:39 UTC 2014
 
 Modified Files:
   src/external/gpl3/gcc/lib/libstdc++-v3/arch/alpha: c++config.h config.h
[...]
   src/external/gpl3/gcc/usr.bin/gcc/arch/x86_64: configargs.h
 
 Log Message:
 re-run mknative-gcc after threading fixes by skrll and myself.

I get build failures on NetBSD/amd64 which seem to be related to threading:

dependall === gnu/usr.bin/groff/src/devices/grodvi
#  link  grodvi/grodvi
/src/tools/bin/x86_64--netbsd-c++
--sysroot=/export/scratch/tron/obj/destdir.amd64 -o grodvi  dvi.o  
-Wl,-rpath-link,/export/scratch/tron/obj/destdir.amd64/lib  -L=/lib 
/export/scratch/tron/obj/gnu/usr.bin/groff/src/libs/libdriver/libdriver.a 
/export/scratch/tron/obj/gnu/usr.bin/groff/src/libs/libgroff/libgroff.a -lm
/export/scratch/tron/obj/destdir.amd64/usr/lib/libstdc++.so: undefined 
reference to 
`std::__exception_ptr::exception_ptr::exception_ptr()'/export/scratch/tron/obj/destdir.amd64/usr/lib/libstdc++.so:
 undefined reference to `pthread_create'
/export/scratch/tron/obj/destdir.amd64/usr/lib/libstdc++.so: undefined 
reference to `std::__exception_ptr::exception_ptr::~exception_ptr()'collect2: 
error: ld returned 1 exit status

*** Failed target:  grodvi
*** Failed command: /src/tools/bin/x86_64--netbsd-c++ 
--sysroot=/export/scratch/tron/obj/destdir.amd64 -o grodvi dvi.o 
-Wl,-rpath-link,/export/scratch/tron/obj/destdir.amd64/lib -L=/lib 
/export/scratch/tron/obj/gnu/usr.bin/groff/src/libs/libdriver/libdriver.a 
/export/scratch/tron/obj/gnu/usr.bin/groff/src/libs/libgroff/libgroff.a -lm
*** Error code 1

Stop.

Kind regards

-- 
Matthias Scheler https://zhadum.org.uk/


Re: CVS commit: src/external/gpl3/gcc

2014-05-28 Thread Matthias Scheler
On Wed, May 28, 2014 at 02:12:40PM +0100, Matthias Scheler wrote:
 On Wed, May 28, 2014 at 09:09:40AM +, Matthew Green wrote:
  Module Name:src
  Committed By:   mrg
  Date:   Wed May 28 09:09:39 UTC 2014
  
  Modified Files:
  src/external/gpl3/gcc/lib/libstdc++-v3/arch/alpha: c++config.h config.h
 [...]
  src/external/gpl3/gcc/usr.bin/gcc/arch/x86_64: configargs.h
  
  Log Message:
  re-run mknative-gcc after threading fixes by skrll and myself.
 
 I get build failures on NetBSD/amd64 which seem to be related to threading:

The automated builds have reported the same failure in the meantime:

http://mail-index.netbsd.org/current-users/2014/05/28/msg024980.html

Kind regards

-- 
Matthias Scheler https://zhadum.org.uk/


  1   2   3   4   5   6   7   8   >