diff options
author | S. Davilla <davilla@4pi.com> | 2013-08-01 09:54:01 -0400 |
---|---|---|
committer | S. Davilla <davilla@4pi.com> | 2013-08-01 09:54:01 -0400 |
commit | ad28bea5fe28fd758bfacbb2fb6915e7441d7f67 (patch) | |
tree | 019aab8487750f0dd7db80579bb99d5c2ee210bb /tools | |
parent | a58360d6d97ebd721be6c43514b382e29f6f5e69 (diff) |
changed, do not force usage of libstagefright in configure, it cannot be disabled
Diffstat (limited to 'tools')
-rw-r--r-- | tools/depends/target/xbmc/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/depends/target/xbmc/Makefile b/tools/depends/target/xbmc/Makefile index be6febf7b6..c1febce871 100644 --- a/tools/depends/target/xbmc/Makefile +++ b/tools/depends/target/xbmc/Makefile @@ -6,9 +6,12 @@ export CXXFLAGS+=-O3 export CFLAGS+=-O3 # configuration settings -CONFIGURE=cp -f $(CONFIG_SUB) $(CONFIG_GUESS) build-aux/ ;\ +CONFIGURE = cp -f $(CONFIG_SUB) $(CONFIG_GUESS) build-aux/ ;\ ./configure --prefix=$(PREFIX) +ifeq ($(OS),android) +CONFIGURE += --enable-codec=libstagefright +endif all: $(SOURCE)/libxbmc.so |