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 MISSING=`cd $ac_aux_dir && ${PWDCMD-pwd}`/missing
21 AC_CHECK_PROGS([ACLOCAL], [aclocal], [$MISSING aclocal])
22 AC_CHECK_PROGS([AUTOCONF], [autoconf], [$MISSING autoconf])
23 AC_CHECK_PROGS([AUTOHEADER], [autoheader], [$MISSING autoheader])
25 # Figure out what compiler warnings we can enable.
26 # See config/warnings.m4 for details.
28 ACX_PROG_CC_WARNING_OPTS([-W -Wall -Wno-narrowing -Wwrite-strings \
29 -Wmissing-format-attribute], [warn])
30 ACX_PROG_CC_WARNING_OPTS([-Wstrict-prototypes -Wmissing-prototypes \
31 -Wold-style-definition -Wc++-compat], [c_warn])
32 ACX_PROG_CC_WARNING_ALMOST_PEDANTIC([-Wno-long-long])
34 # Disable exceptions and RTTI if building with g++
35 ACX_PROG_CC_WARNING_OPTS(
36 m4_quote(m4_do([-fno-exceptions -fno-rtti])), [noexception_flags])
38 # Only enable with --enable-werror-always until existing warnings are
40 ACX_PROG_CC_WARNINGS_ARE_ERRORS([manual])
42 # Dependency checking.
45 AC_COMPILE_IFELSE([[int i;]], [],
46 [AC_MSG_ERROR([C++ compiler missing or inoperational])])
48 ZW_PROG_COMPILER_DEPENDENCIES([CXX])
50 # Checks for header files.
54 AC_CHECK_HEADERS(locale.h fcntl.h limits.h stddef.h \
55 stdlib.h strings.h string.h sys/file.h unistd.h)
57 # Checks for typedefs, structures, and compiler characteristics.
66 AC_CHECK_TYPE(ptrdiff_t, int)
68 if test x"$ac_cv_c_uint64_t" = x"no"; then
69 AC_MSG_ERROR([uint64_t not found])
74 define(libcpp_UNLOCKED_FUNCS, clearerr_unlocked feof_unlocked dnl
75 ferror_unlocked fflush_unlocked fgetc_unlocked fgets_unlocked dnl
76 fileno_unlocked fprintf_unlocked fputc_unlocked fputs_unlocked dnl
77 fread_unlocked fwrite_unlocked getchar_unlocked getc_unlocked dnl
78 putchar_unlocked putc_unlocked)
79 AC_CHECK_FUNCS(libcpp_UNLOCKED_FUNCS)
80 AC_CHECK_DECLS([abort, asprintf, basename(char *), errno, getopt, vasprintf])
81 AC_CHECK_DECLS(m4_split(m4_normalize(libcpp_UNLOCKED_FUNCS)))
83 # Checks for library functions.
87 ZW_GNU_GETTEXT_SISTER_DIR
89 AC_CACHE_CHECK(for uchar, gcc_cv_type_uchar,
91 #include <sys/types.h>
93 [if ((uchar *)0) return 0;
94 if (sizeof(uchar)) return 0;],
95 ac_cv_type_uchar=yes, ac_cv_type_uchar=no)])
96 if test $ac_cv_type_uchar = yes; then
97 AC_DEFINE(HAVE_UCHAR, 1,
98 [Define if <sys/types.h> defines \`uchar'.])
101 # g++ on Solaris 10+ defines _XOPEN_SOURCE=600, which exposes a different
107 # More defines and substitutions.
108 PACKAGE="$PACKAGE_TARNAME"
109 AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Define to the name of this package.])
112 if test "x$enable_nls" != xno; then
113 USED_CATALOGS='$(CATALOGS)'
117 AC_SUBST(USED_CATALOGS)
119 AC_ARG_ENABLE(maintainer-mode,
120 [ --enable-maintainer-mode enable rules only needed by maintainers],,
121 enable_maintainer_mode=no)
123 if test "x$enable_maintainer_mode" = xno; then
130 # Enable expensive internal checks
132 if test -f $srcdir/../gcc/DEV-PHASE \
133 && test x"`cat $srcdir/../gcc/DEV-PHASE`" != xexperimental; then
137 AC_ARG_ENABLE(checking,
138 [AS_HELP_STRING([[--enable-checking[=LIST]]],
139 [enable expensive run-time checks. With LIST,
140 enable only specific categories of checks.
141 Categories are: yes,no,all,none,release.
142 Flags are: misc,valgrind or other strings])],
143 [ac_checking_flags="${enableval}"],[
144 # Determine the default checks.
145 if test x$is_release = x ; then
146 ac_checking_flags=yes
148 ac_checking_flags=release
150 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS="$IFS,"
151 for check in release $ac_checking_flags
154 # these set all the flags to specific states
155 yes|all) ac_checking=1 ; ac_valgrind_checking= ;;
156 no|none|release) ac_checking= ; ac_valgrind_checking= ;;
157 # these enable particular checks
158 misc) ac_checking=1 ;;
159 valgrind) ac_valgrind_checking=1 ;;
166 if test x$ac_checking != x ; then
167 AC_DEFINE(CHECKING_P, 1,
168 [Define to 1 if you want more run-time sanity checks.])
170 AC_DEFINE(CHECKING_P, 0)
173 if test x$ac_valgrind_checking != x ; then
174 AC_DEFINE(ENABLE_VALGRIND_CHECKING, 1,
175 [Define if you want to workaround valgrind (a memory checker) warnings about
176 possible memory leaks because of libcpp use of interior pointers.])
179 AC_ARG_ENABLE(canonical-system-headers,
180 [ --enable-canonical-system-headers
181 enable or disable system headers canonicalization],
183 enable_canonical_system_headers=yes)
184 if test $enable_canonical_system_headers != no; then
185 AC_DEFINE(ENABLE_CANONICAL_SYSTEM_HEADERS,
186 1, [Define to enable system headers canonicalization.])
191 AC_TRY_COMPILE([], [asm ("pcmpestri %0, %%xmm0, %%xmm1" : : "i"(0))],
192 [AC_DEFINE([HAVE_SSE4], [1],
193 [Define to 1 if you can assemble SSE4 insns.])])
196 # Enable --enable-host-shared.
197 AC_ARG_ENABLE(host-shared,
198 [AS_HELP_STRING([--enable-host-shared],
199 [build host code as shared libraries])],
200 [PICFLAG=-fPIC], [PICFLAG=])
205 AC_CONFIG_HEADERS(config.h:config.in, [echo timestamp > stamp-h1])
206 AC_CONFIG_FILES(Makefile)