cmake: Remove superflous function and header checks.
authorAndreas Schneider <asn@cryptomilk.org>
Mon, 15 Oct 2012 17:45:48 +0000 (19:45 +0200)
committerAndreas Schneider <asn@cryptomilk.org>
Mon, 15 Oct 2012 17:45:48 +0000 (19:45 +0200)
ConfigureChecks.cmake

index e5c2f566f634f6b32d803c22fd1490d4e29da335..1f3be4b673efe7f1a9135081344d9df1301aa39e 100644 (file)
@@ -47,7 +47,6 @@ endif (SOLARIS)
 
 # HEADER FILES
 check_include_file(assert.h HAVE_ASSERT_H)
-check_include_file(dlfcn.h HAVE_DLFCN_H)
 check_include_file(inttypes.h HAVE_INTTYPES_H)
 check_include_file(malloc.h HAVE_MALLOC_H)
 check_include_file(memory.h HAVE_MEMORY_H)
@@ -66,9 +65,6 @@ check_include_file(unistd.h HAVE_UNISTD_H)
 
 
 # FUNCTIONS
-
-check_function_exists(strncpy HAVE_STRNCPY)
-
 check_function_exists(calloc HAVE_CALLOC)
 check_function_exists(exit HAVE_EXIT)
 check_function_exists(fprintf HAVE_FPRINTF)
@@ -83,7 +79,6 @@ check_function_exists(signal HAVE_SIGNAL)
 check_function_exists(strsignal HAVE_STRSIGNAL)
 check_function_exists(sprintf HAVE_SNPRINTF)
 check_function_exists(strcmp HAVE_STRCMP)
-check_function_exists(strcpy HAVE_STRCPY)
 check_function_exists(vsnprintf HAVE_VSNPRINTF)
 
 if (WIN32)