diff options
| author | Eli Zaretskii | 2015-01-20 18:26:28 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2015-01-20 18:26:28 +0200 |
| commit | 3ee38f2000944d50adb2c65bd1af11c464c87950 (patch) | |
| tree | 283e49344070f500839df4efb3c413bff19141e6 | |
| parent | e6518fc8f5afca5d71582aabb089147cba583966 (diff) | |
| download | emacs-3ee38f2000944d50adb2c65bd1af11c464c87950.tar.gz emacs-3ee38f2000944d50adb2c65bd1af11c464c87950.zip | |
Disallow w32 builds --without-toolkit-scroll-bars.
configure.ac (HAVE_W32): Abort with error message if
--without-toolkit-scroll-bars was specified. See
http://lists.gnu.org/archive/html/emacs-devel/2015-01/msg00525.html
for the details.
| -rw-r--r-- | ChangeLog | 7 | ||||
| -rw-r--r-- | configure.ac | 3 |
2 files changed, 10 insertions, 0 deletions
| @@ -1,3 +1,10 @@ | |||
| 1 | 2015-01-20 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * configure.ac (HAVE_W32): Abort with error message if | ||
| 4 | --without-toolkit-scroll-bars was specified. See | ||
| 5 | http://lists.gnu.org/archive/html/emacs-devel/2015-01/msg00525.html | ||
| 6 | for the details. | ||
| 7 | |||
| 1 | 2015-01-01 Paul Eggert <eggert@cs.ucla.edu> | 8 | 2015-01-01 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 9 | ||
| 3 | * .gitattributes: New file. | 10 | * .gitattributes: New file. |
diff --git a/configure.ac b/configure.ac index bae020e7338..9c8df9dcdb5 100644 --- a/configure.ac +++ b/configure.ac | |||
| @@ -1841,6 +1841,9 @@ CM_OBJ="cm.o" | |||
| 1841 | XARGS_LIMIT= | 1841 | XARGS_LIMIT= |
| 1842 | if test "${HAVE_W32}" = "yes"; then | 1842 | if test "${HAVE_W32}" = "yes"; then |
| 1843 | AC_DEFINE(HAVE_NTGUI, 1, [Define to use native MS Windows GUI.]) | 1843 | AC_DEFINE(HAVE_NTGUI, 1, [Define to use native MS Windows GUI.]) |
| 1844 | if test "$with_toolkit_scroll_bars" = "no"; then | ||
| 1845 | AC_MSG_ERROR([Non-toolkit scroll bars are not implemented for w32 build.]) | ||
| 1846 | fi | ||
| 1844 | AC_CHECK_TOOL(WINDRES, [windres], | 1847 | AC_CHECK_TOOL(WINDRES, [windres], |
| 1845 | [AC_MSG_ERROR([No resource compiler found.])]) | 1848 | [AC_MSG_ERROR([No resource compiler found.])]) |
| 1846 | W32_OBJ="w32fns.o w32menu.o w32reg.o w32font.o w32term.o" | 1849 | W32_OBJ="w32fns.o w32menu.o w32reg.o w32font.o w32term.o" |