2 # Process this file with autoconf to produce a configure script.
5 AC_INIT(cpplib, [ ], gcc-bugs@gcc.gnu.org, cpplib)
6 AC_CONFIG_SRCDIR(ucnid.h)
8 AM_INIT_AUTOMAKE(foreign)
11 # Checks for programs.
15 # Checks for header files.
18 AC_CHECK_HEADERS(iconv.h locale.h fcntl.h limits.h stddef.h \
19 stdlib.h strings.h string.h sys/file.h unistd.h)
21 # Checks for typedefs, structures, and compiler characteristics.
30 AC_CHECK_FUNCS(putc_unlocked fputc_unlocked fputs_unlocked \
31 fwrite_unlocked fprintf_unlocked)
32 AC_CHECK_DECLS([abort, errno, putc_unlocked, fputc_unlocked,
33 fputs_unlocked, fwrite_unlocked, fprintf_unlocked])
35 # Checks for library functions.
39 ZW_GNU_GETTEXT_SISTER_DIR
41 AC_CACHE_CHECK(for uchar, gcc_cv_type_uchar,
46 [if ((uchar *)0) return 0;
47 if (sizeof(uchar)) return 0;],
48 ac_cv_type_uchar=yes, ac_cv_type_uchar=no)])
49 if test $ac_cv_type_uchar = yes; then
50 AC_DEFINE(HAVE_UCHAR, 1,
51 [Define if <sys/types.h> defines \`uchar'.])
55 AM_CONDITIONAL(ENABLE_NLS, [test "x$enable_nls" != xno])
56 AC_ARG_ENABLE(checking,
57 [ --enable-checking enable expensive run-time checks],,
60 if test $enable_checking != no ; then
61 AC_DEFINE(ENABLE_CHECKING, 1,
62 [Define if you want more run-time sanity checks.])
70 hppa*64*-*-* | parisc*64*-*-* | \
76 sparc64*-*-* | ultrasparc-*-freebsd* | \
77 sparcv9-*-solaris2* | \
78 sparc-*-solaris2.[789] | sparc-*-solaris2.1[0-9] | \
80 need_64bit_hwint=yes ;;
82 need_64bit_hwint=no ;;
85 case $need_64bit_hwint:$ac_cv_sizeof_long in
86 *:8 | no:*) host_wide_int=long ;;
87 *) host_wide_int='long long' ;;
91 AC_DEFINE_UNQUOTED(HOST_WIDE_INT, $host_wide_int,
92 [Define to the widest efficient host integer type at least
93 as wide as the target's size_t type.])
95 AC_CONFIG_HEADERS(config.h:config.in)
96 AC_CONFIG_FILES(Makefile)