summaryrefslogtreecommitdiff
path: root/configmgr/Library_configmgr.mk
diff options
context:
space:
mode:
authorJanos Farago <farago.janos@andrews.hu>2013-09-03 09:42:44 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-09-10 11:16:39 +0200
commit5a02076358a547bae8a9b596d9722a7cd2d46c34 (patch)
tree4aebd3e8b9d59fb78c40279d5b1bbe351986c6a6 /configmgr/Library_configmgr.mk
parentbe4b57b6da08231635f843529fed6fa53c931d02 (diff)
Windows registry configuration backend
The goal is to manage LibreOffice configuration centrally in the enterprise. In Windows Server environment using Group Policies is a common solution for configuration management. Therefore it is required that LibreOffice can read configuration data from Windows registry, too. Windows registry is another configuration layer on the top of normal xml based configuration. For example the following registry setting: [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\LibreOffice\org.openoffice.UserProfile\Data\o] "Value"="Example Corp." "Final"=dword:00000001 becomes the following in configuration: <item oor:path="/org.openoffice.UserProfile/Data"> <prop oor:name="o" oor:finalized="true"> <value>Example Corp.</value> </prop> </item> Change-Id: I2cdd83fc93922bf2806417bfd1b83f85cc926d4c Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'configmgr/Library_configmgr.mk')
-rw-r--r--configmgr/Library_configmgr.mk5
1 files changed, 3 insertions, 2 deletions
diff --git a/configmgr/Library_configmgr.mk b/configmgr/Library_configmgr.mk
index 791782da89da..2243350c5d49 100644
--- a/configmgr/Library_configmgr.mk
+++ b/configmgr/Library_configmgr.mk
@@ -36,6 +36,7 @@ $(eval $(call gb_Library_add_exception_objects,configmgr, \
configmgr/source/type \
configmgr/source/update \
configmgr/source/valueparser \
+ $(if $(filter $(OS),WNT), configmgr/source/winreg ) \
configmgr/source/writemodfile \
configmgr/source/xcdparser \
configmgr/source/xcsparser \
@@ -54,8 +55,8 @@ $(eval $(call gb_Library_use_libraries,configmgr, \
sal \
salhelper \
xmlreader \
- i18nlangtag \
- $(gb_UWINAPI) \
+ i18nlangtag \
+ $(gb_UWINAPI) \
))
$(eval $(call gb_Library_set_componentfile,configmgr,configmgr/source/configmgr))