From qy513victor at gmail.com Fri Dec 12 13:54:01 2008 From: qy513victor at gmail.com (Qu Yang) Date: Fri, 12 Dec 2008 23:54:01 +1000 Subject: [cl-cairo2-devel] Intallation in Debian Message-ID: Hi all, I am trying to asdf-install cl-cairo in debian, but there is an error here: * ; loading system definition from /home/yang/.sbcl/systems/cl-cairo2-mac.asd ; into # debugger invoked on a SB-KERNEL:SIMPLE-PACKAGE-ERROR in thread #: The name "CL-CAIRO2" does not designate any package.* Can anyone please tell me how to solve this? Thanks, Yang -------------- next part -------------- An HTML attachment was scrubbed... URL: From scott.clcairo2 at h4ck3r.net Tue Dec 30 00:17:11 2008 From: scott.clcairo2 at h4ck3r.net (Scott Graham) Date: Mon, 29 Dec 2008 16:17:11 -0800 Subject: [cl-cairo2-devel] Update .so name Message-ID: <84decce20812291617o53ca53cfi658ef2c7f4dc5459@mail.gmail.com> Hi The version of "libcairo2" that gets installed on my Ubuntu system is named libcairo.so.2, not libcairo.so. Attached is the trivial patch. I was unable to get asdf-install to work. But, with the .so name fixed, clbuild got me up and running easily enough. It'd be appreciated if you could apply this patch, so that I can submit clbuild patch so that cl-cairo2 works out-of-the-box with clbuild. scott -------------- next part -------------- A non-text attachment was scrubbed... Name: update_so_name.patch Type: text/x-patch Size: 360 bytes Desc: not available URL: From scott.clcairo2 at h4ck3r.net Wed Dec 31 23:26:48 2008 From: scott.clcairo2 at h4ck3r.net (Scott Graham) Date: Wed, 31 Dec 2008 15:26:48 -0800 Subject: [cl-cairo2-devel] font options Message-ID: <84decce20812311526n378573aahdf5d8de250c1e808@mail.gmail.com> Hi I was just looking into some text stuff. I'd like to be able to set the font_options (for antialias, subpixel, hinting), but those functions don't exist yet. I tried a little to write them, but I'm afraid my cffi is weak. I guess this is sufficient for set-font-options: (define-with-default-context set-font-options font-options) but I'm not sure what get-font-options should look like because of the return value pointer. Also, it'd probably be better to wrap something around the font_options object to handle the management of those on the CL side. ... So, I guess really I'm just posting a request for those to be written, since I don't know too much about what I'm doing. :) It'd be much appreciated if you can find time to add them. scott