Import R6RS bytevectors and I/O ports from Guile-R6RS-Libs 0.2.
authorLudovic Courtès <ludo@gnu.org>
Wed, 27 May 2009 16:18:07 +0000 (18:18 +0200)
committerLudovic Courtès <ludo@gnu.org>
Thu, 28 May 2009 21:12:01 +0000 (23:12 +0200)
commit1ee2c72eafaae5f91f4c899bc4b4853af5c16f28
treebdb474d8adc13a6b99358c8d79d988fdbd7401a7
parent24d56127bb0f07bcb477e2c73ccc3cac0c51ee73
Import R6RS bytevectors and I/O ports from Guile-R6RS-Libs 0.2.

* README: Document dependency on GNU libunistring.

* benchmark-suite/Makefile.am (SCM_BENCHMARKS): Add
  `benchmark/bytevectors.bm'.

* configure.in: Make sure we have libunistring; update $LIBS.

* libguile.h: Include "bytevectors.h" and "r6rs-ports.h".

* libguile/Makefile.am (libguile_la_SOURCES): Add `bytevectors.c' and
  `r6rs-ports.c'
  (DOT_X_FILES): Add `bytevectors.x' and `r6rs-ports.x'.
  (DOT_DOC_FILES): Add `bytevectors.doc' and `r6rs-ports.doc'.
  (noinst_HEADERS): Add `ieee-754.h'.
  (modinclude_HEADERS): Add `bytevectors.h' and `r6rs-ports.h'

* libguile/validate.h (SCM_VALIDATE_BYTEVECTOR): New macro.

* module/Makefile.am (SOURCES): Add $(RNRS_SOURCES).
  (RNRS_SOURCES): New variable.

* test-suite/Makefile.am (SCM_TESTS): Add `bytevectors.test' and
  `r6rs-ports.test'.
18 files changed:
README
benchmark-suite/Makefile.am
benchmark-suite/benchmarks/bytevectors.bm [new file with mode: 0644]
configure.in
libguile.h
libguile/Makefile.am
libguile/bytevectors.c [new file with mode: 0644]
libguile/bytevectors.h [new file with mode: 0644]
libguile/ieee-754.h [new file with mode: 0644]
libguile/r6rs-ports.c [new file with mode: 0644]
libguile/r6rs-ports.h [new file with mode: 0644]
libguile/validate.h
module/Makefile.am
module/rnrs/bytevector.scm [new file with mode: 0644]
module/rnrs/io/ports.scm [new file with mode: 0644]
test-suite/Makefile.am
test-suite/tests/bytevectors.test [new file with mode: 0644]
test-suite/tests/r6rs-ports.test [new file with mode: 0644]