From 9bb3e03722f1e6c5188d5f317c58c93ac24a0525 Mon Sep 17 00:00:00 2001 From: kinichiro Date: Tue, 26 Sep 2017 22:02:21 +0900 Subject: Fix checking memmem in apps/ocspcheck/CMakeLists.txt - Issue #352 pointed out by @d3x0r --- apps/ocspcheck/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() set(OCSPCHECK_SRC ${OCSPCHECK_SRC} compat/inet_ntop.c) endif() -check_function_exists(inet_ntop HAVE_MEMMEM) +check_function_exists(memmem HAVE_MEMMEM) if(HAVE_MEMMEM) add_definitions(-DHAVE_MEMMEM) else() -- cgit v1.2.3-55-g6feb