diff options
author | thilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2008-05-17 10:46:41 +0000 |
---|---|---|
committer | thilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2008-05-17 10:46:41 +0000 |
commit | ea59b8486a5049be06260c655c6e863276a45deb (patch) | |
tree | 82ddec34211fc45449cae9d195eb894ccc859a1e /Makefile | |
parent | 8549e51a13a4fb674f9d65139c2f433c7def13ca (diff) | |
download | ioquake3-aero-ea59b8486a5049be06260c655c6e863276a45deb.tar.gz ioquake3-aero-ea59b8486a5049be06260c655c6e863276a45deb.zip |
- Workaround for buggy MacOSX getaddrinfo() implementation that doesn't accept AF_UNSPEC parameter in hints structure. Thanks icculus for reporting.
- Add -faltivec flag for debug builds.
git-svn-id: svn://svn.icculus.org/quake3/trunk@1344 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -311,7 +311,8 @@ ifeq ($(PLATFORM),darwin) BASE_CFLAGS = -Wall -Wimplicit -Wstrict-prototypes ifeq ($(ARCH),ppc) - OPTIMIZE += -faltivec -O3 + BASE_CFLAGS += -faltivec + OPTIMIZE += -O3 endif ifeq ($(ARCH),i386) OPTIMIZE += -march=prescott -mfpmath=sse |