From: Paul Eggert Date: Wed, 8 Nov 2006 21:41:27 +0000 (+0000) Subject: * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int X-Git-Tag: cvs-readonly~1590 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=54cbb20c1fa0549bae4f571d375d851c05924b85;p=gnulib.git * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int to 'yes' instead of 'cross-compiling'. --- diff --git a/ChangeLog b/ChangeLog index 9269f399e..1942cb373 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-11-08 Bruno Haible + + * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int + to 'yes' instead of 'cross-compiling'. + 2006-11-08 Paul Eggert * lib/quotearg.h (quotearg_free): New decl. diff --git a/m4/longlong.m4 b/m4/longlong.m4 index 48e70fcab..1f9e862ef 100644 --- a/m4/longlong.m4 +++ b/m4/longlong.m4 @@ -1,4 +1,4 @@ -# longlong.m4 serial 9 +# longlong.m4 serial 10 dnl Copyright (C) 1999-2006 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -52,9 +52,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