Received: by mail.netbsd.org (Postfix, from userid 605) id 46DEB84D7A; Thu, 19 Jan 2023 16:32:56 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 779EC84D5B for ; Thu, 19 Jan 2023 16:32:55 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id Sht5p-K_mdyz for ; Thu, 19 Jan 2023 16:32:55 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id CC39B84D3C for ; Thu, 19 Jan 2023 16:32:54 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C5028FA90; Thu, 19 Jan 2023 16:32:54 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_167414597430360" MIME-Version: 1.0 Date: Thu, 19 Jan 2023 16:32:54 +0000 From: "Hauke Fath" Subject: CVS commit: pkgsrc/net/samba4 To: pkgsrc-changes@NetBSD.org Reply-To: hauke@netbsd.org X-Mailer: log_accum Message-Id: <20230119163254.C5028FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_167414597430360 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: hauke Date: Thu Jan 19 16:32:54 UTC 2023 Modified Files: pkgsrc/net/samba4: Makefile Log Message: Un-break FreeBSD build - it does not define ENODATA. See also this thread . To generate a diff of this commit: cvs rdiff -u -r1.156 -r1.157 pkgsrc/net/samba4/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_167414597430360 Content-Disposition: inline Content-Length: 745 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.156 pkgsrc/net/samba4/Makefile:1.157 --- pkgsrc/net/samba4/Makefile:1.156 Tue Jan 3 17:38:03 2023 +++ pkgsrc/net/samba4/Makefile Thu Jan 19 16:32:54 2023 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.156 2023/01/03 17:38:03 wiz Exp $ +# $NetBSD: Makefile,v 1.157 2023/01/19 16:32:54 hauke Exp $ DISTNAME= samba-4.17.4 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= net MASTER_SITES= https://download.samba.org/pub/samba/stable/ @@ -117,6 +117,8 @@ CFLAGS.SunOS+= -DHAVE_SOLARIS_GETGRENT_ CFLAGS.SunOS+= -DMSG_NOSIGNAL=0 LDFLAGS.SunOS+= -lsocket -lsendfile +CFLAGS.FreeBSD+= -DENODATA=ENOATTR + .include "options.mk" .if ${SHLIB_TYPE} == "dylib" --_----------=_167414597430360--