Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Win fix simple #3503

Merged
merged 2 commits into from Sep 12, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion INSTALL
Expand Up @@ -319,4 +319,4 @@ Framework with Visual Studio). In addition to Visual Studio `CMake

Since there is no canonical Windows package manager the build methods for
freetype, zlib, libpng, tcl, & tk source code are documented as a build script
at `matplotlib-winbuild <https://github.com/jbmohler/matplotlib-winbuild>`.
at `matplotlib-winbuild <https://github.com/jbmohler/matplotlib-winbuild>`_.
3 changes: 3 additions & 0 deletions setupext.py
Expand Up @@ -1003,6 +1003,9 @@ class Png(SetupPackage):
name = "png"

def check(self):
if sys.platform == 'win32':
return "Unknown version"

status, output = getstatusoutput("libpng-config --version")
if status == 0:
version = output
Expand Down