pkgsrc-Changes archive

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

CVS commit: pkgsrc/emulators/mame



Module Name:    pkgsrc
Committed By:   nia
Date:           Sat Feb 17 21:43:04 UTC 2024

Modified Files:
        pkgsrc/emulators/mame: Makefile

Log Message:
mame: Assumes presence of SSSE3 on x86-64


To generate a diff of this commit:
cvs rdiff -u -r1.188 -r1.189 pkgsrc/emulators/mame/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/mame/Makefile
diff -u pkgsrc/emulators/mame/Makefile:1.188 pkgsrc/emulators/mame/Makefile:1.189
--- pkgsrc/emulators/mame/Makefile:1.188        Wed Jan 31 21:00:04 2024
+++ pkgsrc/emulators/mame/Makefile      Sat Feb 17 21:43:03 2024
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.188 2024/01/31 21:00:04 wiz Exp $
+# $NetBSD: Makefile,v 1.189 2024/02/17 21:43:03 nia Exp $
 
 DISTNAME=      mame-0.262
 CATEGORIES=    emulators
@@ -51,6 +51,12 @@ BUILDLINK_TRANSFORM+=        rm:-m32
 BUILDLINK_TRANSFORM+=  rm:-m64
 .endif
 
+# "error: inlining failed in call to always_inline
+# '__m128i _mm_shuffle_epi8(__m128i, __m128i)': target specific option mismatch"
+.if ${MACHINE_ARCH} == "x86_64"
+CFLAGS+=       -mssse3
+.endif
+
 # -Werror is problematic
 MAKE_ENV+=     NOWERROR=1
 # on Darwin, avoid SDL2.framework



Home | Main Index | Thread Index | Old Index