aboutsummaryrefslogtreecommitdiff
path: root/opcodes/configure.in
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1995-11-06 22:42:13 +0000
committerIan Lance Taylor <ian@airs.com>1995-11-06 22:42:13 +0000
commitf98c33694641b7cda35a0a4ff786d54132e4bb4b (patch)
tree56e9630ee6782a2e4e55c9b38893d3274d095e86 /opcodes/configure.in
parentda40dd533030ae907fac5f17571497e404882bf0 (diff)
downloadgdb-f98c33694641b7cda35a0a4ff786d54132e4bb4b.zip
gdb-f98c33694641b7cda35a0a4ff786d54132e4bb4b.tar.gz
gdb-f98c33694641b7cda35a0a4ff786d54132e4bb4b.tar.bz2
Mon Nov 6 17:39:47 1995 Harry Dolan <dolan@ssd.intel.com>
* configure.in: Add case for bfd_i860_arch. * configure: Rebuild.
Diffstat (limited to 'opcodes/configure.in')
-rw-r--r--opcodes/configure.in23
1 files changed, 11 insertions, 12 deletions
diff --git a/opcodes/configure.in b/opcodes/configure.in
index 0af46fc..1ef7c5d 100644
--- a/opcodes/configure.in
+++ b/opcodes/configure.in
@@ -27,6 +27,14 @@ AC_ARG_ENABLE(targets,
*) enable_targets=$enableval ;;
esac])dnl
+AC_CONFIG_HEADER(config.h:config.in)
+
+AC_CONFIG_AUX_DIR(`cd $srcdir/..;pwd`)
+AC_CANONICAL_SYSTEM
+if test -z "$target" ; then
+ AC_MSG_ERROR(Unrecognized target system type; please check config.sub.)
+fi
+
# host-specific stuff:
. ${srcdir}/../bfd/configure.host
@@ -41,16 +49,6 @@ AC_PROG_INSTALL
AC_CHECK_HEADERS(string.h strings.h)
-AC_CONFIG_AUX_DIR(`cd $srcdir/..;pwd`)
-AC_CANONICAL_SYSTEM
-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_ARG_PROGRAM
-
# target-specific stuff:
# Canonicalize the secondary target names.
@@ -101,6 +99,7 @@ if test x${all_targets} = xfalse ; then
bfd_h8500_arch) ta="$ta h8500-dis.o" ;;
bfd_hppa_arch) ta="$ta hppa-dis.o" ;;
bfd_i386_arch) ta="$ta i386-dis.o" ;;
+ bfd_i860_arch) ;;
bfd_i960_arch) ta="$ta i960-dis.o" ;;
bfd_m68k_arch) ta="$ta m68k-dis.o m68k-opc.o" ;;
bfd_m88k_arch) ta="$ta m88k-dis.o" ;;
@@ -153,5 +152,5 @@ fi
AC_SUBST(archdefs)
AC_SUBST(BFD_MACHINES)
-AC_CONFIG_HEADER(config.h:config.in)
-AC_OUTPUT(Makefile)
+AC_OUTPUT(Makefile,
+[case x$CONFIG_HEADERS in xconfig.h:config.in) echo > stamp-h ;; esac])