]> granicus.if.org Git - check/commitdiff
cmake: do not check HAVE__SNPRINTF
authorbrarcher <brarcher@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Thu, 2 Jan 2014 02:43:17 +0000 (02:43 +0000)
committerbrarcher <brarcher@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Thu, 2 Jan 2014 02:43:17 +0000 (02:43 +0000)
This did not hurt anything, but was missed earlier

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@1003 64e312b2-a51f-0410-8e61-82d0ca0eb02a

lib/CMakeLists.txt

index 8b99f24e0c2e6b234fb845692a074b3062180ce5..547c4f2972f842d1adacf8ac311550fc8e3edb67 100644 (file)
@@ -44,7 +44,7 @@ if(NOT HAVE_REALLOC)
   set(SOURCES ${SOURCES} realloc.c)
 endif(NOT HAVE_REALLOC)
 
-if(NOT HAVE_SNPRINTF AND NOT HAVE__SNPRINTF)
+if(NOT HAVE_SNPRINTF)
     set(SOURCES ${SOURCES} snprintf.c)
     add_definitions(-Dsnprintf=rpl_snprintf)
     set(snprintf rpl_snprintf)
@@ -56,7 +56,7 @@ if(NOT HAVE_SNPRINTF AND NOT HAVE__SNPRINTF)
     set(asprintf rpl_asprintf)
     add_definitions(-Dvasprintf=rpl_vasprintf)
     set(vasprintf rpl_vasprintf)
-endif(NOT HAVE_SNPRINTF AND NOT HAVE__SNPRINTF)
+endif(NOT HAVE_SNPRINTF)
 
 if(NOT HAVE_DECL_STRDUP AND NOT HAVE__STRDUP)
   set(SOURCES ${SOURCES} strdup.c)