1999-05-03 09:29:11 +02:00
|
|
|
dnl Process this file with autoconf to produce a configure script.
|
|
|
|
dnl
|
2008-08-24 05:13:05 +02:00
|
|
|
AC_PREREQ(2.59)
|
|
|
|
AC_INIT
|
|
|
|
AC_CONFIG_SRCDIR(ar.c)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2008-08-24 05:13:05 +02:00
|
|
|
AC_CANONICAL_TARGET
|
2000-09-07 23:08:51 +02:00
|
|
|
AC_ISC_POSIX
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-02-27 07:43:56 +01:00
|
|
|
changequote(,)dnl
|
|
|
|
BFD_VERSION=`sed -n -e 's/^.._INIT_AUTOMAKE.*,[ ]*\([^ ]*\)[ ]*).*/\1/p' < ${srcdir}/../bfd/configure.in`
|
|
|
|
changequote([,])dnl
|
|
|
|
AM_INIT_AUTOMAKE(binutils, ${BFD_VERSION})
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2007-04-14 22:38:13 +02:00
|
|
|
AC_PROG_CC
|
|
|
|
AC_GNU_SOURCE
|
2008-08-15 10:31:52 +02:00
|
|
|
AC_USE_SYSTEM_EXTENSIONS
|
2009-03-31 10:08:33 +02:00
|
|
|
|
2009-11-11 05:42:42 +01:00
|
|
|
ACX_LARGEFILE
|
2008-08-24 05:13:05 +02:00
|
|
|
LT_INIT
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
AC_ARG_ENABLE(targets,
|
|
|
|
[ --enable-targets alternative target configurations],
|
|
|
|
[case "${enableval}" in
|
2008-08-24 05:13:05 +02:00
|
|
|
yes | "") AC_MSG_ERROR(enable-targets option must specify target names or 'all')
|
1999-05-03 09:29:11 +02:00
|
|
|
;;
|
|
|
|
no) enable_targets= ;;
|
|
|
|
*) enable_targets=$enableval ;;
|
|
|
|
esac])dnl
|
|
|
|
|
2005-07-01 17:19:47 +02:00
|
|
|
AM_BINUTILS_WARNINGS
|
2005-04-14 07:26:44 +02:00
|
|
|
|
2008-08-24 05:13:05 +02:00
|
|
|
AC_CONFIG_HEADERS(config.h:config.in)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
if test -z "$target" ; then
|
|
|
|
AC_MSG_ERROR(Unrecognized target system type; please check config.sub.)
|
|
|
|
fi
|
|
|
|
if test -z "$host" ; then
|
|
|
|
AC_MSG_ERROR(Unrecognized host system type; please check config.sub.)
|
|
|
|
fi
|
|
|
|
|
|
|
|
AC_PROG_YACC
|
|
|
|
AM_PROG_LEX
|
|
|
|
|
2010-04-22 16:37:16 +02:00
|
|
|
ALL_LINGUAS="da es fi fr id ja ro ru rw sk sv tr uk vi zh_CN zh_TW bg"
|
2006-05-31 17:14:46 +02:00
|
|
|
ZW_GNU_GETTEXT_SISTER_DIR
|
|
|
|
AM_PO_SUBDIRS
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
AM_MAINTAINER_MODE
|
2006-12-11 16:09:46 +01:00
|
|
|
AM_CONDITIONAL(GENINSRC_NEVER, false)
|
1999-05-03 09:29:11 +02:00
|
|
|
AC_EXEEXT
|
1999-06-23 00:50:22 +02:00
|
|
|
if test -n "$EXEEXT"; then
|
|
|
|
AC_DEFINE(HAVE_EXECUTABLE_SUFFIX, 1,
|
|
|
|
[Does the platform use an executable suffix?])
|
|
|
|
fi
|
Based on patches from Mumit Khan <khan@xraylith.wisc.EDU>:
* configure.in: Define EXECUTABLE_SUFFIX.
* dlltool.c: Include "dyn-string.h". Include <stdarg.h> based on
ANSI_PROTOTYPES, not __STDC__.
(outfile): Remove.
(gen_exp_file): Change uses of outfile to use alloca.
(make_one_lib_file, make_head, make_tail): Likewise.
(gen_lib_file): Likewise.
(look_for_prog): New static function.
(deduce_name): Rewrite to use look_for_prog.
(mcore_elf_gen_out_file): Use dyn_string_t rather than outfile.
* dllwrap.c: Don't include <stdio.h>, <errno.h>, <string.h>,
<stdlib.h>, or <unistd.h>. Include <sys/stat.h> and either
<stdarg.h> or <varargs.h>.
(driver_name): Initialize to NULL, not "gcc".
(dlltool_name): Initialize to NULL, not "dlltool".
(display, inform, look_for_prog, deduce_name): New static
functions.
(usage): Mention -mno-cygwin.
(OPTION_MNO_CYGWIN): Define.
(main): Handle -mno-cygwin. Deduce driver_name and dlltool_name.
* resrc.c (look_for_default): Make static. Remove unused local
path. Check using EXECUTABLE_SUFFIX.
(read_rc_file): Allocate enough space to hold EXECUTABLE_SUFFIX.
* Makefile.am: Rebuild dependencies.
(dllwrap_LDADD): Add $(INTLLIBS).
* configure, Makefile.in, config.in: Rebuild.
1999-06-22 22:39:46 +02:00
|
|
|
AC_DEFINE_UNQUOTED(EXECUTABLE_SUFFIX, "${EXEEXT}",
|
|
|
|
[Suffix used for executables, if any.])
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
# host-specific stuff:
|
|
|
|
|
|
|
|
HDEFINES=
|
|
|
|
|
|
|
|
. ${srcdir}/../bfd/configure.host
|
|
|
|
|
|
|
|
AC_SUBST(HDEFINES)
|
|
|
|
AR=${AR-ar}
|
|
|
|
AC_SUBST(AR)
|
|
|
|
AC_PROG_RANLIB
|
|
|
|
AC_PROG_INSTALL
|
|
|
|
|
|
|
|
BFD_CC_FOR_BUILD
|
|
|
|
|
1999-08-08 20:09:48 +02:00
|
|
|
DEMANGLER_NAME=c++filt
|
|
|
|
case "${host}" in
|
|
|
|
*-*-go32* | *-*-msdos*)
|
|
|
|
DEMANGLER_NAME=cxxfilt
|
|
|
|
esac
|
|
|
|
AC_SUBST(DEMANGLER_NAME)
|
|
|
|
|
2006-10-29 20:07:54 +01:00
|
|
|
AC_CHECK_HEADERS(string.h strings.h stdlib.h unistd.h fcntl.h sys/file.h limits.h sys/param.h)
|
1999-05-03 09:29:11 +02:00
|
|
|
AC_HEADER_SYS_WAIT
|
|
|
|
AC_FUNC_ALLOCA
|
2002-06-21 04:34:38 +02:00
|
|
|
AC_CHECK_FUNCS(sbrk utimes setmode getc_unlocked strcoll)
|
2006-10-13 11:43:29 +02:00
|
|
|
AC_CHECK_FUNC([mkstemp],
|
|
|
|
AC_DEFINE([HAVE_MKSTEMP], 1,
|
|
|
|
[Define to 1 if you have the `mkstemp' function.]))
|
|
|
|
AC_CHECK_FUNC([mkdtemp],
|
|
|
|
AC_DEFINE([HAVE_MKDTEMP], 1,
|
|
|
|
[Define to 1 if you have the `mkdtemp' function.]))
|
2001-12-04 11:11:22 +01:00
|
|
|
|
1999-06-12 17:20:21 +02:00
|
|
|
# Some systems have frexp only in -lm, not in -lc.
|
2000-02-26 01:59:51 +01:00
|
|
|
AC_SEARCH_LIBS(frexp, m)
|
1999-06-12 17:20:21 +02:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
AC_MSG_CHECKING(for time_t in time.h)
|
|
|
|
AC_CACHE_VAL(bu_cv_decl_time_t_time_h,
|
2008-08-24 05:13:05 +02:00
|
|
|
[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <time.h>], [time_t i;])],
|
1999-05-03 09:29:11 +02:00
|
|
|
bu_cv_decl_time_t_time_h=yes, bu_cv_decl_time_t_time_h=no)])
|
|
|
|
AC_MSG_RESULT($bu_cv_decl_time_t_time_h)
|
|
|
|
if test $bu_cv_decl_time_t_time_h = yes; then
|
|
|
|
AC_DEFINE([HAVE_TIME_T_IN_TIME_H], 1,
|
|
|
|
[Is the type time_t defined in <time.h>?])
|
|
|
|
fi
|
|
|
|
|
|
|
|
AC_MSG_CHECKING(for time_t in sys/types.h)
|
|
|
|
AC_CACHE_VAL(bu_cv_decl_time_t_types_h,
|
2008-08-24 05:13:05 +02:00
|
|
|
[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <sys/types.h>], [time_t i;])],
|
1999-05-03 09:29:11 +02:00
|
|
|
bu_cv_decl_time_t_types_h=yes, bu_cv_decl_time_t_types_h=no)])
|
|
|
|
AC_MSG_RESULT($bu_cv_decl_time_t_types_h)
|
|
|
|
if test $bu_cv_decl_time_t_types_h = yes; then
|
|
|
|
AC_DEFINE([HAVE_TIME_T_IN_TYPES_H], 1,
|
|
|
|
[Is the type time_t defined in <sys/types.h>?])
|
|
|
|
fi
|
|
|
|
|
2005-03-31 16:40:41 +02:00
|
|
|
AC_MSG_CHECKING(for a known getopt prototype in unistd.h)
|
|
|
|
AC_CACHE_VAL(bu_cv_decl_getopt_unistd_h,
|
2008-08-24 05:13:05 +02:00
|
|
|
[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <unistd.h>], [extern int getopt (int, char *const*, const char *);])],
|
2005-03-31 16:40:41 +02:00
|
|
|
bu_cv_decl_getopt_unistd_h=yes, bu_cv_decl_getopt_unistd_h=no)])
|
|
|
|
AC_MSG_RESULT($bu_cv_decl_getopt_unistd_h)
|
|
|
|
if test $bu_cv_decl_getopt_unistd_h = yes; then
|
|
|
|
AC_DEFINE([HAVE_DECL_GETOPT], 1,
|
|
|
|
[Is the prototype for getopt in <unistd.h> in the expected format?])
|
|
|
|
fi
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
# Under Next 3.2 <utime.h> apparently does not define struct utimbuf
|
|
|
|
# by default.
|
|
|
|
AC_MSG_CHECKING([for utime.h])
|
|
|
|
AC_CACHE_VAL(bu_cv_header_utime_h,
|
2008-08-24 05:13:05 +02:00
|
|
|
[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <sys/types.h>
|
1999-05-03 09:29:11 +02:00
|
|
|
#ifdef HAVE_TIME_H
|
|
|
|
#include <time.h>
|
|
|
|
#endif
|
|
|
|
#include <utime.h>],
|
2008-08-24 05:13:05 +02:00
|
|
|
[struct utimbuf s;])],
|
1999-05-03 09:29:11 +02:00
|
|
|
bu_cv_header_utime_h=yes, bu_cv_header_utime_h=no)])
|
|
|
|
AC_MSG_RESULT($bu_cv_header_utime_h)
|
|
|
|
if test $bu_cv_header_utime_h = yes; then
|
|
|
|
AC_DEFINE(HAVE_GOOD_UTIME_H, 1, [Does <utime.h> define struct utimbuf?])
|
|
|
|
fi
|
|
|
|
|
2006-02-09 12:49:53 +01:00
|
|
|
AC_CHECK_DECLS([fprintf, stpcpy, strstr, sbrk, getenv, environ, getc_unlocked,
|
|
|
|
snprintf, vsnprintf])
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2008-07-10 03:32:23 +02:00
|
|
|
# Link in zlib if we can. This allows us to read compressed debug
|
|
|
|
# sections. This is used only by readelf.c (objdump uses bfd for
|
|
|
|
# reading compressed sections).
|
|
|
|
AC_SEARCH_LIBS(zlibVersion, z, [AC_CHECK_HEADERS(zlib.h)])
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
BFD_BINARY_FOPEN
|
|
|
|
|
|
|
|
# target-specific stuff:
|
|
|
|
|
|
|
|
# Canonicalize the secondary target names.
|
|
|
|
if test -n "$enable_targets"; then
|
|
|
|
for targ in `echo $enable_targets | sed 's/,/ /g'`
|
|
|
|
do
|
1999-09-15 01:29:35 +02:00
|
|
|
result=`$ac_config_sub $targ 2>/dev/null`
|
1999-05-03 09:29:11 +02:00
|
|
|
if test -n "$result"; then
|
|
|
|
canon_targets="$canon_targets $result"
|
|
|
|
else
|
|
|
|
# Allow targets that config.sub doesn't recognize, like "all".
|
|
|
|
canon_targets="$canon_targets $targ"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
* Makefile.am: Add LIBICONV to windres.
* acinclude.m4: Added missing "lib-*.m4" and "lt*.m4" files.
* configure.in: Add AC_CHECK_HEADER for iconv.h and use AM_ICONV.
* config.in: Add ICONV defines.
* aclocal: Regenerate.
* confugure: Regenerate.
* winduni.c: (local_iconv_map codepages, wind_language_t, languages, unicode_is$
(ascii_from_unicode): Use codepage_from_unicode.
(ascii_from_unicode): Use unicode_from_codepage.
Use for cygwin windows API for unicode transformation.
* winduni.h: (CP_ACP, CP_UTF7, CP_UTF8, CP_OEM, CP_UTF16): New macros.
(wind_language_t, local_iconv_map): New types.
(wind_find_language_by_id, wind_find_language_by_codepage,
(unicode_is_valid_codepage, wind_find_codepage_info, unicode_from_codepage, c$
2007-06-05 15:10:30 +02:00
|
|
|
AC_CHECK_HEADER(iconv.h)
|
|
|
|
AM_ICONV
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
all_targets=false
|
|
|
|
BUILD_NLMCONV=
|
|
|
|
NLMCONV_DEFS=
|
|
|
|
BUILD_SRCONV=
|
|
|
|
BUILD_DLLTOOL=
|
|
|
|
DLLTOOL_DEFS=
|
2007-02-02 14:59:54 +01:00
|
|
|
DLLTOOL_DEFAULT=
|
1999-05-03 09:29:11 +02:00
|
|
|
BUILD_WINDRES=
|
2007-06-19 15:24:33 +02:00
|
|
|
BUILD_WINDMC=
|
1999-05-03 09:29:11 +02:00
|
|
|
BUILD_DLLWRAP=
|
|
|
|
BUILD_MISC=
|
2007-02-28 02:29:32 +01:00
|
|
|
BUILD_INSTALL_MISC=
|
2001-01-09 21:25:31 +01:00
|
|
|
OBJDUMP_DEFS=
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
for targ in $target $canon_targets
|
|
|
|
do
|
|
|
|
if test "x$targ" = "xall"; then
|
|
|
|
all_targets=true
|
|
|
|
BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
|
|
|
|
BUILD_SRCONV='$(SRCONV_PROG)'
|
|
|
|
NLMCONV_DEFS="-DNLMCONV_I386 -DNLMCONV_ALPHA -DNLMCONV_POWERPC -DNLMCONV_SPARC"
|
2007-02-28 02:29:32 +01:00
|
|
|
BUILD_MISC="${BUILD_MISC} "'bin2c$(EXEEXT_FOR_BUILD)'
|
2007-10-16 18:05:41 +02:00
|
|
|
BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
|
|
|
|
BUILD_WINDMC='$(WINDMC_PROG)$(EXEEXT)'
|
|
|
|
BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
|
|
|
|
if test -z "$DLLTOOL_DEFAULT"; then
|
|
|
|
DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_I386"
|
|
|
|
fi
|
|
|
|
DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_I386"
|
|
|
|
BUILD_DLLWRAP='$(DLLWRAP_PROG)$(EXEEXT)'
|
1999-05-03 09:29:11 +02:00
|
|
|
else
|
|
|
|
case $targ in
|
|
|
|
changequote(,)dnl
|
2003-05-16 18:30:27 +02:00
|
|
|
i[3-7]86*-*-netware*)
|
1999-05-03 09:29:11 +02:00
|
|
|
changequote([,])dnl
|
|
|
|
BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
|
|
|
|
NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_I386"
|
|
|
|
;;
|
|
|
|
alpha*-*-netware*)
|
|
|
|
BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
|
|
|
|
NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_ALPHA"
|
|
|
|
;;
|
|
|
|
powerpc*-*-netware*)
|
|
|
|
BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
|
|
|
|
NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_POWERPC"
|
|
|
|
;;
|
|
|
|
sparc*-*-netware*)
|
|
|
|
BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
|
|
|
|
NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_SPARC"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
case $targ in
|
|
|
|
*-*-hms*) BUILD_SRCONV='$(SRCONV_PROG)' ;;
|
|
|
|
esac
|
|
|
|
case $targ in
|
2000-12-19 23:22:02 +01:00
|
|
|
arm-epoc-pe*)
|
|
|
|
BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
|
2007-02-02 14:59:54 +01:00
|
|
|
if test -z "$DLLTOOL_DEFAULT"; then
|
|
|
|
DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_ARM_EPOC"
|
|
|
|
fi
|
2000-12-19 23:22:02 +01:00
|
|
|
DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM_EPOC -DDLLTOOL_ARM"
|
|
|
|
BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
|
2007-06-19 15:24:33 +02:00
|
|
|
BUILD_WINDMC='$(WINDMC_PROG)$(EXEEXT)'
|
2000-12-19 23:22:02 +01:00
|
|
|
;;
|
2009-06-18 04:11:03 +02:00
|
|
|
arm-wince-pe* | arm-*-wince | arm*-*-cegcc* | arm*-*-mingw32ce*)
|
2006-08-21 10:12:46 +02:00
|
|
|
BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
|
2007-02-02 14:59:54 +01:00
|
|
|
if test -z "$DLLTOOL_DEFAULT"; then
|
|
|
|
DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_ARM_WINCE"
|
|
|
|
fi
|
2006-08-21 10:12:46 +02:00
|
|
|
DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM_WINCE -DDLLTOOL_ARM"
|
|
|
|
BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
|
2007-06-19 15:24:33 +02:00
|
|
|
BUILD_WINDMC='$(WINDMC_PROG)$(EXEEXT)'
|
2006-08-21 10:12:46 +02:00
|
|
|
;;
|
|
|
|
arm-*-pe*)
|
1999-05-03 09:29:11 +02:00
|
|
|
BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
|
2007-02-02 14:59:54 +01:00
|
|
|
if test -z "$DLLTOOL_DEFAULT"; then
|
|
|
|
DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_ARM"
|
|
|
|
fi
|
1999-05-03 09:29:11 +02:00
|
|
|
DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM"
|
|
|
|
BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
|
2007-06-19 15:24:33 +02:00
|
|
|
BUILD_WINDMC='$(WINDMC_PROG)$(EXEEXT)'
|
1999-08-05 17:35:10 +02:00
|
|
|
;;
|
2003-04-01 12:52:43 +02:00
|
|
|
thumb-*-pe*)
|
1999-05-03 09:29:11 +02:00
|
|
|
BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
|
2007-02-02 14:59:54 +01:00
|
|
|
if test -z "$DLLTOOL_DEFAULT"; then
|
|
|
|
DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_ARM"
|
|
|
|
fi
|
1999-05-03 09:29:11 +02:00
|
|
|
DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM"
|
|
|
|
BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
|
2007-06-19 15:24:33 +02:00
|
|
|
BUILD_WINDMC='$(WINDMC_PROG)$(EXEEXT)'
|
1999-08-05 17:35:10 +02:00
|
|
|
;;
|
2007-01-08 18:21:50 +01:00
|
|
|
x86_64-*-mingw*)
|
2006-09-20 13:35:11 +02:00
|
|
|
BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
|
2007-02-02 14:59:54 +01:00
|
|
|
if test -z "$DLLTOOL_DEFAULT"; then
|
|
|
|
DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_MX86_64"
|
|
|
|
fi
|
2006-09-20 13:35:11 +02:00
|
|
|
DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MX86_64"
|
|
|
|
BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
|
2007-06-19 15:24:33 +02:00
|
|
|
BUILD_WINDMC='$(WINDMC_PROG)$(EXEEXT)'
|
2006-09-20 13:35:11 +02:00
|
|
|
BUILD_DLLWRAP='$(DLLWRAP_PROG)$(EXEEXT)'
|
|
|
|
;;
|
1999-05-03 09:29:11 +02:00
|
|
|
changequote(,)dnl
|
2003-05-16 18:30:27 +02:00
|
|
|
i[3-7]86-*-pe* | i[3-7]86-*-cygwin* | i[3-7]86-*-mingw32** | i[3-7]86-*-netbsdpe*)
|
1999-05-03 09:29:11 +02:00
|
|
|
changequote([,])dnl
|
|
|
|
BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
|
2007-02-02 14:59:54 +01:00
|
|
|
if test -z "$DLLTOOL_DEFAULT"; then
|
|
|
|
DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_I386"
|
|
|
|
fi
|
1999-05-03 09:29:11 +02:00
|
|
|
DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_I386"
|
|
|
|
BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
|
2007-06-19 15:24:33 +02:00
|
|
|
BUILD_WINDMC='$(WINDMC_PROG)$(EXEEXT)'
|
1999-05-03 09:29:11 +02:00
|
|
|
BUILD_DLLWRAP='$(DLLWRAP_PROG)$(EXEEXT)'
|
1999-08-05 17:35:10 +02:00
|
|
|
;;
|
2003-05-16 18:30:27 +02:00
|
|
|
changequote(,)dnl
|
|
|
|
i[3-7]86-*-interix)
|
|
|
|
changequote([,])dnl
|
1999-08-05 17:35:10 +02:00
|
|
|
BUILD_DLLTOOL='$(DLLTOOL_PROG)'
|
2007-02-02 14:59:54 +01:00
|
|
|
if test -z "$DLLTOOL_DEFAULT"; then
|
|
|
|
DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_I386"
|
|
|
|
fi
|
1999-08-05 17:35:10 +02:00
|
|
|
DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_I386"
|
|
|
|
;;
|
2004-01-02 18:08:05 +01:00
|
|
|
changequote(,)dnl
|
|
|
|
powerpc*-aix5.[01])
|
|
|
|
changequote([,])dnl
|
|
|
|
;;
|
2009-03-14 10:11:38 +01:00
|
|
|
changequote(,)dnl
|
|
|
|
powerpc*-aix[5-9].*)
|
|
|
|
changequote([,])dnl
|
2004-01-02 18:08:05 +01:00
|
|
|
OBJDUMP_DEFS="-DAIX_WEAK_SUPPORT"
|
|
|
|
;;
|
2002-05-09 01:15:36 +02:00
|
|
|
powerpc*-*-pe* | powerpc*-*-cygwin*)
|
1999-05-03 09:29:11 +02:00
|
|
|
BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
|
2007-02-02 14:59:54 +01:00
|
|
|
if test -z "$DLLTOOL_DEFAULT"; then
|
|
|
|
DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_PPC"
|
|
|
|
fi
|
1999-05-03 09:29:11 +02:00
|
|
|
DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_PPC"
|
|
|
|
BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
|
2007-06-19 15:24:33 +02:00
|
|
|
BUILD_WINDMC='$(WINDMC_PROG)$(EXEEXT)'
|
1999-08-05 17:35:10 +02:00
|
|
|
;;
|
2007-08-24 17:37:37 +02:00
|
|
|
powerpc*-*-linux* | powerpc*-*-elf* | powerpc*-*-eabi*)
|
2007-02-28 02:29:32 +01:00
|
|
|
BUILD_INSTALL_MISC="${BUILD_INSTALL_MISC} embedspu"
|
2007-01-11 07:24:40 +01:00
|
|
|
;;
|
2002-05-09 01:15:36 +02:00
|
|
|
sh*-*-pe)
|
2000-02-24 20:37:32 +01:00
|
|
|
BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
|
2007-02-02 14:59:54 +01:00
|
|
|
if test -z "$DLLTOOL_DEFAULT"; then
|
|
|
|
DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_SH"
|
|
|
|
fi
|
2000-02-24 20:37:32 +01:00
|
|
|
DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_SH"
|
|
|
|
BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
|
2007-06-19 15:24:33 +02:00
|
|
|
BUILD_WINDMC='$(WINDMC_PROG)$(EXEEXT)'
|
2000-02-24 20:37:32 +01:00
|
|
|
;;
|
2007-02-27 09:31:46 +01:00
|
|
|
spu-*-*)
|
2007-02-28 02:29:32 +01:00
|
|
|
BUILD_MISC="${BUILD_MISC} "'bin2c$(EXEEXT_FOR_BUILD)'
|
2007-02-27 09:31:46 +01:00
|
|
|
;;
|
2002-05-09 01:15:36 +02:00
|
|
|
mips*-*-pe)
|
2000-02-24 20:37:32 +01:00
|
|
|
BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
|
2007-02-02 14:59:54 +01:00
|
|
|
if test -z "$DLLTOOL_DEFAULT"; then
|
|
|
|
DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_MIPS"
|
|
|
|
fi
|
2000-02-24 20:37:32 +01:00
|
|
|
DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MIPS"
|
|
|
|
BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
|
2007-06-19 15:24:33 +02:00
|
|
|
BUILD_WINDMC='$(WINDMC_PROG)$(EXEEXT)'
|
2000-02-24 20:37:32 +01:00
|
|
|
;;
|
2003-04-01 12:52:43 +02:00
|
|
|
mcore-*-pe)
|
1999-05-15 17:25:22 +02:00
|
|
|
BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
|
2007-02-02 14:59:54 +01:00
|
|
|
if test -z "$DLLTOOL_DEFAULT"; then
|
|
|
|
DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_MCORE"
|
|
|
|
fi
|
1999-05-15 17:25:22 +02:00
|
|
|
DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MCORE"
|
|
|
|
BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
|
2007-06-19 15:24:33 +02:00
|
|
|
BUILD_WINDMC='$(WINDMC_PROG)$(EXEEXT)'
|
1999-08-05 17:35:10 +02:00
|
|
|
;;
|
2003-04-01 12:52:43 +02:00
|
|
|
mcore-*-elf)
|
1999-05-15 17:25:22 +02:00
|
|
|
BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
|
2007-02-02 14:59:54 +01:00
|
|
|
if test -z "$DLLTOOL_DEFAULT"; then
|
|
|
|
DLLTOOL_DEFAULT="-DDLLTOOL_DEFAULT_MCORE_ELF"
|
|
|
|
fi
|
1999-05-15 17:25:22 +02:00
|
|
|
DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MCORE_ELF"
|
1999-08-05 17:35:10 +02:00
|
|
|
;;
|
2007-02-05 20:56:32 +01:00
|
|
|
mep-*)
|
|
|
|
OBJDUMP_DEFS="-DSKIP_ZEROES=256 -DSKIP_ZEROES_AT_END=0"
|
|
|
|
;;
|
1999-05-03 09:29:11 +02:00
|
|
|
esac
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2007-02-02 14:59:54 +01:00
|
|
|
DLLTOOL_DEFS="$DLLTOOL_DEFS $DLLTOOL_DEFAULT"
|
|
|
|
|
2001-08-03 18:27:22 +02:00
|
|
|
if test "${with_windres+set}" = set; then
|
|
|
|
BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
|
|
|
|
fi
|
|
|
|
|
2007-06-19 15:24:33 +02:00
|
|
|
if test "${with_windmc+set}" = set; then
|
|
|
|
BUILD_WINDMC='$(WINDMC_PROG)$(EXEEXT)'
|
|
|
|
fi
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
AC_SUBST(NLMCONV_DEFS)
|
|
|
|
AC_SUBST(BUILD_NLMCONV)
|
|
|
|
AC_SUBST(BUILD_SRCONV)
|
|
|
|
AC_SUBST(BUILD_DLLTOOL)
|
|
|
|
AC_SUBST(DLLTOOL_DEFS)
|
|
|
|
AC_SUBST(BUILD_WINDRES)
|
2007-06-19 15:24:33 +02:00
|
|
|
AC_SUBST(BUILD_WINDMC)
|
1999-05-03 09:29:11 +02:00
|
|
|
AC_SUBST(BUILD_DLLWRAP)
|
|
|
|
AC_SUBST(BUILD_MISC)
|
2007-02-28 02:29:32 +01:00
|
|
|
AC_SUBST(BUILD_INSTALL_MISC)
|
2001-01-09 21:25:31 +01:00
|
|
|
AC_SUBST(OBJDUMP_DEFS)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
AC_DEFINE_UNQUOTED(TARGET, "${target}", [Configured target name.])
|
|
|
|
|
|
|
|
targ=$target
|
|
|
|
. $srcdir/../bfd/config.bfd
|
|
|
|
if test "x$targ_underscore" = "xyes"; then
|
|
|
|
UNDERSCORE=1
|
|
|
|
else
|
|
|
|
UNDERSCORE=0
|
|
|
|
fi
|
2002-09-17 09:09:47 +02:00
|
|
|
AC_DEFINE_UNQUOTED(TARGET_PREPENDS_UNDERSCORE, $UNDERSCORE,
|
|
|
|
[Define to 1 if user symbol names have a leading underscore, 0 if not.])
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-03-18 13:46:27 +01:00
|
|
|
# Emulation
|
2009-09-28 14:48:16 +02:00
|
|
|
targ=$target
|
|
|
|
. ${srcdir}/configure.tgt
|
|
|
|
EMULATION=$targ_emul
|
|
|
|
EMULATION_VECTOR=$targ_emul_vector
|
2002-03-18 13:46:27 +01:00
|
|
|
|
|
|
|
AC_SUBST(EMULATION)
|
|
|
|
AC_SUBST(EMULATION_VECTOR)
|
|
|
|
|
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.tpl: Add install-html target.
* Makefile.def: Add install-html target.
* Makefile.in: Regenerate.
* configure.in: Add --with-datarootdir, --with-docdir,
and --with-htmldir options.
* configure: Regenerate.
bfd/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* po/Make-in: Add install-html target.
* Makefile.am: Rename docdir to bfddocdir. Add datarootdir, docdir
htmldir. Add install-html and install-html-recursive targets.
* Makefile.in: Regenerate.
* configure.in: AC_SUBST for datarootdir, docdir and htmldir.
* configure: Regenerate.
bfd/doc/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.am: Add install-html and install-html-am targets.
Define datarootdir, docdir and htmldir.
* Makefile.in: Regenerate.
binutils/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* po/Make-in: Add install-html target.
* Makefile.am: Add install-html and install-html-recursive targets.
* Makefile.in: Regenerate.
* configure.in: AC_SUBST datarootdir, docdir and htmldir.
* configure: Regenerate.
* doc/Makefile.am: Add install-html and install-html-am targets.
* doc/Makefile.in: Regenerate.
etc/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.in: Add install-html target. Add htmldir,
docdir and datarootdir.
* configure.texi: Document install-html target.
* configure.in: AC_SUBST datarootdir, docdir, htmldir.
* configure: Regenerate.
gas/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* po/Make-in: Add install-html target.
* Makefile.am: Add install-html and install-html-recursive targets.
* Makefile.in: Regenerate.
* configure.in: AC_SUBST datarootdir, docdir, htmldir.
* configure: Regenerate.
* doc/Makefile.am: Add install-html and install-html-am targets.
* doc/Makefile.in: Regenerate.
gprof/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* po/Make-in: Add install-html target.
* Makefile.am: Add install-html, install-html-am and
install-html-recursive targets.
* Makefile.in: Regenerate.
* configure.in: AC_SUBST datarootdir, docdir, htmldir.
* configure: Regenerate.
intl/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* intl/Makefile.in: Add html info and dvi and install-html to .PHONY
Add install-html target.
ld/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.am: Add install-html, install-html-am, and
install-html-recursive targets.
* Makefile.in: Regenerate.
* configure.in: AC_SUBST datarootdir, docdir, htmldir.
* configure: Regenerate.
* po/Make-in: Add install-html target.
opcodes/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.am: Add install-html target.
* Makefile.in: Regenerate.
2006-04-06 23:49:35 +02:00
|
|
|
# Required for html and install-html
|
|
|
|
AC_SUBST(datarootdir)
|
|
|
|
AC_SUBST(docdir)
|
|
|
|
AC_SUBST(htmldir)
|
2009-02-03 16:54:05 +01:00
|
|
|
AC_SUBST(pdfdir)
|
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.tpl: Add install-html target.
* Makefile.def: Add install-html target.
* Makefile.in: Regenerate.
* configure.in: Add --with-datarootdir, --with-docdir,
and --with-htmldir options.
* configure: Regenerate.
bfd/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* po/Make-in: Add install-html target.
* Makefile.am: Rename docdir to bfddocdir. Add datarootdir, docdir
htmldir. Add install-html and install-html-recursive targets.
* Makefile.in: Regenerate.
* configure.in: AC_SUBST for datarootdir, docdir and htmldir.
* configure: Regenerate.
bfd/doc/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.am: Add install-html and install-html-am targets.
Define datarootdir, docdir and htmldir.
* Makefile.in: Regenerate.
binutils/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* po/Make-in: Add install-html target.
* Makefile.am: Add install-html and install-html-recursive targets.
* Makefile.in: Regenerate.
* configure.in: AC_SUBST datarootdir, docdir and htmldir.
* configure: Regenerate.
* doc/Makefile.am: Add install-html and install-html-am targets.
* doc/Makefile.in: Regenerate.
etc/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.in: Add install-html target. Add htmldir,
docdir and datarootdir.
* configure.texi: Document install-html target.
* configure.in: AC_SUBST datarootdir, docdir, htmldir.
* configure: Regenerate.
gas/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* po/Make-in: Add install-html target.
* Makefile.am: Add install-html and install-html-recursive targets.
* Makefile.in: Regenerate.
* configure.in: AC_SUBST datarootdir, docdir, htmldir.
* configure: Regenerate.
* doc/Makefile.am: Add install-html and install-html-am targets.
* doc/Makefile.in: Regenerate.
gprof/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* po/Make-in: Add install-html target.
* Makefile.am: Add install-html, install-html-am and
install-html-recursive targets.
* Makefile.in: Regenerate.
* configure.in: AC_SUBST datarootdir, docdir, htmldir.
* configure: Regenerate.
intl/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* intl/Makefile.in: Add html info and dvi and install-html to .PHONY
Add install-html target.
ld/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.am: Add install-html, install-html-am, and
install-html-recursive targets.
* Makefile.in: Regenerate.
* configure.in: AC_SUBST datarootdir, docdir, htmldir.
* configure: Regenerate.
* po/Make-in: Add install-html target.
opcodes/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.am: Add install-html target.
* Makefile.in: Regenerate.
2006-04-06 23:49:35 +02:00
|
|
|
|
2008-08-24 05:13:05 +02:00
|
|
|
AC_CONFIG_FILES(Makefile doc/Makefile po/Makefile.in:po/Make-in)
|
|
|
|
AC_OUTPUT
|