diff --git a/changes4.3.html b/changes4.3.html
index ff52f5b71..1ee2da8a5 100644
--- a/changes4.3.html
+++ b/changes4.3.html
@@ -16,6 +16,15 @@
Yap-4.3.21:
+ - NEW: yap_flag(argv,L) (Nicos Angelopoulos).
+ - FIXED: make user the name of the first three streams.
+ - NEW: reachable/3 in ugraphs (Nicos Angelopoulos).
+ - NEW: -f flag in boot (Nicos Angelopoulos).
+ - FIXED: manual html warnings (Nicos Angelopoulos).
+ - NEW: yap_flag(informational_messages) allows disabling
+ informational messages (Nicos Angelopoulos).
+ - FIXED: lcc would choke when compiling Yap.
+ - FIXED: simplesim miscompilations.
- FIXED: more SICStus like top-level messaging (Nicos Angelopoulos).
- FIXED: missing WIN32 interface declaration (Christophe Billard).
- FIXED: alarm was not working in WIN32 (Tolga Konick).
diff --git a/configure b/configure
index d02676bb1..dc315b2fa 100755
--- a/configure
+++ b/configure
@@ -1817,7 +1817,7 @@ else
yap_cv_trail_space=0
fi;
-if test $tabling = yes -o $orparallelism = yes -o "$CC" = "sslittle-na-sstrix-gcc"
+if test $tabling = yes -o $orparallelism = yes
then
cat >>confdefs.h <<\EOF
#define MinHeapSpace (400*SIZEOF_INT_P)
diff --git a/configure.in b/configure.in
index 1950a3de5..f337e9763 100644
--- a/configure.in
+++ b/configure.in
@@ -102,7 +102,7 @@ AC_ARG_WITH(trail-space,
fi,
[yap_cv_trail_space=0])
-if test $tabling = yes -o $orparallelism = yes -o "$CC" = "sslittle-na-sstrix-gcc"
+if test $tabling = yes -o $orparallelism = yes
then
AC_DEFINE(MinHeapSpace, (400*SIZEOF_INT_P))
AC_DEFINE(MinStackSpace,(300*SIZEOF_INT_P))