summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictoria Lease <violets@google.com>2013-06-27 11:30:31 -0700
committerVictoria Lease <violets@google.com>2013-06-27 14:11:54 -0700
commit899c67b6cfcd2010784fbf08c5415af16c526e0c (patch)
treec75d7dc57e133b09dc56c1e6e58f74b2f86238ba
parentaf9efeb7136036f6a7601af583868a0c606d5754 (diff)
downloadandroid_external_freetype-899c67b6cfcd2010784fbf08c5415af16c526e0c.tar.gz
android_external_freetype-899c67b6cfcd2010784fbf08c5415af16c526e0c.tar.bz2
android_external_freetype-899c67b6cfcd2010784fbf08c5415af16c526e0c.zip
Enable FT_CONFIG_OPTION_USE_PNG, build shared lib
Due to FT_CONFIG_OPTION_USE_PNG, FreeType now depends upon libpng and zlib. While I'm adding those dependencies, I might as well also make libft2 a shared library... Bug: 9603326 Bug: 9577689 Change-Id: Ibeeaeef72d39df07535424b49810675d652b8fc8
-rw-r--r--Android.mk8
-rw-r--r--include/freetype/config/ftoption.h2
2 files changed, 7 insertions, 3 deletions
diff --git a/Android.mk b/Android.mk
index 51ae31b..e357397 100644
--- a/Android.mk
+++ b/Android.mk
@@ -37,13 +37,17 @@ LOCAL_SRC_FILES:= \
LOCAL_C_INCLUDES += \
$(LOCAL_PATH)/builds \
- $(LOCAL_PATH)/include
+ $(LOCAL_PATH)/include \
+ external/libpng \
+ external/zlib
LOCAL_CFLAGS += -W -Wall
LOCAL_CFLAGS += -fPIC -DPIC
LOCAL_CFLAGS += "-DDARWIN_NO_CARBON"
LOCAL_CFLAGS += "-DFT2_BUILD_LIBRARY"
+LOCAL_SHARED_LIBRARIES += libpng libz
+
# the following is for testing only, and should not be used in final builds
# of the product
#LOCAL_CFLAGS += "-DTT_CONFIG_OPTION_BYTECODE_INTERPRETER"
@@ -52,5 +56,5 @@ LOCAL_CFLAGS += -O2
LOCAL_MODULE:= libft2
-include $(BUILD_STATIC_LIBRARY)
+include $(BUILD_SHARED_LIBRARY)
endif
diff --git a/include/freetype/config/ftoption.h b/include/freetype/config/ftoption.h
index 44e4fb0..bc239bf 100644
--- a/include/freetype/config/ftoption.h
+++ b/include/freetype/config/ftoption.h
@@ -225,7 +225,7 @@ FT_BEGIN_HEADER
/* */
/* Define this macro if you want to enable this `feature'. */
/* */
-/* #define FT_CONFIG_OPTION_USE_PNG */
+#define FT_CONFIG_OPTION_USE_PNG
/*************************************************************************/