summaryrefslogtreecommitdiff
path: root/scsh-process.setup
blob: 11db3f569186a8faa8d185ac3d33e482af25c871 (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.4.0")))