Android, Add explicit path for zlib
authorReynaldo H. Verdejo Pinochet <reynaldo@collabora.com>
Fri, 13 Jan 2012 19:57:15 +0000 (16:57 -0300)
committerReynaldo H. Verdejo Pinochet <reynaldo@collabora.com>
Fri, 13 Jan 2012 19:57:15 +0000 (16:57 -0300)
This change fixes building gst-libs/gst/tag/ code with
the Android buildsystem.

Android.mk

index a78bd69..e6a07b6 100644 (file)
@@ -67,6 +67,7 @@ GST_PLUGINS_BASE_BUILT_SOURCES :=                                             \
 
 ifneq ($(NDK_BUILD), true)
 GST_PLUGINS_BASE_BUILT_SOURCES += ext/vorbis/Android.mk
+ZLIB_CFLAGS = -I $(abspath $(GST_PLUGINS_BASE_TOP)/../../zlib)
 endif
 
 GST_PLUGINS_BASE_BUILT_SOURCES := $(patsubst %, $(abspath $(GST_PLUGINS_BASE_TOP))/%, $(GST_PLUGINS_BASE_BUILT_SOURCES))
@@ -85,6 +86,7 @@ gst-plugins-base-configure:
        PKG_CONFIG_TOP_BUILD_DIR=/ \
        IVORBIS_CFLAGS="-I$(TOP)/external/tremolo -DTREMOR" \
        IVORBIS_LIBS="-lvorbisidec" \
+       ZLIB_CFLAGS="$(ZLIB_CFLAGS)" \
        $(abspath $(GST_PLUGINS_BASE_TOP))/$(CONFIGURE) --host=arm-linux-androideabi \
        --prefix=/system --disable-orc --disable-gio --enable-ivorbis \
        --disable-valgrind --disable-gtk-doc && \