mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/socket/getnameinfo.c: need to include extconf.h for HAVE_* macros.
reported by Kenta Murata <mrkn AT mrkn.jp> via IRC. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25857 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e569adce47
commit
ffffc0ce7d
2 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
Thu Nov 19 20:43:39 2009 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* ext/socket/getnameinfo.c: need to include extconf.h for HAVE_* macros.
|
||||
reported by Kenta Murata <mrkn AT mrkn.jp> via IRC.
|
||||
|
||||
Thu Nov 19 17:00:59 2009 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* win32/Makefile.sub: nmake execute the file named echo if it exists
|
||||
|
|
|
@ -35,6 +35,9 @@
|
|||
*/
|
||||
|
||||
#include "ruby/config.h"
|
||||
#ifdef RUBY_EXTCONF_H
|
||||
#include RUBY_EXTCONF_H
|
||||
#endif
|
||||
#include <stdio.h>
|
||||
#include <sys/types.h>
|
||||
#ifndef _WIN32
|
||||
|
|
Loading…
Reference in a new issue