Received: by mail.netbsd.org (Postfix, from userid 605) id 4C08384D73; Fri, 7 Sep 2018 00:12:47 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5560684D6B for ; Fri, 7 Sep 2018 00:12:46 +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 z64h5UqgV72G for ; Fri, 7 Sep 2018 00:12:45 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9D23C84D53 for ; Fri, 7 Sep 2018 00:12:45 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 959A9FBF8; Fri, 7 Sep 2018 00:12:45 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1536279165133780" MIME-Version: 1.0 Date: Fri, 7 Sep 2018 00:12:45 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/emulators To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20180907001245.959A9FBF8@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. --_----------=_1536279165133780 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Fri Sep 7 00:12:45 UTC 2018 Modified Files: pkgsrc/emulators/libretro-beetle-psx: Makefile pkgsrc/emulators/libretro-beetle-saturn: Makefile Log Message: libretro-beetle-(psx|saturn): Define _POSIX_C_SOURCE for CLOCK_REALTIME hopefully appeases FreeBSD. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/emulators/libretro-beetle-psx/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/emulators/libretro-beetle-saturn/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1536279165133780 Content-Disposition: inline Content-Length: 1438 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/emulators/libretro-beetle-psx/Makefile diff -u pkgsrc/emulators/libretro-beetle-psx/Makefile:1.1 pkgsrc/emulators/libretro-beetle-psx/Makefile:1.2 --- pkgsrc/emulators/libretro-beetle-psx/Makefile:1.1 Sat Aug 11 00:19:58 2018 +++ pkgsrc/emulators/libretro-beetle-psx/Makefile Fri Sep 7 00:12:45 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2018/08/11 00:19:58 nia Exp $ +# $NetBSD: Makefile,v 1.2 2018/09/07 00:12:45 nia Exp $ DISTNAME= libretro-beetle-psx-20180808 CATEGORIES= emulators @@ -18,6 +18,8 @@ USE_LANGUAGES= c c++ MAKE_FLAGS+= GIT_VERSION="-pkgsrc" +CFLAGS+= -D_POSIX_C_SOURCE=200112L + .include "../../mk/endian.mk" .if ${MACHINE_ENDIAN} == "big" Index: pkgsrc/emulators/libretro-beetle-saturn/Makefile diff -u pkgsrc/emulators/libretro-beetle-saturn/Makefile:1.1 pkgsrc/emulators/libretro-beetle-saturn/Makefile:1.2 --- pkgsrc/emulators/libretro-beetle-saturn/Makefile:1.1 Sun Aug 12 13:22:43 2018 +++ pkgsrc/emulators/libretro-beetle-saturn/Makefile Fri Sep 7 00:12:45 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2018/08/12 13:22:43 nia Exp $ +# $NetBSD: Makefile,v 1.2 2018/09/07 00:12:45 nia Exp $ DISTNAME= libretro-beetle-saturn-20180620 CATEGORIES= emulators @@ -23,6 +23,8 @@ ONLY_FOR_PLATFORM= *-*-x86_64 INSTALLATION_DIRS+= ${PREFIX}/lib/libretro +CFLAGS+= -D_POSIX_C_SOURCE=200112L + .include "../../mk/endian.mk" .if ${MACHINE_ENDIAN} == "big" --_----------=_1536279165133780--