diff options
author | Gary Houston <ghouston@arglist.com> | 2001-04-27 18:16:09 +0000 |
---|---|---|
committer | Gary Houston <ghouston@arglist.com> | 2001-04-27 18:16:09 +0000 |
commit | 485efc12b7884c1657dcbd4632d0957f80d32fce (patch) | |
tree | 8a524f8d55d73bbea8d9b275f7828c3bd72a70f9 | |
parent | 3c1d130162ecc3954453a1c4d05f83747316c6cf (diff) | |
download | guile-485efc12b7884c1657dcbd4632d0957f80d32fce.tar.gz |
* 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.
-rw-r--r-- | srfi/ChangeLog | 6 | ||||
-rw-r--r-- | srfi/srfi-13.c | 2 | ||||
-rw-r--r-- | srfi/srfi-14.c | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/srfi/ChangeLog b/srfi/ChangeLog index 8e2c0b759..651b7e867 100644 --- a/srfi/ChangeLog +++ b/srfi/ChangeLog @@ -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. diff --git a/srfi/srfi-13.c b/srfi/srfi-13.c index 800677315..b50ef085c 100644 --- a/srfi/srfi-13.c +++ b/srfi/srfi-13.c @@ -3027,7 +3027,7 @@ void scm_init_srfi_13 (void) { #ifndef SCM_MAGIC_SNARFER -#include "srfi-13.x" +#include "srfi/srfi-13.x" #endif } diff --git a/srfi/srfi-14.c b/srfi/srfi-14.c index 3cbf63c6e..3755608ca 100644 --- a/srfi/srfi-14.c +++ b/srfi/srfi-14.c @@ -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 } |