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)
7 AC_CONFIG_MACRO_DIR(../config)
10 # Checks for programs.
17 AC_USE_SYSTEM_EXTENSIONS
20 # See if we are building gcc with C++.
21 # Do this early so setting lang to C++ affects following tests
22 AC_ARG_ENABLE(build-with-cxx,
23 [ --enable-build-with-cxx build with C++ compiler instead of C compiler],
24 ENABLE_BUILD_WITH_CXX=$enableval,
25 ENABLE_BUILD_WITH_CXX=no)
26 AC_SUBST(ENABLE_BUILD_WITH_CXX)
28 MISSING=`cd $ac_aux_dir && ${PWDCMD-pwd}`/missing
29 AC_CHECK_PROGS([ACLOCAL], [aclocal], [$MISSING aclocal])
30 AC_CHECK_PROGS([AUTOCONF], [autoconf], [$MISSING autoconf])
31 AC_CHECK_PROGS([AUTOHEADER], [autoheader], [$MISSING autoheader])
33 # Figure out what compiler warnings we can enable.
34 # See config/warnings.m4 for details.
36 ACX_PROG_CC_WARNING_OPTS([-W -Wall -Wno-narrowing -Wwrite-strings \
37 -Wmissing-format-attribute], [warn])
38 ACX_PROG_CC_WARNING_OPTS([-Wstrict-prototypes -Wmissing-prototypes \
39 -Wold-style-definition -Wc++-compat], [c_warn])
40 ACX_PROG_CC_WARNING_ALMOST_PEDANTIC([-Wno-long-long])
42 # Disable exceptions and RTTI if building with g++
43 ACX_PROG_CC_WARNING_OPTS(
44 m4_quote(m4_do([-fno-exceptions -fno-rtti])), [noexception_flags])
46 # Only enable with --enable-werror-always until existing warnings are
48 ACX_PROG_CC_WARNINGS_ARE_ERRORS([manual])
50 # Dependency checking.
52 if test "$ENABLE_BUILD_WITH_CXX" = "no"; then
53 ZW_PROG_COMPILER_DEPENDENCIES([CC])
56 AC_COMPILE_IFELSE([[int i;]], [],
57 [AC_MSG_ERROR([C++ compiler missing or inoperational])])
59 ZW_PROG_COMPILER_DEPENDENCIES([CXX])
62 # Checks for header files.
66 AC_CHECK_HEADERS(locale.h fcntl.h limits.h stddef.h \
67 stdlib.h strings.h string.h sys/file.h unistd.h)
69 # Checks for typedefs, structures, and compiler characteristics.
78 AC_CHECK_TYPE(ptrdiff_t, int)
82 define(libcpp_UNLOCKED_FUNCS, clearerr_unlocked feof_unlocked dnl
83 ferror_unlocked fflush_unlocked fgetc_unlocked fgets_unlocked dnl
84 fileno_unlocked fprintf_unlocked fputc_unlocked fputs_unlocked dnl
85 fread_unlocked fwrite_unlocked getchar_unlocked getc_unlocked dnl
86 putchar_unlocked putc_unlocked)
87 AC_CHECK_FUNCS(libcpp_UNLOCKED_FUNCS)
88 AC_CHECK_DECLS([abort, asprintf, basename(char *), errno, getopt, vasprintf])
89 AC_CHECK_DECLS(m4_split(m4_normalize(libcpp_UNLOCKED_FUNCS)))
91 # Checks for library functions.
95 ZW_GNU_GETTEXT_SISTER_DIR
97 AC_CACHE_CHECK(for uchar, gcc_cv_type_uchar,
99 #include <sys/types.h>
101 [if ((uchar *)0) return 0;
102 if (sizeof(uchar)) return 0;],
103 ac_cv_type_uchar=yes, ac_cv_type_uchar=no)])
104 if test $ac_cv_type_uchar = yes; then
105 AC_DEFINE(HAVE_UCHAR, 1,
106 [Define if <sys/types.h> defines \`uchar'.])
109 # g++ on Solaris 10+ defines _XOPEN_SOURCE=600, which exposes a different
111 AS_IF([test "$ENABLE_BUILD_WITH_CXX" = "yes"],
117 # More defines and substitutions.
118 PACKAGE="$PACKAGE_TARNAME"
119 AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Define to the name of this package.])
122 if test "x$enable_nls" != xno; then
123 USED_CATALOGS='$(CATALOGS)'
127 AC_SUBST(USED_CATALOGS)
129 AC_ARG_ENABLE(maintainer-mode,
130 [ --enable-maintainer-mode enable rules only needed by maintainers],,
131 enable_maintainer_mode=no)
133 if test "x$enable_maintainer_mode" = xno; then
140 AC_ARG_ENABLE(checking,
141 [ --enable-checking enable expensive run-time checks],,
144 if test $enable_checking != no ; then
145 AC_DEFINE(ENABLE_CHECKING, 1,
146 [Define if you want more run-time sanity checks.])
153 arm*-*-symbianelf* | \
157 i[34567]86-*-* | x86_64-*-solaris2.1[0-9]* | \
165 sh[123456789lbe]*-*-* | sh-*-* | \
166 tilegx-*-* | tilepro-*-* )
167 need_64bit_hwint=yes ;;
169 need_64bit_hwint=no ;;
172 case $need_64bit_hwint:$ac_cv_sizeof_long in
173 *:8 | no:*) host_wide_int=long ;;
174 *) host_wide_int='long long' ;;
178 AC_DEFINE_UNQUOTED(HOST_WIDE_INT, $host_wide_int,
179 [Define to the widest efficient host integer type at least
180 as wide as the target's size_t type.])
184 AC_TRY_COMPILE([], [asm ("pcmpestri %0, %%xmm0, %%xmm1" : : "i"(0))],
185 [AC_DEFINE([HAVE_SSE4], [1],
186 [Define to 1 if you can assemble SSE4 insns.])])
191 AC_CONFIG_HEADERS(config.h:config.in, [echo timestamp > stamp-h1])
192 AC_CONFIG_FILES(Makefile)