diff options
author | Max Horn | 2003-12-05 23:14:01 +0000 |
---|---|---|
committer | Max Horn | 2003-12-05 23:14:01 +0000 |
commit | 60b9538104090c88a352bb6d8ff090350d13f2b7 (patch) | |
tree | 052c1fdcd8f37e2659457c913b45580854b7a77e | |
parent | 472045d578bdd4488da0aec54516881f8616ec7b (diff) | |
download | scummvm-rg350-60b9538104090c88a352bb6d8ff090350d13f2b7.tar.gz scummvm-rg350-60b9538104090c88a352bb6d8ff090350d13f2b7.tar.bz2 scummvm-rg350-60b9538104090c88a352bb6d8ff090350d13f2b7.zip |
Define HAS_ALTIVEC on OS X (should do a proper test here, in case we are run on Darwin/x86, but for now I am lazy)
svn-id: r11503
-rwxr-xr-x | configure | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -365,6 +365,8 @@ case $hosttype in Darwin) DEFINES="$DEFINES -DUNIX -DMACOSX" LIBS="$LIBS -framework QuickTime -framework AudioUnit" + # TODO: Add proper check for Altivec support in the compiler... + DEFINES="$DEFINES -DHAS_ALTIVEC" CXXFLAGS="$CXXFLAGS -faltivec" ;; MINGW32*) @@ -614,8 +616,8 @@ cat > config.mak << EOF # -------- Generated by configure ----------- CXX := $CXX -CXXFLAGS := $CXXFLAGS -LIBS := $LIBS +CXXFLAGS += $CXXFLAGS +LIBS += $LIBS RANLIB := $_ranlib BACKEND := $_backend MODULES += $MODULES |