| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
| |
* module/web/http.scm (parse-media-type): Parse media types as symbols.
(parse-key-value-list, parse-param-component, parse-param-list):
Change kons to val-parser. Always parse keys as symbols, and always
either cons, if there is a val, or just have the key, if there is no
val. Easier to explain and just as correct.
(declare-param-list-header!, declare-key-value-list-header!): Adapt to
key-list and param-list kons change.
("Cache-Control", "Pragma", "Transfer-Encoding", "Accept", "Expect")
("TE"): Likewise, adapt.
("Content-Type"): Param keys are symbols.
|
|
|
|
|
|
|
|
|
| |
* examples/web/hello.scm:
* examples/web/debug-sxml.scm: New examples, for simple web
applications.
* examples/README:
* examples/Makefile.am: Add new files.
|
|
|
|
|
|
| |
* examples/Makefile.am (AM_CFLAGS, AM_LIBS): Use $(PATH_SEPARATOR)
instead of `:'.
(installcheck): Likewise.
|
|
|
|
|
|
|
| |
* acinclude.m4, configure.ac, examples/compat/acinclude.m4: Properly
quote the first argument for `AC_DEFINE' and `AC_DEFINE_UNQUOTED'.
* .x-sc_m4_quote_check: New file.
|
|
|
|
|
| |
* examples/Makefile.am: Don't autocompile our tests at installcheck
time.
|
|
|
|
|
|
|
|
|
|
| |
(Not quite finished, the following will be done tomorrow.
module/srfi/*.scm
module/rnrs/*.scm
module/scripts/*.scm
testsuite/*.scm
guile-readline/*
)
|
|
|
|
|
| |
* examples/Makefile.am (AM_CFLAGS, AM_LIBS): Set PATH so that
guile-config can find guile.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* examples/Makefile.am: Fix the installed guile-config invocation to set
PKG_CONFIG_PATH.
* meta/Makefile.am (EXTRA_DIST): Dist the bin_SCRIPTS.
* meta/guile-config (pkg-config): Better error messages if pkg-config
invocation fails.
* meta/uninstalled-env.in (PATH): Now that guile-config and guile-tools
are not generated, make it the srcdir/meta instead of the builddir.
(Guile itself will be picked up from libguile.)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* 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.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
* __scm.h, _scm.h, weaks.c: Update copyright statement to LGPL.
* compat/compat.h: Update copyright statement to LGPL.
* oldfmt.c: Update copyright statement to LGPL.
* libguile.h: Update copyright statement to LGPL.
|
| |
|
| |
|
|
|
|
|
| |
* compat/acconfig.h, compat/acinclude.m4, compat.h, configure.in:
New files.
|
| |
|
|
|
|
| |
Examples are now built and tested on `make installcheck'.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
* box-module/box.c, box-dynamic-module/box.c, box-dynamic/box.c
* box/box.c: scm_bits_t -> scm_t_bits.
|
|
|
|
|
| |
* box-dynamic-module/README: Use a better example for box-map, as
suggested by Thomas Wawrzinek.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
| |
Makefile.in.
|
|
|
|
|
|
| |
library (aka extension)
Thanks to Thomas Wawrzinek for patching box.c into an extension!
|
|
|