Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id E40D87A219 for ; Mon, 29 May 2017 00:24:20 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 8C6CE84DE1; Mon, 29 May 2017 00:24:20 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1C8AB84DB7 for ; Mon, 29 May 2017 00:24:20 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 0leyJcuT4Rf3 for ; Mon, 29 May 2017 00:24:19 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8179F84D7B for ; Mon, 29 May 2017 00:24:19 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7CD06FBE4; Mon, 29 May 2017 00:24:19 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1496017459253170" MIME-Version: 1.0 Date: Mon, 29 May 2017 00:24:19 +0000 From: "Sebastian Wiedenroth" Subject: CVS commit: pkgsrc/net/samba4 To: pkgsrc-changes@NetBSD.org Reply-To: wiedi@netbsd.org X-Mailer: log_accum Message-Id: <20170529002419.7CD06FBE4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1496017459253170 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiedi Date: Mon May 29 00:24:19 UTC 2017 Modified Files: pkgsrc/net/samba4: Makefile Log Message: add workaround for https://bugzilla.samba.org/show_bug.cgi?id=12502 fixes build on sunos To generate a diff of this commit: cvs rdiff -u -r1.30 -r1.31 pkgsrc/net/samba4/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1496017459253170 Content-Disposition: inline Content-Length: 683 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/samba4/Makefile diff -u pkgsrc/net/samba4/Makefile:1.30 pkgsrc/net/samba4/Makefile:1.31 --- pkgsrc/net/samba4/Makefile:1.30 Wed May 24 15:51:32 2017 +++ pkgsrc/net/samba4/Makefile Mon May 29 00:24:19 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.30 2017/05/24 15:51:32 he Exp $ +# $NetBSD: Makefile,v 1.31 2017/05/29 00:24:19 wiedi Exp $ DISTNAME= samba-${VERSION} CATEGORIES= net @@ -108,6 +108,9 @@ LDFLAGS+= ${COMPILER_RPATH_FLAG}${SMB_P CFLAGS.SunOS+= -DHAVE_SOLARIS_GETGRENT_R +# workaround https://bugzilla.samba.org/show_bug.cgi?id=12502 for now +CFLAGS.SunOS+= -DMSG_NOSIGNAL=0 + .include "options.mk" PLIST_VARS+= macosx --_----------=_1496017459253170--