1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-23 04:50:28 +02:00

*** empty log message ***

This commit is contained in:
Marius Vollmer 2001-08-01 21:26:11 +00:00
parent d308f51ccc
commit b8117b36d2
3 changed files with 22 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2001-08-01 Marius Vollmer <mvo@zagadka.ping.de>
* configure.in: Added `--disable-linuxthreads' option and do not
define GUILE_PTHREAD_COMPAT nor link with -lpthread when it is
given. Thanks to Cris Cramer!
2001-07-23 Marius Vollmer <mvo@zagadka.ping.de>
* Makefile.am (SUBDIRS): Build libguile before ice-9.

View file

@ -102,6 +102,14 @@ switches specific to Guile you may find useful in some circumstances.
thread support do not affect you if you don't actually use threads.
--disable-linuxthreads --- Disable pthread compatability hack on Linux
If you experience problems on GNU/Linux that are related to
pthreads, you might try this option. Guile with then not link with
the pthreads library, but will also not try to be compatible to
programs that use both libguile and libpthread.
--with-modules --- Specify statically linked `modules'
Guile can dynamically load `plugin modules' during runtime, using

View file

@ -1,3 +1,11 @@
2001-08-01 Marius Vollmer <mvo@zagadka.ping.de>
* chars.c (scm_char_alphabetic_p, scm_char_numeric_p,
scm_char_whitespace_p, scm_char_upper_case_p,
scm_char_lower_case_p, scm_char_is_both_p): Do not require
characters to fulfill isascii in addition to the primary
predicate.
2001-07-26 Marius Vollmer <mvo@zagadka.ping.de>
* gc_os_dep.c (GC_noop1): Moved into the same #if/#endif context