summaryrefslogtreecommitdiff
path: root/examples/box-dynamic
Commit message (Collapse)AuthorAgeFilesLines
* Fix typos in examples.Mikael Djurfeldt2021-04-041-1/+1
| | | | Thanks to Eugene Klimov.
* Update license notices in all C filesAndy Wingo2018-06-201-19/+19
| | | | | Update to newest recommended license notices from the FSF. Everything stays LGPLv3+ except guile-readline which is GPLv3+.
* Remove (C) from copyright statementsAndy Wingo2018-06-201-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.
* Change Guile license to LGPLv3+Neil Jerram2009-06-171-12/+12
| | | | | | | | | | (Not quite finished, the following will be done tomorrow. module/srfi/*.scm module/rnrs/*.scm module/scripts/*.scm testsuite/*.scm guile-readline/* )
* Aggregate `Makefile.am' files under `examples/'.Ludovic Courtès2009-03-242-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.
* Remove `.cvsignore' files.Ludovic Courtès2008-09-111-2/+0
|
* merge from 1.8 branchKevin Ryde2006-04-162-2/+2
|
* The FSF has a new address.Marius Vollmer2005-05-232-4/+4
|
* Check in forgotten test scripts.Martin Grabmüller2001-07-271-0/+38
|
* Minor typo fix in NEWS.Martin Grabmüller2001-07-261-5/+10
| | | | Examples are now built and tested on `make installcheck'.
* * box-dynamic/README: Corrected sample session.Martin Grabmüller2001-07-092-2/+2
| | | | | * box-module/box.c, box-dynamic-module/box.c, box-dynamic/box.c * box/box.c: scm_bits_t -> scm_t_bits.
* * scripts/README, scripts/hello.scm, safe/untrusted.scm,Martin Grabmüller2001-06-141-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.
* * box-dynamic-module: New directory, implements the box type in aMartin Grabmüller2001-06-051-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.
* * .cvsignore: here and in all subdirectories listing Makefile andRob Browning2001-06-021-0/+2
| | | | Makefile.in.
* * box-dynamic: New directory, implements the box type in a sharedMartin Grabmüller2001-05-313-0/+200
library (aka extension) Thanks to Thomas Wawrzinek for patching box.c into an extension!