I may be misunderstanding something, but after (ql:quickload :cl-cairo2-xlib), compiling xlib-freetype-example.lisp produces errors with (with-ft-scaled-face-locked...) macro missing (and therefore, face not being bound).
Some digging around points to the file freetype.lisp not being referenced in cl-cairo2-xlib.asd
The problem went away after I added (:file "../freetype") to the asd.
I may be misunderstanding something, but after
(ql:quickload :cl-cairo2-xlib)
, compiling xlib-freetype-example.lisp produces errors with(with-ft-scaled-face-locked...)
macro missing (and therefore, face not being bound).Some digging around points to the file
freetype.lisp
not being referenced incl-cairo2-xlib.asd
The problem went away after I added
(:file "../freetype")
to the asd.Is my usage incorrect, or is it an oversight?
Thank you.