comparison configure.ac @ 15172:c7d466a02065

configure.ac: Add checks for a few missing types. configure.ac: Add AC_TYPE_INT64_T, AC_TYPE_SSIZE_T, AC_TYPE_UINT64_T, AC_CHECK_TYPES([ptrdiff_t]).
author Rik <rik@octave.org>
date Tue, 14 Aug 2012 13:57:44 -0700
parents a44ff4f0a20b
children 2fc554ffbc28
comparison
equal deleted inserted replaced
15171:7a19e8275d41 15172:c7d466a02065
1816 AC_DEFINE(NOMINMAX, 1, [Define to 1 if you want to avoid min/max macro definition in Windows headers.]) 1816 AC_DEFINE(NOMINMAX, 1, [Define to 1 if you want to avoid min/max macro definition in Windows headers.])
1817 fi 1817 fi
1818 1818
1819 ### Determine types and size of types. 1819 ### Determine types and size of types.
1820 1820
1821 AC_TYPE_INT64_T
1821 AC_TYPE_MODE_T 1822 AC_TYPE_MODE_T
1822 AC_TYPE_OFF_T 1823 AC_TYPE_OFF_T
1823 AC_TYPE_PID_T 1824 AC_TYPE_PID_T
1824 AC_TYPE_SIZE_T 1825 AC_TYPE_SIZE_T
1826 AC_TYPE_SSIZE_T
1825 AC_TYPE_UID_T 1827 AC_TYPE_UID_T
1828 AC_TYPE_UINT64_T
1826 AC_CHECK_TYPES([dev_t, ino_t]) 1829 AC_CHECK_TYPES([dev_t, ino_t])
1827 AC_CHECK_TYPES([long long int, unsigned long long int]) 1830 AC_CHECK_TYPES([long long int, unsigned long long int])
1831 AC_CHECK_TYPES([ptrdiff_t])
1828 1832
1829 ## How big are ints and how are they oriented? 1833 ## How big are ints and how are they oriented?
1830 ## These could probably be eliminated in favor of run-time checks. 1834 ## These could probably be eliminated in favor of run-time checks.
1831 1835
1832 AC_CHECK_SIZEOF(short) 1836 AC_CHECK_SIZEOF(short)