summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-07-27 09:16:30 +0100
committerMichael Meeks <michael.meeks@novell.com>2011-07-27 14:19:20 +0100
commit8011a0a46b152d9baa80287cb7d78ec75678876f (patch)
tree3cf360ad8b87ad0823f7cc7c347b9b598001ab40
parent99f26ca8de108668b749e0cd19f001db3f71a9a1 (diff)
Related: fdo#35404 force .a files to hidden visibility
Signed-off-by: Michael Meeks <michael.meeks@novell.com>
-rw-r--r--openssl/makefile.mk10
1 files changed, 9 insertions, 1 deletions
diff --git a/openssl/makefile.mk b/openssl/makefile.mk
index aff765f..d01785f 100644
--- a/openssl/makefile.mk
+++ b/openssl/makefile.mk
@@ -56,7 +56,15 @@ CONFIGURE_ACTION=config
CONFIGURE_FLAGS=-I$(SYSBASE)$/usr$/include -L$(SYSBASE)$/usr$/lib shared no-idea
BUILD_DIR=.
-BUILD_ACTION=make CC='$(CC)'
+
+COMPILER_AND_FLAGS=$(CC)
+#See fdo#35404 If we're only interested in getting a .a (i.e. not windows) then
+#force everything, when possible, as hidden symbols
+.IF "$(OS)" != "WNT" && "$(HAVE_GCC_VISIBILITY_FEATURE)" == "TRUE"
+COMPILER_AND_FLAGS+=-fvisibility=hidden
+.ENDIF
+
+BUILD_ACTION=make build_libs CC='$(COMPILER_AND_FLAGS)'
OUT2LIB = libssl.*
OUT2LIB += libcrypto.*