I'm trying to chicken-install locale and it requires check-errors.
check-errors fails to build because it tries to import srfi-12 (the
require is commented out, but the egg won't install).  I removed srfi-12
from the import list of conditions.scm (patch attached) and the tests all
ran fine.

Cheers,
Dave
--- conditions.scm.~1~  Wed Sep  2 17:57:16 2009
+++ conditions.scm      Wed Sep  2 17:58:21 2009
@@ -20,7 +20,7 @@
   (make-condition-predicate condition-predicate*)
   (make-condition-property-accessor condition-property-accessor*))
 
-(import scheme chicken (only srfi-1 alist-cons) srfi-12 type-checks)
+(import scheme chicken (only srfi-1 alist-cons) type-checks)
 (require-library srfi-1 #;srfi-12 type-checks)
 
 ;;
_______________________________________________
Chicken-users mailing list
Chicken-users@nongnu.org
http://lists.nongnu.org/mailman/listinfo/chicken-users

Reply via email to