aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKen Brown2014-08-21 17:52:26 -0400
committerKen Brown2014-08-21 17:52:26 -0400
commit58e6bac86fd4eb02e49ae695ee4eddf8dd668d2a (patch)
tree3de7bff20467a9358ed7bd9d544bd209612fd50b
parent8ab2588c9d68a54900b58f6e304ab32aeec5f10a (diff)
downloademacs-58e6bac86fd4eb02e49ae695ee4eddf8dd668d2a.tar.gz
emacs-58e6bac86fd4eb02e49ae695ee4eddf8dd668d2a.zip
* configure.ac (HAVE_XPM): Explain the use of CPPFLAGS in the Cygwin-w32 build. (Bug#18302)
-rw-r--r--ChangeLog5
-rw-r--r--configure.ac3
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 069b3545e0f..b9c2039d57c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
12014-08-21 Ken Brown <kbrown@cornell.edu>
2
3 * configure.ac (HAVE_XPM): Explain the use of CPPFLAGS in the
4 Cygwin-w32 build. (Bug#18302)
5
12014-08-11 Paul Eggert <eggert@cs.ucla.edu> 62014-08-11 Paul Eggert <eggert@cs.ucla.edu>
2 7
3 Don't prevent random file systems from being unmounted (Bug#18232). 8 Don't prevent random file systems from being unmounted (Bug#18232).
diff --git a/configure.ac b/configure.ac
index 3e49527e0f1..806b1b4f308 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2991,6 +2991,9 @@ AC_SUBST(M17N_FLT_LIBS)
2991 2991
2992### Use -lXpm if available, unless `--with-xpm=no'. 2992### Use -lXpm if available, unless `--with-xpm=no'.
2993### mingw32 doesn't use -lXpm, since it loads the library dynamically. 2993### mingw32 doesn't use -lXpm, since it loads the library dynamically.
2994### In the Cygwin-w32 build, we need to use /usr/include/noX/X11/xpm.h
2995### rather than /usr/include/X11/xpm.h, so we set CPPFLAGS (and
2996### LDFLAGS) accordingly.
2994HAVE_XPM=no 2997HAVE_XPM=no
2995LIBXPM= 2998LIBXPM=
2996if test "${HAVE_W32}" = "yes" && test "${opsys}" = "cygwin"; then 2999if test "${HAVE_W32}" = "yes" && test "${opsys}" = "cygwin"; then