build: Don't check for isascii

This commit is contained in:
Nick Wellnhofer 2024-05-21 20:38:52 +02:00
parent 6f2a597383
commit 11ce63f02b
4 changed files with 1 additions and 6 deletions

View File

@ -138,7 +138,6 @@ if (NOT MSVC)
check_function_exists(ftime HAVE_FTIME)
check_function_exists(getentropy HAVE_GETENTROPY)
check_function_exists(gettimeofday HAVE_GETTIMEOFDAY)
check_function_exists(isascii HAVE_ISASCII)
check_library_exists(history append_history "" HAVE_LIBHISTORY)
check_library_exists(readline readline "" HAVE_LIBREADLINE)
check_function_exists(mmap HAVE_MMAP)

View File

@ -28,9 +28,6 @@
/* Define to 1 if you have the `gettimeofday' function. */
#cmakedefine HAVE_GETTIMEOFDAY 1
/* Define to 1 if you have the `isascii' function. */
#cmakedefine HAVE_ISASCII 1
/* Define if history library is there (-lhistory) */
#cmakedefine HAVE_LIBHISTORY 1

View File

@ -313,7 +313,7 @@ AC_CHECK_HEADERS([glob.h])
AM_CONDITIONAL(WITH_GLOB, test "$ac_cv_header_glob_h" = "yes")
dnl Checks for library functions.
AC_CHECK_FUNCS([getentropy gettimeofday ftime isascii stat mmap munmap])
AC_CHECK_FUNCS([getentropy gettimeofday ftime stat mmap munmap])
AH_VERBATIM([HAVE_MUNMAP_AFTER],[/* mmap() is no good without munmap() */
#if defined(HAVE_MMAP) && !defined(HAVE_MUNMAP)

View File

@ -331,7 +331,6 @@ xml_check_functions = [
['gettimeofday', 'sys/time.h'],
['ftime', 'sys/timeb.h'],
['stat', 'sys/stat.h'],
['isascii', 'ctype.h'],
['mmap', 'sys/mman.h'],
['munmap', 'sys/mman.h'],
]