blob: e15b5ece4736246b03950ec8c326eb6b824a7cc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
;; -*- Scheme -*-
;; Assume people on old versions of 4.8.1 don't mind breakage (they're running git master!)
(let ((features (if (version>=? (chicken-version) "4.8.1")
'(-feature has-thread-killer)
'())))
(compile -s -O3 scsh-process.scm ,@features -j scsh-process)
(compile -s -O3 scsh-process.import.scm))
(install-extension
'scsh-process
'("scsh-process.so" "scsh-process.import.so")
`((version "1.1.0")))
|