mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/digest/md5/extconf.rb: use pkg_config for openssl so that
customized ssl paths are used for linking. Backports fixes for [ruby-core:44755]. * ext/digest/rmd160/extconf.rb: ditto * ext/digest/sha1/extconf.rb: ditto * ext/digest/sha2/extconf.rb: ditto git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@35653 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e2aeaed633
commit
17325a1d33
6 changed files with 14 additions and 1 deletions
|
|
@ -1,3 +1,12 @@
|
|||
Wed May 16 01:07:46 2012 Aaron Patterson <aaron@tenderlovemaking.com>
|
||||
|
||||
* ext/digest/md5/extconf.rb: use pkg_config for openssl so that
|
||||
customized ssl paths are used for linking. Backports fixes for
|
||||
[ruby-core:44755].
|
||||
* ext/digest/rmd160/extconf.rb: ditto
|
||||
* ext/digest/sha1/extconf.rb: ditto
|
||||
* ext/digest/sha2/extconf.rb: ditto
|
||||
|
||||
Mon May 14 17:14:10 2012 CHIKANAGA Tomoyuki <nagachika@ruby-lang.org>
|
||||
|
||||
* test/ruby/test_io.rb (test_flush_in_finalizer1): don't use IO.for_fd
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ $INCFLAGS << " -I$(srcdir)/.."
|
|||
$objs = [ "md5init.#{$OBJEXT}" ]
|
||||
|
||||
dir_config("openssl")
|
||||
pkg_config("openssl")
|
||||
|
||||
if !with_config("bundled-md5") &&
|
||||
have_library("crypto") && have_header("openssl/md5.h")
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ $INCFLAGS << " -I$(srcdir)/.."
|
|||
$objs = [ "rmd160init.#{$OBJEXT}" ]
|
||||
|
||||
dir_config("openssl")
|
||||
pkg_config("openssl")
|
||||
|
||||
if !with_config("bundled-rmd160") &&
|
||||
have_library("crypto") && have_header("openssl/ripemd.h")
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ $INCFLAGS << " -I$(srcdir)/.."
|
|||
$objs = [ "sha1init.#{$OBJEXT}" ]
|
||||
|
||||
dir_config("openssl")
|
||||
pkg_config("openssl")
|
||||
|
||||
if !with_config("bundled-sha1") &&
|
||||
have_library("crypto") && have_header("openssl/sha.h")
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ $INCFLAGS << " -I$(srcdir)/.."
|
|||
$objs = [ "sha2init.#{$OBJEXT}" ]
|
||||
|
||||
dir_config("openssl")
|
||||
pkg_config("openssl")
|
||||
|
||||
if !with_config("bundled-sha2") &&
|
||||
have_library("crypto") &&
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#define RUBY_VERSION "1.9.3"
|
||||
#define RUBY_PATCHLEVEL 214
|
||||
#define RUBY_PATCHLEVEL 215
|
||||
|
||||
#define RUBY_RELEASE_DATE "2012-05-14"
|
||||
#define RUBY_RELEASE_YEAR 2012
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue