diff options
| author | Ken Brown | 2014-08-22 09:03:05 -0400 |
|---|---|---|
| committer | Ken Brown | 2014-08-22 09:03:05 -0400 |
| commit | 09f3715543c655375e4b0b9cfab00b42b6a4ff0d (patch) | |
| tree | 4736dc4eb9ffb8cac7a4b4a9ed05422d88878aa1 | |
| parent | 0fcb3479d55ef40c1ecadcd378c05d4b4827c545 (diff) | |
| download | emacs-09f3715543c655375e4b0b9cfab00b42b6a4ff0d.tar.gz emacs-09f3715543c655375e4b0b9cfab00b42b6a4ff0d.zip | |
Backport: * configure.ac (HAVE_XPM): Explain the use of CPPFLAGS in the Cygwin-w32 build. (Bug#18302)
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | configure.ac | 3 |
2 files changed, 8 insertions, 0 deletions
| @@ -1,3 +1,8 @@ | |||
| 1 | 2014-08-22 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 | |||
| 1 | 2014-08-10 Paul Eggert <eggert@cs.ucla.edu> | 6 | 2014-08-10 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 048728a0c61..d4e1d65ff56 100644 --- a/configure.ac +++ b/configure.ac | |||
| @@ -2969,6 +2969,9 @@ AC_SUBST(M17N_FLT_LIBS) | |||
| 2969 | 2969 | ||
| 2970 | ### Use -lXpm if available, unless `--with-xpm=no'. | 2970 | ### Use -lXpm if available, unless `--with-xpm=no'. |
| 2971 | ### mingw32 doesn't use -lXpm, since it loads the library dynamically. | 2971 | ### mingw32 doesn't use -lXpm, since it loads the library dynamically. |
| 2972 | ### In the Cygwin-w32 build, we need to use /usr/include/noX/X11/xpm.h | ||
| 2973 | ### rather than /usr/include/X11/xpm.h, so we set CPPFLAGS (and | ||
| 2974 | ### LDFLAGS) accordingly. | ||
| 2972 | HAVE_XPM=no | 2975 | HAVE_XPM=no |
| 2973 | LIBXPM= | 2976 | LIBXPM= |
| 2974 | if test "${HAVE_W32}" = "yes" && test "${opsys}" = "cygwin"; then | 2977 | if test "${HAVE_W32}" = "yes" && test "${opsys}" = "cygwin"; then |