changeset 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 7a19e8275d41
children 8593bed236f1
files configure.ac
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/configure.ac	Mon Aug 13 20:24:14 2012 -0500
+++ b/configure.ac	Tue Aug 14 13:57:44 2012 -0700
@@ -1818,13 +1818,17 @@
 
 ### Determine types and size of types.
 
+AC_TYPE_INT64_T
 AC_TYPE_MODE_T
 AC_TYPE_OFF_T
 AC_TYPE_PID_T
 AC_TYPE_SIZE_T
+AC_TYPE_SSIZE_T
 AC_TYPE_UID_T
+AC_TYPE_UINT64_T
 AC_CHECK_TYPES([dev_t, ino_t])
 AC_CHECK_TYPES([long long int, unsigned long long int])
+AC_CHECK_TYPES([ptrdiff_t])
 
 ## How big are ints and how are they oriented?
 ## These could probably be eliminated in favor of run-time checks.