1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-03-09 04:58:16 +03:00

build: Don't check for uint32_t

This commit is contained in:
Nick Wellnhofer 2024-05-21 20:37:03 +02:00
parent 5c9e0ebe71
commit 6f2a597383
3 changed files with 0 additions and 16 deletions

View File

@ -107,12 +107,3 @@
/* TLS specifier */
#cmakedefine XML_THREAD_LOCAL @XML_THREAD_LOCAL@
/* Define for Solaris 2.5.1 so the uint32_t typedef from <sys/synch.h>,
<pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
#define below would cause a syntax error. */
#cmakedefine _UINT32_T @_UINT32_T@
/* Define to the type of an unsigned integer type of width exactly 32 bits if
such a type exists and the standard includes do not define it. */
#cmakedefine uint32_t @uint32_t@

View File

@ -312,11 +312,6 @@ AC_CHECK_HEADERS([dl.h dlfcn.h])
AC_CHECK_HEADERS([glob.h])
AM_CONDITIONAL(WITH_GLOB, test "$ac_cv_header_glob_h" = "yes")
dnl
dnl Checking types
dnl
AC_TYPE_UINT32_T
dnl Checks for library functions.
AC_CHECK_FUNCS([getentropy gettimeofday ftime isascii stat mmap munmap])

View File

@ -50,8 +50,6 @@ endif
# binaries
cc = meson.get_compiler('c')
cc.has_type('uint32_t', prefix: '#include <stdint.h>')
# options
want_c14n = get_option('c14n')
want_catalog = get_option('catalog')