ruby-changes:31240
From: nobu <ko1@a...>
Date: Thu, 17 Oct 2013 08:12:06 +0900 (JST)
Subject: [ruby-changes:31240] nobu:r43319 (trunk): Makefile.sub: default HAVE_PSAPI_H to 0
nobu 2013-10-17 08:12:02 +0900 (Thu, 17 Oct 2013) New Revision: 43319 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=43319 Log: Makefile.sub: default HAVE_PSAPI_H to 0 * win32/Makefile.sub (HAVE_PSAPI_H): default to 0. Modified files: trunk/win32/Makefile.sub Index: win32/Makefile.sub =================================================================== --- win32/Makefile.sub (revision 43318) +++ win32/Makefile.sub (revision 43319) @@ -308,6 +308,9 @@ STACK = $(STACK),$(STACK_COMMIT) https://github.com/ruby/ruby/blob/trunk/win32/Makefile.sub#L308 !endif ORGLIBPATH = $(LIB) +!if defined(HAVE_PSAPI_H) +HAVE_PSAPI_H = 0 +!endif #### End of system configuration section. #### LIBRUBY_A = $(RUBY_SO_NAME)-static.lib @@ -678,7 +681,7 @@ $(CONFIG_H): $(MKFILES) $(srcdir)/win32/ https://github.com/ruby/ruby/blob/trunk/win32/Makefile.sub#L681 #define HAVE_DAYLIGHT 1 #define HAVE_GMTIME_R 1 #define HAVE_TYPE_NET_LUID 1 -!if defined(HAVE_PSAPI_H) && $(HAVE_PSAPI_H) +!if $(HAVE_PSAPI_H) #define HAVE_PSAPI_H 1 !endif #define SETPGRP_VOID 1 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/