inttypes-pri.m4 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. # inttypes-pri.m4 serial 1 (gettext-0.11.4)
  2. dnl Copyright (C) 1997-2002 Free Software Foundation, Inc.
  3. dnl This file is free software, distributed under the terms of the GNU
  4. dnl General Public License. As a special exception to the GNU General
  5. dnl Public License, this file may be distributed as part of a program
  6. dnl that contains a configuration script generated by Autoconf, under
  7. dnl the same distribution terms as the rest of that program.
  8. dnl From Bruno Haible.
  9. # Define PRI_MACROS_BROKEN if <inttypes.h> exists and defines the PRI*
  10. # macros to non-string values. This is the case on AIX 4.3.3.
  11. AC_DEFUN([gt_INTTYPES_PRI],
  12. [
  13. AC_REQUIRE([gt_HEADER_INTTYPES_H])
  14. if test $gt_cv_header_inttypes_h = yes; then
  15. AC_CACHE_CHECK([whether the inttypes.h PRIxNN macros are broken],
  16. gt_cv_inttypes_pri_broken,
  17. [
  18. AC_TRY_COMPILE([#include <inttypes.h>
  19. #ifdef PRId32
  20. char *p = PRId32;
  21. #endif
  22. ], [], gt_cv_inttypes_pri_broken=no, gt_cv_inttypes_pri_broken=yes)
  23. ])
  24. fi
  25. if test "$gt_cv_inttypes_pri_broken" = yes; then
  26. AC_DEFINE_UNQUOTED(PRI_MACROS_BROKEN, 1,
  27. [Define if <inttypes.h> exists and defines unusable PRI* macros.])
  28. fi
  29. ])