aboutsummaryrefslogtreecommitdiffstats
path: root/nt
diff options
context:
space:
mode:
Diffstat (limited to 'nt')
-rw-r--r--nt/ChangeLog14
-rw-r--r--nt/INSTALL3
-rwxr-xr-xnt/configure.bat15
3 files changed, 29 insertions, 3 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog
index 8ed5caa4aab..ebc823071a3 100644
--- a/nt/ChangeLog
+++ b/nt/ChangeLog
@@ -1,7 +1,17 @@
12013-08-25 Vincent Belaïche <vincentb1@users.sourceforge.net>
2
3 * configure.bat: Rather than disabling, make configure.bat produce
4 some warning that building with configure.bat is deprecated and
5 ask for confirmation to continue.
6
72013-08-25 Glenn Morris <rgm@gnu.org>
8
9 * INSTALL: Refer to INSTALL.MSYS.
10 * configure.bat: Disable it.
11
12013-08-04 Eli Zaretskii <eliz@gnu.org> 122013-08-04 Eli Zaretskii <eliz@gnu.org>
2 13
3 * mingw-cfg.site (ac_cv_func_mkostemp): New var with value of 14 * mingw-cfg.site (ac_cv_func_mkostemp): New var with value of "yes".
4 "yes".
5 15
6 * inc/ms-w32.h (mkostemp): Declare prototype. 16 * inc/ms-w32.h (mkostemp): Declare prototype.
7 (mktemp): Don't redirect to sys_mktemp. 17 (mktemp): Don't redirect to sys_mktemp.
diff --git a/nt/INSTALL b/nt/INSTALL
index 8abd8aff920..594ff9ff752 100644
--- a/nt/INSTALL
+++ b/nt/INSTALL
@@ -4,6 +4,9 @@
4 Copyright (C) 2001-2013 Free Software Foundation, Inc. 4 Copyright (C) 2001-2013 Free Software Foundation, Inc.
5 See the end of the file for license conditions. 5 See the end of the file for license conditions.
6 6
7*** This method of building Emacs is no longer supported. ***
8 Instead, see INSTALL.MSYS.
9
7* For the impatient 10* For the impatient
8 11
9 Here are the concise instructions for configuring and building the 12 Here are the concise instructions for configuring and building the
diff --git a/nt/configure.bat b/nt/configure.bat
index 484fb83d901..8f717fd4168 100755
--- a/nt/configure.bat
+++ b/nt/configure.bat
@@ -58,7 +58,20 @@ rem look for "cygpath" near line 85 of gmake.defs.
58rem [7] not recommended; please report if you try this combination. 58rem [7] not recommended; please report if you try this combination.
59rem [8] tested only on Windows XP. 59rem [8] tested only on Windows XP.
60rem 60rem
61 61echo ****************************************************************
62echo *** THIS METHOD OF BUILDING EMACS IS NO LONGER SUPPORTED. **
63echo *** INSTEAD, FOLLOW THE INSTRUCTIONS FROM INSTALL.MSYS. **
64echo ****************************************************************
65:confirm_continue
66set /p answer=Continue running this script at your own risks ? (Y/N)
67if x%answer% == xy (goto confirm_continue_y)
68if x%answer% == xY (goto confirm_continue_y)
69if x%answer% == xn (goto end)
70if x%answer% == xN (goto end)
71echo Please answer by Y or N
72goto confirm_continue
73
74:confirm_continue_y
62if exist config.log del config.log 75if exist config.log del config.log
63 76
64rem ---------------------------------------------------------------------- 77rem ----------------------------------------------------------------------