Minor typo fix in NEWS.
authorMartin Grabmüller <mgrabmue@cs.tu-berlin.de>
Thu, 26 Jul 2001 05:31:57 +0000 (05:31 +0000)
committerMartin Grabmüller <mgrabmue@cs.tu-berlin.de>
Thu, 26 Jul 2001 05:31:57 +0000 (05:31 +0000)
Examples are now built and tested on `make installcheck'.

NEWS
examples/ChangeLog
examples/box-dynamic-module/Makefile.am
examples/box-dynamic/Makefile.am
examples/box-module/Makefile.am
examples/box/Makefile.am
examples/modules/Makefile.am
examples/safe/Makefile.am
examples/scripts/Makefile.am

diff --git a/NEWS b/NEWS
index cd1fb1d..ea966c8 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -55,7 +55,7 @@ same name.
 For safety reasons, #. evaluation is disabled by default.  To
 re-enable it, set the fluid read-eval? to #t.  For example:
 
-  (fluid-set read-eval? #t)
+  (fluid-set! read-eval? #t)
 
 but make sure you realize the potential security risks involved.  With
 read-eval?  enabled, reading a data file from an untrusted source can
index d7a556d..f707424 100644 (file)
@@ -1,3 +1,64 @@
+2001-07-24  Martin Grabmueller  <mgrabmue@cs.tu-berlin.de>
+
+       All examples are now built and tested on `make installcheck'
+       rather than `make check'.
+
+2001-07-19  Martin Grabmueller  <mgrabmue@cs.tu-berlin.de>
+
+       * box-dynamic-module/Makefile.am, box-dynamic/Makefile.am,
+       box-module/Makefile.am, box/Makefile.am: Use $(top_srcdir) to get
+       at GUILE_LOAD_PATH, and $(top_builddir) for the guile and
+       guile-config programs and for the link paths.  Add check.test to
+       EXTRA_DIST.
+
+       * box-dynamic-module/Makefile.am, box-dynamic/Makefile.am,
+       box-module/Makefile.am, box/Makefile.am: Add -L../../qt to LIBS.
+
+2001-07-19  Rob Browning  <rlb@defaultvalue.org>
+
+       * box-module/.cvsignore: add .deps
+
+       * box/.cvsignore: add .deps.
+
+2001-07-17  Martin Grabmueller  <mgrabmue@cs.tu-berlin.de>
+
+       * box-module/Makefile.am (TESTS): New variable.
+       Create `box' on `make all'.
+
+       * box-module/check.test, box-dynamic-module/check.test,
+       * box-dynamic/check.test: New files.
+
+       * box-dynamic/Makefile.am (libbox): Create box library on `make
+       all'.
+       (TESTS): New variable.
+
+       * box/Makefile.am (TESTS): New variable.  
+       Create `box' program on `make all', use freshly built Guile for
+       building.
+
+       * box/check.test: New file.
+
+       * modules/check.test, safe/check.test, scripts/check.test: Set
+       GUILE_LOAD_PATH to make the tests run without installed Guile.
+
+2001-07-16  Thien-Thi Nguyen  <ttn@revel.glug.org>
+
+       * scripts/check.test: Add check for guile interpreter.
+       Fix bug: Use `$guile' everywhere.  Thanks to Martin Grabmueller.
+
+2001-07-16  Martin Grabmueller  <mgrabmue@cs.tu-berlin.de>
+
+       * modules/check.test, safe/check.test: New files.
+
+       * modules/Makefile.am (TESTS), safe/Makefile.am (TESTS): New
+       variables.
+
+2001-07-14  Thien-Thi Nguyen  <ttn@revel.glug.org>
+
+       * scripts/check.test: New file.
+
+       * Makefile.am (TESTS): New var.
+
 2001-07-14  Martin Grabmueller  <mgrabmue@cs.tu-berlin.de>
 
        * modules/main: Use :renamer for specifying renaming procedure.
index 4d7df02..665a7de 100644 (file)
 ##   to the Free Software Foundation, Inc., 59 Temple Place, Suite
 ##   330, Boston, MA 02111-1307 USA
 
-EXTRA_DIST = README box.c box-module.scm box-mixed.scm
+EXTRA_DIST = README box.c box-module.scm box-mixed.scm check.test
 
-CFLAGS=`guile-config compile`
-LIBS=`guile-config link`
+CFLAGS=`$(bindir)/guile-config compile`
+LIBS=`$(bindir)/guile-config link`
 
 libbox-module: box.lo
-       sh ../../libtool --mode=link $(CC) $< $(LIBS) -rpath $(prefix)/lib -o libbox-module.la
+       sh ../../libtool --mode=link $(CC) $< $(LIBS) -rpath $(libdir) -o libbox-module.la
 
 box.lo: box.c
-       sh ../../libtool --mode=compile $(CC) $(CFLAGS) -c $< 
\ No newline at end of file
+       sh ../../libtool --mode=compile $(CC) $(CFLAGS) -c $< 
+
+installcheck: libbox-module
+       LTDL_LIBRARY_PATH=.libs GUILE_LOAD_PATH=$(top_srcdir):$(srcdir) $(srcdir)/check.test
+
+CLEANFILES=libbox-module.la box.lo box.o
index 7bb9f46..574eadb 100644 (file)
 ##   to the Free Software Foundation, Inc., 59 Temple Place, Suite
 ##   330, Boston, MA 02111-1307 USA
 
-EXTRA_DIST = README box.c
+EXTRA_DIST = README box.c check.test
 
-CFLAGS=`guile-config compile`
-LIBS=`guile-config link`
+CFLAGS=`$(bindir)/guile-config compile`
+LIBS=`$(bindir)/guile-config link`
 
 libbox: box.lo
-       sh ../../libtool --mode=link $(CC) $< $(LIBS) -rpath $(prefix)/lib -o libbox.la
+       sh ../../libtool --mode=link $(CC) $< $(LIBS) -rpath $(libdir) -o libbox.la
 
 box.lo: box.c
-       sh ../../libtool --mode=compile $(CC) $(CFLAGS) -c $< 
\ No newline at end of file
+       sh ../../libtool --mode=compile $(CC) $(CFLAGS) -c $< 
+
+installcheck: libbox
+       LTDL_LIBRARY_PATH=.libs GUILE_LOAD_PATH=$(top_srcdir):$(srcdir) $(srcdir)/check.test
+
+CLEANFILES=libbox.la box.lo box.o
index 3e1f920..3fe82e7 100644 (file)
 ##   to the Free Software Foundation, Inc., 59 Temple Place, Suite
 ##   330, Boston, MA 02111-1307 USA
 
-EXTRA_DIST = README box.c
+EXTRA_DIST = README box.c check.test
 
-CFLAGS=`guile-config compile`
-LIBS=`guile-config link`
+CFLAGS=`$(bindir)/guile-config compile`
+LIBS=`$(bindir)/guile-config link`
 
 box: box.o
        $(CC) $< $(LIBS) -o box
 
 box.o: box.c
-       $(CC) $(CFLAGS) -c $< 
\ No newline at end of file
+       $(CC) $(CFLAGS) -c $< 
+
+installcheck: box
+       LD_LIBRARY_PATH=$(libdir) GUILE_LOAD_PATH=$(top_srcdir) $(srcdir)/check.test
+
+CLEANFILES=box box.o
index 3e1f920..3fe82e7 100644 (file)
 ##   to the Free Software Foundation, Inc., 59 Temple Place, Suite
 ##   330, Boston, MA 02111-1307 USA
 
-EXTRA_DIST = README box.c
+EXTRA_DIST = README box.c check.test
 
-CFLAGS=`guile-config compile`
-LIBS=`guile-config link`
+CFLAGS=`$(bindir)/guile-config compile`
+LIBS=`$(bindir)/guile-config link`
 
 box: box.o
        $(CC) $< $(LIBS) -o box
 
 box.o: box.c
-       $(CC) $(CFLAGS) -c $< 
\ No newline at end of file
+       $(CC) $(CFLAGS) -c $< 
+
+installcheck: box
+       LD_LIBRARY_PATH=$(libdir) GUILE_LOAD_PATH=$(top_srcdir) $(srcdir)/check.test
+
+CLEANFILES=box box.o
index 35988c5..a6a9e0e 100644 (file)
@@ -19,4 +19,7 @@
 ##   to the Free Software Foundation, Inc., 59 Temple Place, Suite
 ##   330, Boston, MA 02111-1307 USA
 
-EXTRA_DIST = README module-0.scm module-1.scm module-2.scm main
+EXTRA_DIST = README module-0.scm module-1.scm module-2.scm main check.test
+
+installcheck:
+       srcdir=$(srcdir) GUILE_LOAD_PATH=$(top_srcdir):$(srcdir) $(srcdir)/check.test
index cf41df7..16c2f16 100644 (file)
@@ -19,4 +19,7 @@
 ##   to the Free Software Foundation, Inc., 59 Temple Place, Suite
 ##   330, Boston, MA 02111-1307 USA
 
-EXTRA_DIST = README safe untrusted.scm evil.scm
+EXTRA_DIST = README safe untrusted.scm evil.scm check.test
+
+installcheck:
+       srcdir=$(srcdir) GUILE_LOAD_PATH=$(top_srcdir) $(srcdir)/check.test
index ff61730..3a82dad 100644 (file)
@@ -3,20 +3,23 @@
 ##   Copyright (C) 2001 Free Software Foundation, Inc.
 ##
 ##   This file is part of GUILE.
-##   
+##
 ##   GUILE is free software; you can redistribute it and/or modify
 ##   it under the terms of the GNU General Public License as
 ##   published by the Free Software Foundation; either version 2, or
 ##   (at your option) any later version.
-##   
+##
 ##   GUILE is distributed in the hope that it will be useful, but
 ##   WITHOUT ANY WARRANTY; without even the implied warranty of
 ##   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 ##   GNU General Public License for more details.
-##   
+##
 ##   You should have received a copy of the GNU General Public
 ##   License along with GUILE; see the file COPYING.  If not, write
 ##   to the Free Software Foundation, Inc., 59 Temple Place, Suite
 ##   330, Boston, MA 02111-1307 USA
 
-EXTRA_DIST = README simple-hello.scm hello fact
+EXTRA_DIST = README simple-hello.scm hello fact check.test
+
+installcheck:
+       srcdir=$(srcdir) GUILE_LOAD_PATH=$(top_srcdir) $(srcdir)/check.test