pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/emulators/pcsxr



Module Name:    pkgsrc
Committed By:   nia
Date:           Fri Aug  4 17:06:48 UTC 2023

Modified Files:
        pkgsrc/emulators/pcsxr: Makefile

Log Message:
pcsxr: use gnu99 for typeof


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 pkgsrc/emulators/pcsxr/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/emulators/pcsxr/Makefile
diff -u pkgsrc/emulators/pcsxr/Makefile:1.12 pkgsrc/emulators/pcsxr/Makefile:1.13
--- pkgsrc/emulators/pcsxr/Makefile:1.12        Wed Aug  2 16:17:16 2023
+++ pkgsrc/emulators/pcsxr/Makefile     Fri Aug  4 17:06:48 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.12 2023/08/02 16:17:16 nia Exp $
+# $NetBSD: Makefile,v 1.13 2023/08/04 17:06:48 nia Exp $
 
 DISTNAME=      pcsxr-1.9.95.20190306
 PKGREVISION=   8
@@ -18,7 +18,8 @@ USE_LANGUAGES=        c c++
 USE_CMAKE=     yes
 
 # error: 'for' loop initial declarations are only allowed in C99 mode
-FORCE_C_STD=   c99
+# uses typeof, needs GNU extensions
+FORCE_C_STD=   gnu99
 
 .include "../../mk/bsd.prefs.mk"
 



Home | Main Index | Thread Index | Old Index