aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--configure.in8
2 files changed, 9 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index a1066e21cd..e7372f51a1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sun Dec 25 00:02:15 2011 Luis Lavena <luislavena@gmail.com>
+
+ * configure.in: change --with-ntver to --with-winnt-ver to be more
+ descriptive in the context. [ruby-core:41794]
+
Sat Dec 24 23:25:15 2011 Luis Lavena <luislavena@gmail.com>
* configure.in: add --with-ntver option to match win32/configure.bat
diff --git a/configure.in b/configure.in
index 9615c6068f..b9f3c7948f 100644
--- a/configure.in
+++ b/configure.in
@@ -940,12 +940,12 @@ AC_ARG_ENABLE(win95,
AS_HELP_STRING([--enable-win95], [enable Windows 95 series support]),
[AS_CASE(["$enableval"],[yes|no],[enable_win95=$enableval],[unset enable_win95])])
-AC_ARG_WITH(ntver,
- AS_HELP_STRING([--with-ntver=0xXXXX], [target NT version (default to 0x0501)]),
- [with_ntver="$withval"], [with_ntver="0x0501"])
+AC_ARG_WITH(winnt-ver,
+ AS_HELP_STRING([--with-winnt-ver=0xXXXX], [target Windows NT version (default to 0x0501)]),
+ [with_winnt_ver="$withval"], [with_winnt_ver="0x0501"])
AS_CASE(["$target_os"],
[mingw*], [
- RUBY_APPEND_OPTION(CPPFLAGS, -D_WIN32_WINNT=$with_ntver)
+ RUBY_APPEND_OPTION(CPPFLAGS, -D_WIN32_WINNT=$with_winnt_ver)
])
AS_CASE(["$target_os"],