diff options
author | Tor Andersson <tor@ghostscript.com> | 2008-04-25 21:57:07 +0200 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2008-04-25 21:57:07 +0200 |
commit | 3869cea2a783aeba69ad05e10ba5c99fb6337aa8 (patch) | |
tree | a4a1a5e7949f2eb8499c44a732fbeb7ecc11f13d | |
parent | a7a907ad59db15691f93755b1f077b4406c91cfc (diff) | |
download | mupdf-3869cea2a783aeba69ad05e10ba5c99fb6337aa8.tar.xz |
Don't assume PPC on Mac OS X.
-rw-r--r-- | Jamrules | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -57,7 +57,8 @@ switch $(OS) case MACOSX : FLAG_LDALL += -L/opt/local/lib -L/usr/X11R6/lib ; FLAG_CCALL += -I/usr/X11R6/include -std=gnu99 -DHAVE_C99 -Wno-pointer-sign ; - FLAG_CCRELEASE = -DARCH_PPC -faltivec -fast ; + # FLAG_CCRELEASE = -DARCH_PPC -faltivec -fast ; # not true on intel macs + FLAG_CCRELEASE = -fast ; case MINGW : NEED_GETOPT = yes ; |