1 dnl Process this file with autoconf to produce a configure script.
8 AM_INIT_AUTOMAKE(binutils, 2.8.2)
12 AC_ARG_ENABLE(targets,
13 [ --enable-targets alternative target configurations],
14 [case "${enableval}" in
15 yes | "") AC_ERROR(enable-targets option must specify target names or 'all')
17 no) enable_targets= ;;
18 *) enable_targets=$enableval ;;
20 AC_ARG_ENABLE(commonbfdlib,
21 [ --enable-commonbfdlib build shared BFD/opcodes/libiberty library],
22 [case "${enableval}" in
23 yes) commonbfdlib=true ;;
24 no) commonbfdlib=false ;;
25 *) AC_MSG_ERROR([bad value ${enableval} for BFD commonbfdlib option]) ;;
28 AM_CONFIG_HEADER(config.h:config.in)
30 if test -z "$target" ; then
31 AC_MSG_ERROR(Unrecognized target system type; please check config.sub.)
33 if test -z "$host" ; then
34 AC_MSG_ERROR(Unrecognized host system type; please check config.sub.)
48 # host-specific stuff:
52 . ${srcdir}/../bfd/configure.host
62 AC_CHECK_HEADERS(string.h strings.h stdlib.h unistd.h fcntl.h sys/file.h)
65 AC_CHECK_FUNCS(sbrk utimes)
66 dnl Temporary workaround for bug in autoconf 2.12. When the bug is
67 dnl fixed, we can just call AC_FUNC_VFORK in all cases.
68 if test "x$cross_compiling" = "xno"; then
71 AC_CHECK_FUNC(vfork, , AC_DEFINE(vfork, fork))
74 AC_MSG_CHECKING(for time_t in time.h)
75 AC_CACHE_VAL(bu_cv_decl_time_t_time_h,
76 [AC_TRY_COMPILE([#include <time.h>], [time_t i;],
77 bu_cv_decl_time_t_time_h=yes, bu_cv_decl_time_t_time_h=no)])
78 AC_MSG_RESULT($bu_cv_decl_time_t_time_h)
79 if test $bu_cv_decl_time_t_time_h = yes; then
80 AC_DEFINE([HAVE_TIME_T_IN_TIME_H])
83 AC_MSG_CHECKING(for time_t in sys/types.h)
84 AC_CACHE_VAL(bu_cv_decl_time_t_types_h,
85 [AC_TRY_COMPILE([#include <sys/types.h>], [time_t i;],
86 bu_cv_decl_time_t_types_h=yes, bu_cv_decl_time_t_types_h=no)])
87 AC_MSG_RESULT($bu_cv_decl_time_t_types_h)
88 if test $bu_cv_decl_time_t_types_h = yes; then
89 AC_DEFINE([HAVE_TIME_T_IN_TYPES_H])
92 # Under Next 3.2 <utime.h> apparently does not define struct utimbuf
94 AC_MSG_CHECKING([for utime.h])
95 AC_CACHE_VAL(bu_cv_header_utime_h,
96 [AC_TRY_COMPILE([#include <sys/types.h>
102 bu_cv_header_utime_h=yes, bu_cv_header_utime_h=no)])
103 AC_MSG_RESULT($bu_cv_header_utime_h)
104 if test $bu_cv_header_utime_h = yes; then
105 AC_DEFINE(HAVE_GOOD_UTIME_H)
108 BFD_NEED_DECLARATION(fprintf)
109 BFD_NEED_DECLARATION(strstr)
110 BFD_NEED_DECLARATION(sbrk)
111 BFD_NEED_DECLARATION(getenv)
115 # target-specific stuff:
117 # Canonicalize the secondary target names.
118 if test -n "$enable_targets"; then
119 for targ in `echo $enable_targets | sed 's/,/ /g'`
121 result=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $targ 2>/dev/null`
122 if test -n "$result"; then
123 canon_targets="$canon_targets $result"
125 # Allow targets that config.sub doesn't recognize, like "all".
126 canon_targets="$canon_targets $targ"
139 for targ in $target $canon_targets
141 if test "x$targ" = "xall"; then
143 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
144 BUILD_SRCONV='$(SRCONV_PROG)$(EXEEXT)'
145 NLMCONV_DEFS="-DNLMCONV_I386 -DNLMCONV_ALPHA -DNLMCONV_POWERPC -DNLMCONV_SPARC"
149 i[3456]86*-*-netware*)
151 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
152 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_I386"
155 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
156 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_ALPHA"
159 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
160 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_POWERPC"
163 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
164 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_SPARC"
168 *-*-hms*) BUILD_SRCONV='$(SRCONV_PROG)$(EXEEXT)' ;;
172 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
173 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM"
174 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
177 i[3-6]86-*pe* | i[3-6]86-*-cygwin32)
179 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
180 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_I386"
181 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
183 powerpc*-*-*pe* | powerpc*-*-cygwin32)
184 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
185 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_PPC"
186 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
192 AC_SUBST(NLMCONV_DEFS)
193 AC_SUBST(BUILD_NLMCONV)
194 AC_SUBST(BUILD_SRCONV)
195 AC_SUBST(BUILD_DLLTOOL)
196 AC_SUBST(DLLTOOL_DEFS)
197 AC_SUBST(BUILD_WINDRES)
200 . $srcdir/../bfd/config.bfd
201 if test "x$targ_underscore" = "xyes"; then