summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--libguile/ChangeLog21
-rw-r--r--pre-inst-guile.in7
-rw-r--r--test-suite/ChangeLog39
4 files changed, 70 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index a447e5a2a..a1f696c2b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2003-04-07 Rob Browning <rlb@defaultvalue.org>
+ * pre-inst-guile-env.in: new script -- can be used to run commands
+ in an envt set up using the development libs, Guile, etc.
+
* configure.in: handle pre-inst-guile-env and add
test-suite/standalone/Makefile.
diff --git a/libguile/ChangeLog b/libguile/ChangeLog
index d3f9ed523..58ae23ac7 100644
--- a/libguile/ChangeLog
+++ b/libguile/ChangeLog
@@ -1,3 +1,24 @@
+2003-04-07 Rob Browning <rlb@defaultvalue.org>
+
+ * num2integral.i.c (NUM2INTEGRAL): fix bug pointed out by Mikael
+ and add regression test to standalone/.
+
+2003-04-06 Rob Browning <rlb@defaultvalue.org>
+
+ * strings.c (scm_mem2string): use memcpy rather than by-hand loop.
+ Thanks to Dale P. Smith.
+
+ * random.c: #include gmp.h.
+ (scm_c_random_bignum): normalize result on return.
+
+ * init.c: #include gmp.h.
+
+ * numbers.h: remove the gmp.h #include (not needed now).
+
+ * posix.h: change occurences of "id" to something else so we don't
+ cause trouble when included via objective-c (can't hurt, might
+ help). Still have usage in debug.h, though.
+
2003-04-06 Mikael Djurfeldt <djurfeldt@nada.kth.se>
* random.c (scm_c_random_bignum): Don't generate a random number
diff --git a/pre-inst-guile.in b/pre-inst-guile.in
index 206eab174..d5cbc1b26 100644
--- a/pre-inst-guile.in
+++ b/pre-inst-guile.in
@@ -19,6 +19,13 @@
# to the Free Software Foundation, Inc., 59 Temple Place, Suite
# 330, Boston, MA 02111-1307 USA
+# NOTE: at some point we might consider invoking this under
+# pre-inst-guile-env. If this will work, then most of the code below
+# can be removed.
+
+# NOTE: If you update this file, please update pre-inst-guile-env.in
+# as well, if appropriate.
+
# Commentary:
# Usage: pre-inst-guile [ARGS]
diff --git a/test-suite/ChangeLog b/test-suite/ChangeLog
index 74d788987..512a41ac7 100644
--- a/test-suite/ChangeLog
+++ b/test-suite/ChangeLog
@@ -1,3 +1,42 @@
+2003-04-07 Rob Browning <rlb@defaultvalue.org>
+
+ * Makefile.am (SUBDIRS): add standalone.
+
+ * guile-test: added "Running test FOO" output by default. There
+ may be a good reason to remove this, but the output can be helpful
+ in determining where a failure occurred.
+
+ * standalone/test-num2integral.c: new test -- one new regression
+ check.
+
+ * standalone/test-gh.c: new test code (migrated from
+ tests/c-api/) -- a trivial start.
+
+ * standalone/test-asmobs-lib.c: new test script (migrated from
+ tests/asmobs/).
+
+ * standalone/test-asmobs: new test script.
+
+ * standalone/README: new file.
+
+ * standalone/Makefile.am: new file.
+
+ * standalone/.cvsignore: new file.
+
+ * tests/asmobs/Makefile: removed (functionality is now in standalone/).
+
+ * tests/asmobs/README: removed (functionality is now in standalone/).
+
+ * tests/asmobs/asmobs-test.scm: removed (functionality is now in
+ standalone/).
+
+ * tests/asmobs/asmobs.c: removed (functionality is now in standalone/).
+
+ * tests/asmobs/: removed (functionality is now in standalone/).
+
+ * tests/c-api/strings.c: add a note to the source about this code
+ being unused.
+
2003-04-05 Marius Vollmer <mvo@zagadka.de>
* Changed license terms to the plain LGPL thru-out.