summaryrefslogtreecommitdiff
path: root/examples/box-dynamic
AgeCommit message (Collapse)AuthorFilesLines
2021-04-04Fix typos in examples.Mikael Djurfeldt1-1/+1
Thanks to Eugene Klimov.
2018-06-20Update license notices in all C filesAndy Wingo1-19/+19
Update to newest recommended license notices from the FSF. Everything stays LGPLv3+ except guile-readline which is GPLv3+.
2018-06-20Remove (C) from copyright statementsAndy Wingo1-1/+2
As the FSF advises, 'There is no legal significance to using the three-character sequence “(C)”, but it does no harm.' It does take up space though! For that reason, we remove it here from our C files.
2009-06-17Change Guile license to LGPLv3+Neil Jerram1-12/+12
(Not quite finished, the following will be done tomorrow. module/srfi/*.scm module/rnrs/*.scm module/scripts/*.scm testsuite/*.scm guile-readline/* )
2009-03-24Aggregate `Makefile.am' files under `examples/'.Ludovic Courtès2-74/+0
* configure.in: Don't produce `examples/*/Makefile'. * examples/Makefile.am (SUBDIRS): Remove. (EXTRA_DIST, AM_CFLAGS, AM_LIBS): New. (box/box, box/box.o, box-module/box, box-module/box.o, libbox.la, box-dynamic/box.lo, libbox-module.la, box-dynamic-module/box.lo, installcheck, CLEANFILES, clean-local): New targets, aggregated from `Makefile.am' files formerly in sub-directories. * examples/check.test: New file, aggregated from `check.test' files in sub-directories.
2008-09-11Remove `.cvsignore' files.Ludovic Courtès1-2/+0
2006-04-16merge from 1.8 branchKevin Ryde2-2/+2
2005-05-23The FSF has a new address.Marius Vollmer2-4/+4
2001-07-27Check in forgotten test scripts.Martin Grabmüller1-0/+38
2001-07-26Minor typo fix in NEWS.Martin Grabmüller1-5/+10
Examples are now built and tested on `make installcheck'.
2001-07-09 * box-dynamic/README: Corrected sample session.Martin Grabmüller2-2/+2
* box-module/box.c, box-dynamic-module/box.c, box-dynamic/box.c * box/box.c: scm_bits_t -> scm_t_bits.
2001-06-14 * scripts/README, scripts/hello.scm, safe/untrusted.scm,Martin Grabmüller1-4/+21
safe/evil.scm, safe/README, modules/README, modules/main, modules/module-0.scm, modules/module-1.scm, modules/module-2.scm: Minor cleanup. * README: Added intro stuff, restructured a bit. * box-dynamic/README, box-module/README, box/README: Cleanup and restructuring. * box-dynamic-module/box-mixed.scm: New file, demonstrating usage of extension library functionality, but without exporting procedures from the library. Thanks to Thomas Wawrzinek for the idea and example code! * box-dynamic-module/box-module.scm: Add comments, export make-box, box-ref, box-set!. * box-dynamic-module/README: Integrate new module (box-mixed), restructure and cleanup a bit.
2001-06-05 * box-dynamic-module: New directory, implements the box type in aMartin Grabmüller1-1/+1
shared library and places the definitions in a C-only module. Thanks to Thomas Wawrzinek for this, too! * box-dynamic/box.c, box/box.c, box-dynamic-module/box.c, box-module/box.c (mark_box): Fixed typo in comment.
2001-06-02* .cvsignore: here and in all subdirectories listing Makefile andRob Browning1-0/+2
Makefile.in.
2001-05-31 * box-dynamic: New directory, implements the box type in a sharedMartin Grabmüller3-0/+200
library (aka extension) Thanks to Thomas Wawrzinek for patching box.c into an extension!