782445c7aa
* Makefile.in, configure.in, gdb.base/{Makefile.in, configure.in}, gdb.c++/{Makefile.in, configure.in}, gdb.chill/{Makefile.in, configure.in}, gdb.disasm/{Makefile.in, configure.in}, gdb.stabs/{Makefile.in, configure.in}, gdb.threads/{Makefile.in, configure.in}: Major reworking for autoconfig. * aclocal.m4, configure, gdb.base/configure, gdb.c++/configure, gdb.disasm/configure, gdb.stabs/configure, gdb.stabs/default.mt : New files. * config/unix-gdb.exp: Make GDB global. * gdb.base/{a1-selftest.exp, a2-run.exp,bitfields.exp, break.exp, callfuncs.exp, commands.exp, corefile.exp, crossload.exp, exprs.exp, funcargs.exp, interrupt.exp, langs.exp, list.exp, mips_pro.exp, nodebug.exp, opaque.exp, printcmds.exp, ptype.exp, recurse.exp, regs.exp, return.exp, scope.exp, setvar.exp, sigall.exp, signals.exp, term.exp, twice.exp, watchpoint.exp, whatis.exp}, gdb.c++/{classes.exp, callfuncs.exp, inherit.exp, misc.exp, templates.exp, virtfunc.exp}, gdb.chill/{callch.exp, chillvars.exp, misc.exp, pr-4975.exp, pr-5016.exp, pr-5020.exp, pr-5022.exp, pr-5646.exp, pr-5984.exp, pr-6292.exp, pr-6632.exp, pr-8134.exp, pr-8136.exp, result.exp, string.exp, tuples.exp}, gdb.disasm/{hppa.exp, sh3.exp}, gdb.stabs/weird.exp: Change continues to returns as necessary, arrange for test to compile own testcase executable. * lib/gdb.exp: Changes for testsuite to compile own test cases. From Fred Fish (fnf@cygnus.com) * gdb.c++/classes.exp (test_pointers_to_class_members): Add clear_xfail at end of test which might not call either pass or fail. * gdb.base/a1-selftest.exp: Add i*86-*-linuxaout xfail for "backtrace through signal handler".
44 lines
1.4 KiB
Text
44 lines
1.4 KiB
Text
dnl Process this file file with autoconf to produce a configure script.
|
|
dnl This file is a shell script fragment that supplies the information
|
|
dnl necessary to tailor a template configure script into the configure
|
|
dnl script appropriate for this directory. For more information, check
|
|
dnl any existing configure script.
|
|
|
|
AC_PREREQ(1.118)
|
|
AC_INIT(gdb.base)
|
|
|
|
CC=${CC-cc}
|
|
AC_SUBST(CC)
|
|
AC_CONFIG_AUX_DIR(`cd $srcdir;pwd`/../..)
|
|
AC_CANONICAL_SYSTEM
|
|
|
|
# place. This is only so testing with a freshly built expect binary
|
|
# in the object tree will work.
|
|
CY_AC_PATH_TCLH
|
|
|
|
# Directories to use in all configurations.
|
|
configdirs="gdb.base gdb.c++ gdb.disasm gdb.chill"
|
|
|
|
# Directories to use for a configuration which uses stabs.
|
|
stabsdirs="gdb.stabs"
|
|
|
|
# this section is for targets that use stabs
|
|
# add stabs tests for appropriate targets
|
|
case "${target}" in
|
|
rs6000-*-aix*) configdirs="${configdirs} ${stabsdirs}" ;;
|
|
*-*-bsd*) configdirs="${configdirs} ${stabsdirs}" ;;
|
|
*-*-go32*) configdirs="${configdirs} ${stabsdirs}" ;;
|
|
*-*-linux*) configdirs="${configdirs} ${stabsdirs}" ;;
|
|
*-*-lynxos*) configdirs="${configdirs} ${stabsdirs}" ;;
|
|
*-sun-*) configdirs="${configdirs} ${stabsdirs}" ;;
|
|
hppa*-*-*) configdirs="${configdirs} ${stabsdirs}" ;;
|
|
*) if test "x${with_stabs}" = x"yes" ; then
|
|
configdirs="${configdirs} ${stabsdirs}"
|
|
fi ;;
|
|
esac
|
|
|
|
# configure the subdirectories too
|
|
AC_CONFIG_SUBDIRS($configdirs)
|
|
|
|
dnl AC_SUBST(gdb_target_cpu)
|
|
AC_OUTPUT(Makefile)
|