* acconfig.h (DEFAULT_BFD_ARCH, DEFAULT_BFD_VEC): Remove.

* configure.in: Cleanup section that sources GDB and BFD configure
subscripts.  Remove evil changequotes here.
* config.in, configure: Regenerated.
This commit is contained in:
Mark Kettenis 2003-01-02 22:49:31 +00:00
parent 50abf9e57b
commit 27e9bf901e
5 changed files with 423 additions and 431 deletions

View File

@ -1,3 +1,10 @@
2003-01-02 Mark Kettenis <kettenis@gnu.org>
* acconfig.h (DEFAULT_BFD_ARCH, DEFAULT_BFD_VEC): Remove.
* configure.in: Cleanup section that sources GDB and BFD configure
subscripts. Remove evil changequotes here.
* config.in, configure: Regenerated.
2003-01-02 Andrew Cagney <ac131313@redhat.com>
* arm-tdep.c: Use get_frame_pc and deprecated_update_frame_pc_hack

View File

@ -156,12 +156,6 @@
/* Define if <sys/ptrace.h> defines the PT_GETXMMREGS request. */
#undef HAVE_PT_GETXMMREGS
/* BFD's default architecture. */
#undef DEFAULT_BFD_ARCH
/* BFD's default target vector. */
#undef DEFAULT_BFD_VEC
/* Multi-arch enabled. */
#undef GDB_MULTI_ARCH

View File

@ -169,12 +169,6 @@
/* Define if <sys/ptrace.h> defines the PT_GETXMMREGS request. */
#undef HAVE_PT_GETXMMREGS
/* BFD's default architecture. */
#undef DEFAULT_BFD_ARCH
/* BFD's default target vector. */
#undef DEFAULT_BFD_VEC
/* Multi-arch enabled. */
#undef GDB_MULTI_ARCH
@ -421,6 +415,12 @@
/* Name of this package. */
#undef PACKAGE
/* Define to BFD's default architecture. */
#undef DEFAULT_BFD_ARCH
/* Define to BFD's default target vector. */
#undef DEFAULT_BFD_VEC
/* Define to 1 to avoid a clash between <widec.h> and <wchar.h> on
Solaris 2.[78] when using GCC. */
#undef _MSE_INT_H

796
gdb/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -76,31 +76,24 @@ if test "${enable_multi_ice}" = "yes"; then
configdirs="${configdirs} multi-ice"
fi
dnl
changequote(,)dnl
. $srcdir/configure.host
. ${srcdir}/configure.host
. $srcdir/configure.tgt
. ${srcdir}/configure.tgt
# Fetch the default architecture and default target vector from BFD.
targ=$target; . $srcdir/../bfd/config.bfd
targ=${target} ; . ${srcdir}/../bfd/config.bfd
# We only want the first architecture, so strip off the others if
# there is more than one.
targ_archs=`echo $targ_archs | sed 's/ .*//'`
dnl
changequote([,])dnl
dnl use BFD to determine the default architecture and byte order
dnl (bfd_vec->byteorder provides the latter).
targ=${target}
. ${srcdir}/../bfd/config.bfd
dnl We only want the first arch, if there is more than one.
targ_archs=`echo ${targ_archs} | sed -e 's/ .*//;'`
if test x"${targ_archs}" != x ; then
AC_DEFINE_UNQUOTED(DEFAULT_BFD_ARCH, ${targ_archs})
if test "x$targ_archs" != x; then
AC_DEFINE_UNQUOTED(DEFAULT_BFD_ARCH, $targ_archs,
[Define to BFD's default architecture. ])
fi
if test x"${targ_defvec}" != x ; then
AC_DEFINE_UNQUOTED(DEFAULT_BFD_VEC, ${targ_defvec})
if test "x$targ_defvec" != x; then
AC_DEFINE_UNQUOTED(DEFAULT_BFD_VEC, $targ_defvec,
[Define to BFD's default target vector. ])
fi
AC_ARG_PROGRAM