1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

NEWS entry for [Feature #13302]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58429 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
shyouhei 2017-04-21 05:35:34 +00:00
parent 0c082fe658
commit 16ffd47639

8
NEWS
View file

@ -82,3 +82,11 @@ with all sufficient information, see the ChangeLog file or Redmine
* SecureRandom now prefers OS-provided sources than OpenSSL. [Bug #9569]
=== Miscellaneous changes
* configure option --with-ext now mandates its arguments. So for
instance if you run ./configure --with-ext=openssl,+ then the
openssl library is guaranteed compiled, otherwise the build fails
abnormally.
Note however to always add the ",+" at the end of the argument.
Otherwise nothing but openssl are built. [Feature #13302]