* 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:
usa 2009-11-19 11:44:29 +00:00
Родитель e569adce47
Коммит ffffc0ce7d
2 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -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