* configure.in: Remove broken changequote lines.
[deliverable/binutils-gdb.git] / binutils / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2 dnl
3 AC_PREREQ(2.57)
4 AC_INIT(ar.c)
5
6 AC_CANONICAL_SYSTEM
7 AC_ISC_POSIX
8
9 changequote(,)dnl
10 BFD_VERSION=`sed -n -e 's/^.._INIT_AUTOMAKE.*,[ ]*\([^ ]*\)[ ]*).*/\1/p' < ${srcdir}/../bfd/configure.in`
11 changequote([,])dnl
12 AM_INIT_AUTOMAKE(binutils, ${BFD_VERSION})
13
14 AM_PROG_LIBTOOL
15
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')
20 ;;
21 no) enable_targets= ;;
22 *) enable_targets=$enableval ;;
23 esac])dnl
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]) ;;
30 esac])dnl
31
32 AM_BINUTILS_WARNINGS
33
34 AM_CONFIG_HEADER(config.h:config.in)
35
36 if test -z "$target" ; then
37 AC_MSG_ERROR(Unrecognized target system type; please check config.sub.)
38 fi
39 if test -z "$host" ; then
40 AC_MSG_ERROR(Unrecognized host system type; please check config.sub.)
41 fi
42
43 AC_PROG_CC
44 AC_GNU_SOURCE
45
46 AC_PROG_YACC
47 AM_PROG_LEX
48
49 ALL_LINGUAS="fr tr ja es sv da zh_CN ru ro rw zh_TW fi vi"
50 ZW_GNU_GETTEXT_SISTER_DIR
51 AM_PO_SUBDIRS
52
53 AM_MAINTAINER_MODE
54 AC_EXEEXT
55 if test -n "$EXEEXT"; then
56 AC_DEFINE(HAVE_EXECUTABLE_SUFFIX, 1,
57 [Does the platform use an executable suffix?])
58 fi
59 AC_DEFINE_UNQUOTED(EXECUTABLE_SUFFIX, "${EXEEXT}",
60 [Suffix used for executables, if any.])
61
62 # host-specific stuff:
63
64 HDEFINES=
65
66 . ${srcdir}/../bfd/configure.host
67
68 AC_SUBST(HDEFINES)
69 AR=${AR-ar}
70 AC_SUBST(AR)
71 AC_PROG_RANLIB
72 AC_PROG_INSTALL
73
74 BFD_CC_FOR_BUILD
75
76 DEMANGLER_NAME=c++filt
77 case "${host}" in
78 *-*-go32* | *-*-msdos*)
79 DEMANGLER_NAME=cxxfilt
80 esac
81 AC_SUBST(DEMANGLER_NAME)
82
83 AC_CHECK_HEADERS(string.h strings.h stdlib.h unistd.h fcntl.h sys/file.h)
84 AC_HEADER_SYS_WAIT
85 AC_FUNC_ALLOCA
86 AC_CHECK_FUNCS(sbrk utimes setmode getc_unlocked strcoll)
87
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?])
104 fi
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?])
119 fi
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,
123 [Enable LFS])
124 CPPFLAGS="$CPPFLAGS -D_LARGEFILE64_SOURCE"
125 fi
126
127 # Some systems have frexp only in -lm, not in -lc.
128 AC_SEARCH_LIBS(frexp, m)
129
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>?])
138 fi
139
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>?])
148 fi
149
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?])
158 fi
159
160 # Under Next 3.2 <utime.h> apparently does not define struct utimbuf
161 # by default.
162 AC_MSG_CHECKING([for utime.h])
163 AC_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;],
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?])
174 fi
175
176 AC_CHECK_DECLS([fprintf, stpcpy, strstr, sbrk, getenv, environ, getc_unlocked,
177 snprintf, vsnprintf])
178
179 BFD_BINARY_FOPEN
180
181 # target-specific stuff:
182
183 # Canonicalize the secondary target names.
184 if test -n "$enable_targets"; then
185 for targ in `echo $enable_targets | sed 's/,/ /g'`
186 do
187 result=`$ac_config_sub $targ 2>/dev/null`
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
195 fi
196
197 all_targets=false
198 BUILD_NLMCONV=
199 NLMCONV_DEFS=
200 BUILD_SRCONV=
201 BUILD_DLLTOOL=
202 DLLTOOL_DEFS=
203 BUILD_WINDRES=
204 BUILD_DLLWRAP=
205 BUILD_MISC=
206 OBJDUMP_DEFS=
207
208 for targ in $target $canon_targets
209 do
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
217 changequote(,)dnl
218 i[3-7]86*-*-netware*)
219 changequote([,])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
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 ;;
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)'
249 ;;
250 arm-*-pe*)
251 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
252 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM"
253 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
254 ;;
255 thumb-*-pe*)
256 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
257 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM"
258 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
259 ;;
260 x86_64-*-mingw64*)
261 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
262 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MX86_64"
263 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
264 BUILD_DLLWRAP='$(DLLWRAP_PROG)$(EXEEXT)'
265 ;;
266 changequote(,)dnl
267 i[3-7]86-*-pe* | i[3-7]86-*-cygwin* | i[3-7]86-*-mingw32** | i[3-7]86-*-netbsdpe*)
268 changequote([,])dnl
269 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
270 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_I386"
271 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
272 BUILD_DLLWRAP='$(DLLWRAP_PROG)$(EXEEXT)'
273 ;;
274 changequote(,)dnl
275 i[3-7]86-*-interix)
276 changequote([,])dnl
277 BUILD_DLLTOOL='$(DLLTOOL_PROG)'
278 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_I386"
279 ;;
280 changequote(,)dnl
281 powerpc*-aix5.[01])
282 changequote([,])dnl
283 ;;
284 powerpc*-aix5.*)
285 OBJDUMP_DEFS="-DAIX_WEAK_SUPPORT"
286 ;;
287 powerpc*-*-pe* | powerpc*-*-cygwin*)
288 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
289 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_PPC"
290 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
291 ;;
292 sh*-*-pe)
293 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
294 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_SH"
295 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
296 ;;
297 mips*-*-pe)
298 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
299 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MIPS"
300 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
301 ;;
302 mcore-*-pe)
303 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
304 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MCORE"
305 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
306 ;;
307 mcore-*-elf)
308 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
309 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MCORE_ELF"
310 ;;
311 esac
312 fi
313 done
314
315 if test "${with_windres+set}" = set; then
316 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
317 fi
318
319 AC_SUBST(NLMCONV_DEFS)
320 AC_SUBST(BUILD_NLMCONV)
321 AC_SUBST(BUILD_SRCONV)
322 AC_SUBST(BUILD_DLLTOOL)
323 AC_SUBST(DLLTOOL_DEFS)
324 AC_SUBST(BUILD_WINDRES)
325 AC_SUBST(BUILD_DLLWRAP)
326 AC_SUBST(BUILD_MISC)
327 AC_SUBST(OBJDUMP_DEFS)
328
329 AC_DEFINE_UNQUOTED(TARGET, "${target}", [Configured target name.])
330
331 targ=$target
332 . $srcdir/../bfd/config.bfd
333 if test "x$targ_underscore" = "xyes"; then
334 UNDERSCORE=1
335 else
336 UNDERSCORE=0
337 fi
338 AC_DEFINE_UNQUOTED(TARGET_PREPENDS_UNDERSCORE, $UNDERSCORE,
339 [Define to 1 if user symbol names have a leading underscore, 0 if not.])
340
341 # Emulation
342 for targ_alias in `echo $target_alias $enable_targets | sed 's/,/ /g'`
343 do
344 # Canonicalize the secondary target names.
345 result=`$ac_config_sub $targ_alias 2>/dev/null`
346 if test -n "$result"; then
347 targ=$result
348 else
349 targ=$targ_alias
350 fi
351
352 . ${srcdir}/configure.tgt
353
354 EMULATION=$targ_emul
355 EMULATION_VECTOR=$targ_emul_vector
356 done
357
358 AC_SUBST(EMULATION)
359 AC_SUBST(EMULATION_VECTOR)
360
361 # Required for html and install-html
362 AC_SUBST(datarootdir)
363 AC_SUBST(docdir)
364 AC_SUBST(htmldir)
365
366 AC_OUTPUT(Makefile doc/Makefile po/Makefile.in:po/Make-in)
This page took 0.061951 seconds and 5 git commands to generate.