~ubuntu-branches/ubuntu/hardy/gnupg2/hardy-proposed

« back to all changes in this revision

Viewing changes to m4/stdint_h.m4

  • Committer: Bazaar Package Importer
  • Author(s): Michael Bienia
  • Date: 2007-05-15 13:54:55 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20070515135455-89qfyalmgjy6gcqw
Tags: 2.0.4-1ubuntu1
* Merge from debian unstable, remaining changes:
  - Remove libpcsclite-dev, libopensc2-dev build dependencies (they are in
    universe).
  - Build-depend on libcurl3-gnutls-dev
  - g10/call-agent.c: set DBG_ASSUAN to 0 to suppress a debug message
  - Include /doc files as done with gnupg
  - debian/rules: add doc/com-certs.pem to the docs for gpgsm
  - debian/copyright: update download url
  - debian/README.Debian: remove note the gnupg2 isn't released yet.
  - debian/control: Change Maintainer/XSBC-Original-Maintainer field.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# stdint_h.m4 serial 5
2
 
dnl Copyright (C) 1997-2004 Free Software Foundation, Inc.
 
1
# stdint_h.m4 serial 6
 
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 <stdint.h>],
18
 
    [uintmax_t i = (uintmax_t) -1;],
 
18
    [uintmax_t i = (uintmax_t) -1; return !i;],
19
19
    gl_cv_header_stdint_h=yes,
20
20
    gl_cv_header_stdint_h=no)])
21
21
  if test $gl_cv_header_stdint_h = yes; then