diff options
author | Kelley Cook <kcook@gcc.gnu.org> | 2005-05-25 00:15:21 +0000 |
---|---|---|
committer | R. Kelley Cook <kcook@gcc.gnu.org> | 2005-05-25 00:15:21 +0000 |
commit | 5ec1c5e69b087573d424044a0fa5f25372e2be30 (patch) | |
tree | 097dc6e513006ad71416ba39d9435f9fad417aad /gcc/aclocal.m4 | |
parent | 150de50631a51582695f9646244dbfc3956025e2 (diff) | |
download | gcc-5ec1c5e69b087573d424044a0fa5f25372e2be30.zip gcc-5ec1c5e69b087573d424044a0fa5f25372e2be30.tar.gz gcc-5ec1c5e69b087573d424044a0fa5f25372e2be30.tar.bz2 |
configure.ac: Don't use gcc_AC_C_LONG_LONG.
2005-05-24 Kelley Cook <kcook@gcc.gnu.org>
* configure.ac: Don't use gcc_AC_C_LONG_LONG. Check for
existence of long long and __int64 before determining their size.
* aclocal.m4: Delete gcc_AC_C_LONG_LONG.
* configure, config.h.in: Regenerate.
From-SVN: r100131
Diffstat (limited to 'gcc/aclocal.m4')
-rw-r--r-- | gcc/aclocal.m4 | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/gcc/aclocal.m4 b/gcc/aclocal.m4 index 98c56a4..9e7da1f 100644 --- a/gcc/aclocal.m4 +++ b/gcc/aclocal.m4 @@ -408,29 +408,6 @@ else fi fi]) -dnl Checking for long long. -dnl By Caolan McNamara <caolan@skynet.ie> -dnl Added check for __int64, Zack Weinberg <zackw@stanford.edu> -dnl -AC_DEFUN([gcc_AC_C_LONG_LONG], -[AC_CACHE_CHECK(for long long int, ac_cv_c_long_long, - [AC_TRY_COMPILE(,[long long int i;], - ac_cv_c_long_long=yes, - ac_cv_c_long_long=no)]) - if test $ac_cv_c_long_long = yes; then - AC_DEFINE(HAVE_LONG_LONG, 1, - [Define if your compiler supports the \`long long' type.]) - fi -AC_CACHE_CHECK(for __int64, ac_cv_c___int64, - [AC_TRY_COMPILE(,[__int64 i;], - ac_cv_c___int64=yes, - ac_cv_c___int64=no)]) - if test $ac_cv_c___int64 = yes; then - AC_DEFINE(HAVE___INT64, 1, - [Define if your compiler supports the \`__int64' type.]) - fi -]) - dnl From Bruno Haible. AC_DEFUN([AM_LANGINFO_CODESET], |