aboutsummaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorbeenje <beenje@svn>2010-07-21 17:22:44 +0000
committerbeenje <beenje@svn>2010-07-21 17:22:44 +0000
commita50bb8d37441bf3a9208e32f691b5d7d51340058 (patch)
tree85a77018bb98d9fbf084631988a1e6fbea9dee53 /configure.in
parentb6df4bbf5bc811f557ea4d2694149447ce7d18c1 (diff)
[OSX] fixed libfaad problem on ppc - force -O3 (doesn't like -O2...)
(cherry picked from commit 6cc8f4c5bce7d5ad4e5d9fcb8288e8c917986359) git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/branches/Dharma@32050 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