Received: by mail.netbsd.org (Postfix, from userid 605) id 6264D855E3; Wed, 13 Sep 2017 08:23:48 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E819F855E1 for ; Wed, 13 Sep 2017 08:23:47 +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 nPE_YJwGJoKK for ; Wed, 13 Sep 2017 08:23:47 +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 4D43B855E0 for ; Wed, 13 Sep 2017 08:23:47 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 48609FA98; Wed, 13 Sep 2017 08:23:47 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_150529102754420" MIME-Version: 1.0 Date: Wed, 13 Sep 2017 08:23:47 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/x11/wxGTK30 To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20170913082347.48609FA98@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. --_----------=_150529102754420 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Sep 13 08:23:47 UTC 2017 Modified Files: pkgsrc/x11/wxGTK30: Makefile Log Message: Fix building on macOS To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 pkgsrc/x11/wxGTK30/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_150529102754420 Content-Disposition: inline Content-Length: 1139 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/wxGTK30/Makefile diff -u pkgsrc/x11/wxGTK30/Makefile:1.22 pkgsrc/x11/wxGTK30/Makefile:1.23 --- pkgsrc/x11/wxGTK30/Makefile:1.22 Mon Sep 11 20:22:53 2017 +++ pkgsrc/x11/wxGTK30/Makefile Wed Sep 13 08:23:47 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.22 2017/09/11 20:22:53 wiz Exp $ +# $NetBSD: Makefile,v 1.23 2017/09/13 08:23:47 adam Exp $ DISTNAME= wxWidgets-3.0.3 PKGNAME= ${DISTNAME:S/wxWidgets/wxGTK30/} @@ -58,14 +58,11 @@ SUBST_SED.fix-paths+= -e 's,@PREFIX@,${ PLIST_SRC+= ${PLIST_SRC_DFLT} PLIST_VARS+= notdarwin .if ${OPSYS} == "Darwin" -# Without this, it will choose -macox-version-min=10.5 and -# hard code constants in the header files to match. -# Then any other packages that use it -# will fail unless they also set -macosx-version-min=10.5 -CONFIGURE_ARGS+= --with-macosx-version-min=no - -PLIST_SRC+= PLIST.cocoa CONFIGURE_ARGS+= --with-osx_cocoa +CONFIGURE_ARGS+= --without-macosx-sdk +CONFIGURE_ARGS+= --without-macosx-version-min +CPPFLAGS+= -D__ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES=1 +PLIST_SRC+= PLIST.cocoa .else PLIST.notdarwin= yes --_----------=_150529102754420--