From 7237efdabc75049a70af4bb079dd7b2dd439dd17 Mon Sep 17 00:00:00 2001 From: Simon Wilkinson Date: Thu, 6 May 2010 22:22:50 +0100 Subject: [PATCH] Remove intptr.m4 We now require an autoconf version of at least 2.60. This version supplies AC_TYPE_INTPTR_T and AC_TYPE_UINTPTR_T, so we no longer need to have our own. Change-Id: I362324d1cfb39efb01c3f6f2d95eb7f4ed041998 Reviewed-on: http://gerrit.openafs.org/1919 Reviewed-by: Andrew Deason Reviewed-by: Derrick Brashear Tested-by: Derrick Brashear --- src/cf/intptr.m4 | 45 --------------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 src/cf/intptr.m4 diff --git a/src/cf/intptr.m4 b/src/cf/intptr.m4 deleted file mode 100644 index d4e07072d3..0000000000 --- a/src/cf/intptr.m4 +++ /dev/null @@ -1,45 +0,0 @@ -AC_DEFUN([AC_TYPE_INTPTR_T], -[ - AC_CHECK_TYPE([intptr_t], - [AC_DEFINE([HAVE_INTPTR_T], 1, - [Define to 1 if the system has the type `intptr_t'.])], - [ - if test "$ac_cv_type_intptr_t" != yes; then - AC_MSG_CHECKING(for type equivalent to intptr_t) - case $ac_cv_sizeof_void_p in - 2) openafs_cv_type_intptr_t=afs_int16 ;; - 4) openafs_cv_type_intptr_t=afs_int32 ;; - 8) openafs_cv_type_intptr_t=afs_int64 ;; - *) AC_MSG_ERROR(no equivalent for intptr_t);; - esac - AC_DEFINE_UNQUOTED([intptr_t], [$openafs_cv_type_intptr_t], - [Define to the type of a signed integer type wide enough to - hold a pointer, if such a type exists, and if the system - does not define it.]) - AC_MSG_RESULT($openafs_cv_type_intptr_t) - fi - ]) -]) - -AC_DEFUN([AC_TYPE_UINTPTR_T], -[ - AC_CHECK_TYPE([uintptr_t], - [AC_DEFINE([HAVE_UINTPTR_T], 1, - [Define to 1 if the system has the type `uintptr_t'.])], - [ - if test "$ac_cv_type_uintptr_t" != yes; then - AC_MSG_CHECKING(for type equivalent to uintptr_t) - case $ac_cv_sizeof_void_p in - 2) openafs_cv_type_uintptr_t=afs_uint16 ;; - 4) openafs_cv_type_uintptr_t=afs_uint32 ;; - 8) openafs_cv_type_uintptr_t=afs_uint64 ;; - *) AC_MSG_ERROR(no equivalent for uintptr_t);; - esac - AC_DEFINE_UNQUOTED([uintptr_t], [$openafs_cv_type_uintptr_t], - [Define to the type of a signed integer type wide enough to - hold a pointer, if such a type exists, and if the system - does not define it.]) - AC_MSG_RESULT($openafs_cv_type_uintptr_t) - fi - ]) -])