Received: by mail.netbsd.org (Postfix, from userid 605) id 2C80B84D8F; Mon, 21 Aug 2017 14:54:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B400A84D82 for ; Mon, 21 Aug 2017 14:53:59 +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 NjYTLWqPsgik for ; Mon, 21 Aug 2017 14:53:59 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 2445D84CDC for ; Mon, 21 Aug 2017 14:53:59 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1F84AFAD0; Mon, 21 Aug 2017 14:53:59 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1503327239255290" MIME-Version: 1.0 Date: Mon, 21 Aug 2017 14:53:59 +0000 From: "Jared D. McNeill" Subject: CVS commit: pkgsrc/wm/pwm To: pkgsrc-changes@NetBSD.org Reply-To: jmcneill@netbsd.org X-Mailer: log_accum Message-Id: <20170821145359.1F84AFAD0@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. --_----------=_1503327239255290 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jmcneill Date: Mon Aug 21 14:53:59 UTC 2017 Modified Files: pkgsrc/wm/pwm: Makefile Log Message: Set HAS_SYSTEM_ASPRINTF in make env to fix build on NetBSD 8 To generate a diff of this commit: cvs rdiff -u -r1.35 -r1.36 pkgsrc/wm/pwm/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1503327239255290 Content-Disposition: inline Content-Length: 832 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/wm/pwm/Makefile diff -u pkgsrc/wm/pwm/Makefile:1.35 pkgsrc/wm/pwm/Makefile:1.36 --- pkgsrc/wm/pwm/Makefile:1.35 Sun Jul 24 20:12:34 2016 +++ pkgsrc/wm/pwm/Makefile Mon Aug 21 14:53:58 2017 @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.35 2016/07/24 20:12:34 rillig Exp $ +# $NetBSD: Makefile,v 1.36 2017/08/21 14:53:58 jmcneill Exp $ # DISTNAME= pwm-20060517 PKGNAME= ${DISTNAME:S/-/-1.0./} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= wm x11 MASTER_SITES= http://modeemi.fi/~tuomov/pwm/dl/ @@ -21,6 +21,12 @@ USE_TOOLS+= gmake CFLAGS+= -DPKG_SYSCONFDIR="\"${PKG_SYSCONFDIR}\"" MAKE_FLAGS+= MANDIR=${PREFIX}/${PKGMANDIR} +.include "../../mk/bsd.prefs.mk" + +.if ${OPSYS} == "NetBSD" +MAKE_FLAGS+= HAS_SYSTEM_ASPRINTF=1 +.endif + PKG_SYSCONFSUBDIR= pwm EGDIR= ${PREFIX}/share/examples/pwm --_----------=_1503327239255290--