diff options
author | Stephan Raue <stephan@openelec.tv> | 2013-09-03 05:55:37 +0200 |
---|---|---|
committer | Stephan Raue <stephan@openelec.tv> | 2013-09-03 06:54:50 +0200 |
commit | ed1cd08fd1e93f3af283eb522082c8c8dbaf2ee7 (patch) | |
tree | adcecdda7a554449d64a898c5699ba8c76818e74 | |
parent | 2108f29aa7f60ed03afea65b262cec5ca1ed5ab9 (diff) |
configure: cleanup, we dont need 'use_texturepacker_native' anymore and dont need to force 'use_texturepacker' (its enabled by default).
-rw-r--r-- | configure.in | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/configure.in b/configure.in index dda18eac4c..0337705b66 100644 --- a/configure.in +++ b/configure.in @@ -637,7 +637,6 @@ case $host in use_dvdcss=no use_gles=yes use_cpu=cortex-a8 - use_texturepacker_native=yes ARCH="arm-osx" use_arch="arm" PYTHON_VERSION="2.6" @@ -649,7 +648,6 @@ case $host in *86*-apple-darwin*) use_joystick=no use_vtbdecoder=no - use_texturepacker_native=yes ARCH="x86-osx" ;; powerpc-apple-darwin*) @@ -666,7 +664,6 @@ case $host in ARCH="powerpc64-linux" ;; arm*-*-linux-gnu*) - use_texturepacker=no ARCH="arm" use_arch="arm" ffmpeg_target_os=linux @@ -705,7 +702,6 @@ AC_SUBST([DARWIN_NATIVE_ARCH]) if test "$target_platform" = "target_android" ; then USE_ANDROID=1 - use_texturepacker_native=yes webserver_checkdepends=yes CFLAGS="$CFLAGS -Wno-psabi" CXXFLAGS="$CXXFLAGS -Wno-psabi" @@ -716,8 +712,6 @@ case $use_platform in raspberry-pi) target_platform=target_raspberry_pi use_neon=no - use_texturepacker=yes - use_texturepacker_native=yes use_arch="arm" use_cpu=arm1176jzf-s use_hardcoded_tables="yes" @@ -2106,16 +2100,9 @@ else final_message="$final_message\n Bluray:\tNo" fi -USE_TEXTUREPACKER_NATIVE=0 if test "x$use_texturepacker" != "xno"; then final_message="$final_message\n TexturePacker:Yes" USE_TEXTUREPACKER=1 - if test "x$use_texturepacker_native" = "xyes"; then - USE_TEXTUREPACKER_NATIVE=1 - if [[ ! -d "$NATIVE_ROOT" ]]; then - NATIVE_ROOT= - fi - fi else final_message="$final_message\n TexturePacker:No" USE_TEXTUREPACKER=0 @@ -2525,8 +2512,6 @@ AC_SUBST(USE_PULSE) AC_SUBST(USE_XRANDR) AC_SUBST(USE_ALSA) AC_SUBST(USE_TEXTUREPACKER) -AC_SUBST(USE_TEXTUREPACKER_NATIVE) -AC_SUBST(NATIVE_ROOT) AC_SUBST(USE_AIRTUNES) AC_SUBST(USE_LIBUDEV) AC_SUBST(USE_LIBUSB) |