]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* lib/autoconf/types.m4 (AC_TYPE_LONG_LONG_INT): Set
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 8 Nov 2006 21:44:32 +0000 (21:44 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 8 Nov 2006 21:44:32 +0000 (21:44 +0000)
ac_cv_type_long_long_int to 'yes' instead of 'cross-compiling'.
Imported from a similar patch to gnulib by Bruno Haible.

2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>

ChangeLog
lib/autoconf/types.m4

index 8dcc0c49e522d94cbd0d99b99595be6a9a48b672..4b6eee3b10cda872c40025a232055da11e4c6c25 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * 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.
+
 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
 
        * NEWS: New macros AC_C_FLEXIBLE_ARRAY_MEMBER, AC_C_VARARRAYS.
index ab2f6b962041b423900ff98280d7c5418e367bc6..c3d5526ef16c408570e5da7aab3595c01a79be59 100644 (file)
@@ -505,9 +505,9 @@ AC_DEFUN([AC_TYPE_LONG_LONG_INT],
               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