* configure.host (i[3456]86-*-windows): Disable long long

support for WinGDB.  Add mswin to configdirs.
	* configure.in configure:  Move calls to configure.host and
	configure.tgt to the top of configure.in to allow them to set
	config variables before they are referenced.
This commit is contained in:
Stu Grossman 1997-02-27 17:46:18 +00:00
parent 894b9f921d
commit bfde4a671b
4 changed files with 552 additions and 261 deletions

View File

@ -1,3 +1,20 @@
Thu Feb 27 09:38:16 1997 Stu Grossman (grossman@critters.cygnus.com)
* configure.host (i[3456]86-*-windows): Disable long long
support for WinGDB. Add mswin to configdirs.
* configure.in configure: Move calls to configure.host and
configure.tgt to the top of configure.in to allow them to set
config variables before they are referenced.
Tue Feb 25 20:21:52 1997 Stan Shebs <shebs@andros.cygnus.com>
* configure.tgt (mips*-*-lnews*): New target.
Mon Feb 24 16:35:00 1997 Jeffrey A Law (law@cygnus.com)
* mn10200-tdep.c (mn10200_analyze_prologue): Don't fix fi->frame
if we're not the innermost frame. Fix minor typos.
Sat Feb 22 03:39:50 1997 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
* stabsread.c (read_type): Fix handling of template names

760
gdb/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -74,7 +74,9 @@ i[3456]86-*-isc*) gdb_host=i386v32 ;;
i[3456]86-*-os9k) gdb_host=i386os9k ;;
i[3456]86-*-cygwin32) gdb_host=cygwin32 ;;
i[3456]86-*-windows) gdb_host=windows
configdirs=mswin ;;
configdirs=mswin
gdb_cv_c_long_long=no
gdb_cv_printf_has_long_long=no ;;
m680[01]0-sun-sunos3*) gdb_host=sun2os3 ;;
m680[01]0-sun-sunos4*) gdb_host=sun2os4 ;;
m68030-sony-*) gdb_host=news1000 ;;

View File

@ -30,6 +30,22 @@ AC_ISC_POSIX
AC_CANONICAL_SYSTEM
dnl List of object files added by configure.
CONFIG_OBS=
configdirs="doc testsuite"
dnl
changequote(,)dnl
. ${srcdir}/configure.host
. ${srcdir}/configure.tgt
dnl
changequote([,])dnl
AC_PROG_INSTALL
AC_CHECK_TOOL(AR, ar)
AC_CHECK_TOOL(RANLIB, ranlib, :)
@ -47,10 +63,6 @@ AC_C_CONST
AC_CHECK_FUNCS(setpgid sbrk select poll)
dnl List of object files added by configuire.
CONFIG_OBS=
# If we are configured native on Linux, work around problems with sys/procfs.h
if test "${target}" = "${host}"; then
case "${host}" in
@ -362,18 +374,6 @@ if test "${host}" != "${target}"; then
fi
AC_SUBST(target_subdir)
configdirs="doc testsuite"
dnl
changequote(,)dnl
. ${srcdir}/configure.host
. ${srcdir}/configure.tgt
dnl
changequote([,])dnl
frags=
host_makefile_frag=${srcdir}/config/${gdb_host_cpu}/${gdb_host}.mh
if test ! -f ${host_makefile_frag}; then