diff options
Diffstat (limited to 'nt')
| -rw-r--r-- | nt/ChangeLog | 14 | ||||
| -rw-r--r-- | nt/INSTALL | 3 | ||||
| -rwxr-xr-x | nt/configure.bat | 15 |
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 @@ | |||
| 1 | 2013-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 | |||
| 7 | 2013-08-25 Glenn Morris <rgm@gnu.org> | ||
| 8 | |||
| 9 | * INSTALL: Refer to INSTALL.MSYS. | ||
| 10 | * configure.bat: Disable it. | ||
| 11 | |||
| 1 | 2013-08-04 Eli Zaretskii <eliz@gnu.org> | 12 | 2013-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. | |||
| 58 | rem [7] not recommended; please report if you try this combination. | 58 | rem [7] not recommended; please report if you try this combination. |
| 59 | rem [8] tested only on Windows XP. | 59 | rem [8] tested only on Windows XP. |
| 60 | rem | 60 | rem |
| 61 | 61 | echo **************************************************************** | |
| 62 | echo *** THIS METHOD OF BUILDING EMACS IS NO LONGER SUPPORTED. ** | ||
| 63 | echo *** INSTEAD, FOLLOW THE INSTRUCTIONS FROM INSTALL.MSYS. ** | ||
| 64 | echo **************************************************************** | ||
| 65 | :confirm_continue | ||
| 66 | set /p answer=Continue running this script at your own risks ? (Y/N) | ||
| 67 | if x%answer% == xy (goto confirm_continue_y) | ||
| 68 | if x%answer% == xY (goto confirm_continue_y) | ||
| 69 | if x%answer% == xn (goto end) | ||
| 70 | if x%answer% == xN (goto end) | ||
| 71 | echo Please answer by Y or N | ||
| 72 | goto confirm_continue | ||
| 73 | |||
| 74 | :confirm_continue_y | ||
| 62 | if exist config.log del config.log | 75 | if exist config.log del config.log |
| 63 | 76 | ||
| 64 | rem ---------------------------------------------------------------------- | 77 | rem ---------------------------------------------------------------------- |