Artifact
5403495e54118564e9e9cf6a011ecf415a3b8f91:
;; Copyright (c) 2009 Derick Eddington. All rights reserved.
;; Licensed under an MIT-style license. My license is in the file
;; named LICENSE from the original collection this file is distributed
;; with. If this file is redistributed with some other collection, my
;; license must also be included.
#!r6rs
(library (srfi private platform-features)
(export
OS-features
implementation-features)
(import
(rnrs)
(only (scheme base) system-type)
(srfi private OS-id-features))
(define (OS-features)
(OS-id-features
(string-append (symbol->string (system-type 'os))
" " (system-type 'machine))
'(("linux" linux posix)
("macosx" mac-os-x darwin posix)
("solaris" solaris posix)
("gnu" gnu)
("bsd" bsd)
("freebsd" freebsd posix)
("openbsd" openbsd posix)
("windows" windows))))
(define (implementation-features)
'(mzscheme))
)