~ubuntu-dev/ubuntu/lucid/mutt/lucid-201002110857

« back to all changes in this revision

Viewing changes to m4/types.m4

  • Committer: Bazaar Package Importer
  • Author(s): Bhavani Shankar
  • Date: 2009-06-07 17:30:03 UTC
  • mto: (16.2.1 experimental) (2.3.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: james.westby@ubuntu.com-20090607173003-rg37ui3h2bbv7wl0
Tags: upstream-1.5.19
ImportĀ upstreamĀ versionĀ 1.5.19

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
[dnl
11
11
AC_CHECK_HEADERS([inttypes.h])
12
12
AC_CHECK_TYPE([uint32_t],
13
 
  [AC_DEFINE(HAVE_C99_INTTYPES, 1, [Define if you have the C99 integer types])],
14
 
  [AC_CHECK_SIZEOF(short)
15
 
   AC_CHECK_SIZEOF(int)
16
 
   AC_CHECK_SIZEOF(long)
17
 
   AC_CHECK_SIZEOF(long long)])
 
13
  [AC_DEFINE(HAVE_C99_INTTYPES, 1, [Define if you have the C99 integer types])])
 
14
AC_CHECK_SIZEOF(short)
 
15
AC_CHECK_SIZEOF(int)
 
16
AC_CHECK_SIZEOF(long)
 
17
AC_CHECK_SIZEOF(long long)])
18
18
AH_VERBATIM([X_HAVE_C99_INTTYPES],
19
19
  [#ifndef HAVE_C99_INTTYPES
20
20
#  if SIZEOF_SHORT == 4
33
33
#  endif
34
34
#endif
35
35
  ])
36
 
])