annotate m4/inttypes_h.m4 @ 4458:2df5e83c9bf4

Updated bunch of m4 macros from Debian testing.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 14 Apr 2008 11:46:17 +0300
parents cb178e5ad177
children 0b924771b26e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4458
2df5e83c9bf4 Updated bunch of m4 macros from Debian testing.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
1 # inttypes_h.m4 serial 7
2df5e83c9bf4 Updated bunch of m4 macros from Debian testing.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
2 dnl Copyright (C) 1997-2004, 2006 Free Software Foundation, Inc.
2df5e83c9bf4 Updated bunch of m4 macros from Debian testing.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
3 dnl This file is free software; the Free Software Foundation
2df5e83c9bf4 Updated bunch of m4 macros from Debian testing.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
4 dnl gives unlimited permission to copy and/or distribute it,
2df5e83c9bf4 Updated bunch of m4 macros from Debian testing.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
5 dnl with or without modifications, as long as this notice is preserved.
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
6
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
7 dnl From Paul Eggert.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
8
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
9 # Define HAVE_INTTYPES_H_WITH_UINTMAX if <inttypes.h> exists,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
10 # doesn't clash with <sys/types.h>, and declares uintmax_t.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
11
4458
2df5e83c9bf4 Updated bunch of m4 macros from Debian testing.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
12 AC_DEFUN([gl_AC_HEADER_INTTYPES_H],
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
13 [
4458
2df5e83c9bf4 Updated bunch of m4 macros from Debian testing.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
14 AC_CACHE_CHECK([for inttypes.h], gl_cv_header_inttypes_h,
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
15 [AC_TRY_COMPILE(
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
16 [#include <sys/types.h>
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
17 #include <inttypes.h>],
4458
2df5e83c9bf4 Updated bunch of m4 macros from Debian testing.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
18 [uintmax_t i = (uintmax_t) -1; return !i;],
2df5e83c9bf4 Updated bunch of m4 macros from Debian testing.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
19 gl_cv_header_inttypes_h=yes,
2df5e83c9bf4 Updated bunch of m4 macros from Debian testing.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
20 gl_cv_header_inttypes_h=no)])
2df5e83c9bf4 Updated bunch of m4 macros from Debian testing.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
21 if test $gl_cv_header_inttypes_h = yes; then
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
22 AC_DEFINE_UNQUOTED(HAVE_INTTYPES_H_WITH_UINTMAX, 1,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
23 [Define if <inttypes.h> exists, doesn't clash with <sys/types.h>,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
24 and declares uintmax_t. ])
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
25 fi
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
26 ])