summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
...
* * configure.in (RUBY_APPEND_OPTION, RUBY_APPEND_OPTIONS),nobu2009-02-081-0/+12
| | | | | | | | | | | | | | (RUBY_PREPEND_OPTION, RUBY_PREPEND_OPTIONS): add option(s) without duplication. * configure.in (RUBY_DEFINE_IF): changed parameter order, now condition comes first. * configure.in (universal_binary): checks architecture macros, and improved thin load paths. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22119 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * runruby.rb: gets extout and arch from rbconfig.rb.nobu2009-02-081-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22116 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/socket/test_addrinfo.rb (test_family_addrinfo): don't useakr2009-02-071-0/+6
| | | | | | | | www.ruby-lang.org. http://d.hatena.ne.jp/nagachika/20090204/working_for_0f0e git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22111 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * configure.in (--with-arch): added new option to supportnobu2009-02-071-0/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | universal binary. replaced --enable-fat-binary option which didn't work actually. * configure.in (RUBY_FUNC_ATTRIBUTE): added conditional test. * configure.in (ac_cv_type_getgroups): decalared because getgroups() fills rest of the buffer with garbages on Rosetta. * configure.in (alloca): defines only for powerpc, but always create empty object to suppress ld warning. * configure.in (LIBRUBY_DLDFLAGS): set compatibility version with TEENY. * configure.in (CFLAGS, LDFLAGS): separates ARCH_FLAG. * configure.in (arch): renamed to "universal" from "fat". * Makefile.in (ARCH_FLAG): added. * include/ruby/defines.h (WORDS_BIGENDIAN): uses AC_APPLE_UNIVERSAL_BUILD. * missing/alloca.c (alloca): defines only if C_ALLOCA is defined. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22106 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * runruby.rb: added --cpu option.nobu2009-02-071-1/+5
| | | | | | | * runruby.rb: skips version check in rbconfig.rb. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22105 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * runruby.rb: added --precommand and --show options.nobu2009-02-071-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22104 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/mkmf.rb (have_header): needs dependent headers if trying tonobu2009-02-071-0/+7
| | | | | | | | | compile. * ext/socket/extconf.rb: net/if.h depends on other headers. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22103 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * dir.c (dir_read): don't disable rdoc.akr2009-02-061-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22102 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * io.c (io_fread): use rb_io_wait_readable for retryakr2009-02-061-0/+5
| | | | | | | avoid Errno::EINTR on ruby -e 'trap(:CHLD) {}; spawn("sleep 1"); STDIN.read' git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22099 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* thread_pthread.c (native_thread_create) [__SYMBIAN32__]: reduced pthread ↵azav2009-02-061-0/+8
| | | | | | stack size git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22098 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* [__SYMBIAN32__]: included <sys/select.h> for fd_set definitionazav2009-02-061-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22095 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Created execl stub as a missing PIPS functionazav2009-02-061-0/+6
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22093 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * signal.c (register_sigaltstack): ignore sigaltstack error.akr2009-02-061-0/+5
| | | | | | | It fails on OpenBSD 4.4 when pthread library is linked. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22091 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ChangeLog: typo.usa2009-02-061-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22089 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * win32/win32.c (rb_w32_readdir_with_enc): fallback to OS convertionusa2009-02-061-0/+5
| | | | | | | | when ASCII-8BIT is passed. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22088 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * win32/{dir.h, win32.c} (rb_w32_readdir_with_enc): new function tousa2009-02-061-0/+12
| | | | | | | | | | | | | | | read entry with specified enc. * win32/win32.c (readdir_internal): extract from rb_w32_opendir(). * win32/win32.c (opendir_internal): extract from rb_w32_readdir(). * dir.c (dir_read, dir_each): use new READDIR macro instead of readdir() to pass enc for special version of readdir, such as above. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22087 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ruby.c (process_options): set initial default_external before -r.usa2009-02-061-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22086 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ruby.c (process_options): -K and -E in shebang should be reflect tousa2009-02-061-0/+5
| | | | | | | | default_external. [ruby-dev:37920] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22085 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/pty/pty.c (chfunc): type fixed.akr2009-02-051-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22084 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * string.c (rb_str_each_codepoint): update RDoc formatz2009-02-051-0/+6
| | | | | | | String#codepoints. a patch from Radoslaw Bulat in [ruby-core:21835] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22083 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * cont.c (cont_mark, cont_capture, cont_restore_1): use #else insteadmame2009-02-051-0/+6
| | | | | | | | of #elif. a patch from NISHIMATSU Takeshi <t_nissie at yahoo.co.jp> in [ruby-list:45856]. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22081 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * include/ruby/intern.h (rb_run_exec_options_err): renamed fromakr2009-02-051-0/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | rb_run_exec_options. (rb_exec_err): renamed from rb_exec. (rb_fork_err): renamed from rb_fork. (rb_spawn_err): renamed from rb_spawn. (rb_run_exec_options): declared with 1.9.1 compatible signature. (rb_exec): ditto. (rb_fork): ditto. (rb_spawn): ditto. * process.c (rb_run_exec_options_err): renamed from rb_run_exec_options. (rb_exec_err): renamed from rb_exec. (rb_fork_err): renamed from rb_fork. (rb_spawn_err): renamed from rb_spawn. (rb_run_exec_options): defined. (rb_exec): ditto. (rb_fork): ditto. (rb_spawn): ditto. * io.c: follow above change. * ext/pty/pty.c: follow above change. [ruby-dev:37893] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22078 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/socket: AddrInfo is renamed to Addrinfo. [ruby-dev:37876]akr2009-02-051-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22077 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * configure.in (RUBY_SITE_LIB_PATH, RUBY_VENDOR_LIB_PATH): fix fornobu2009-02-051-0/+5
| | | | | | | NetBSD. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22076 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * win32/Makefile.sub (config.h): follow recent changes about paths.usa2009-02-051-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22075 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * configure.in (MAJOR, MINOR, TEENY): uses RUBY_VERSION_*.nobu2009-02-051-0/+6
| | | | | | | * mkconfig.rb (prefix): uses ruby_version in config.status. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22074 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * array.c (rb_ary_uniq): gets rid of copying.nobu2009-02-051-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22073 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * array.c (ary_add_hash): split from ary_make_hash().nobu2009-02-051-1/+9
| | | | | | | | | | | * array.c (ary_recycle_hash): clears internally used hash. this name came from [ruby-dev:37908]. * array.c (rb_ary_diff, rb_ary_and, rb_ary_or, rb_ary_uniq_bang): recycle hashes. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22072 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * array.c (ary_make_hash): hide a Hash used internally.nobu2009-02-051-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22071 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * configure.in (RUBY_LIB_VERSION): added for library version, tonobu2009-02-051-0/+16
| | | | | | | | | | | | | | | | | | split from core version. [ruby-dev:37748] * configure.in (RUBY_LIB_PATH, etc): moved actual version dependent stuff to version.c. * ruby.c (ruby_init_loadpath_safe): ditto. * version.c (ruby_initial_load_paths): moved initial load path version depending on version from ruby.c. * version.h (RUBY_VERSION_{MAJOR,MINOR,TEENY}): now mean library and API version, and reverted to 1.9.1. [ruby-dev:37889] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22069 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* change from assigned variable to called functionkazu2009-02-041-2/+2
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22055 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/readline/readline.c (Init_readline): entry may be NULL.kazu2009-02-041-0/+5
| | | | | | | [ruby-dev:37891] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22054 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * time.c (LOCALTIME): should call tzset() before localtime_r().matz2009-02-041-0/+5
| | | | | | [ruby-dev:37896] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22053 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Updated Symbain configuration procedure to avoid creating files outside ↵azav2009-02-041-0/+11
| | | | | | build directory git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22052 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * transcode.c (make_econv_exception): refine error message forakr2009-02-041-0/+5
| | | | | | | | undefined conversion. [ruby-core:21828] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22049 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/socket/socket.c (sock_s_socketpair): make 3rd argument optional.akr2009-02-041-0/+9
| | | | | | | | | | | * ext/socket/unixsocket.c (unix_s_socketpair): follow the above change. * ext/socket/rubysocket.h (sock_s_socketpair): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22047 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/socket/raddrinfo.c (addrinfo_ipv6_to_ipv4): new method.akr2009-02-041-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22042 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * transcode.c (make_econv_exception): show U+XXXX form for undefinedakr2009-02-041-0/+5
| | | | | | | conversion error from UTF-8. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22039 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * string.c (rb_str_dump): use MBCLEN_CHARFOUND_P properly.akr2009-02-041-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22036 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * bootstraptest/runner.rb: refine success message.akr2009-02-041-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22035 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* fixed typos and remove some spaceskazu2009-02-041-6/+6
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22033 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * Makefile.in (id.h): updates from parse.h.nobu2009-02-041-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * win32/mkexports.rb: shouldn't export DllMain.usa2009-02-041-0/+5
| | | | | | | | reported at http://pc11.2ch.net/test/read.cgi/tech/1233686068/21 git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22025 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * missing/vsnprintf.c (BSD_vfprintf): should support 't' formatmatz2009-02-041-0/+6
| | | | | | | modifier to handle PRIdPTRDIFF. thanks for the info from Kazuhiro NISHIYAMA. [ruby-core:21807] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22024 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/socket/extconf.rb: fix struct in_pktinfo and struct in6_pktinfoakr2009-02-031-0/+5
| | | | | | | | detection. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22022 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/etc/test_etc.rb(test_getpwnam, test_getgrgid, test_getgrnam):mame2009-02-031-0/+7
| | | | | | | | | support an envirionment that has duplicative entries. a patch from Tomoyuki Chikanaga <chikanag at nippon-control-system.co.jp> in [ruby-dev:37882]. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22021 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/socket/lib/socket.rb (Socket.tcp_server_sockets_port0): skipakr2009-02-031-0/+5
| | | | | | | | socket creation error. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22019 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ruby.c (load_file_internal): resets EOF flag after parse.nobu2009-02-031-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22017 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * vm.c (vm_backtrace): always returns non-nil array if lev isnobu2009-02-031-0/+5
| | | | | | | negative. [ruby-core:21795] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22016 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/readline/extconf.rb: checked rl_set_screen_size andkouji2009-02-031-0/+11
| | | | | | | | | | | | | rl_get_screen_size. * ext/readline/readline.c (readline_s_set_screen_size): added Readline.set_screen_size. * ext/readline/readline.c (readline_s_get_screen_size): added Readline.get_screen_size. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22014 b2dd03c8-39d4-4d8f-98ff-823fe69b080e