~ chicken-core (chicken-5) c0cdcc5389a8f97ff3482a0b704ba93704f88ef3


commit c0cdcc5389a8f97ff3482a0b704ba93704f88ef3
Author:     felix <felix@call-with-current-continuation.org>
AuthorDate: Sat Jan 9 14:39:04 2010 +0100
Commit:     felix <felix@call-with-current-continuation.org>
CommitDate: Sat Jan 9 14:39:04 2010 +0100

    fixed silly typo in chicken.h; chicken-install.scm depends on setup-api.c

diff --git a/chicken.h b/chicken.h
index 0e9e4a4b..690880e8 100644
--- a/chicken.h
+++ b/chicken.h
@@ -401,7 +401,7 @@ typedef unsigned __int64   uint64_t;
 # define C_WORD_SIZE              32
 #endif
 
-#define C_MOST_POSITIIVE_32_BIT_FIXNUM  0x3fffffff
+#define C_MOST_POSITIVE_32_BIT_FIXNUM  0x3fffffff
 #define C_MOST_NEGATIVE_FIXNUM    (-C_MOST_POSITIVE_FIXNUM - 1)
 
 #ifdef C_SIXTY_FOUR
diff --git a/rules.make b/rules.make
index 913a64f7..3d7bc13f 100644
--- a/rules.make
+++ b/rules.make
@@ -1209,7 +1209,7 @@ csi.c: $(SRCDIR)csi.scm $(SRCDIR)banner.scm $(SRCDIR)private-namespace.scm
 	$(CHICKEN) $< $(CHICKEN_PROGRAM_OPTIONS) -output-file $@ -extend $(SRCDIR)private-namespace.scm
 chicken-profile.c: $(SRCDIR)chicken-profile.scm
 	$(CHICKEN) $< $(CHICKEN_PROGRAM_OPTIONS) -output-file $@ 
-chicken-install.c: $(SRCDIR)chicken-install.scm setup-download.c
+chicken-install.c: $(SRCDIR)chicken-install.scm setup-download.c setup-api.c
 	$(CHICKEN) $< $(CHICKEN_PROGRAM_OPTIONS) -ignore-repository -output-file $@ 
 chicken-uninstall.c: $(SRCDIR)chicken-uninstall.scm
 	$(CHICKEN) $< $(CHICKEN_PROGRAM_OPTIONS) -ignore-repository -output-file $@ 
Trap