From: Rob Browning Date: Mon, 7 Apr 2003 17:52:28 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: https://git.hcoop.net/bpt/guile.git/commitdiff_plain/07921c76424fc8834c583752411f973e55d5438a?ds=sidebyside *** empty log message *** --- diff --git a/ChangeLog b/ChangeLog index a447e5a2a..a1f696c2b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2003-04-07 Rob Browning + * 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 + + * num2integral.i.c (NUM2INTEGRAL): fix bug pointed out by Mikael + and add regression test to standalone/. + +2003-04-06 Rob Browning + + * 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 * 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 + + * 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 * Changed license terms to the plain LGPL thru-out.