1 dnl Process this file with autoconf to produce a configure script.
10 BFD_VERSION=`sed -n -e 's/^.._INIT_AUTOMAKE.*,[ ]*\([^ ]*\)[ ]*).*/\1/p' < ${srcdir}/../bfd/configure.in`
12 AM_INIT_AUTOMAKE(binutils, ${BFD_VERSION})
16 AC_ARG_ENABLE(targets,
17 [ --enable-targets alternative target configurations],
18 [case "${enableval}" in
19 yes | "") AC_ERROR(enable-targets option must specify target names or 'all')
21 no) enable_targets= ;;
22 *) enable_targets=$enableval ;;
24 AC_ARG_ENABLE(commonbfdlib,
25 [ --enable-commonbfdlib build shared BFD/opcodes/libiberty library],
26 [case "${enableval}" in
27 yes) commonbfdlib=true ;;
28 no) commonbfdlib=false ;;
29 *) AC_MSG_ERROR([bad value ${enableval} for BFD commonbfdlib option]) ;;
34 AM_CONFIG_HEADER(config.h:config.in)
36 if test -z "$target" ; then
37 AC_MSG_ERROR(Unrecognized target system type; please check config.sub.)
39 if test -z "$host" ; then
40 AC_MSG_ERROR(Unrecognized host system type; please check config.sub.)
49 ALL_LINGUAS="fr tr ja es sv da zh_CN ru ro rw zh_TW fi vi"
50 ZW_GNU_GETTEXT_SISTER_DIR
55 if test -n "$EXEEXT"; then
56 AC_DEFINE(HAVE_EXECUTABLE_SUFFIX, 1,
57 [Does the platform use an executable suffix?])
59 AC_DEFINE_UNQUOTED(EXECUTABLE_SUFFIX, "${EXEEXT}",
60 [Suffix used for executables, if any.])
62 # host-specific stuff:
66 . ${srcdir}/../bfd/configure.host
76 DEMANGLER_NAME=c++filt
78 *-*-go32* | *-*-msdos*)
79 DEMANGLER_NAME=cxxfilt
81 AC_SUBST(DEMANGLER_NAME)
83 AC_CHECK_HEADERS(string.h strings.h stdlib.h unistd.h fcntl.h sys/file.h)
86 AC_CHECK_FUNCS(sbrk utimes setmode getc_unlocked strcoll)
88 # Check whether fopen64 is available and whether _LARGEFILE64_SOURCE
89 # needs to be defined for it
90 AC_MSG_CHECKING([for fopen64])
91 AC_CACHE_VAL(bu_cv_have_fopen64,
92 [AC_TRY_LINK([#include <stdio.h>], [FILE *f = fopen64 ("/tmp/foo","r");],
93 bu_cv_have_fopen64=yes,
94 [saved_CPPFLAGS=$CPPFLAGS
95 CPPFLAGS="$CPPFLAGS -D_LARGEFILE64_SOURCE"
96 AC_TRY_LINK([#include <stdio.h>], [FILE *f = fopen64 ("/tmp/foo","r");],
97 bu_cv_have_fopen64="need -D_LARGEFILE64_SOURCE",
98 bu_cv_have_fopen64=no)
99 CPPFLAGS=$saved_CPPFLAGS])])
100 AC_MSG_RESULT($bu_cv_have_fopen64)
101 if test "$bu_cv_have_fopen64" != no; then
102 AC_DEFINE([HAVE_FOPEN64], 1,
103 [Is fopen64 available?])
105 AC_MSG_CHECKING([for stat64])
106 AC_CACHE_VAL(bu_cv_have_stat64,
107 [AC_TRY_LINK([#include <sys/stat.h>], [struct stat64 st; stat64 ("/tmp/foo", &st);],
108 bu_cv_have_stat64=yes,
109 [saved_CPPFLAGS=$CPPFLAGS
110 CPPFLAGS="$CPPFLAGS -D_LARGEFILE64_SOURCE"
111 AC_TRY_LINK([#include <sys/stat.h>], [struct stat64 st; stat64 ("/tmp/foo", &st);],
112 bu_cv_have_stat64="need -D_LARGEFILE64_SOURCE",
113 bu_cv_have_stat64=no)
114 CPPFLAGS=$saved_CPPFLAGS])])
115 AC_MSG_RESULT($bu_cv_have_stat64)
116 if test "$bu_cv_have_stat64" != no; then
117 AC_DEFINE([HAVE_STAT64], 1,
118 [Is stat64 available?])
120 if test "$bu_cv_have_fopen64" = "need -D_LARGEFILE64_SOURCE" \
121 || test "$bu_cv_have_stat64" = "need -D_LARGEFILE64_SOURCE"; then
122 AC_DEFINE([_LARGEFILE64_SOURCE], 1,
124 CPPFLAGS="$CPPFLAGS -D_LARGEFILE64_SOURCE"
127 # Some systems have frexp only in -lm, not in -lc.
128 AC_SEARCH_LIBS(frexp, m)
130 AC_MSG_CHECKING(for time_t in time.h)
131 AC_CACHE_VAL(bu_cv_decl_time_t_time_h,
132 [AC_TRY_COMPILE([#include <time.h>], [time_t i;],
133 bu_cv_decl_time_t_time_h=yes, bu_cv_decl_time_t_time_h=no)])
134 AC_MSG_RESULT($bu_cv_decl_time_t_time_h)
135 if test $bu_cv_decl_time_t_time_h = yes; then
136 AC_DEFINE([HAVE_TIME_T_IN_TIME_H], 1,
137 [Is the type time_t defined in <time.h>?])
140 AC_MSG_CHECKING(for time_t in sys/types.h)
141 AC_CACHE_VAL(bu_cv_decl_time_t_types_h,
142 [AC_TRY_COMPILE([#include <sys/types.h>], [time_t i;],
143 bu_cv_decl_time_t_types_h=yes, bu_cv_decl_time_t_types_h=no)])
144 AC_MSG_RESULT($bu_cv_decl_time_t_types_h)
145 if test $bu_cv_decl_time_t_types_h = yes; then
146 AC_DEFINE([HAVE_TIME_T_IN_TYPES_H], 1,
147 [Is the type time_t defined in <sys/types.h>?])
150 AC_MSG_CHECKING(for a known getopt prototype in unistd.h)
151 AC_CACHE_VAL(bu_cv_decl_getopt_unistd_h,
152 [AC_TRY_COMPILE([#include <unistd.h>], [extern int getopt (int, char *const*, const char *);],
153 bu_cv_decl_getopt_unistd_h=yes, bu_cv_decl_getopt_unistd_h=no)])
154 AC_MSG_RESULT($bu_cv_decl_getopt_unistd_h)
155 if test $bu_cv_decl_getopt_unistd_h = yes; then
156 AC_DEFINE([HAVE_DECL_GETOPT], 1,
157 [Is the prototype for getopt in <unistd.h> in the expected format?])
160 # Under Next 3.2 <utime.h> apparently does not define struct utimbuf
162 AC_MSG_CHECKING([for utime.h])
163 AC_CACHE_VAL(bu_cv_header_utime_h,
164 [AC_TRY_COMPILE([#include <sys/types.h>
170 bu_cv_header_utime_h=yes, bu_cv_header_utime_h=no)])
171 AC_MSG_RESULT($bu_cv_header_utime_h)
172 if test $bu_cv_header_utime_h = yes; then
173 AC_DEFINE(HAVE_GOOD_UTIME_H, 1, [Does <utime.h> define struct utimbuf?])
176 AC_CHECK_DECLS([fprintf, stpcpy, strstr, sbrk, getenv, environ, getc_unlocked,
177 snprintf, vsnprintf])
181 # target-specific stuff:
183 # Canonicalize the secondary target names.
184 if test -n "$enable_targets"; then
185 for targ in `echo $enable_targets | sed 's/,/ /g'`
187 result=`$ac_config_sub $targ 2>/dev/null`
188 if test -n "$result"; then
189 canon_targets="$canon_targets $result"
191 # Allow targets that config.sub doesn't recognize, like "all".
192 canon_targets="$canon_targets $targ"
208 for targ in $target $canon_targets
210 if test "x$targ" = "xall"; then
212 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
213 BUILD_SRCONV='$(SRCONV_PROG)'
214 NLMCONV_DEFS="-DNLMCONV_I386 -DNLMCONV_ALPHA -DNLMCONV_POWERPC -DNLMCONV_SPARC"
218 i[3-7]86*-*-netware*)
220 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
221 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_I386"
224 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
225 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_ALPHA"
228 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
229 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_POWERPC"
232 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
233 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_SPARC"
237 *-*-hms*) BUILD_SRCONV='$(SRCONV_PROG)' ;;
241 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
242 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM_EPOC -DDLLTOOL_ARM"
243 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
245 arm-wince-pe* | arm-*-wince)
246 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
247 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM_WINCE -DDLLTOOL_ARM"
248 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
251 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
252 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM"
253 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
256 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
257 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM"
258 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
261 i[3-7]86-*-pe* | i[3-7]86-*-cygwin* | i[3-7]86-*-mingw32** | i[3-7]86-*-netbsdpe*)
263 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
264 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_I386"
265 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
266 BUILD_DLLWRAP='$(DLLWRAP_PROG)$(EXEEXT)'
271 BUILD_DLLTOOL='$(DLLTOOL_PROG)'
272 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_I386"
279 OBJDUMP_DEFS="-DAIX_WEAK_SUPPORT"
281 powerpc*-*-pe* | powerpc*-*-cygwin*)
282 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
283 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_PPC"
284 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
287 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
288 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_SH"
289 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
292 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
293 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MIPS"
294 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
297 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
298 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MCORE"
299 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
302 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
303 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MCORE_ELF"
309 if test "${with_windres+set}" = set; then
310 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
313 AC_SUBST(NLMCONV_DEFS)
314 AC_SUBST(BUILD_NLMCONV)
315 AC_SUBST(BUILD_SRCONV)
316 AC_SUBST(BUILD_DLLTOOL)
317 AC_SUBST(DLLTOOL_DEFS)
318 AC_SUBST(BUILD_WINDRES)
319 AC_SUBST(BUILD_DLLWRAP)
321 AC_SUBST(OBJDUMP_DEFS)
323 AC_DEFINE_UNQUOTED(TARGET, "${target}", [Configured target name.])
326 . $srcdir/../bfd/config.bfd
327 if test "x$targ_underscore" = "xyes"; then
332 AC_DEFINE_UNQUOTED(TARGET_PREPENDS_UNDERSCORE, $UNDERSCORE,
333 [Define to 1 if user symbol names have a leading underscore, 0 if not.])
336 for targ_alias in `echo $target_alias $enable_targets | sed 's/,/ /g'`
338 # Canonicalize the secondary target names.
339 result=`$ac_config_sub $targ_alias 2>/dev/null`
340 if test -n "$result"; then
346 . ${srcdir}/configure.tgt
349 EMULATION_VECTOR=$targ_emul_vector
353 AC_SUBST(EMULATION_VECTOR)
355 # Required for html and install-html
356 AC_SUBST(datarootdir)
360 AC_OUTPUT(Makefile doc/Makefile po/Makefile.in:po/Make-in)