guile-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

guile/guile-core NEWS examples/ChangeLog exampl...


From: Martin Grabmueller
Subject: guile/guile-core NEWS examples/ChangeLog exampl...
Date: Wed, 25 Jul 2001 22:31:57 -0700

CVSROOT:        /cvs
Module name:    guile
Changes by:     Martin Grabmueller <address@hidden>     01/07/25 22:31:57

Modified files:
        guile-core     : NEWS 
        guile-core/examples: ChangeLog 
        guile-core/examples/box: Makefile.am 
        guile-core/examples/box-dynamic: Makefile.am 
        guile-core/examples/box-dynamic-module: Makefile.am 
        guile-core/examples/box-module: Makefile.am 
        guile-core/examples/modules: Makefile.am 
        guile-core/examples/safe: Makefile.am 
        guile-core/examples/scripts: Makefile.am 

Log message:
        Minor typo fix in NEWS.
        
        Examples are now built and tested on `make installcheck'.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/NEWS.diff?cvsroot=OldCVS&tr1=1.312&tr2=1.313&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/examples/ChangeLog.diff?cvsroot=OldCVS&tr1=1.10&tr2=1.11&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/examples/box/Makefile.am.diff?cvsroot=OldCVS&tr1=1.1&tr2=1.2&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/examples/box-dynamic/Makefile.am.diff?cvsroot=OldCVS&tr1=1.1&tr2=1.2&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/examples/box-dynamic-module/Makefile.am.diff?cvsroot=OldCVS&tr1=1.3&tr2=1.4&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/examples/box-module/Makefile.am.diff?cvsroot=OldCVS&tr1=1.1&tr2=1.2&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/examples/modules/Makefile.am.diff?cvsroot=OldCVS&tr1=1.1&tr2=1.2&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/examples/safe/Makefile.am.diff?cvsroot=OldCVS&tr1=1.1&tr2=1.2&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/examples/scripts/Makefile.am.diff?cvsroot=OldCVS&tr1=1.1&tr2=1.2&r1=text&r2=text

Patches:
Index: guile/guile-core/NEWS
diff -u guile/guile-core/NEWS:1.312 guile/guile-core/NEWS:1.313
--- guile/guile-core/NEWS:1.312 Wed Jul 25 08:32:20 2001
+++ guile/guile-core/NEWS       Wed Jul 25 22:31:57 2001
@@ -55,7 +55,7 @@
 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: guile/guile-core/examples/ChangeLog
diff -u guile/guile-core/examples/ChangeLog:1.10 
guile/guile-core/examples/ChangeLog:1.11
--- guile/guile-core/examples/ChangeLog:1.10    Sat Jul 14 04:11:48 2001
+++ guile/guile-core/examples/ChangeLog Wed Jul 25 22:31:57 2001
@@ -1,3 +1,64 @@
+2001-07-24  Martin Grabmueller  <address@hidden>
+
+       All examples are now built and tested on `make installcheck'
+       rather than `make check'.
+
+2001-07-19  Martin Grabmueller  <address@hidden>
+
+       * 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  <address@hidden>
+
+       * box-module/.cvsignore: add .deps
+
+       * box/.cvsignore: add .deps.
+
+2001-07-17  Martin Grabmueller  <address@hidden>
+
+       * 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  <address@hidden>
+
+       * scripts/check.test: Add check for guile interpreter.
+       Fix bug: Use `$guile' everywhere.  Thanks to Martin Grabmueller.
+
+2001-07-16  Martin Grabmueller  <address@hidden>
+
+       * modules/check.test, safe/check.test: New files.
+
+       * modules/Makefile.am (TESTS), safe/Makefile.am (TESTS): New
+       variables.
+
+2001-07-14  Thien-Thi Nguyen  <address@hidden>
+
+       * scripts/check.test: New file.
+
+       * Makefile.am (TESTS): New var.
+
 2001-07-14  Martin Grabmueller  <address@hidden>
 
        * modules/main: Use :renamer for specifying renaming procedure.
Index: guile/guile-core/examples/box-dynamic-module/Makefile.am
diff -u guile/guile-core/examples/box-dynamic-module/Makefile.am:1.3 
guile/guile-core/examples/box-dynamic-module/Makefile.am:1.4
--- guile/guile-core/examples/box-dynamic-module/Makefile.am:1.3        Thu Jun 
14 13:36:05 2001
+++ guile/guile-core/examples/box-dynamic-module/Makefile.am    Wed Jul 25 
22:31:57 2001
@@ -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 $< 
\ 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: guile/guile-core/examples/box-dynamic/Makefile.am
diff -u guile/guile-core/examples/box-dynamic/Makefile.am:1.1 
guile/guile-core/examples/box-dynamic/Makefile.am:1.2
--- guile/guile-core/examples/box-dynamic/Makefile.am:1.1       Thu May 31 
11:24:11 2001
+++ guile/guile-core/examples/box-dynamic/Makefile.am   Wed Jul 25 22:31:57 2001
@@ -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 $< 
\ 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: guile/guile-core/examples/box-module/Makefile.am
diff -u guile/guile-core/examples/box-module/Makefile.am:1.1 
guile/guile-core/examples/box-module/Makefile.am:1.2
--- guile/guile-core/examples/box-module/Makefile.am:1.1        Thu May 31 
08:54:25 2001
+++ guile/guile-core/examples/box-module/Makefile.am    Wed Jul 25 22:31:57 2001
@@ -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 $< 
\ 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: guile/guile-core/examples/box/Makefile.am
diff -u guile/guile-core/examples/box/Makefile.am:1.1 
guile/guile-core/examples/box/Makefile.am:1.2
--- guile/guile-core/examples/box/Makefile.am:1.1       Thu May 31 08:54:25 2001
+++ guile/guile-core/examples/box/Makefile.am   Wed Jul 25 22:31:57 2001
@@ -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 $< 
\ 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: guile/guile-core/examples/modules/Makefile.am
diff -u guile/guile-core/examples/modules/Makefile.am:1.1 
guile/guile-core/examples/modules/Makefile.am:1.2
--- guile/guile-core/examples/modules/Makefile.am:1.1   Thu May 31 08:54:25 2001
+++ guile/guile-core/examples/modules/Makefile.am       Wed Jul 25 22:31:57 2001
@@ -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: guile/guile-core/examples/safe/Makefile.am
diff -u guile/guile-core/examples/safe/Makefile.am:1.1 
guile/guile-core/examples/safe/Makefile.am:1.2
--- guile/guile-core/examples/safe/Makefile.am:1.1      Thu May 31 08:54:25 2001
+++ guile/guile-core/examples/safe/Makefile.am  Wed Jul 25 22:31:57 2001
@@ -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: guile/guile-core/examples/scripts/Makefile.am
diff -u guile/guile-core/examples/scripts/Makefile.am:1.1 
guile/guile-core/examples/scripts/Makefile.am:1.2
--- guile/guile-core/examples/scripts/Makefile.am:1.1   Thu May 31 08:54:25 2001
+++ guile/guile-core/examples/scripts/Makefile.am       Wed Jul 25 22:31:57 2001
@@ -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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]