[前][次][番号順一覧][スレッド一覧]

ruby-changes:28615

From: kosaki <ko1@a...>
Date: Sun, 12 May 2013 17:42:33 +0900 (JST)
Subject: [ruby-changes:28615] kosaki:r40667 (trunk): * process.c: move '#define SPAWNV 1' to win32/Makefile.sub.

kosaki	2013-05-12 17:42:19 +0900 (Sun, 12 May 2013)

  New Revision: 40667

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=40667

  Log:
    * process.c: move '#define SPAWNV 1' to win32/Makefile.sub.
    * win32/Makefile.sub: see above.

  Modified files:
    trunk/ChangeLog
    trunk/process.c
    trunk/win32/Makefile.sub

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 40666)
+++ ChangeLog	(revision 40667)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Sun May 12 17:18:46 2013  KOSAKI Motohiro  <kosaki.motohiro@g...>
+
+	* process.c: move '#define SPAWNV 1' to win32/Makefile.sub.
+	* win32/Makefile.sub: see above.
+
 Sun May 12 17:13:32 2013  KOSAKI Motohiro  <kosaki.motohiro@g...>
 
 	* configure.in: removes AC_CHECK_FUNCS(setitimer) because it's
Index: win32/Makefile.sub
===================================================================
--- win32/Makefile.sub	(revision 40666)
+++ win32/Makefile.sub	(revision 40667)
@@ -634,6 +634,7 @@ $(CONFIG_H): $(MKFILES) $(srcdir)/win32/ https://github.com/ruby/ruby/blob/trunk/win32/Makefile.sub#L634
 #define HAVE_MEMCMP 1
 #define HAVE_MEMMOVE 1
 #define HAVE_MKDIR 1
+#define HAVE_SPAWNV 1
 #define HAVE_STRCASECMP 1
 #define HAVE_STRNCASECMP 1
 #define HAVE_STRERROR 1
Index: process.c
===================================================================
--- process.c	(revision 40666)
+++ process.c	(revision 40667)
@@ -1356,10 +1356,6 @@ static const rb_data_type_t exec_arg_dat https://github.com/ruby/ruby/blob/trunk/process.c#L1356
   {mark_exec_arg, free_exec_arg, memsize_exec_arg},
 };
 
-#if defined(_WIN32)
-#define HAVE_SPAWNV 1
-#endif
-
 #if !defined(HAVE_FORK) && defined(HAVE_SPAWNV)
 # define USE_SPAWNV 1
 #else

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]