1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-02 04:40:29 +02:00

*** empty log message ***

This commit is contained in:
Rob Browning 2002-03-12 21:21:03 +00:00
parent 19ff640516
commit f4ff961d76
3 changed files with 23 additions and 1 deletions

16
RELEASE
View file

@ -154,7 +154,20 @@ Spiffing checklist:
* Remove automake and autoconf from your path, or turn off their * Remove automake and autoconf from your path, or turn off their
execute bits, or something. (Users must be able to build from the execute bits, or something. (Users must be able to build from the
tarfile without installing those tools.) tarfile without installing those tools.) As an example, you could
disable the tools during the test like so:
mkdir /tmp/stub
cat > /tmp/stub/do-nothing <<EOF
#!/bin/sh
echo warning: $0 called
sleep 10
exit 0
EOF
chmod +x /tmp/stub/do-nothing
ln /tmp/stub/do-nothing /tmp/stub/automake
ln /tmp/stub/do-nothing /tmp/stub/autoconf # etc
PATH=/tmp/stub:$PATH
* Configure, "make", "make check", and "make install". Make sure to * Configure, "make", "make check", and "make install". Make sure to
remove your previous install tree before the "make install". remove your previous install tree before the "make install".
@ -162,6 +175,7 @@ Spiffing checklist:
* Make sure LD_LIBRARY_PATH doesn't include anything unnecessary. * Make sure LD_LIBRARY_PATH doesn't include anything unnecessary.
* Run the test suite on the installed version. * Run the test suite on the installed version.
./check-guile -i [INSTALL_PATH]/bin/guile
* Look at the install tree (with "find | sort" or similar) and make * Look at the install tree (with "find | sort" or similar) and make
sure nothing seems obviously amiss. sure nothing seems obviously amiss.

4
THANKS
View file

@ -19,6 +19,10 @@ Contributors since the last release:
Keisuke Nishida Keisuke Nishida
Niibe Yutaka Niibe Yutaka
Sponsors since the last release:
The Linux Developers Group
For fixes or providing information which led to a fix: For fixes or providing information which led to a fix:
Lars J. Aas Lars J. Aas

View file

@ -1,3 +1,7 @@
2002-03-12 Rob Browning <rlb@defaultvalue.org>
* syncase.scm (gensym): fix failure on non-threaded systems.
2002-03-05 Thien-Thi Nguyen <ttn@giblet.glug.org> 2002-03-05 Thien-Thi Nguyen <ttn@giblet.glug.org>
* ftw.scm: New file. * ftw.scm: New file.