aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sim/common/ChangeLog5
-rw-r--r--sim/common/aclocal.m42
-rw-r--r--sim/fr30/ChangeLog4
-rw-r--r--sim/fr30/configure2
-rw-r--r--sim/i960/ChangeLog4
-rwxr-xr-xsim/i960/configure2
-rw-r--r--sim/m32r/ChangeLog4
-rwxr-xr-xsim/m32r/configure2
8 files changed, 21 insertions, 4 deletions
diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog
index 1caff73..dd7eddc 100644
--- a/sim/common/ChangeLog
+++ b/sim/common/ChangeLog
@@ -1,3 +1,8 @@
+2001-01-12 Chris Demetriou <cgd@sibyte.com>
+
+ * aclocal.m4 (SIM_AC_OPTION_SCACHE): Properly
+ handle the case where a numeric value is supplied.
+
2001-01-06 Ben Elliston <bje@redhat.com>
* cgen.sh: Allow extrafiles to include the semantics files when
diff --git a/sim/common/aclocal.m4 b/sim/common/aclocal.m4
index 30934b2..a1c797a 100644
--- a/sim/common/aclocal.m4
+++ b/sim/common/aclocal.m4
@@ -529,7 +529,7 @@ AC_ARG_ENABLE(sim-scache,
[case "${enableval}" in
yes) sim_scache="-DWITH_SCACHE=${default_sim_scache}";;
no) sim_scache="-DWITH_SCACHE=0" ;;
- [[0-9]]*) sim_cache=${enableval};;
+ [[0-9]]*) sim_scache="-DWITH_SCACHE=${enableval}";;
*) AC_MSG_ERROR("Bad value $enableval passed to --enable-sim-scache");
sim_scache="";;
esac
diff --git a/sim/fr30/ChangeLog b/sim/fr30/ChangeLog
index 27c8b88..bc3a8c9 100644
--- a/sim/fr30/ChangeLog
+++ b/sim/fr30/ChangeLog
@@ -1,3 +1,7 @@
+2001-01-12 Frank Ch. Eigler <fche@redhat.com>
+
+ * configure: Regenerated with sim_scache fix.
+
2000-11-18 Greg McGary <greg@mcgary.org>
* Makefile.in: remove `@true' commands for rules that have
diff --git a/sim/fr30/configure b/sim/fr30/configure
index 9696217..2c537d3 100644
--- a/sim/fr30/configure
+++ b/sim/fr30/configure
@@ -3724,7 +3724,7 @@ if test "${enable_sim_scache+set}" = set; then
case "${enableval}" in
yes) sim_scache="-DWITH_SCACHE=${default_sim_scache}";;
no) sim_scache="-DWITH_SCACHE=0" ;;
- [0-9]*) sim_cache=${enableval};;
+ [0-9]*) sim_scache="-DWITH_SCACHE=${enableval}";;
*) { echo "configure: error: "Bad value $enableval passed to --enable-sim-scache"" 1>&2; exit 1; };
sim_scache="";;
esac
diff --git a/sim/i960/ChangeLog b/sim/i960/ChangeLog
index d5050ae..ee3ef57 100644
--- a/sim/i960/ChangeLog
+++ b/sim/i960/ChangeLog
@@ -1,3 +1,7 @@
+2001-01-12 Frank Ch. Eigler <fche@redhat.com>
+
+ * configure: Regenerated with sim_scache fix.
+
2000-11-18 Greg McGary <greg@mcgary.org>
* Makefile.in: remove `@true' commands for rules that have
diff --git a/sim/i960/configure b/sim/i960/configure
index e5c144f..d848325 100755
--- a/sim/i960/configure
+++ b/sim/i960/configure
@@ -3724,7 +3724,7 @@ if test "${enable_sim_scache+set}" = set; then
case "${enableval}" in
yes) sim_scache="-DWITH_SCACHE=${default_sim_scache}";;
no) sim_scache="-DWITH_SCACHE=0" ;;
- [0-9]*) sim_cache=${enableval};;
+ [0-9]*) sim_scache="-DWITH_SCACHE=${enableval}";;
*) { echo "configure: error: "Bad value $enableval passed to --enable-sim-scache"" 1>&2; exit 1; };
sim_scache="";;
esac
diff --git a/sim/m32r/ChangeLog b/sim/m32r/ChangeLog
index cec7d3c..dca940e 100644
--- a/sim/m32r/ChangeLog
+++ b/sim/m32r/ChangeLog
@@ -1,3 +1,7 @@
+2001-01-12 Frank Ch. Eigler <fche@redhat.com>
+
+ * configure: Regenerated with sim_scache fix.
+
2000-11-18 Greg McGary <greg@mcgary.org>
* Makefile.in: remove `@true' commands for rules that have
diff --git a/sim/m32r/configure b/sim/m32r/configure
index 1ad5574..4a55bc1 100755
--- a/sim/m32r/configure
+++ b/sim/m32r/configure
@@ -3726,7 +3726,7 @@ if test "${enable_sim_scache+set}" = set; then
case "${enableval}" in
yes) sim_scache="-DWITH_SCACHE=${default_sim_scache}";;
no) sim_scache="-DWITH_SCACHE=0" ;;
- [0-9]*) sim_cache=${enableval};;
+ [0-9]*) sim_scache="-DWITH_SCACHE=${enableval}";;
*) { echo "configure: error: "Bad value $enableval passed to --enable-sim-scache"" 1>&2; exit 1; };
sim_scache="";;
esac