From c4c770ecb2cfc6a7b213812cfd0b1f56bff000a4 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 25 May 2006 23:44:08 +0000 Subject: * ruby.h, lib/mkmf.rb (create_header): clear command line options for macros moved to extconf.h. * ext/extmk.rb (extract_makefile, extmk): made RUBY_EXTCONF_H and EXTSTATIC permanent. * ext/{dbm,digest/*,socket,zlib}/extconf.rb: used $defs and $INCFLAGS. * {bcc32,win32,wince}/Makefile.sub (COMPILE_C, COMPILE_CXX): added $(INCFLAGS). git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@10193 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ruby.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ruby.h') diff --git a/ruby.h b/ruby.h index 4c1cd148d..dcb38f4a7 100644 --- a/ruby.h +++ b/ruby.h @@ -22,6 +22,9 @@ extern "C" { #endif #include "config.h" +#ifdef RUBY_EXTCONF_H +#include RUBY_EXTCONF_H +#endif #include "defines.h" #ifdef HAVE_STDLIB_H -- cgit