From: brarcher Date: Thu, 2 Jan 2014 02:42:45 +0000 (+0000) Subject: cmake: remove unnecessary check for strerror() X-Git-Tag: 0.10.0~226 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=76c73a178120486fa56f3f4a260118cf67c45718;p=check cmake: remove unnecessary check for strerror() There is no replacement for strerror currently. If this check failed, nothing would be done anyway. git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@990 64e312b2-a51f-0410-8e61-82d0ca0eb02a --- diff --git a/CMakeLists.txt b/CMakeLists.txt index d05e452..6e7571d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -106,7 +106,6 @@ check_function_exists(setenv HAVE_DECL_SETENV) check_function_exists(sigaction HAVE_SIGACTION) check_function_exists(snprintf HAVE_SNPRINTF) check_function_exists(strdup HAVE_DECL_STRDUP) -check_function_exists(strerror HAVE_STRERROR) check_function_exists(strsignal HAVE_DECL_STRSIGNAL) check_function_exists(_getpid HAVE__GETPID) check_function_exists(_localtime64_s HAVE__LOCALTIME64_S)