diff options
author | kinichiro <kinichiro.inoguchi@gmail.com> | 2017-09-26 22:02:21 +0900 |
---|---|---|
committer | kinichiro <kinichiro.inoguchi@gmail.com> | 2017-09-26 22:02:21 +0900 |
commit | 9bb3e03722f1e6c5188d5f317c58c93ac24a0525 (patch) | |
tree | 5a583471dc0c492bfbf6dd4f416182f1b0d86ddb /apps | |
parent | 6054891d433bb03059bed9d3caf4fe0193aef384 (diff) | |
download | portable-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.txt | 2 |
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) |
21 | endif() | 21 | endif() |
22 | 22 | ||
23 | check_function_exists(inet_ntop HAVE_MEMMEM) | 23 | check_function_exists(memmem HAVE_MEMMEM) |
24 | if(HAVE_MEMMEM) | 24 | if(HAVE_MEMMEM) |
25 | add_definitions(-DHAVE_MEMMEM) | 25 | add_definitions(-DHAVE_MEMMEM) |
26 | else() | 26 | else() |