diff options
| -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-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 | |||
| 1 | 2014-08-11 Paul Eggert <eggert@cs.ucla.edu> | 6 | 2014-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. | ||
| 2994 | HAVE_XPM=no | 2997 | HAVE_XPM=no |
| 2995 | LIBXPM= | 2998 | LIBXPM= |
| 2996 | if test "${HAVE_W32}" = "yes" && test "${opsys}" = "cygwin"; then | 2999 | if test "${HAVE_W32}" = "yes" && test "${opsys}" = "cygwin"; then |