ruby-changes:22070
From: luislavena <ko1@a...>
Date: Sun, 25 Dec 2011 00:05:43 +0900 (JST)
Subject: [ruby-changes:22070] luislavena:r34119 (trunk): * configure.in: change --with-ntver to --with-winnt-ver to be more
luislavena 2011-12-25 00:05:33 +0900 (Sun, 25 Dec 2011) New Revision: 34119 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=34119 Log: * configure.in: change --with-ntver to --with-winnt-ver to be more descriptive in the context. [ruby-core:41794] Modified files: trunk/ChangeLog trunk/configure.in Index: configure.in =================================================================== --- configure.in (revision 34118) +++ configure.in (revision 34119) @@ -940,12 +940,12 @@ 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"], Index: ChangeLog =================================================================== --- ChangeLog (revision 34118) +++ ChangeLog (revision 34119) @@ -1,3 +1,8 @@ +Sun Dec 25 00:02:15 2011 Luis Lavena <luislavena@g...> + + * 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@g...> * configure.in: add --with-ntver option to match win32/configure.bat -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/