diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2003-04-14 14:29:14 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2003-04-14 14:29:14 +0000 |
commit | 39e8d0498699af9387699c188b6e276c1fd8f96c (patch) | |
tree | 5ea9ed295b8d68e4c3c5f7d8fd578aa9d0d1a2f8 /libiberty/configure.in | |
parent | 58e6ae30c7b07a9355b99febae5ae970c94723dd (diff) | |
download | gcc-39e8d0498699af9387699c188b6e276c1fd8f96c.zip gcc-39e8d0498699af9387699c188b6e276c1fd8f96c.tar.gz gcc-39e8d0498699af9387699c188b6e276c1fd8f96c.tar.bz2 |
configure.in (HAVE_UINTPTR_T): Always define.
* configure.in (HAVE_UINTPTR_T): Always define.
* configure: Regenerated.
From-SVN: r65574
Diffstat (limited to 'libiberty/configure.in')
-rw-r--r-- | libiberty/configure.in | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/libiberty/configure.in b/libiberty/configure.in index 5b38660..767d9dd 100644 --- a/libiberty/configure.in +++ b/libiberty/configure.in @@ -149,11 +149,10 @@ AC_HEADER_TIME libiberty_AC_DECLARE_ERRNO AC_CHECK_TYPE(uintptr_t, unsigned long) - -if test $ac_cv_type_uintptr_t = yes -then - AC_DEFINE(HAVE_UINTPTR_T, 1, [Define if you have the \`uintptr_t' type.]) -fi +# Given the above check, we always have uintptr_t or a fallback +# definition. So define HAVE_UINTPTR_T in case any imported code +# relies on it. +AC_DEFINE(HAVE_UINTPTR_T, 1, [Define if you have the \`uintptr_t' type.]) AC_TYPE_PID_T |