diff options
author | Brent Cook <bcook@openbsd.org> | 2018-06-14 04:48:23 -0500 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2018-06-14 04:48:59 -0500 |
commit | 64b69515762f79c7d8841025455c188708059abd (patch) | |
tree | aadc919c6a99dac30ef725104a84b2cf8c3eac50 | |
parent | d4bf25f6c006a74d3b7c472099e097b9f701744f (diff) | |
download | portable-64b69515762f79c7d8841025455c188708059abd.tar.gz portable-64b69515762f79c7d8841025455c188708059abd.tar.bz2 portable-64b69515762f79c7d8841025455c188708059abd.zip |
make headers under include/compat private again
-rw-r--r-- | crypto/CMakeLists.txt | 4 | ||||
-rw-r--r-- | ssl/CMakeLists.txt | 4 | ||||
-rw-r--r-- | tls/CMakeLists.txt | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt index ded07af..1529d27 100644 --- a/crypto/CMakeLists.txt +++ b/crypto/CMakeLists.txt | |||
@@ -807,9 +807,9 @@ target_include_directories(crypto | |||
807 | dsa | 807 | dsa |
808 | evp | 808 | evp |
809 | modes | 809 | modes |
810 | ../include/compat | ||
810 | PUBLIC | 811 | PUBLIC |
811 | ../include | 812 | ../include) |
812 | ../include/compat) | ||
813 | 813 | ||
814 | if (BUILD_SHARED_LIBS) | 814 | if (BUILD_SHARED_LIBS) |
815 | export_symbol(crypto ${CMAKE_CURRENT_BINARY_DIR}/crypto_p.sym) | 815 | export_symbol(crypto ${CMAKE_CURRENT_BINARY_DIR}/crypto_p.sym) |
diff --git a/ssl/CMakeLists.txt b/ssl/CMakeLists.txt index 44e5265..1a559e6 100644 --- a/ssl/CMakeLists.txt +++ b/ssl/CMakeLists.txt | |||
@@ -45,9 +45,9 @@ add_library(ssl ${SSL_SRC}) | |||
45 | target_include_directories(ssl | 45 | target_include_directories(ssl |
46 | PRIVATE | 46 | PRIVATE |
47 | . | 47 | . |
48 | ../include/compat | ||
48 | PUBLIC | 49 | PUBLIC |
49 | ../include | 50 | ../include) |
50 | ../include/compat) | ||
51 | 51 | ||
52 | if (BUILD_SHARED_LIBS) | 52 | if (BUILD_SHARED_LIBS) |
53 | export_symbol(ssl ${CMAKE_CURRENT_SOURCE_DIR}/ssl.sym) | 53 | export_symbol(ssl ${CMAKE_CURRENT_SOURCE_DIR}/ssl.sym) |
diff --git a/tls/CMakeLists.txt b/tls/CMakeLists.txt index a18c24f..3d6dea4 100644 --- a/tls/CMakeLists.txt +++ b/tls/CMakeLists.txt | |||
@@ -34,9 +34,9 @@ add_library(tls ${TLS_SRC}) | |||
34 | target_include_directories(tls | 34 | target_include_directories(tls |
35 | PRIVATE | 35 | PRIVATE |
36 | . | 36 | . |
37 | ../include/compat | ||
37 | PUBLIC | 38 | PUBLIC |
38 | ../include | 39 | ../include) |
39 | ../include/compat) | ||
40 | 40 | ||
41 | if (BUILD_SHARED_LIBS) | 41 | if (BUILD_SHARED_LIBS) |
42 | export_symbol(tls ${CMAKE_CURRENT_SOURCE_DIR}/tls.sym) | 42 | export_symbol(tls ${CMAKE_CURRENT_SOURCE_DIR}/tls.sym) |