···11+diff --git a/wx/lib/wxcairo/wx_pycairo.py b/wx/lib/wxcairo/wx_pycairo.py
22+index 7cfe3071..24d1120f 100644
33+--- a/wx/lib/wxcairo/wx_pycairo.py
44++++ b/wx/lib/wxcairo/wx_pycairo.py
55+@@ -197,7 +197,12 @@ def _findCairoLib():
66+77+ # For other DLLs we'll just use a dictionary to track them, as there
88+ # probably isn't any need to use them outside of this module.
99+-_dlls = dict()
1010++_dlls = {
1111++ "gdk": ctypes.CDLL("@libgdk@"),
1212++ "pangocairo": ctypes.CDLL("@libpangocairo@"),
1313++ "cairoLib": ctypes.CDLL("@libcairo@"),
1414++ "appsvc": ctypes.CDLL(None),
1515++}
1616+1717+ def _findHelper(names, key, msg):
1818+ dll = _dlls.get(key, None)