aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2014-05-04 14:28:08 -0700
committerPaul Eggert2014-05-04 14:28:08 -0700
commitf8c2cef5e60d31f48c44fc883bc72d2f6090834b (patch)
treec31f7cd29921efb107390227ee727147f0c63561 /ChangeLog
parent4a05c50a46dee2a75b06a2e4e3bc7732c267d7bb (diff)
downloademacs-f8c2cef5e60d31f48c44fc883bc72d2f6090834b.tar.gz
emacs-f8c2cef5e60d31f48c44fc883bc72d2f6090834b.zip
Consult libpng-config more consistently.
This is mainly for simplicity, but it should also avoid some future problems like the ones we recently had with NetBSD. * configure.ac (LIBPNG): Configure after LIBZ. Use libpng-config for cflags, too. Append -lz if we're not already doing that with LIBZ. Do not bother appending -lm, since we always append that. Coalesce some duplicate code. * src/Makefile.in (PNG_CFLAGS): New var. (ALL_CFLAGS): Use it. * src/image.c [HAVE_PNG]: Don't worry about <libpng/png.h>, as CFLAGS now handles this. Fixes: debbugs:17339
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 3d6cc362b67..d9837bc3c12 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
12014-05-04 Paul Eggert <eggert@cs.ucla.edu> 12014-05-04 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 Consult libpng-config more consistently (Bug#17339).
4 This is mainly for simplicity, but it should also avoid
5 some future problems like the ones we recently had with NetBSD.
6 * configure.ac (LIBPNG): Configure after LIBZ. Use libpng-config
7 for cflags, too. Append -lz if we're not already doing that with
8 LIBZ. Do not bother appending -lm, since we always append that.
9 Coalesce some duplicate code.
10
3 * autogen.sh: Use ‘"’ to quote a message that often contains ‘'’. 11 * autogen.sh: Use ‘"’ to quote a message that often contains ‘'’.
4 12
5 Require ImageMagick >= 6.3.5, due to PixelSetMagickColor (Bug#17339). 13 Require ImageMagick >= 6.3.5, due to PixelSetMagickColor (Bug#17339).