mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
Minor typo fix in NEWS.
Examples are now built and tested on `make installcheck'.
This commit is contained in:
parent
3c3db1289a
commit
67b7dd9ea9
9 changed files with 115 additions and 25 deletions
2
NEWS
2
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
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -19,13 +19,18 @@
|
|||
## 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 $<
|
||||
|
||||
installcheck: libbox-module
|
||||
LTDL_LIBRARY_PATH=.libs GUILE_LOAD_PATH=$(top_srcdir):$(srcdir) $(srcdir)/check.test
|
||||
|
||||
CLEANFILES=libbox-module.la box.lo box.o
|
||||
|
|
|
@ -19,13 +19,18 @@
|
|||
## 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 $<
|
||||
|
||||
installcheck: libbox
|
||||
LTDL_LIBRARY_PATH=.libs GUILE_LOAD_PATH=$(top_srcdir):$(srcdir) $(srcdir)/check.test
|
||||
|
||||
CLEANFILES=libbox.la box.lo box.o
|
||||
|
|
|
@ -19,13 +19,18 @@
|
|||
## 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 $<
|
||||
|
||||
installcheck: box
|
||||
LD_LIBRARY_PATH=$(libdir) GUILE_LOAD_PATH=$(top_srcdir) $(srcdir)/check.test
|
||||
|
||||
CLEANFILES=box box.o
|
||||
|
|
|
@ -19,13 +19,18 @@
|
|||
## 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 $<
|
||||
|
||||
installcheck: box
|
||||
LD_LIBRARY_PATH=$(libdir) GUILE_LOAD_PATH=$(top_srcdir) $(srcdir)/check.test
|
||||
|
||||
CLEANFILES=box box.o
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -19,4 +19,7 @@
|
|||
## 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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue