mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-09 07:40:39 -08:00
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.
This commit is contained in:
parent
e6518fc8f5
commit
3ee38f2000
2 changed files with 10 additions and 0 deletions
|
|
@ -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>
|
2015-01-01 Paul Eggert <eggert@cs.ucla.edu>
|
||||||
|
|
||||||
* .gitattributes: New file.
|
* .gitattributes: New file.
|
||||||
|
|
|
||||||
|
|
@ -1841,6 +1841,9 @@ CM_OBJ="cm.o"
|
||||||
XARGS_LIMIT=
|
XARGS_LIMIT=
|
||||||
if test "${HAVE_W32}" = "yes"; then
|
if test "${HAVE_W32}" = "yes"; then
|
||||||
AC_DEFINE(HAVE_NTGUI, 1, [Define to use native MS Windows GUI.])
|
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_CHECK_TOOL(WINDRES, [windres],
|
||||||
[AC_MSG_ERROR([No resource compiler found.])])
|
[AC_MSG_ERROR([No resource compiler found.])])
|
||||||
W32_OBJ="w32fns.o w32menu.o w32reg.o w32font.o w32term.o"
|
W32_OBJ="w32fns.o w32menu.o w32reg.o w32font.o w32term.o"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue