~ubuntu-branches/ubuntu/precise/vorbis-tools/precise

« back to all changes in this revision

Viewing changes to m4/inttypes_h.m4

  • Committer: Bazaar Package Importer
  • Author(s): Clint Adams
  • Date: 2008-06-09 21:04:10 UTC
  • mfrom: (4.1.10 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080609210410-h0dkh8f8riyiiv4m
Tags: 1.2.0-5
* Bump to Standards-Version 3.8.0. 
* Refresh upstream_r14957-ogg123_stop_decode_on_closed_buffer.diff and
  upstream_r14982-ogg123_man_page_http_only.diff to -p ab.
  closes: #484961.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# inttypes_h.m4 serial 6
2
 
dnl Copyright (C) 1997-2004 Free Software Foundation, Inc.
 
1
# inttypes_h.m4 serial 7
 
2
dnl Copyright (C) 1997-2004, 2006 Free Software Foundation, Inc.
3
3
dnl This file is free software; the Free Software Foundation
4
4
dnl gives unlimited permission to copy and/or distribute it,
5
5
dnl with or without modifications, as long as this notice is preserved.
15
15
  [AC_TRY_COMPILE(
16
16
    [#include <sys/types.h>
17
17
#include <inttypes.h>],
18
 
    [uintmax_t i = (uintmax_t) -1;],
 
18
    [uintmax_t i = (uintmax_t) -1; return !i;],
19
19
    gl_cv_header_inttypes_h=yes,
20
20
    gl_cv_header_inttypes_h=no)])
21
21
  if test $gl_cv_header_inttypes_h = yes; then