configure.ac: Replace AC_COMPILE_CHECK_SIZEOF with AC_CHECK_SIZEOF.

2004-09-17  Jones Desougi  <jones@ingate.com>

	* configure.ac: Replace AC_COMPILE_CHECK_SIZEOF with AC_CHECK_SIZEOF.
	* configure, config.in: Regenerate.

From-SVN: r87686
This commit is contained in:
Jones Desougi 2004-09-18 00:50:15 +00:00 committed by Zack Weinberg
parent b85e3643cc
commit bf3b7cd307
4 changed files with 2423 additions and 360 deletions

View file

@ -1,3 +1,8 @@
2004-09-17 Jones Desougi <jones@ingate.com>
* configure.ac: Replace AC_COMPILE_CHECK_SIZEOF with AC_CHECK_SIZEOF.
* configure, config.in: Regenerate.
2004-09-17 Zack Weinberg <zack@codesourcery.com>
* tree.c, tree.h (tree_class_strings): Make array const.

View file

@ -543,22 +543,22 @@
/* Define to PREFIX/include if cpp should also search that directory. */
#undef PREFIX_INCLUDE_DIR
/* The number of bytes in type int */
/* The size of a `int', as computed by sizeof. */
#undef SIZEOF_INT
/* The number of bytes in type long */
/* The size of a `long', as computed by sizeof. */
#undef SIZEOF_LONG
/* The number of bytes in type long long */
/* The size of a `long long', as computed by sizeof. */
#undef SIZEOF_LONG_LONG
/* The number of bytes in type short */
/* The size of a `short', as computed by sizeof. */
#undef SIZEOF_SHORT
/* The number of bytes in type void * */
/* The size of a `void *', as computed by sizeof. */
#undef SIZEOF_VOID_P
/* The number of bytes in type __int64 */
/* The size of a `__int64', as computed by sizeof. */
#undef SIZEOF___INT64
/* Define to 1 if you have the ANSI C header files. */

2754
gcc/configure vendored

File diff suppressed because it is too large Load diff

View file

@ -289,15 +289,15 @@ AC_C_INLINE
gcc_AC_C_LONG_LONG
# sizeof(char) is 1 by definition.
AC_COMPILE_CHECK_SIZEOF(void *)
AC_COMPILE_CHECK_SIZEOF(short)
AC_COMPILE_CHECK_SIZEOF(int)
AC_COMPILE_CHECK_SIZEOF(long)
AC_CHECK_SIZEOF(void *)
AC_CHECK_SIZEOF(short)
AC_CHECK_SIZEOF(int)
AC_CHECK_SIZEOF(long)
if test $ac_cv_c_long_long = yes; then
AC_COMPILE_CHECK_SIZEOF(long long)
AC_CHECK_SIZEOF(long long)
fi
if test $ac_cv_c___int64 = yes; then
AC_COMPILE_CHECK_SIZEOF(__int64)
AC_CHECK_SIZEOF(__int64)
fi
# ---------------------