comparison m4/longlong.m4 @ 7628:8815c160826e

* m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int to 'yes' instead of 'cross-compiling'.
author Paul Eggert <eggert@cs.ucla.edu>
date Wed, 08 Nov 2006 21:41:27 +0000
parents 40449f2d490e
children 4e234ce80517
comparison
equal deleted inserted replaced
7627:9b212deb2601 7628:8815c160826e
1 # longlong.m4 serial 9 1 # longlong.m4 serial 10
2 dnl Copyright (C) 1999-2006 Free Software Foundation, Inc. 2 dnl Copyright (C) 1999-2006 Free Software Foundation, Inc.
3 dnl This file is free software; the Free Software Foundation 3 dnl This file is free software; the Free Software Foundation
4 dnl gives unlimited permission to copy and/or distribute it, 4 dnl gives unlimited permission to copy and/or distribute it,
5 dnl with or without modifications, as long as this notice is preserved. 5 dnl with or without modifications, as long as this notice is preserved.
6 6
50 break; 50 break;
51 } 51 }
52 return 0;]])], 52 return 0;]])],
53 [ac_cv_type_long_long_int=yes], 53 [ac_cv_type_long_long_int=yes],
54 [ac_cv_type_long_long_int=no], 54 [ac_cv_type_long_long_int=no],
55 [ac_cv_type_long_long_int=cross-compiling])], 55 [ac_cv_type_long_long_int=yes])],
56 [ac_cv_type_long_long_int=no])]) 56 [ac_cv_type_long_long_int=no])])
57 if test $ac_cv_type_long_long_int != no; then 57 if test $ac_cv_type_long_long_int = yes; then
58 AC_DEFINE([HAVE_LONG_LONG_INT], 1, 58 AC_DEFINE([HAVE_LONG_LONG_INT], 1,
59 [Define to 1 if the system has the type `long long int'.]) 59 [Define to 1 if the system has the type `long long int'.])
60 fi 60 fi
61 ]) 61 ])
62 62