~ salmonella-environment-setup (master) 0c9db27b13f343a4e4dc92207138221b11a1ebda


commit 0c9db27b13f343a4e4dc92207138221b11a1ebda
Author:     Mario Domenech Goulart <mario@parenteses.org>
AuthorDate: Sun Nov 22 10:09:04 2020 +0100
Commit:     Mario Domenech Goulart <mario@parenteses.org>
CommitDate: Sun Nov 22 10:09:04 2020 +0100

    conf/: support CHICKEN 5

diff --git a/conf/chicken-4-clang.conf b/conf/chicken-4-clang.conf
index c668a06..b8c8be1 100644
--- a/conf/chicken-4-clang.conf
+++ b/conf/chicken-4-clang.conf
@@ -1,3 +1,9 @@
+;; -*- scheme -*-
+(cond-expand
+ (chicken-5
+  (import (chicken load)))
+ (else))
+
 (load-relative "./common/common.scm")
 (load-relative "./common/chicken-4.scm")
 
diff --git a/conf/chicken-4-debugbuild-no-cache.conf b/conf/chicken-4-debugbuild-no-cache.conf
index 98c05f1..0d3bda3 100644
--- a/conf/chicken-4-debugbuild-no-cache.conf
+++ b/conf/chicken-4-debugbuild-no-cache.conf
@@ -1,3 +1,9 @@
+;; -*- scheme -*-
+(cond-expand
+ (chicken-5
+  (import (chicken load)))
+ (else))
+
 (load-relative "./common/common.scm")
 (load-relative "./common/chicken-4.scm")
 (load-relative "./common/debugbuild.scm")
diff --git a/conf/chicken-4-debugbuild.conf b/conf/chicken-4-debugbuild.conf
index 88f0edd..7c08991 100644
--- a/conf/chicken-4-debugbuild.conf
+++ b/conf/chicken-4-debugbuild.conf
@@ -1,3 +1,9 @@
+;; -*- scheme -*-
+(cond-expand
+ (chicken-5
+  (import (chicken load)))
+ (else))
+
 (load-relative "./common/common.scm")
 (load-relative "./common/chicken-4.scm")
 (load-relative "./common/debugbuild.scm")
diff --git a/conf/chicken-4.conf b/conf/chicken-4.conf
index ea1072e..1eabed5 100644
--- a/conf/chicken-4.conf
+++ b/conf/chicken-4.conf
@@ -1,2 +1,8 @@
+;; -*- scheme -*-
+(cond-expand
+ (chicken-5
+  (import (chicken load)))
+ (else))
+
 (load-relative "./common/common.scm")
 (load-relative "./common/chicken-4.scm")
diff --git a/conf/chicken-5-clang.conf b/conf/chicken-5-clang.conf
index 7524942..7678789 100644
--- a/conf/chicken-5-clang.conf
+++ b/conf/chicken-5-clang.conf
@@ -1,3 +1,9 @@
+;; -*- scheme -*-
+(cond-expand
+ (chicken-5
+  (import (chicken load)))
+ (else))
+
 (load-relative "./common/common.scm")
 (load-relative "./common/chicken-5.scm")
 
diff --git a/conf/chicken-5-debugbuild-no-cache.conf b/conf/chicken-5-debugbuild-no-cache.conf
index aaffd82..e82a67e 100644
--- a/conf/chicken-5-debugbuild-no-cache.conf
+++ b/conf/chicken-5-debugbuild-no-cache.conf
@@ -1,3 +1,9 @@
+;; -*- scheme -*-
+(cond-expand
+ (chicken-5
+  (import (chicken load)))
+ (else))
+
 (load-relative "./common/common.scm")
 (load-relative "./common/chicken-5.scm")
 (load-relative "./common/debugbuild.scm")
diff --git a/conf/chicken-5-debugbuild.conf b/conf/chicken-5-debugbuild.conf
index 6038bfb..944a57c 100644
--- a/conf/chicken-5-debugbuild.conf
+++ b/conf/chicken-5-debugbuild.conf
@@ -1,3 +1,9 @@
+;; -*- scheme -*-
+(cond-expand
+ (chicken-5
+  (import (chicken load)))
+ (else))
+
 (load-relative "./common/common.scm")
 (load-relative "./common/chicken-5.scm")
 (load-relative "./common/debugbuild.scm")
diff --git a/conf/chicken-5.conf b/conf/chicken-5.conf
index 196ca7f..76a31a6 100644
--- a/conf/chicken-5.conf
+++ b/conf/chicken-5.conf
@@ -1,3 +1,9 @@
+;; -*- scheme -*-
+(cond-expand
+ (chicken-5
+  (import (chicken load)))
+ (else))
+
 (load-relative "./common/common.scm")
 (load-relative "./common/chicken-5.scm")
 
diff --git a/conf/prerelease.conf b/conf/prerelease.conf
index abc724e..39456ad 100644
--- a/conf/prerelease.conf
+++ b/conf/prerelease.conf
@@ -1,3 +1,9 @@
+;; -*- scheme -*-
+(cond-expand
+ (chicken-5
+  (import (chicken load)))
+ (else))
+
 (load-relative "./common/common.scm")
 
 (chicken-core-branch "prerelease")
Trap