Commit bf3b7cd3 by Jones Desougi Committed by Zack Weinberg

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
parent b85e3643
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> 2004-09-17 Zack Weinberg <zack@codesourcery.com>
* tree.c, tree.h (tree_class_strings): Make array const. * tree.c, tree.h (tree_class_strings): Make array const.
......
...@@ -543,22 +543,22 @@ ...@@ -543,22 +543,22 @@
/* Define to PREFIX/include if cpp should also search that directory. */ /* Define to PREFIX/include if cpp should also search that directory. */
#undef PREFIX_INCLUDE_DIR #undef PREFIX_INCLUDE_DIR
/* The number of bytes in type int */ /* The size of a `int', as computed by sizeof. */
#undef SIZEOF_INT #undef SIZEOF_INT
/* The number of bytes in type long */ /* The size of a `long', as computed by sizeof. */
#undef SIZEOF_LONG #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 #undef SIZEOF_LONG_LONG
/* The number of bytes in type short */ /* The size of a `short', as computed by sizeof. */
#undef SIZEOF_SHORT #undef SIZEOF_SHORT
/* The number of bytes in type void * */ /* The size of a `void *', as computed by sizeof. */
#undef SIZEOF_VOID_P #undef SIZEOF_VOID_P
/* The number of bytes in type __int64 */ /* The size of a `__int64', as computed by sizeof. */
#undef SIZEOF___INT64 #undef SIZEOF___INT64
/* Define to 1 if you have the ANSI C header files. */ /* Define to 1 if you have the ANSI C header files. */
......
...@@ -289,15 +289,15 @@ AC_C_INLINE ...@@ -289,15 +289,15 @@ AC_C_INLINE
gcc_AC_C_LONG_LONG gcc_AC_C_LONG_LONG
# sizeof(char) is 1 by definition. # sizeof(char) is 1 by definition.
AC_COMPILE_CHECK_SIZEOF(void *) AC_CHECK_SIZEOF(void *)
AC_COMPILE_CHECK_SIZEOF(short) AC_CHECK_SIZEOF(short)
AC_COMPILE_CHECK_SIZEOF(int) AC_CHECK_SIZEOF(int)
AC_COMPILE_CHECK_SIZEOF(long) AC_CHECK_SIZEOF(long)
if test $ac_cv_c_long_long = yes; then if test $ac_cv_c_long_long = yes; then
AC_COMPILE_CHECK_SIZEOF(long long) AC_CHECK_SIZEOF(long long)
fi fi
if test $ac_cv_c___int64 = yes; then if test $ac_cv_c___int64 = yes; then
AC_COMPILE_CHECK_SIZEOF(__int64) AC_CHECK_SIZEOF(__int64)
fi fi
# --------------------- # ---------------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment