This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] Eliminate gcc_AC_C_LONG_LONG


On Mon, 2005-05-23 at 22:28 -0400, Kelley Cook wrote:

> 	* 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.

OK after code slush is lifted, with one caveat:

> +AC_CHECK_TYPES(long long,AC_CHECK_SIZEOF(long long))
> +AC_CHECK_TYPES(__int64,AC_CHECK_SIZEOF(__int64))

Please write these with full quotation and a space after the
comma, e.g.

AC_CHECK_TYPES([long long], [AC_CHECK_SIZEOF([long long])])

This should have no substantive effect on the generated configure, but
it's more robust and easier to read.

zw



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]