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:           Sun Jul  9 20:28:00 UTC 2023

Modified Files:
        pkgsrc/emulators/pcsxr: Makefile

Log Message:
pcsxr: Assumes compiler defaults to c99


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 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.10 pkgsrc/emulators/pcsxr/Makefile:1.11
--- pkgsrc/emulators/pcsxr/Makefile:1.10        Sat May  6 19:09:14 2023
+++ pkgsrc/emulators/pcsxr/Makefile     Sun Jul  9 20:27:59 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.10 2023/05/06 19:09:14 ryoon Exp $
+# $NetBSD: Makefile,v 1.11 2023/07/09 20:27:59 nia Exp $
 
 DISTNAME=      pcsxr-1.9.95.20190306
 PKGREVISION=   8
@@ -13,7 +13,8 @@ COMMENT=      Sony PlayStation emulator
 LICENSE=       gnu-gpl-v3
 
 USE_TOOLS+=    pkg-config
-USE_LANGUAGES= c c++
+# error: 'for' loop initial declarations are only allowed in C99 mode
+USE_LANGUAGES= c99 c++
 
 USE_CMAKE=     yes
 



Home | Main Index | Thread Index | Old Index