diff options
author | Memphiz <memphis@machzwo.de> | 2012-12-21 19:28:59 +0100 |
---|---|---|
committer | Memphiz <memphis@machzwo.de> | 2012-12-21 19:30:40 +0100 |
commit | 85b983e5153f7a87c4b064dedb6649c432e69911 (patch) | |
tree | 7e1668c6923a66cd48e664e1f26a45ce0c3b27eb /configure.in | |
parent | 75f904776c397e448a7f82b749c80b49053b0681 (diff) |
[osx] - help rsxs to use the libpng from the depends and not the native libpng from the toolchain (before this could lead to linkage of i386 objects with x86_64 libpng which didn't work too well)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 7fb5134b10..bb9b40b686 100644 --- a/configure.in +++ b/configure.in @@ -2723,7 +2723,7 @@ XB_CONFIG_MODULE([xbmc/screensavers/rsxs-0.9/], [ CXX="$CXX" \ CFLAGS="$TEMPCFLAGS" \ CXXFLAGS="$CXXFLAGS" \ - `if test "$host_vendor" = "apple"; then echo --x-includes=/usr/X11/include --x-libraries=/usr/X11/lib; fi` \ + `if test "$host_vendor" = "apple"; then echo --with-png=${prefix} --x-includes=/usr/X11/include --x-libraries=/usr/X11/lib; fi` \ --prefix="${prefix}" --includedir="${includedir}" --libdir="${libdir}" --datadir="${datadir}" \ --host=$host_alias \ --build=$build_alias \ |