diff options
author | Brent Cook <busterb@gmail.com> | 2016-11-05 06:16:07 -0500 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2016-11-05 06:16:07 -0500 |
commit | 03a321e5580b6331e11c83fada6e2b8d16523a71 (patch) | |
tree | 6ca581cc95472db07a1cae1e85787feba45b1fba | |
parent | 659aff9fa7cbfefff28c248f611b13b8ae8424aa (diff) | |
download | portable-03a321e5580b6331e11c83fada6e2b8d16523a71.tar.gz portable-03a321e5580b6331e11c83fada6e2b8d16523a71.tar.bz2 portable-03a321e5580b6331e11c83fada6e2b8d16523a71.zip |
disable symbol hiding for now
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | Makefile.am.common | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 93f3ff6..df300af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
@@ -74,6 +74,8 @@ endif() | |||
74 | 74 | ||
75 | add_definitions(-DLIBRESSL_INTERNAL) | 75 | add_definitions(-DLIBRESSL_INTERNAL) |
76 | add_definitions(-DOPENSSL_NO_HW_PADLOCK) | 76 | add_definitions(-DOPENSSL_NO_HW_PADLOCK) |
77 | add_definitions(-D__BEGIN_HIDDEN_DECLS=) | ||
78 | add_definitions(-D__END_HIDDEN_DECLS=) | ||
77 | 79 | ||
78 | set(CMAKE_POSITION_INDEPENDENT_CODE true) | 80 | set(CMAKE_POSITION_INDEPENDENT_CODE true) |
79 | 81 | ||
diff --git a/Makefile.am.common b/Makefile.am.common index 49019ec..87aa807 100644 --- a/Makefile.am.common +++ b/Makefile.am.common | |||
@@ -1,2 +1,3 @@ | |||
1 | AM_CFLAGS = | 1 | AM_CFLAGS = |
2 | AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/include/compat -DLIBRESSL_INTERNAL | 2 | AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/include/compat -DLIBRESSL_INTERNAL |
3 | AM_CPPFLAGS += -D__BEGIN_HIDDEN_DECLS= -D__END_HIDDEN_DECLS= | ||