aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorkinichiro <kinichiro.inoguchi@gmail.com>2017-09-26 22:02:21 +0900
committerkinichiro <kinichiro.inoguchi@gmail.com>2017-09-26 22:02:21 +0900
commit9bb3e03722f1e6c5188d5f317c58c93ac24a0525 (patch)
tree5a583471dc0c492bfbf6dd4f416182f1b0d86ddb /apps
parent6054891d433bb03059bed9d3caf4fe0193aef384 (diff)
downloadportable-9bb3e03722f1e6c5188d5f317c58c93ac24a0525.tar.gz
portable-9bb3e03722f1e6c5188d5f317c58c93ac24a0525.tar.bz2
portable-9bb3e03722f1e6c5188d5f317c58c93ac24a0525.zip
Fix checking memmem in apps/ocspcheck/CMakeLists.txt
- Issue #352 pointed out by @d3x0r
Diffstat (limited to 'apps')
-rw-r--r--apps/ocspcheck/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/ocspcheck/CMakeLists.txt b/apps/ocspcheck/CMakeLists.txt
index af245f4..4f89f4e 100644
--- a/apps/ocspcheck/CMakeLists.txt
+++ b/apps/ocspcheck/CMakeLists.txt
@@ -20,7 +20,7 @@ else()
20 set(OCSPCHECK_SRC ${OCSPCHECK_SRC} compat/inet_ntop.c) 20 set(OCSPCHECK_SRC ${OCSPCHECK_SRC} compat/inet_ntop.c)
21endif() 21endif()
22 22
23check_function_exists(inet_ntop HAVE_MEMMEM) 23check_function_exists(memmem HAVE_MEMMEM)
24if(HAVE_MEMMEM) 24if(HAVE_MEMMEM)
25 add_definitions(-DHAVE_MEMMEM) 25 add_definitions(-DHAVE_MEMMEM)
26else() 26else()