Bruno Haible <[EMAIL PROTECTED]> writes:

> 2006-11-08  Bruno Haible  <[EMAIL PROTECTED]>
>
>       * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
>       to 'yes' instead of 'cross-compiling'.

Thanks, I installed that.  I also installed the following
into Autoconf, to match:

2006-11-08  Paul Eggert  <[EMAIL PROTECTED]>

        * lib/autoconf/types.m4 (AC_TYPE_LONG_LONG_INT): Set
        ac_cv_type_long_long_int to 'yes' instead of 'cross-compiling'.
        Imported from a similar patch to gnulib by Bruno Haible.

--- lib/autoconf/types.m4       8 Nov 2006 06:25:34 -0000       1.48
+++ lib/autoconf/types.m4       8 Nov 2006 21:44:17 -0000
@@ -505,9 +505,9 @@
               return 0;]])],
          [ac_cv_type_long_long_int=yes],
          [ac_cv_type_long_long_int=no],
-         [ac_cv_type_long_long_int=cross-compiling])],
+         [ac_cv_type_long_long_int=yes])],
        [ac_cv_type_long_long_int=no])])
-  if test $ac_cv_type_long_long_int != no; then
+  if test $ac_cv_type_long_long_int = yes; then
     AC_DEFINE([HAVE_LONG_LONG_INT], 1,
       [Define to 1 if the system has the type `long long int'.])
   fi



Reply via email to