Mercurial > hg > octave-kai > gnulib-hg
view m4/stdint.m4 @ 5383:15aea99e0b17
* jm-macros.m4: Sync from coreutils.
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Tue, 02 Nov 2004 19:20:58 +0000 |
parents | fcff9e1a6e22 |
children | 87c42e194f4a |
line wrap: on
line source
# stdint.m4 serial 2 dnl Copyright (C) 2001-2002, 2004 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 Bruno Haible. dnl Test whether <stdint.h> is supported or must be substituted. AC_DEFUN([gl_STDINT_H], [dnl Check for <inttypes.h>. AC_REQUIRE([gt_HEADER_INTTYPES_H]) dnl Check for <sys/inttypes.h>. AC_CHECK_HEADERS([sys/inttypes.h]) AC_MSG_CHECKING([for stdint.h]) AC_CACHE_VAL(gl_cv_header_stdint_h, [ AC_TRY_COMPILE([#include <stdint.h>], [], gl_cv_header_stdint_h=yes, gl_cv_header_stdint_h=no)]) AC_MSG_RESULT([$gl_cv_header_stdint_h]) if test $gl_cv_header_stdint_h = yes; then AC_DEFINE(HAVE_STDINT_H, 1, [Define if you have a working <stdint.h> header file.]) STDINT_H='' else STDINT_H='stdint.h' dnl Is long == int64_t ? AC_CACHE_CHECK([whether 'long' is 64 bit wide], gl_cv_long_bitsize_64, [ AC_TRY_COMPILE([ #define POW63 ((((((long) 1 << 15) << 15) << 15) << 15) << 3) #define POW64 ((((((long) 1 << 15) << 15) << 15) << 15) << 4) typedef int array [2 * (POW63 != 0 && POW64 == 0) - 1]; ], , gl_cv_long_bitsize_64=yes, gl_cv_long_bitsize_64=no)]) if test $gl_cv_long_bitsize_64 = yes; then HAVE_LONG_64BIT=1 else HAVE_LONG_64BIT=0 fi AC_SUBST(HAVE_LONG_64BIT) dnl Is long long == int64_t ? AC_CACHE_CHECK([whether 'long long' is 64 bit wide], gl_cv_longlong_bitsize_64, [ AC_TRY_COMPILE([ #define POW63 ((((((long long) 1 << 15) << 15) << 15) << 15) << 3) #define POW64 ((((((long long) 1 << 15) << 15) << 15) << 15) << 4) typedef int array [2 * (POW63 != 0 && POW64 == 0) - 1]; ], , gl_cv_longlong_bitsize_64=yes, gl_cv_longlong_bitsize_64=no)]) if test $gl_cv_longlong_bitsize_64 = yes; then HAVE_LONGLONG_64BIT=1 else HAVE_LONGLONG_64BIT=0 fi AC_SUBST(HAVE_LONGLONG_64BIT) fi AC_SUBST(STDINT_H) ])