Configury changes: update src repository (binutils, gdb, and rda) to use
[deliverable/binutils-gdb.git] / binutils / configure.in
CommitLineData
252b5132
RH
1dnl Process this file with autoconf to produce a configure script.
2dnl
42ecbf5e 3AC_PREREQ(2.57)
252b5132
RH
4AC_INIT(ar.c)
5
6AC_CANONICAL_SYSTEM
5d64ca4e 7AC_ISC_POSIX
252b5132 8
27b7e12d
AM
9changequote(,)dnl
10BFD_VERSION=`sed -n -e 's/^.._INIT_AUTOMAKE.*,[ ]*\([^ ]*\)[ ]*).*/\1/p' < ${srcdir}/../bfd/configure.in`
11changequote([,])dnl
12AM_INIT_AUTOMAKE(binutils, ${BFD_VERSION})
252b5132
RH
13
14AM_PROG_LIBTOOL
15
16AC_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')
20 ;;
21 no) enable_targets= ;;
22 *) enable_targets=$enableval ;;
23esac])dnl
24AC_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]) ;;
30esac])dnl
31
398ee8f1 32AM_BINUTILS_WARNINGS
9e9b66a9 33
252b5132
RH
34AM_CONFIG_HEADER(config.h:config.in)
35
36if test -z "$target" ; then
37 AC_MSG_ERROR(Unrecognized target system type; please check config.sub.)
38fi
39if test -z "$host" ; then
40 AC_MSG_ERROR(Unrecognized host system type; please check config.sub.)
41fi
42
43AC_PROG_CC
3e321448 44AC_GNU_SOURCE
252b5132
RH
45
46AC_PROG_YACC
47AM_PROG_LEX
48
bdcfeba5 49ALL_LINGUAS="fr tr ja es sv da zh_CN ru ro rw zh_TW fi vi"
20e95c23
DJ
50ZW_GNU_GETTEXT_SISTER_DIR
51AM_PO_SUBDIRS
252b5132
RH
52
53AM_MAINTAINER_MODE
54AC_EXEEXT
2481e6a2
ILT
55if test -n "$EXEEXT"; then
56 AC_DEFINE(HAVE_EXECUTABLE_SUFFIX, 1,
57 [Does the platform use an executable suffix?])
58fi
bb0cb4db
ILT
59AC_DEFINE_UNQUOTED(EXECUTABLE_SUFFIX, "${EXEEXT}",
60 [Suffix used for executables, if any.])
252b5132
RH
61
62# host-specific stuff:
63
64HDEFINES=
65
66. ${srcdir}/../bfd/configure.host
67
68AC_SUBST(HDEFINES)
69AR=${AR-ar}
70AC_SUBST(AR)
71AC_PROG_RANLIB
72AC_PROG_INSTALL
73
74BFD_CC_FOR_BUILD
75
8a965946
ILT
76DEMANGLER_NAME=c++filt
77case "${host}" in
78 *-*-go32* | *-*-msdos*)
79 DEMANGLER_NAME=cxxfilt
80esac
81AC_SUBST(DEMANGLER_NAME)
82
252b5132
RH
83AC_CHECK_HEADERS(string.h strings.h stdlib.h unistd.h fcntl.h sys/file.h)
84AC_HEADER_SYS_WAIT
85AC_FUNC_ALLOCA
9710509e 86AC_CHECK_FUNCS(sbrk utimes setmode getc_unlocked strcoll)
cedd9a58
JJ
87
88# Check whether fopen64 is available and whether _LARGEFILE64_SOURCE
89# needs to be defined for it
90AC_MSG_CHECKING([for fopen64])
91AC_CACHE_VAL(bu_cv_have_fopen64,
92[AC_TRY_LINK([#include <stdio.h>], [FILE *f = fopen64 ("/tmp/foo","r");],
93bu_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");],
97bu_cv_have_fopen64="need -D_LARGEFILE64_SOURCE",
98bu_cv_have_fopen64=no)
99 CPPFLAGS=$saved_CPPFLAGS])])
100AC_MSG_RESULT($bu_cv_have_fopen64)
6db7a086 101if test "$bu_cv_have_fopen64" != no; then
cedd9a58
JJ
102 AC_DEFINE([HAVE_FOPEN64], 1,
103 [Is fopen64 available?])
fb5b5478
JJ
104fi
105AC_MSG_CHECKING([for stat64])
106AC_CACHE_VAL(bu_cv_have_stat64,
107[AC_TRY_LINK([#include <sys/stat.h>], [struct stat64 st; stat64 ("/tmp/foo", &st);],
108bu_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);],
112bu_cv_have_stat64="need -D_LARGEFILE64_SOURCE",
113bu_cv_have_stat64=no)
114 CPPFLAGS=$saved_CPPFLAGS])])
115AC_MSG_RESULT($bu_cv_have_stat64)
116if test "$bu_cv_have_stat64" != no; then
117 AC_DEFINE([HAVE_STAT64], 1,
118 [Is stat64 available?])
119fi
120if 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,
123 [Enable LFS])
124 CPPFLAGS="$CPPFLAGS -D_LARGEFILE64_SOURCE"
cedd9a58 125fi
252b5132 126
f353eb8a 127# Some systems have frexp only in -lm, not in -lc.
07735828 128AC_SEARCH_LIBS(frexp, m)
f353eb8a 129
252b5132
RH
130AC_MSG_CHECKING(for time_t in time.h)
131AC_CACHE_VAL(bu_cv_decl_time_t_time_h,
132[AC_TRY_COMPILE([#include <time.h>], [time_t i;],
133bu_cv_decl_time_t_time_h=yes, bu_cv_decl_time_t_time_h=no)])
134AC_MSG_RESULT($bu_cv_decl_time_t_time_h)
135if 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>?])
138fi
139
140AC_MSG_CHECKING(for time_t in sys/types.h)
141AC_CACHE_VAL(bu_cv_decl_time_t_types_h,
142[AC_TRY_COMPILE([#include <sys/types.h>], [time_t i;],
143bu_cv_decl_time_t_types_h=yes, bu_cv_decl_time_t_types_h=no)])
144AC_MSG_RESULT($bu_cv_decl_time_t_types_h)
145if 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>?])
148fi
149
e46eba98
NC
150AC_MSG_CHECKING(for a known getopt prototype in unistd.h)
151AC_CACHE_VAL(bu_cv_decl_getopt_unistd_h,
152[AC_TRY_COMPILE([#include <unistd.h>], [extern int getopt (int, char *const*, const char *);],
153bu_cv_decl_getopt_unistd_h=yes, bu_cv_decl_getopt_unistd_h=no)])
154AC_MSG_RESULT($bu_cv_decl_getopt_unistd_h)
155if 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?])
158fi
159
252b5132
RH
160# Under Next 3.2 <utime.h> apparently does not define struct utimbuf
161# by default.
162AC_MSG_CHECKING([for utime.h])
163AC_CACHE_VAL(bu_cv_header_utime_h,
164[AC_TRY_COMPILE([#include <sys/types.h>
165#ifdef HAVE_TIME_H
166#include <time.h>
167#endif
168#include <utime.h>],
169[struct utimbuf s;],
170bu_cv_header_utime_h=yes, bu_cv_header_utime_h=no)])
171AC_MSG_RESULT($bu_cv_header_utime_h)
172if test $bu_cv_header_utime_h = yes; then
173 AC_DEFINE(HAVE_GOOD_UTIME_H, 1, [Does <utime.h> define struct utimbuf?])
174fi
175
db50c840
EB
176AC_CHECK_DECLS([fprintf, stpcpy, strstr, sbrk, getenv, environ, getc_unlocked,
177 snprintf, vsnprintf])
252b5132
RH
178
179BFD_BINARY_FOPEN
180
181# target-specific stuff:
182
183# Canonicalize the secondary target names.
184if test -n "$enable_targets"; then
185 for targ in `echo $enable_targets | sed 's/,/ /g'`
186 do
6d83c84b 187 result=`$ac_config_sub $targ 2>/dev/null`
252b5132
RH
188 if test -n "$result"; then
189 canon_targets="$canon_targets $result"
190 else
191 # Allow targets that config.sub doesn't recognize, like "all".
192 canon_targets="$canon_targets $targ"
193 fi
194 done
195fi
196
197all_targets=false
198BUILD_NLMCONV=
199NLMCONV_DEFS=
200BUILD_SRCONV=
201BUILD_DLLTOOL=
202DLLTOOL_DEFS=
203BUILD_WINDRES=
204BUILD_DLLWRAP=
205BUILD_MISC=
8b1e6df3 206OBJDUMP_DEFS=
252b5132
RH
207
208for targ in $target $canon_targets
209do
210 if test "x$targ" = "xall"; then
211 all_targets=true
212 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
213 BUILD_SRCONV='$(SRCONV_PROG)'
214 NLMCONV_DEFS="-DNLMCONV_I386 -DNLMCONV_ALPHA -DNLMCONV_POWERPC -DNLMCONV_SPARC"
215 else
216 case $targ in
217changequote(,)dnl
80c7c40a 218 i[3-7]86*-*-netware*)
252b5132
RH
219changequote([,])dnl
220 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
221 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_I386"
222 ;;
223 alpha*-*-netware*)
224 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
225 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_ALPHA"
226 ;;
227 powerpc*-*-netware*)
228 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
229 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_POWERPC"
230 ;;
231 sparc*-*-netware*)
232 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
233 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_SPARC"
234 ;;
235 esac
236 case $targ in
237 *-*-hms*) BUILD_SRCONV='$(SRCONV_PROG)' ;;
238 esac
239 case $targ in
a8c548cb
NC
240 arm-epoc-pe*)
241 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
242 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM_EPOC -DDLLTOOL_ARM"
243 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
244 ;;
27a710e5 245 arm-*-pe* | arm-*-wince)
252b5132
RH
246 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
247 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM"
248 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
7a7b06ef 249 ;;
27a710e5 250 thumb-*-pe*)
252b5132
RH
251 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
252 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM"
253 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
7a7b06ef 254 ;;
252b5132 255changequote(,)dnl
80c7c40a 256 i[3-7]86-*-pe* | i[3-7]86-*-cygwin* | i[3-7]86-*-mingw32** | i[3-7]86-*-netbsdpe*)
252b5132
RH
257changequote([,])dnl
258 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
259 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_I386"
260 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
261 BUILD_DLLWRAP='$(DLLWRAP_PROG)$(EXEEXT)'
7a7b06ef 262 ;;
80c7c40a
NC
263changequote(,)dnl
264 i[3-7]86-*-interix)
265changequote([,])dnl
7a7b06ef
ILT
266 BUILD_DLLTOOL='$(DLLTOOL_PROG)'
267 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_I386"
268 ;;
f0660b73
NC
269changequote(,)dnl
270 powerpc*-aix5.[01])
271changequote([,])dnl
272 ;;
273 powerpc*-aix5.*)
274 OBJDUMP_DEFS="-DAIX_WEAK_SUPPORT"
275 ;;
e1d5b1e7 276 powerpc*-*-pe* | powerpc*-*-cygwin*)
252b5132
RH
277 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
278 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_PPC"
279 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
7a7b06ef 280 ;;
e1d5b1e7 281 sh*-*-pe)
8a0e0f38
NC
282 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
283 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_SH"
284 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
285 ;;
e1d5b1e7 286 mips*-*-pe)
8a0e0f38
NC
287 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
288 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MIPS"
289 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
290 ;;
27a710e5 291 mcore-*-pe)
661016bb
NC
292 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
293 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MCORE"
294 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
7a7b06ef 295 ;;
27a710e5 296 mcore-*-elf)
661016bb
NC
297 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
298 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MCORE_ELF"
7a7b06ef 299 ;;
252b5132
RH
300 esac
301 fi
302done
303
c918cb96
DD
304if test "${with_windres+set}" = set; then
305 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
306fi
307
252b5132
RH
308AC_SUBST(NLMCONV_DEFS)
309AC_SUBST(BUILD_NLMCONV)
310AC_SUBST(BUILD_SRCONV)
311AC_SUBST(BUILD_DLLTOOL)
312AC_SUBST(DLLTOOL_DEFS)
313AC_SUBST(BUILD_WINDRES)
314AC_SUBST(BUILD_DLLWRAP)
315AC_SUBST(BUILD_MISC)
8b1e6df3 316AC_SUBST(OBJDUMP_DEFS)
252b5132
RH
317
318AC_DEFINE_UNQUOTED(TARGET, "${target}", [Configured target name.])
319
320targ=$target
321. $srcdir/../bfd/config.bfd
322if test "x$targ_underscore" = "xyes"; then
323 UNDERSCORE=1
324else
325 UNDERSCORE=0
326fi
bb279dc0
ZW
327AC_DEFINE_UNQUOTED(TARGET_PREPENDS_UNDERSCORE, $UNDERSCORE,
328 [Define to 1 if user symbol names have a leading underscore, 0 if not.])
252b5132 329
eb1e0e80
NC
330# Emulation
331for targ_alias in `echo $target_alias $enable_targets | sed 's/,/ /g'`
332do
333 # Canonicalize the secondary target names.
334 result=`$ac_config_sub $targ_alias 2>/dev/null`
335 if test -n "$result"; then
336 targ=$result
337 else
338 targ=$targ_alias
339 fi
340
341 . ${srcdir}/configure.tgt
342
343 EMULATION=$targ_emul
344 EMULATION_VECTOR=$targ_emul_vector
345done
346
347AC_SUBST(EMULATION)
348AC_SUBST(EMULATION_VECTOR)
349
108a6f8e
CD
350# Required for html and install-html
351AC_SUBST(datarootdir)
352AC_SUBST(docdir)
353AC_SUBST(htmldir)
354
20e95c23 355AC_OUTPUT(Makefile doc/Makefile po/Makefile.in:po/Make-in)
This page took 0.305596 seconds and 4 git commands to generate.