diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-04-29 15:14:07 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-04-29 15:14:07 +0300 |
commit | fe3462b4cc8d3aea3f2abac06f41780e16d63672 (patch) | |
tree | 130919d368d5f0165b86b03aa8fdb15032d714a4 /oox | |
parent | daff075ae6726c328b163c2b464518b2353b6699 (diff) |
Fix crypto stuff when building on Windows
Diffstat (limited to 'oox')
-rw-r--r-- | oox/Library_oox.mk | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/oox/Library_oox.mk b/oox/Library_oox.mk index 84316db9d0c2..6fcbf008950b 100644 --- a/oox/Library_oox.mk +++ b/oox/Library_oox.mk @@ -71,11 +71,18 @@ $(eval $(call gb_Library_add_linked_libs,oox,\ ssl \ )) else +ifeq ($(OS),WNT) +$(eval $(call gb_Library_add_linked_static_libs,oox,\ + libeay32 \ + ssleay32 \ +)) +else $(eval $(call gb_Library_add_linked_static_libs,oox,\ crypto \ ssl \ )) endif +endif $(eval $(call gb_Library_set_ldflags,oox,\ $$(LDFLAGS) \ |