]> git.eshelyaron.com Git - emacs.git/commitdiff
Disallow w32 builds --without-toolkit-scroll-bars.
authorEli Zaretskii <eliz@gnu.org>
Tue, 20 Jan 2015 16:26:28 +0000 (18:26 +0200)
committerEli Zaretskii <eliz@gnu.org>
Tue, 20 Jan 2015 16:26:28 +0000 (18:26 +0200)
 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.

ChangeLog
configure.ac

index 714be97e2fa29fba76bb4483030135c650aaf987..4abd9d6e047a1dcca071384f8ac2b20977eefaff 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2015-01-20  Eli Zaretskii  <eliz@gnu.org>
+
+       * 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.
+
 2015-01-01  Paul Eggert  <eggert@cs.ucla.edu>
 
        * .gitattributes: New file.
index bae020e7338eb5febdeef57c4b614d2ec0f188fb..9c8df9dcdb5c495e35f82883e7f6849ded61e035 100644 (file)
@@ -1841,6 +1841,9 @@ CM_OBJ="cm.o"
 XARGS_LIMIT=
 if test "${HAVE_W32}" = "yes"; then
   AC_DEFINE(HAVE_NTGUI, 1, [Define to use native MS Windows GUI.])
+  if test "$with_toolkit_scroll_bars" = "no"; then
+    AC_MSG_ERROR([Non-toolkit scroll bars are not implemented for w32 build.])
+  fi
   AC_CHECK_TOOL(WINDRES, [windres],
                 [AC_MSG_ERROR([No resource compiler found.])])
   W32_OBJ="w32fns.o w32menu.o w32reg.o w32font.o w32term.o"