Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e1ee001

Browse files
committed
remove gw32c from setupext
svn path=/branches/v0_98_5_maint/; revision=7209
1 parent a79d875 commit e1ee001

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

setupext.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -549,8 +549,12 @@ def add_ft2font_flags(module):
549549
add_base_flags(module)
550550
module.libraries.append('z')
551551

552-
if sys.platform == 'win32' and win32_compiler == 'mingw32':
553-
module.libraries.append('gw32c')
552+
# JDH: this file does not appear to be shipped w/ mingw32. I saw
553+
# 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')
554558

555559
# put this last for library link order
556560
module.libraries.extend(std_libs)

0 commit comments

Comments
 (0)