Skip to content

Commit

Permalink
Remove cairo-gobject from possible library names
Browse files Browse the repository at this point in the history
cairo-gobject is not cairo, and it probably never worked for anyone. It had
been added by #112.

Related to #119.
  • Loading branch information
liZe committed Aug 10, 2019
1 parent e60550b commit f35f6a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cairocffi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def dlopen(ffi, *names):
raise OSError("dlopen() failed to load a library: %s" % ' / '.join(names))


cairo = dlopen(ffi, 'cairo', 'cairo-2', 'cairo-gobject-2', 'cairo.so.2')
cairo = dlopen(ffi, 'cairo', 'cairo-2', 'cairo.so.2')


class _keepref(object):
Expand Down

0 comments on commit f35f6a6

Please sign in to comment.