pkgsrc-Changes archive

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

CVS commit: pkgsrc/games/ioquake3



Module Name:    pkgsrc
Committed By:   nia
Date:           Sat Dec  7 17:32:16 UTC 2024

Modified Files:
        pkgsrc/games/ioquake3: arch.mk

Log Message:
ioquake3: Fix i386 arch detection. Eliminates problems with missing symbols


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/games/ioquake3/arch.mk

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

Modified files:

Index: pkgsrc/games/ioquake3/arch.mk
diff -u pkgsrc/games/ioquake3/arch.mk:1.1 pkgsrc/games/ioquake3/arch.mk:1.2
--- pkgsrc/games/ioquake3/arch.mk:1.1   Tue May  7 21:48:54 2024
+++ pkgsrc/games/ioquake3/arch.mk       Sat Dec  7 17:32:16 2024
@@ -1,4 +1,4 @@
-# $NetBSD: arch.mk,v 1.1 2024/05/07 21:48:54 nia Exp $
+# $NetBSD: arch.mk,v 1.2 2024/12/07 17:32:16 nia Exp $
 
 .if !defined(QUAKE_ARCH)
 
@@ -10,6 +10,8 @@ QUAKE_ARCH=   arm
 QUAKE_ARCH=    mips
 .elif ${MACHINE_ARCH:M*sh3*}
 QUAKE_ARCH=    sh
+.elif ${MACHINE_ARCH} == "i386"
+QUAKE_ARCH=    x86
 .elif ${MACHINE_ARCH} == "powerpc"
 QUAKE_ARCH=    ppc
 .elif ${MACHINE_ARCH} == "powerpc64"



Home | Main Index | Thread Index | Old Index