The following script that uses the ruby cairo bindings produces the same error for me using 1.8.7-2. Is it maybe an issue with c bindings in general?
#!/usr/bin/env ruby require 'cairo' require 'stringio' i = 0; while true output = StringIO.new surface = Cairo::PDFSurface.new(output, 100, 100) context = Cairo::Context.new(surface) i += 1; puts "***************** #{i} *********" if i%100 == 0; end -- James Healy <jimmy-at-deefa-dot-com> Thu, 12 Jun 2008 23:44:16 +1000 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]