1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

* srfi-13.c (scm_init_srfi_13), srfi-14.c (scm_init_srfi_14):

add "srfi/" to lines including .x files so they can be found
	when build_dir != src_dir.
This commit is contained in:
Gary Houston 2001-04-27 18:16:09 +00:00
parent 3c1d130162
commit 485efc12b7
3 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2001-04-27 Gary Houston <ghouston@arglist.com>
* srfi-13.c (scm_init_srfi_13), srfi-14.c (scm_init_srfi_14):
add "srfi/" to lines including .x files so they can be found
when build_dir != src_dir.
2001-04-27 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
* Makefile.am (srfi_DATA): Added srfi-9.scm.

View file

@ -3027,7 +3027,7 @@ void
scm_init_srfi_13 (void)
{
#ifndef SCM_MAGIC_SNARFER
#include "srfi-13.x"
#include "srfi/srfi-13.x"
#endif
}

View file

@ -1356,6 +1356,6 @@ scm_init_srfi_14 (void)
scm_set_smob_print (scm_tc16_charset, charset_print);
#ifndef SCM_MAGIC_SNARFER
#include "srfi-14.x"
#include "srfi/srfi-14.x"
#endif
}