diff options
author | Daniel Rentz [dr] <daniel.rentz@oracle.com> | 2011-03-07 13:07:44 +0100 |
---|---|---|
committer | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2011-06-17 16:14:09 +0200 |
commit | 493b594915946bab2807bb1f51e6118640e35fdc (patch) | |
tree | 2a0b648b326282c1d1057784801548e0df65a289 /Repository.mk | |
parent | 7e49f82e7e6c1f51a226f7b0b7ee20c00bff1ce4 (diff) |
[mq]: oox_gmake.patch [hg:d0beb4a8aa40]
Diffstat (limited to 'Repository.mk')
-rwxr-xr-x | Repository.mk | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Repository.mk b/Repository.mk index 8f59ac4b5511..ad76593919f9 100755 --- a/Repository.mk +++ b/Repository.mk @@ -181,4 +181,23 @@ $(eval $(call gb_Helper_register_static_libraries,PLAINLIBS, \ zlib \ )) +ifeq ($(OS),WNT) +$(eval $(call gb_Helper_register_libraries,PLAINLIBS_OOO, \ + crypto \ + ssl \ +)) +else +$(eval $(call gb_Helper_register_static_libraries,PLAINLIBS, \ + crypto \ + ssl \ +)) +endif + +ifeq ($(SYSTEM_OPENSSL),YES) +$(eval $(call gb_Helper_register_libraries,PLAINLIBS_NONE, \ + crypto \ + ssl \ +)) +endif + # vim: set noet sw=4 ts=4: |