From 9633fb712b0de13a5e1d8420a1eafa9337905f5d Mon Sep 17 00:00:00 2001 From: David Tardon Date: Fri, 15 Apr 2011 16:15:27 +0200 Subject: mangle openssl lib names on WNT with GCC I hope I got it right... --- RepositoryFixes.mk | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'RepositoryFixes.mk') 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) -- cgit