diff options
author | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-26 06:58:53 +0000 |
---|---|---|
committer | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-26 06:58:53 +0000 |
commit | 347a3ab588617cc9fc45d44ac48b8d8a21e7dd43 (patch) | |
tree | 60bcac4d916bf9e0f8e660de49b32932000fb4d1 /libcpp/configure.ac | |
parent | 3e29f5cd954208c0296bd922cf5aee1bb89276da (diff) | |
download | gcc-347a3ab588617cc9fc45d44ac48b8d8a21e7dd43.tar.gz |
2004-05-26 Paolo Bonzini <bonzini@gnu.org>
PR bootstrap/15651
* configure.ac: Fix m4 quoting when picking
the size of HOST_WIDE_INT.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@82279 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libcpp/configure.ac')
-rw-r--r-- | libcpp/configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libcpp/configure.ac b/libcpp/configure.ac index 79c0e417337..d160899ddda 100644 --- a/libcpp/configure.ac +++ b/libcpp/configure.ac @@ -63,6 +63,7 @@ if test $enable_checking != no ; then [Define if you want more run-time sanity checks.]) fi +m4_changequote(,) case $target in alpha*-*-* | \ x86_64-*-* | \ @@ -86,6 +87,7 @@ case $need_64bit_hwint:$ac_cv_sizeof_long in *:8 | no:*) host_wide_int=long ;; *) host_wide_int='long long' ;; esac +m4_changequote([,]) AC_DEFINE_UNQUOTED(HOST_WIDE_INT, $host_wide_int, [Define to the widest efficient host integer type at least |