diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-06-20 11:10:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-20 11:10:02 +0200 |
commit | e09cf96857927c359dcca0bf59d97d6603db940c (patch) | |
tree | 733a75b347aabc8f7ac3fdf68f526a394f666069 /platform/x11/detect.py | |
parent | d61bce1b7528029492a855740635a028acf451c4 (diff) | |
parent | 5e2461124187550bb847e29361cdb1c358006f5e (diff) |
Merge pull request #29874 from ibrahn/rework-png-loadsave
PNG driver reworked to use libpng 1.6 simplified API
Diffstat (limited to 'platform/x11/detect.py')
-rw-r--r-- | platform/x11/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/x11/detect.py b/platform/x11/detect.py index a502308eee..9365b7eabc 100644 --- a/platform/x11/detect.py +++ b/platform/x11/detect.py @@ -216,7 +216,7 @@ def configure(env): env.ParseConfig('pkg-config freetype2 --cflags --libs') if not env['builtin_libpng']: - env.ParseConfig('pkg-config libpng --cflags --libs') + env.ParseConfig('pkg-config libpng16 --cflags --libs') if not env['builtin_bullet']: # We need at least version 2.89 |