aboutsummaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorbeenje <beenje@svn>2010-07-21 17:10:25 +0000
committerbeenje <beenje@svn>2010-07-21 17:10:25 +0000
commite71113e9b17c7250a9779239d2f0b29527ab024b (patch)
tree2105ce044b73d68803462bad8660c3d7cb1ff7b5 /configure.in
parent86b33f13ab65e8c62a3edb0026d03ba008d4cebe (diff)
[OSX] fixed libfaad problem on ppc - force -O3 (doesn't like -O2...)
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@32049 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 6c0add351c..7036a1b7e0 100644
--- a/configure.in
+++ b/configure.in
@@ -1712,7 +1712,7 @@ XB_CONFIG_MODULE([xbmc/cores/dvdplayer/Codecs/libdvd/libdvdnav], [
XB_CONFIG_MODULE([xbmc/cores/dvdplayer/Codecs/libfaad2], [
if test "$host_vendor" = "apple" ; then
- CFLAGS="$CFLAGS -fno-common" \
+ CFLAGS="$CFLAGS -O3 -fno-common" \
./configure MACOSX_DEPLOYMENT_TARGET=10.4 \
--with-pic
else