]> git.tdb.fi Git - ttf2png.git/commitdiff
Update the Makefile to look for libpng16
authorMikko Rasa <tdb@tdb.fi>
Sat, 14 Apr 2018 09:20:52 +0000 (12:20 +0300)
committerMikko Rasa <tdb@tdb.fi>
Sat, 14 Apr 2018 09:20:52 +0000 (12:20 +0300)
Libpng12 is quite old and 16 has been the default in Debian stable since
last year.

Makefile

index b719c0ab53e3f9e1633f9faa07ae98ec3f8e26a4..f5bda939d01fd01fd14f0fa1d276b69a44d1abbe 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
 CFLAGS := -Wall -Wextra -Werror -std=c89 -pedantic -O2
 FREETYPE_FLAGS := $(shell freetype-config --cflags --libs)
-LIBPNG_FLAGS := $(shell pkg-config --cflags --libs libpng12)
+LIBPNG_FLAGS := $(shell pkg-config --cflags --libs libpng16)
 
 ttf2png: ttf2png.c
        $(CC) $(CFLAGS) $^ -o $@ $(FREETYPE_FLAGS) $(LIBPNG_FLAGS)