Received: by mail.netbsd.org (Postfix, from userid 605) id 39D3484D82; Wed, 8 Jan 2020 10:40:04 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B2E1384D5D for ; Wed, 8 Jan 2020 10:40:03 +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 8JxOZnBJT3O2 for ; Wed, 8 Jan 2020 10:40:03 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 37FD484D54 for ; Wed, 8 Jan 2020 10:40:03 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 31E5DFBF4; Wed, 8 Jan 2020 10:40:03 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1578480003147910" MIME-Version: 1.0 Date: Wed, 8 Jan 2020 10:40:03 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/net/samba4 To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20200108104003.31E5DFBF4@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. --_----------=_1578480003147910 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Wed Jan 8 10:40:03 UTC 2020 Modified Files: pkgsrc/net/samba4: distinfo Added Files: pkgsrc/net/samba4/patches: patch-source4_utils_oLschema2ldif_wscript__build Log Message: samba4: Disable more fmemopen utilities on SunOS. To generate a diff of this commit: cvs rdiff -u -r1.39 -r1.40 pkgsrc/net/samba4/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/net/samba4/patches/patch-source4_utils_oLschema2ldif_wscript__build Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1578480003147910 Content-Disposition: inline Content-Length: 2154 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/samba4/distinfo diff -u pkgsrc/net/samba4/distinfo:1.39 pkgsrc/net/samba4/distinfo:1.40 --- pkgsrc/net/samba4/distinfo:1.39 Mon Dec 30 13:58:35 2019 +++ pkgsrc/net/samba4/distinfo Wed Jan 8 10:40:02 2020 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.39 2019/12/30 13:58:35 adam Exp $ +$NetBSD: distinfo,v 1.40 2020/01/08 10:40:02 jperkin Exp $ SHA1 (samba-4.11.4.tar.gz) = 923c21d75bc54f2305caf86374eaf62530885177 RMD160 (samba-4.11.4.tar.gz) = ac3e90fbb260da95efc6154a9e4bddc8486d79fe @@ -31,4 +31,5 @@ SHA1 (patch-source4_dsdb_samdb_ldb__modu SHA1 (patch-source4_heimdal__build_roken.h) = ee535f8e7cc46a3487d95bc859438c476a88fe60 SHA1 (patch-source4_heimdal_include_heim__threads.h) = c93e0c80790ea2045333822c80e66d371bf2249c SHA1 (patch-source4_scripting_wsript_build) = bd4feddcaadf1c3d2d25eb7914e7b5843e4e9511 +SHA1 (patch-source4_utils_oLschema2ldif_wscript__build) = b0cbbcd4ebedd443dc9f9a59d1dad2e039bb9663 SHA1 (patch-third__party_socket__wrapper_socket__wrapper.c) = 0cc01c932f21e9f6219fb9d204e6fdf3682938f8 Added files: Index: pkgsrc/net/samba4/patches/patch-source4_utils_oLschema2ldif_wscript__build diff -u /dev/null pkgsrc/net/samba4/patches/patch-source4_utils_oLschema2ldif_wscript__build:1.1 --- /dev/null Wed Jan 8 10:40:03 2020 +++ pkgsrc/net/samba4/patches/patch-source4_utils_oLschema2ldif_wscript__build Wed Jan 8 10:40:03 2020 @@ -0,0 +1,24 @@ +$NetBSD: patch-source4_utils_oLschema2ldif_wscript__build,v 1.1 2020/01/08 10:40:03 jperkin Exp $ + +Don't build test_oLschema2ldif on SunOS (lacks fmemopen). + +--- source4/utils/oLschema2ldif/wscript_build.orig 2019-12-06 09:49:26.000000000 +0000 ++++ source4/utils/oLschema2ldif/wscript_build +@@ -1,5 +1,7 @@ + #!/usr/bin/env python + ++import sys ++ + bld.SAMBA_SUBSYSTEM('oLschema2ldif-lib', + source='lib.c', + deps='samdb', +@@ -11,7 +13,8 @@ bld.SAMBA_BINARY('oLschema2ldif', + deps='oLschema2ldif-lib POPT_SAMBA', + ) + +-bld.SAMBA_BINARY('test_oLschema2ldif', ++if not sys.platform.startswith('sunos'): ++ bld.SAMBA_BINARY('test_oLschema2ldif', + source='test.c', + deps='cmocka oLschema2ldif-lib', + local_include=False, --_----------=_1578480003147910--