AC_CHECK_SIZEOF(long long int, 8)
dnl More checks for data types
-AC_MSG_CHECKING([for quad_t])
-AC_TRY_COMPILE(
- [#include <sys/types.h>],
- [quad_t a; a = 1235;],
- [
- AC_DEFINE(HAVE_QUAD_T)
- AC_MSG_RESULT(yes)
- ],
- [AC_MSG_RESULT(no)]
-)
-
AC_MSG_CHECKING([for intXX_t types])
AC_TRY_COMPILE(
[#include <sys/types.h>],
# endif
#endif
-/* If quad_t is not supplied, then supply it now. We can rely on int64_t */
-/* being defined by the above */
-#ifndef HAVE_QUAD_T
-typedef int64_t quad_t;
-# define HAVE_QUAD_T
-#endif
-
#ifndef HAVE_SOCKLEN_T
typedef unsigned int socklen_t;
# define HAVE_SOCKLEN_T