Apparently things work fine with readline 6 too.

This commit is contained in:
Eli Barzilay 2012-05-08 01:08:54 -04:00
parent d04920c032
commit f335b47a18

View File

@ -8,7 +8,7 @@
;; libtermcap needed on some platforms ;; libtermcap needed on some platforms
(define libtermcap (with-handlers ([exn:fail? void]) (ffi-lib "libtermcap"))) (define libtermcap (with-handlers ([exn:fail? void]) (ffi-lib "libtermcap")))
(define libreadline (ffi-lib "libreadline" '("5" "4" ""))) (define libreadline (ffi-lib "libreadline" '("6" "5" "4" "")))
(define make-byte-string ; helper for the two types below (define make-byte-string ; helper for the two types below
(get-ffi-obj "scheme_make_byte_string" #f (_fun _pointer -> _scheme))) (get-ffi-obj "scheme_make_byte_string" #f (_fun _pointer -> _scheme)))