mirror of
https://github.com/ruby/ruby.git
synced 2025-09-15 16:44:01 +02:00
* Makefile.in, common.mk (NULLCMD): moved for platforms that empty
command does not run. fixed: [ruby-dev:29994] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@11361 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d99fee4dda
commit
1e8e90612a
3 changed files with 12 additions and 7 deletions
17
ChangeLog
17
ChangeLog
|
@ -1,3 +1,8 @@
|
||||||
|
Wed Dec 6 23:56:14 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* Makefile.in, common.mk (NULLCMD): moved for platforms that empty
|
||||||
|
command does not run. fixed: [ruby-dev:29994]
|
||||||
|
|
||||||
Wed Dec 6 17:17:26 2006 WATANABE Hirofumi <eban@ruby-lang.org>
|
Wed Dec 6 17:17:26 2006 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||||
|
|
||||||
* configure.in (SITE_DIR): fixed to emtpy RUBY_SITE_LIB in config.h on
|
* configure.in (SITE_DIR): fixed to emtpy RUBY_SITE_LIB in config.h on
|
||||||
|
@ -11,7 +16,7 @@ Tue Dec 5 00:59:05 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
Mon Dec 4 10:48:03 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
|
Mon Dec 4 10:48:03 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
* ruby.h (OFFT2NUM): use LONG2NUM() if sizeof(long) equals to
|
* ruby.h (OFFT2NUM): use LONG2NUM() if sizeof(long) equals to
|
||||||
sizeof(off_t).
|
sizeof(off_t).
|
||||||
|
|
||||||
Mon Dec 4 10:43:46 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
|
Mon Dec 4 10:43:46 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
|
@ -62,11 +67,11 @@ Wed Nov 22 16:00:49 2006 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
||||||
|
|
||||||
* ext/tk/extconf.rb: support --with-X11/--without-X11 option.
|
* ext/tk/extconf.rb: support --with-X11/--without-X11 option.
|
||||||
|
|
||||||
* ext/tk/README.tcltklib: add description about --with-X11-* option
|
* ext/tk/README.tcltklib: add description about --with-X11-* option
|
||||||
[ruby-talk:225166] and --with-X11/--without-X11 option.
|
[ruby-talk:225166] and --with-X11/--without-X11 option.
|
||||||
|
|
||||||
* ext/tk/tkutil/extconf.rb: able to be called manually
|
* ext/tk/tkutil/extconf.rb: able to be called manually
|
||||||
[ruby-talk:225950].
|
[ruby-talk:225950].
|
||||||
|
|
||||||
Wed Nov 15 23:22:54 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Wed Nov 15 23:22:54 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
@ -109,10 +114,10 @@ Mon Nov 6 15:41:55 2006 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
||||||
* ext/tk/sample/editable_listbox.rb: [new] the listbox with editable
|
* ext/tk/sample/editable_listbox.rb: [new] the listbox with editable
|
||||||
items. It's one of the example about usage of Place geometry manager.
|
items. It's one of the example about usage of Place geometry manager.
|
||||||
|
|
||||||
* ext/tk/sample/tktextio.rb: improve the functions of TkTextIO class.
|
* ext/tk/sample/tktextio.rb: improve the functions of TkTextIO class.
|
||||||
Those are required by 'irbtkw.rbw'.
|
Those are required by 'irbtkw.rbw'.
|
||||||
|
|
||||||
* ext/tk/sample/irbtkw.rbw: [new] IRB on Ruby/Tk. It doesn't need any
|
* ext/tk/sample/irbtkw.rbw: [new] IRB on Ruby/Tk. It doesn't need any
|
||||||
real console. IRB works on a text widget without I/O blocking. That
|
real console. IRB works on a text widget without I/O blocking. That
|
||||||
is, thread switching on IRB will work properly, even if on Windows.
|
is, thread switching on IRB will work properly, even if on Windows.
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
SHELL = /bin/sh
|
SHELL = /bin/sh
|
||||||
|
NULLCMD = :
|
||||||
|
|
||||||
#### Start of system configuration section. ####
|
#### Start of system configuration section. ####
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,6 @@ lib: $(LIBRUBY)
|
||||||
dll: $(LIBRUBY_SO)
|
dll: $(LIBRUBY_SO)
|
||||||
|
|
||||||
RUBYOPT =
|
RUBYOPT =
|
||||||
NULLCMD =
|
|
||||||
|
|
||||||
STATIC_RUBY = static-ruby
|
STATIC_RUBY = static-ruby
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue