diff options
| author | Glenn Morris | 2012-05-26 18:06:44 -0700 |
|---|---|---|
| committer | Glenn Morris | 2012-05-26 18:06:44 -0700 |
| commit | 33017fafd17d722e82a268e9b272f27df261e09d (patch) | |
| tree | 9c34640f09d51059804961d697ed9b07e19571d3 /nt | |
| parent | caf8a9b2b301aba06735d403317b75b41df59bfe (diff) | |
| parent | ed7bebbb489cf6f893fc35a2a6714b0d8e7e8a90 (diff) | |
| download | emacs-33017fafd17d722e82a268e9b272f27df261e09d.tar.gz emacs-33017fafd17d722e82a268e9b272f27df261e09d.zip | |
Merge from emacs-24; up to 2012-04-24T08:35:02Z!lekktu@gmail.com
Diffstat (limited to 'nt')
| -rw-r--r-- | nt/ChangeLog | 6 | ||||
| -rwxr-xr-x | nt/configure.bat | 22 |
2 files changed, 17 insertions, 11 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog index 198729776b5..7a825ecb29f 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2012-05-27 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * configure.bat: Ensure a space between %var% expansion and | ||
| 4 | redirection symbol '>', which breaks when %var% ends in a digit, | ||
| 5 | such as 1. | ||
| 6 | |||
| 1 | 2012-05-22 Paul Eggert <eggert@cs.ucla.edu> | 7 | 2012-05-22 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 8 | ||
| 3 | Remove src/m/*. | 9 | Remove src/m/*. |
diff --git a/nt/configure.bat b/nt/configure.bat index db587b02997..a60df56fc94 100755 --- a/nt/configure.bat +++ b/nt/configure.bat | |||
| @@ -757,25 +757,25 @@ rem NB. Be very careful to not have a space before redirection symbols | |||
| 757 | rem except when there is a preceding digit, when a space is required. | 757 | rem except when there is a preceding digit, when a space is required. |
| 758 | rem | 758 | rem |
| 759 | echo # Start of settings from configure.bat >config.settings | 759 | echo # Start of settings from configure.bat >config.settings |
| 760 | echo COMPILER=%COMPILER%>>config.settings | 760 | echo COMPILER=%COMPILER% >>config.settings |
| 761 | if not "(%mf%)" == "()" echo MCPU_FLAG=%mf%>>config.settings | 761 | if not "(%mf%)" == "()" echo MCPU_FLAG=%mf% >>config.settings |
| 762 | if not "(%dbginfo%)" == "()" echo DEBUG_INFO=%dbginfo%>>config.settings | 762 | if not "(%dbginfo%)" == "()" echo DEBUG_INFO=%dbginfo% >>config.settings |
| 763 | if (%nodebug%) == (Y) echo NODEBUG=1 >>config.settings | 763 | if (%nodebug%) == (Y) echo NODEBUG=1 >>config.settings |
| 764 | if (%noopt%) == (Y) echo NOOPT=1 >>config.settings | 764 | if (%noopt%) == (Y) echo NOOPT=1 >>config.settings |
| 765 | if (%enablechecking%) == (Y) echo ENABLECHECKS=1 >>config.settings | 765 | if (%enablechecking%) == (Y) echo ENABLECHECKS=1 >>config.settings |
| 766 | if (%profile%) == (Y) echo PROFILE=1 >>config.settings | 766 | if (%profile%) == (Y) echo PROFILE=1 >>config.settings |
| 767 | if (%nocygwin%) == (Y) echo NOCYGWIN=1 >>config.settings | 767 | if (%nocygwin%) == (Y) echo NOCYGWIN=1 >>config.settings |
| 768 | if not "(%prefix%)" == "()" echo INSTALL_DIR=%prefix%>>config.settings | 768 | if not "(%prefix%)" == "()" echo INSTALL_DIR=%prefix% >>config.settings |
| 769 | if not "(%distfiles%)" == "()" echo DIST_FILES=%distfiles%>>config.settings | 769 | if not "(%distfiles%)" == "()" echo DIST_FILES=%distfiles% >>config.settings |
| 770 | rem We go thru docflags because usercflags could be "-DFOO=bar" -something | 770 | rem We go thru docflags because usercflags could be "-DFOO=bar" -something |
| 771 | rem and the if command cannot cope with this | 771 | rem and the if command cannot cope with this |
| 772 | for %%v in (%usercflags%) do if not (%%v)==() set docflags=Y | 772 | for %%v in (%usercflags%) do if not (%%v)==() set docflags=Y |
| 773 | if (%docflags%)==(Y) echo USER_CFLAGS=%usercflags%>>config.settings | 773 | if (%docflags%)==(Y) echo USER_CFLAGS=%usercflags% >>config.settings |
| 774 | if (%docflags%)==(Y) echo ESC_USER_CFLAGS=%escusercflags%>>config.settings | 774 | if (%docflags%)==(Y) echo ESC_USER_CFLAGS=%escusercflags% >>config.settings |
| 775 | for %%v in (%userldflags%) do if not (%%v)==() set doldflags=Y | 775 | for %%v in (%userldflags%) do if not (%%v)==() set doldflags=Y |
| 776 | if (%doldflags%)==(Y) echo USER_LDFLAGS=%userldflags%>>config.settings | 776 | if (%doldflags%)==(Y) echo USER_LDFLAGS=%userldflags% >>config.settings |
| 777 | for %%v in (%extrauserlibs%) do if not (%%v)==() set doextralibs=Y | 777 | for %%v in (%extrauserlibs%) do if not (%%v)==() set doextralibs=Y |
| 778 | if (%doextralibs%)==(Y) echo USER_LIBS=%extrauserlibs%>>config.settings | 778 | if (%doextralibs%)==(Y) echo USER_LIBS=%extrauserlibs% >>config.settings |
| 779 | echo # End of settings from configure.bat>>config.settings | 779 | echo # End of settings from configure.bat>>config.settings |
| 780 | echo. >>config.settings | 780 | echo. >>config.settings |
| 781 | 781 | ||
| @@ -784,8 +784,8 @@ echo. >>config.tmp | |||
| 784 | echo /* Start of settings from configure.bat. */ >>config.tmp | 784 | echo /* Start of settings from configure.bat. */ >>config.tmp |
| 785 | rem We write USER_CFLAGS and USER_LDFLAGS starting with a space to simplify | 785 | rem We write USER_CFLAGS and USER_LDFLAGS starting with a space to simplify |
| 786 | rem processing of compiler options in w32.c:get_emacs_configuration_options | 786 | rem processing of compiler options in w32.c:get_emacs_configuration_options |
| 787 | if (%docflags%) == (Y) echo #define USER_CFLAGS " %escusercflags%">>config.tmp | 787 | if (%docflags%) == (Y) echo #define USER_CFLAGS " %escusercflags%" >>config.tmp |
| 788 | if (%doldflags%) == (Y) echo #define USER_LDFLAGS " %escuserldflags%">>config.tmp | 788 | if (%doldflags%) == (Y) echo #define USER_LDFLAGS " %escuserldflags%" >>config.tmp |
| 789 | if (%profile%) == (Y) echo #define PROFILING 1 >>config.tmp | 789 | if (%profile%) == (Y) echo #define PROFILING 1 >>config.tmp |
| 790 | if not "(%HAVE_PNG%)" == "()" echo #define HAVE_PNG 1 >>config.tmp | 790 | if not "(%HAVE_PNG%)" == "()" echo #define HAVE_PNG 1 >>config.tmp |
| 791 | if not "(%HAVE_GNUTLS%)" == "()" echo #define HAVE_GNUTLS 1 >>config.tmp | 791 | if not "(%HAVE_GNUTLS%)" == "()" echo #define HAVE_GNUTLS 1 >>config.tmp |