Skip to content

Commit

Permalink
Fix cairo's library name
Browse files Browse the repository at this point in the history
Related to #119.
  • Loading branch information
liZe committed Aug 10, 2019
1 parent 8144f6e commit f1ef560
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 @@ -32,7 +32,7 @@ def dlopen(ffi, *names):
return ffi.dlopen(names[0]) # pragma: no cover


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


class _keepref(object):
Expand Down

0 comments on commit f1ef560

Please sign in to comment.