| Age | Commit message (Collapse) | Author |
|
Ruby 2.7 supports MSVC 12.0/_MSC_VER 1800 or later.
https://github.com/ruby/etc/commit/6f4404ec88
|
|
https://github.com/ruby/etc/commit/c9c9b9d15e
|
|
https://github.com/ruby/etc/commit/410c8dd4ae
|
|
* Because it uses RbConfig::CONFIG.
* See https://github.com/ruby/ruby/actions/runs/14069312270/job/39399502142#step:12:947
https://github.com/ruby/etc/commit/12dbe03b6a
|
|
* See https://bugs.ruby-lang.org/issues/21115
https://github.com/ruby/etc/commit/ae62b7619c
|
|
https://github.com/ruby/etc/commit/5019f4314a
|
|
https://github.com/ruby/etc/commit/53362d891c
|
|
https://github.com/ruby/etc/commit/0d2f76ffb4
|
|
When relative load paths option is enabled, the prefix is determined
at the runtime. The only way to get it outside libruby is to use
rbconfig.rb.
https://github.com/ruby/etc/commit/e5b498fad9
|
|
https://github.com/ruby/etc/commit/fae932ff61
|
|
https://github.com/ruby/etc/commit/a39e982129
|
|
https://github.com/ruby/etc/commit/743c26086d
|
|
https://github.com/ruby/etc/commit/e4c71e5996
|
|
https://github.com/ruby/etc/commit/a9e4d4730d
|
|
Although MinGW provides this header but not the function, Windows
version ruby provides the function.
https://github.com/ruby/etc/commit/f7fa1884fa
|
|
https://github.com/ruby/etc/commit/365398ea47
|
|
* See https://github.com/ruby/io-console/pull/43/commits/d1d9aef45ceb14365fdf0ebee3e5ea06f27da682
https://github.com/ruby/etc/commit/5185685003
|
|
(https://github.com/ruby/etc/pull/26)
https://github.com/ruby/etc/commit/ea15eceb13
|
|
https://github.com/ruby/etc/commit/5cac138538
|
|
https://github.com/ruby/etc/commit/b3e9d9ceb0
|
|
getenv is a very basic function that has been in stdlib.h since
ISO/IEC 9899:1990. There is absolutely zero need for us to redeclare.
pty.c already includes stdlib.h out of the box so we need nothing.
Notes:
Merged: https://github.com/ruby/ruby/pull/6358
|
|
https://github.com/ruby/etc/commit/6c9a0b4e5d
|
|
https://github.com/ruby/etc/commit/a8801e07d1
|
|
https://github.com/ruby/etc/commit/ea51739974
|
|
System-dependent feature macros are automatically detected by
extconf.rb, and are not used by users.
https://github.com/ruby/etc/commit/e7343b4e69
|
|
https://github.com/ruby/etc/commit/143edbd215
|
|
https://github.com/ruby/etc/commit/ca41f182f6
|
|
https://github.com/ruby/etc/commit/82dd69a4cf
|
|
https://github.com/ruby/etc/commit/17b99fe42e
|
|
https://github.com/ruby/etc/commit/106429f10b
|
|
https://github.com/ruby/etc/commit/85ca541d0b
|
|
https://github.com/ruby/etc/commit/c989bacc4c
|
|
https://github.com/ruby/etc/commit/0c5900bd21
|
|
https://github.com/ruby/etc/commit/f017bdfedf
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/3983
|
|
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/3954
|
|
Notes:
Merged: https://github.com/ruby/ruby/pull/3954
|
|
|
|
`pw_expire` is declared as `time_t`, but actually not, and
`getpwuid` returns a garbage there.
Also the declaration of `struct passwd` in pwd.h and the manual
page contradict each other, interal `pw_fields` is mentioned only
in the latter. Maybe there is a confusion.
|
|
|
|
https://github.com/ruby/etc/commit/25c538120c
|
|
This reverts commit 69f698d85ada116db5747873e53c597991bedff8.
Again.
|
|
https://github.com/ruby/etc/commit/25c538120c
|
|
This reverts commit 919b175afc389f8df6a3caa05ffdd28f5fc4bfca.
Since 604689628dc64d050a68f1ebe5e06f9105474936, to let `try_run`
work before LIBRUBY_SO is installed, `try_link` links against the
static library which defines even symbols unexported in the shared
library.
|
|
https://github.com/ruby/etc/commit/25c538120c
|
|
https://github.com/ruby/etc/commit/78987ce56a
|
|
Ruby 2.7 deprecates taint and it no longer has an effect.
The lack of taint support should not cause a problem in
previous Ruby versions.
Still untaint the tmpdir object on Ruby <2.7, as returning
a tainted string there could cause problems.
Notes:
Merged: https://github.com/ruby/ruby/pull/2476
|
|
This removes the related tests, and puts the related specs behind
version guards. This affects all code in lib, including some
libraries that may want to support older versions of Ruby.
Notes:
Merged: https://github.com/ruby/ruby/pull/2476
|
|
This removes the security features added by $SAFE = 1, and warns for access
or modification of $SAFE from Ruby-level, as well as warning when calling
all public C functions related to $SAFE.
This modifies some internal functions that took a safe level argument
to no longer take the argument.
rb_require_safe now warns, rb_require_string has been added as a
version that takes a VALUE and does not warn.
One public C function that still takes a safe level argument and that
this doesn't warn for is rb_eval_cmd. We may want to consider
adding an alternative method that does not take a safe level argument,
and warn for rb_eval_cmd.
Notes:
Merged: https://github.com/ruby/ruby/pull/2476
|