summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-04-15 08:06:45 -0400
committerColin Walters <walters@verbum.org>2013-04-15 08:11:40 -0400
commit91074d01a0e2b4508f7f253f1e0a7669363cb128 (patch)
tree5302c6b6561587fe30d1c2b08764ad208dbc2afc
parent829379cfa2b48e966125df2d070d2af40cb3f990 (diff)
downloadgdk-pixbuf-91074d01a0e2b4508f7f253f1e0a7669363cb128.tar.gz
build: drop "libpng" from detected list
This gives us an arbitrary version depending on the build root, and we may not be upwards compatible with future versions. Or it's possible that the ancient (but LSB mandated) 1.2 claims the "libpng.pc" name. Signed-off-by: Colin Walters <walters@verbum.org>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 106fab150..5efc1b6fd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -586,7 +586,7 @@ fi
dnl Test for libpng
if test x$with_libpng != xno && test -z "$LIBPNG"; then
- for l in libpng16 libpng15 libpng14 libpng12 libpng13 libpng10 libpng; do
+ for l in libpng16 libpng15 libpng14 libpng12 libpng13 libpng10; do
AC_MSG_CHECKING(for $l)
if $PKG_CONFIG --exists $l ; then
AC_MSG_RESULT(yes)