Makefile fix: on PowerPC architecture SSE compile should not happen.

Note for the coder here, is it correct to enable SSE with a general
WITH_BF_RAYOPTIMIZATION flag? Just call it WITH_SSE? More clear :)
This commit is contained in:
Ton Roosendaal 2010-08-05 14:04:56 +00:00
parent 8c75853bb6
commit 5d18274cac
1 changed files with 5 additions and 1 deletions

View File

@ -161,7 +161,11 @@ ifndef CONFIG_GUESS
export WITH_TIFF ?= true
#enable raytracing optimization (currently only for i386 and x86_64)
export WITH_BF_RAYOPTIMIZATION ?= true
ifeq ($(CPU),powerpc)
export WITH_BF_RAYOPTIMIZATION ?= false
else
export WITH_BF_RAYOPTIMIZATION ?= true
endif
export WITH_LCMS ?= false
export WITH_CINEON ?= true