Received: by mail.netbsd.org (Postfix, from userid 605) id AEBBC84D46; Tue, 13 Apr 2021 10:39:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2D81F84DA6 for ; Tue, 13 Apr 2021 10:19:25 +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 L328PAHBbIry for ; Tue, 13 Apr 2021 10:19:24 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 9AC5B84D14 for ; Tue, 13 Apr 2021 10:19:24 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8C585FA95; Tue, 13 Apr 2021 10:19:24 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1618309164134630" MIME-Version: 1.0 Date: Tue, 13 Apr 2021 10:19:24 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/sysutils/open-vm-tools To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20210413101924.8C585FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1618309164134630 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Tue Apr 13 10:19:24 UTC 2021 Modified Files: pkgsrc/sysutils/open-vm-tools: Makefile Log Message: open-vm-tools: fix for latest glib To generate a diff of this commit: cvs rdiff -u -r1.99 -r1.100 pkgsrc/sysutils/open-vm-tools/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1618309164134630 Content-Disposition: inline Content-Length: 1879 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/open-vm-tools/Makefile diff -u pkgsrc/sysutils/open-vm-tools/Makefile:1.99 pkgsrc/sysutils/open-vm-tools/Makefile:1.100 --- pkgsrc/sysutils/open-vm-tools/Makefile:1.99 Thu Nov 5 09:09:10 2020 +++ pkgsrc/sysutils/open-vm-tools/Makefile Tue Apr 13 10:19:24 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.99 2020/11/05 09:09:10 ryoon Exp $ +# $NetBSD: Makefile,v 1.100 2021/04/13 10:19:24 nia Exp $ OVTVER= 10.3.0 DISTNAME= open-vm-tools-${OVTVER}-8931395 @@ -16,12 +16,14 @@ GITHUB_PROJECT= open-vm-tools GITHUB_RELEASE= stable-${OVTVER} #WRKSRC= ${WRKDIR}/${GITHUB_PROJECT}-${GITHUB_TAG}/${GITHUB_PROJECT} -EXTRACT_USING= bsdtar - ONLY_FOR_PLATFORM= NetBSD-*-i386 NetBSD-*-x86_64 GCC_REQD+= 4.8 -BUILDLINK_TRANSFORM.NetBSD+= rm:-Werror + +# Workaround for glib2-2.68.0 c++ fallout. +CXXFLAGS+= -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_66 + +BUILDLINK_TRANSFORM+= rm:-Werror USE_LANGUAGES= c gnu++11 USE_LIBTOOL= yes @@ -51,20 +53,12 @@ SUBST_FILES.fix-etc-path+= lib/guestApp/ SUBST_FILES.fix-etc-path+= lib/procMgr/procMgrPosix.c SUBST_VARS.fix-etc-path+= PREFIX +CHECK_PORTABILITY_SKIP+= scripts/solaris/network + pre-configure: cd ${WRKSRC} && autoreconf -f -i -.include "../../mk/compiler.mk" -.if !empty(PKGSRC_COMPILER:Mclang) -_WRAP_EXTRA_ARGS.CC+= -Wno-error=unused-local-typedef -CWRAPPERS_APPEND.cc+= -Wno-error=unused-local-typedef -.elif !empty(PKGSRC_COMPILER:Mgcc) && empty(CC_VERSION:U:Mgcc-[1-3].*) && empty(CC_VERSION:U:Mgcc-4.[0-7]*) -_WRAP_EXTRA_ARGS.CC+= -Wno-error=unused-local-typedefs -Wno-error=unused-but-set-variable -CWRAPPERS_APPEND.cc+= -Wno-error=unused-local-typedefs -Wno-error=unused-but-set-variable -.endif - .include "options.mk" - .include "../../archivers/libmspack/buildlink3.mk" .include "../../devel/glib2/buildlink3.mk" .include "../../net/libdnet/buildlink3.mk" --_----------=_1618309164134630--