The following maintenance operations were performed: - Recreate all patches with `make makepatch` - Add LICENSE - Update MAINTAINER to kami@freebsd.org - games/ioquake3 - Replace a lot of `.if ${PORT_OPTIONS:MFOO}` with `bsd.options.mk` fu - Add support for slaves using different SDL versions - games/ioquake3-devel - Update to GIT revision 2808 - Use SDL2 - games/iourbanterror - Change treatment of patches so `make makepatch` doesn't screw the patches in ${MASTERDIR}/files over - Update 4.2.018 to 4.2.023 - games/urbanterror-data - Update 4.2.018 to 4.2.023 - Fix install without DOCS Reviewed by: cs Approved by: cs Differential Revision: https://reviews.freebsd.org/D5816
11 lines
311 B
C
11 lines
311 B
C
--- code/qcommon/q_platform.h.orig 2009-03-02 17:29:30 UTC
|
|
+++ code/qcommon/q_platform.h
|
|
@@ -199,6 +199,8 @@ Foundation, Inc., 51 Franklin St, Fifth
|
|
|
|
#ifdef __i386__
|
|
#define ARCH_STRING "i386"
|
|
+#elif defined __amd64__
|
|
+#define ARCH_STRING "amd64"
|
|
#elif defined __axp__
|
|
#define ARCH_STRING "alpha"
|
|
#endif
|