diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2016-11-19 13:25:17 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2016-11-19 13:25:17 +0100 |
commit | ec4be71fade1ee5c6171e323d09197f3bf528499 (patch) | |
tree | e3eeda307551c4fc44797cee3d9f6ced48f17d34 /platform | |
parent | 5fa1bb331ad9be31dbfc752c7d19ccf7caeb8fa4 (diff) |
libpng: Same fix as previous commit for server platform
Diffstat (limited to 'platform')
-rw-r--r-- | platform/server/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/server/detect.py b/platform/server/detect.py index 4d86ffd376..02e000c025 100644 --- a/platform/server/detect.py +++ b/platform/server/detect.py @@ -80,7 +80,7 @@ def configure(env): env.ParseConfig('pkg-config freetype2 --cflags --libs') if (env['builtin_libpng'] == 'no'): - env.ParseConfig('pkg-config libpng --cflags --libs') + env.ParseConfig('pkg-config libpng16 --cflags --libs') if (env['builtin_enet'] == 'no'): env.ParseConfig('pkg-config libenet --cflags --libs') |