summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-04-21 05:35:34 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-04-21 05:35:34 +0000
commit16ffd476399df9259d3496ec5aa15b2f2c4006ed (patch)
treea2afbb227029278983e84e28d55b14917896c680 /NEWS
parent0c082fe658b9522e58b1cd30ee6b2398573518db (diff)
NEWS entry for [Feature #13302]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58429 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS8
1 files changed, 8 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 2325da2913..3253e1f61a 100644
--- a/NEWS
+++ b/NEWS
@@ -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]