diff options
author | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-07-15 12:48:47 +0000 |
---|---|---|
committer | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-07-15 12:48:47 +0000 |
commit | e3cc2ee1ed8d16f7920459641ad66f0f1afbb8d9 (patch) | |
tree | 5495119227cd065451946e43d0aa1505dce2d6e3 /ext/tk/tcltklib.c | |
parent | c9eba6932be3ad3e43bb002ca1c4e2375e5b6d1c (diff) |
* ext/tk/extconf.rb, ext/tk/tcltklib.c, ext/tk/tkutil/tkutil.c: Do
not test ruby/ruby.h, which makes OS X's gcc pick the wrong
header file from Ruby.framework.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18076 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/tk/tcltklib.c')
-rw-r--r-- | ext/tk/tcltklib.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/tk/tcltklib.c b/ext/tk/tcltklib.c index 9e14fc4f89..db31846e61 100644 --- a/ext/tk/tcltklib.c +++ b/ext/tk/tcltklib.c @@ -8,8 +8,7 @@ #include "ruby.h" -#ifdef HAVE_RUBY_RUBY_H -/* #include "ruby/ruby.h" */ +#ifdef HAVE_RUBY_SIGNAL_H #include "ruby/signal.h" #ifdef HAVE_RUBY_ENCODING_H #include "ruby/encoding.h" |