diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-06-05 14:06:39 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-06-05 14:06:58 +0200 |
commit | 0aed9cbb6c6e8e048a90fed61f44efbe09efac4f (patch) | |
tree | a9a9f85086decab9acc8f2ece923df95294e5aee /external | |
parent | d79fa4ee0fd5b6e9787838f74cc45c9c9b93a5b3 (diff) |
liborcus: still build statically on Android
Change-Id: Ieeb5180ea7f96cb08d06bf895bd2a6ffc6c1cef0
Diffstat (limited to 'external')
-rw-r--r-- | external/liborcus/ExternalProject_liborcus.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/external/liborcus/ExternalProject_liborcus.mk b/external/liborcus/ExternalProject_liborcus.mk index 8a53fa8a249d..12f22f77f8f1 100644 --- a/external/liborcus/ExternalProject_liborcus.mk +++ b/external/liborcus/ExternalProject_liborcus.mk @@ -87,8 +87,7 @@ $(call gb_ExternalProject_get_state_target,liborcus,build) : MDDS_LIBS=' ' \ MAKE=$(MAKE) ./configure \ --with-pic \ - --enable-shared \ - --disable-static \ + $(if $(filter IOS ANDROID,$(OS)), --disable-shared --enable-static, --enable-shared --disable-static) \ $(if $(ENABLE_DEBUG),--enable-debug,--disable-debug) \ --disable-spreadsheet-model \ --without-tools \ |