* srfi-13.c (scm_init_srfi_13), srfi-14.c (scm_init_srfi_14):
authorGary Houston <ghouston@arglist.com>
Fri, 27 Apr 2001 18:16:09 +0000 (18:16 +0000)
committerGary Houston <ghouston@arglist.com>
Fri, 27 Apr 2001 18:16:09 +0000 (18:16 +0000)
add "srfi/" to lines including .x files so they can be found
when build_dir != src_dir.

srfi/ChangeLog
srfi/srfi-13.c
srfi/srfi-14.c

index 8e2c0b7..651b7e8 100644 (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.
index 8006773..b50ef08 100644 (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
 }
 
index 3cbf63c..3755608 100644 (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
 }