Don't bother checking for size_t, mode_t and off_t neither

The latter two are always defined in sys/types.h on all Unix systems and
we already define them for MSVC (which doesn't use configure anyhow).

The former type is always defined everywhere.
This commit is contained in:
Vadim Zeitlin
2021-07-28 21:09:32 +02:00
parent e8975eec72
commit 32d9b0413d
6 changed files with 2 additions and 76 deletions

View File

@@ -4084,13 +4084,6 @@ dnl ---------------------------------------------------------------------------
dnl Checks for typedefs
dnl ---------------------------------------------------------------------------
dnl defines mode_t if not already defined
AC_TYPE_MODE_T
dnl defines off_t if not already defined
AC_TYPE_OFF_T
dnl defines size_t if not already defined
AC_TYPE_SIZE_T
dnl sets HAVE_SSIZE_T if ssize_t is defined
AC_CHECK_TYPES(ssize_t)