Skip to content

Commit

Permalink
Merge pull request #7 from andy-mortimer/windows-install
Browse files Browse the repository at this point in the history
Fix library names for Win64 install
  • Loading branch information
leifgehrmann authored Oct 8, 2019
2 parents d063c10 + 641231a commit 8f930ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pangocairocffi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def _dlopen(generated_ffi, *names):
raise OSError("dlopen() failed to load a library: %s" % ' / '.join(names))


pangocairo = _dlopen(ffi, 'pangocairo-1.0')
pangocairo = _dlopen(ffi, 'pangocairo-1.0', 'pangocairo-1.0-0')


# Imports are normally always put at the top of the file.
Expand Down

0 comments on commit 8f930ca

Please sign in to comment.