6285cf0f68
Major changes since 4.3: * Language: . The ' (ASCII apostrophe/right quote) character is finally allowed in node and anchor names. Thus, after installing this texinfo.tex, existing .aux files will cause errors! Remove them and rerun TeX to generate good ones. . @value constructs are now expanded in the filename arguments to @include and @verbatiminclude. * texinfo.tex: . @smallexample and the like now output in a smaller font (9pt) in all paper formats, not just @smallbook and @afourpaper. . new translation txi-tr.tex. * info: . CTRL-H is treated like DEL in incremental search. . arrow keys once again work in isearch contexts under Solaris. * infokey: . use .info key bindings before defaults. . allow prefix keys to be disabled. Bug fixes all around.
26 lines
1.0 KiB
Plaintext
26 lines
1.0 KiB
Plaintext
# ulonglong.m4 serial 3
|
|
dnl Copyright (C) 1999-2003 Free Software Foundation, Inc.
|
|
dnl This file is free software, distributed under the terms of the GNU
|
|
dnl General Public License. As a special exception to the GNU General
|
|
dnl Public License, this file may be distributed as part of a program
|
|
dnl that contains a configuration script generated by Autoconf, under
|
|
dnl the same distribution terms as the rest of that program.
|
|
|
|
dnl From Paul Eggert.
|
|
|
|
# Define HAVE_UNSIGNED_LONG_LONG if 'unsigned long long' works.
|
|
|
|
AC_DEFUN([jm_AC_TYPE_UNSIGNED_LONG_LONG],
|
|
[
|
|
AC_CACHE_CHECK([for unsigned long long], ac_cv_type_unsigned_long_long,
|
|
[AC_TRY_LINK([unsigned long long ull = 1ULL; int i = 63;],
|
|
[unsigned long long ullmax = (unsigned long long) -1;
|
|
return ull << i | ull >> i | ullmax / ull | ullmax % ull;],
|
|
ac_cv_type_unsigned_long_long=yes,
|
|
ac_cv_type_unsigned_long_long=no)])
|
|
if test $ac_cv_type_unsigned_long_long = yes; then
|
|
AC_DEFINE(HAVE_UNSIGNED_LONG_LONG, 1,
|
|
[Define if you have the 'unsigned long long' type.])
|
|
fi
|
|
])
|