mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
build: Don't check for isascii
This commit is contained in:
parent
6f2a597383
commit
11ce63f02b
@ -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)
|
||||
|
@ -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
|
||||
|
||||
|
@ -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)
|
||||
|
@ -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'],
|
||||
]
|
||||
|
Loading…
x
Reference in New Issue
Block a user