We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a79d875 commit e1ee001Copy full SHA for e1ee001
setupext.py
@@ -549,8 +549,12 @@ def add_ft2font_flags(module):
549
add_base_flags(module)
550
module.libraries.append('z')
551
552
- if sys.platform == 'win32' and win32_compiler == 'mingw32':
553
- module.libraries.append('gw32c')
+ # JDH: this file does not appear to be shipped w/ mingw32. I saw
+ # some discussion on the web that libpng needs it -- could this be
554
+ # the problem we are having with libpng?
555
+
556
+ #if sys.platform == 'win32' and win32_compiler == 'mingw32':
557
+ # module.libraries.append('gw32c')
558
559
# put this last for library link order
560
module.libraries.extend(std_libs)
0 commit comments