diff options
author | Thilo Schulz <arny@ats.s.bawue.de> | 2011-06-06 14:59:54 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-09 22:38:48 +0000 |
commit | 83a9bacbe185ccd6b21e5fd18085b8fdce306cc9 (patch) | |
tree | 1897fad9419b58eae97097391f3c2c39c5026b56 /Makefile | |
parent | a73af207d3c20cb8eafe68c3bcad805891f18ddd (diff) |
OpenBSD compile fixes, patch provided by Jonathan Gray (#4994)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -637,11 +637,10 @@ else # ifeq freebsd ifeq ($(PLATFORM),openbsd) - #default to i386, no tests done on anything else - ARCH=i386 + ARCH=$(shell uname -m) BASE_CFLAGS = -Wall -fno-strict-aliasing -Wimplicit -Wstrict-prototypes \ - -DUSE_ICON + -DUSE_ICON -DMAP_ANONYMOUS=MAP_ANON CLIENT_CFLAGS = $(SDL_CFLAGS) SERVER_CFLAGS = |