diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2010-09-22 19:26:02 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2010-09-22 19:26:02 +0200 |
commit | 8f978ca0d54104c3da1bd34e0a45e0aeedcd7a69 (patch) | |
tree | 84531cea864ae1a4a782f736c70a2c7e5208e625 /nt | |
parent | 413d18e73de161f0618926ef73d170a7ef5c7a2f (diff) | |
download | emacs-8f978ca0d54104c3da1bd34e0a45e0aeedcd7a69.tar.gz |
nt/configure.bat: Add comment about USER_(C|LD)FLAGS.
Diffstat (limited to 'nt')
-rwxr-xr-x | nt/configure.bat | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nt/configure.bat b/nt/configure.bat index 74c7e1af137..fc9fae4da60 100755 --- a/nt/configure.bat +++ b/nt/configure.bat @@ -630,6 +630,8 @@ echo. >>config.settings copy config.nt config.tmp
echo. >>config.tmp
echo /* Start of settings from configure.bat. */ >>config.tmp
+rem We write USER_CFLAGS and USER_LDFLAGS starting with a space to simplify
+rem processing of compiler options in w32.c:get_emacs_configuration_options
if (%docflags%) == (Y) echo #define USER_CFLAGS " %usercflags%">>config.tmp
if (%doldflags%) == (Y) echo #define USER_LDFLAGS " %userldflags%">>config.tmp
if (%profile%) == (Y) echo #define PROFILING 1 >>config.tmp
|