diff options
author | davilla <davilla@svn> | 2010-03-26 23:22:24 +0000 |
---|---|---|
committer | davilla <davilla@svn> | 2010-03-26 23:22:24 +0000 |
commit | 8c2358360a3237839ed60cfd7088cb782c318d9b (patch) | |
tree | b7d016688111bf0c22058cbef41e231244a70d1c /configure.in | |
parent | d52e97ec5a58df456e073810ba488370072eddc1 (diff) |
[osx] sync with osx
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@28880 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 4f68a29765..bc053d3dd1 100644 --- a/configure.in +++ b/configure.in @@ -1500,7 +1500,13 @@ XB_CONFIG_MODULE([lib/libmicrohttpd], [ fi ], [0]) -XB_CONFIG_MODULE([lib/cpluff], [./configure --disable-nls], [0]) +XB_CONFIG_MODULE([lib/cpluff], [ + if test "$host_vendor" = "apple" ; then + ./configure --disable-nls --with-libiconv-prefix=/opt/local --with-libintl-prefix=/opt/local --without-readline + else + ./configure --disable-nls + fi +], [0]) AC_OUTPUT |