summaryrefslogtreecommitdiff
path: root/ios
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-08-12 23:05:40 +0300
committerTor Lillqvist <tml@collabora.com>2014-08-12 23:11:13 +0300
commitb513f288275ae96f55e232f07bf94294c66e95a1 (patch)
tree263f0209994ed6d147c1f21a103b09a4d9730b3a /ios
parent7256a10fb6abcecdda5b5820be79940b14c51fc2 (diff)
LO_LIB_DIR is used in nsscrypto_initialize() so must give it a value
Its actual value is irrelevant in the nsscrypto_initialize() case for iOS, though, as it is used to form a pathname to a hypothetical libnssckbi.dylib (which does not exist for iOS, as we build NSS statically), and we patch the NSS code to recognize the nssckbi name specially in the static build case... Such elegance. Change-Id: Ib5015a18e86cc604f80433a676faa10ac76e04ab
Diffstat (limited to 'ios')
-rw-r--r--ios/CustomTarget_TiledLibreOffice_app.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/ios/CustomTarget_TiledLibreOffice_app.mk b/ios/CustomTarget_TiledLibreOffice_app.mk
index aa89470d4115..9c33364d3553 100644
--- a/ios/CustomTarget_TiledLibreOffice_app.mk
+++ b/ios/CustomTarget_TiledLibreOffice_app.mk
@@ -91,6 +91,7 @@ TiledLibreOffice_setup:
# Do we really need all these?
file=$(TiledLibreOffice_resource)/fundamentalrc; \
echo '[Bootstrap]' > $$file; \
+ echo 'LO_LIB_DIR=file://$$APP_DATA_DIR/lib/' >> $$file; \
echo 'BRAND_BASE_DIR=file://$$APP_DATA_DIR' >> $$file; \
echo 'CONFIGURATION_LAYERS=xcsxcu:$${BRAND_BASE_DIR}/share/registry res:$${BRAND_BASE_DIR}/registry' >> $$file;