diff options
author | kinichiro <kinichiro.inoguchi@gmail.com> | 2021-12-04 20:58:44 +0900 |
---|---|---|
committer | kinichiro <kinichiro.inoguchi@gmail.com> | 2021-12-04 21:00:39 +0900 |
commit | 7fe1bf86e1e6bad7af99174c351d17e6f8d40144 (patch) | |
tree | 8a460fed034eaa088bdf8fd1bc4d52d775109e34 /tests | |
parent | 87c45af9e0ed85856ac582e08fc31368f05b4713 (diff) | |
download | portable-7fe1bf86e1e6bad7af99174c351d17e6f8d40144.tar.gz portable-7fe1bf86e1e6bad7af99174c351d17e6f8d40144.tar.bz2 portable-7fe1bf86e1e6bad7af99174c351d17e6f8d40144.zip |
Fix _PATH_SSL_CA_FILE for ocsp_test
Diffstat (limited to 'tests')
-rw-r--r-- | tests/CMakeLists.txt | 2 | ||||
-rw-r--r-- | tests/Makefile.am | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 955f90e..5b9652e 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt | |||
@@ -10,7 +10,7 @@ include_directories( | |||
10 | ../include/compat | 10 | ../include/compat |
11 | ) | 11 | ) |
12 | 12 | ||
13 | add_definitions(-D_PATH_SSL_CA_FILE=\"${CMAKE_CURRENT_SOURCE_DIR}/../apps/openssl/cert.pem\") | 13 | add_definitions(-D_PATH_SSL_CA_FILE=\"${CMAKE_CURRENT_SOURCE_DIR}/../cert.pem\") |
14 | 14 | ||
15 | file(TO_NATIVE_PATH ${CMAKE_CURRENT_SOURCE_DIR} TEST_SOURCE_DIR) | 15 | file(TO_NATIVE_PATH ${CMAKE_CURRENT_SOURCE_DIR} TEST_SOURCE_DIR) |
16 | 16 | ||
diff --git a/tests/Makefile.am b/tests/Makefile.am index 93dba92..ec87028 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am | |||
@@ -6,7 +6,7 @@ AM_CPPFLAGS += -I $(top_srcdir)/crypto/x509 | |||
6 | AM_CPPFLAGS += -I $(top_srcdir)/ssl | 6 | AM_CPPFLAGS += -I $(top_srcdir)/ssl |
7 | AM_CPPFLAGS += -I $(top_srcdir)/apps/openssl | 7 | AM_CPPFLAGS += -I $(top_srcdir)/apps/openssl |
8 | AM_CPPFLAGS += -I $(top_srcdir)/apps/openssl/compat | 8 | AM_CPPFLAGS += -I $(top_srcdir)/apps/openssl/compat |
9 | AM_CPPFLAGS += -D_PATH_SSL_CA_FILE=\"$(top_srcdir)/apps/openssl/cert.pem\" | 9 | AM_CPPFLAGS += -D_PATH_SSL_CA_FILE=\"$(top_srcdir)/cert.pem\" |
10 | 10 | ||
11 | LDADD = $(abs_top_builddir)/tls/.libs/libtls.a | 11 | LDADD = $(abs_top_builddir)/tls/.libs/libtls.a |
12 | LDADD += $(abs_top_builddir)/ssl/.libs/libssl.a | 12 | LDADD += $(abs_top_builddir)/ssl/.libs/libssl.a |