;;;; "mathh.egg -*- Scheme -*- ;;;; Kon Lovett, Jul '18 ((synopsis "ISO C math functions and constants") (version "4.2.0") (category math) (author "[[kon lovett]] and [[john cowan]]") (license "Public Domain") (test-dependencies test) ;* still needed? * ;linux ;_GNU_SOURCE instead? ;CSC_OPTIONS='-C -D_ISOC99_SOURCE' chicken-install -test mathh (components (extension mathh-consts #;(inline-file) (types-file) (scheme-include mathh-constants) (csc-options ;,@(cond-expand (linux '("-C" "-D_ISOC99_SOURCE")) (else '())) ;sigh "-O3" "-d1" "-local" "-no-bound-checks" "-no-argc-checks" "-no-procedure-checks") ) (extension mathh #;(inline-file) (types-file) (csc-options "-O3" "-d1" "-local" "-no-procedure-checks") ) ) )