summaryrefslogtreecommitdiff
path: root/RepositoryFixes.mk
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2011-04-15 16:15:27 +0200
committerDavid Tardon <dtardon@redhat.com>2011-04-15 16:16:38 +0200
commit9633fb712b0de13a5e1d8420a1eafa9337905f5d (patch)
treead4ede7147d7cbc94ce5feaa4fd257ecb59a3831 /RepositoryFixes.mk
parent3feaa80ebe2dd98e8f4c7af1f065bc4675bf4182 (diff)
mangle openssl lib names on WNT with GCC
I hope I got it right...
Diffstat (limited to 'RepositoryFixes.mk')
-rw-r--r--RepositoryFixes.mk7
1 files changed, 7 insertions, 0 deletions
diff --git a/RepositoryFixes.mk b/RepositoryFixes.mk
index c9bce7dd3ab1..37e5f6c312ca 100644
--- a/RepositoryFixes.mk
+++ b/RepositoryFixes.mk
@@ -135,6 +135,13 @@ gb_Library_DLLFILENAMES := $(patsubst z:z%,z:zlib%,$(gb_Library_DLLFILENAMES))
endif
+# TODO: is this correct? This is how I parsed the conditionals in
+# oox/util/makefile.mk .-)
+ifeq ($(COM),GCC)
+gb_Library_FILENAMES := $(patsubst crypto:libcrypto%,crypto:libcrypto_static%,$(gb_Library_FILENAMES))
+gb_Library_FILENAMES := $(patsubst ssl:libssl%,ssl:libssl_static%,$(gb_Library_FILENAMES))
+endif
+
endif
ifeq ($(OS),SOLARIS)