| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 | dnl Autoconf macros for libestreamdnl       Copyright (C) 2007 g10 Code GmbHdnldnl This file is free software; as a special exception the author givesdnl unlimited permission to copy and/or distribute it, with or withoutdnl modifications, as long as this notice is preserved.dnldnl This file is distributed in the hope that it will be useful, butdnl WITHOUT ANY WARRANTY, to the extent permitted by law; without even thednl implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.dnl estream_PRINTF_INITdnl Prepare build of source included estream-printf.cdnlAC_DEFUN([estream_PRINTF_INIT],[   AC_MSG_NOTICE([checking system features for estream-printf])  AC_TYPE_LONG_LONG_INT    AC_TYPE_LONG_DOUBLE    AC_TYPE_INTMAX_T  AC_TYPE_UINTMAX_T  AC_CHECK_TYPES([ptrdiff_t])  AC_CHECK_SIZEOF([unsigned long])  AC_CHECK_SIZEOF([void *])  AC_CACHE_CHECK([for nl_langinfo and THOUSANDS_SEP],                  estream_cv_langinfo_thousands_sep,      [AC_TRY_LINK([#include <langinfo.h>],        [char* cs = nl_langinfo(THOUSANDS_SEP); return !cs;],        estream_cv_langinfo_thousands_sep=yes,        estream_cv_langinfo_thousands_sep=no)      ])  if test $estream_cv_langinfo_thousands_sep = yes; then    AC_DEFINE(HAVE_LANGINFO_THOUSANDS_SEP, 1,      [Define if you have <langinfo.h> and nl_langinfo(THOUSANDS_SEP).])  fi])dnl estream_INITdnl Prepare build of source included estream.cdnlAC_DEFUN([estream_INIT],[   AC_REQUIRE([estream_PRINTF_INIT])  AC_MSG_NOTICE([checking system features for estream])])
 |