aboutsummaryrefslogtreecommitdiff
path: root/gas/configure.in
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1995-09-13 20:35:17 +0000
committerIan Lance Taylor <ian@airs.com>1995-09-13 20:35:17 +0000
commit5f757edc84fb6d5db2e2b91c342b14c3d96ef92f (patch)
treec089f1c5afe507b1bc6fbb6275dad956fff8175a /gas/configure.in
parentaa4b3dc5091e2e50726b78da3550ccc9a1e57711 (diff)
downloadgdb-5f757edc84fb6d5db2e2b91c342b14c3d96ef92f.zip
gdb-5f757edc84fb6d5db2e2b91c342b14c3d96ef92f.tar.gz
gdb-5f757edc84fb6d5db2e2b91c342b14c3d96ef92f.tar.bz2
* Makefile.in (EXPECT): New variable.
(CHECKFLAGS): Remove. (site.exp): New target. (check): Rewrite to invoke runtest directly, rather than recurring down into testsuite. (clean-here): Remove testsuite directory. (clean, distclean): Don't recur into testsuite. * configure.in: Don't call AC_CONFIG_SUBDIRS(testsuite). * configure: Rebuild.
Diffstat (limited to 'gas/configure.in')
-rw-r--r--gas/configure.in24
1 files changed, 11 insertions, 13 deletions
diff --git a/gas/configure.in b/gas/configure.in
index bb90349..e1fa002 100644
--- a/gas/configure.in
+++ b/gas/configure.in
@@ -248,8 +248,8 @@ changequote([,])dnl
rce-*-aout) fmt=aout ;;
# end-sanitize-rce
- ns32k-pc532-mach*) fmt=aout em=pc532mach ;;
- ns32k-pc532-netbsd*) fmt=aout em=nbsd532 ;;
+ ns32k-pc532-mach* | ns32k-pc532-ux*) fmt=aout em=pc532mach ;;
+ ns32k-pc532-netbsd* | ns32k-pc532-lites*) fmt=aout em=nbsd532 ;;
sparc-*-sunos4*) fmt=aout em=sun3 ;;
sparc-*-aout | sparc*-*-vxworks)
@@ -300,6 +300,14 @@ changequote([,])dnl
*) ;;
esac
+# Other random stuff.
+
+ test -n "$want_sparcv9" && AC_DEFINE(sparcv9)
+
+ case ${cpu_type} in
+ m68k) extra_objects="$extra_objects m68k-parse.o" ;;
+ esac
+
# See if we really can support this configuration with the emulation code.
if test $this_target = $target ; then
@@ -333,14 +341,6 @@ changequote([,])dnl
emulations="$emulations $emulation"
-# Other random stuff.
-
- test -n "$want_sparcv9" && AC_DEFINE(sparcv9)
-
- case ${cpu_type} in
- m68k) extra_objects="$extra_objects m68k-parse.o" ;;
- esac
-
done
# Assign floating point type. Most processors with FP support
@@ -562,7 +562,7 @@ gas_test_headers="
#endif
"
GAS_CHECK_DECL_NEEDED(malloc, f, char *(*f)(), $gas_test_headers)
-GAS_CHECK_DECL_NEEDED(free, f, int f, $gas_test_headers)
+GAS_CHECK_DECL_NEEDED(free, f, void (*f)(), $gas_test_headers)
# Does errno.h declare errno, or do we have to add a separate declaration
# for it?
@@ -572,7 +572,5 @@ GAS_CHECK_DECL_NEEDED(errno, f, int f, [
#endif
])
-AC_CONFIG_SUBDIRS(testsuite)
-
dnl This must come last.
AC_OUTPUT(Makefile doc/Makefile .gdbinit:gdbinit.in)