summaryrefslogtreecommitdiff
path: root/gcc/aclocal.m4
diff options
context:
space:
mode:
authorkcook <kcook@138bc75d-0d04-0410-961f-82ee72b054a4>2005-05-25 00:15:21 +0000
committerkcook <kcook@138bc75d-0d04-0410-961f-82ee72b054a4>2005-05-25 00:15:21 +0000
commitcd29f3a4d1b4bf60c34c32a7f7644da7bb59c3dd (patch)
tree097dc6e513006ad71416ba39d9435f9fad417aad /gcc/aclocal.m4
parent1b5948cbb01d9304d98e8abe4fac76b0eeeaa90e (diff)
downloadgcc-cd29f3a4d1b4bf60c34c32a7f7644da7bb59c3dd.tar.gz
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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@100131 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/aclocal.m4')
-rw-r--r--gcc/aclocal.m423
1 files changed, 0 insertions, 23 deletions
diff --git a/gcc/aclocal.m4 b/gcc/aclocal.m4
index 98c56a47af0..9e7da1f233d 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],