mirror of
https://github.com/ruby/ruby.git
synced 2025-09-21 03:24:00 +02:00

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
26 lines
466 B
Ruby
26 lines
466 B
Ruby
# $RoughId: extconf.rb,v 1.3 2001/08/14 19:54:51 knu Exp $
|
|
# $Id$
|
|
|
|
require "mkmf"
|
|
|
|
$defs << "-DHAVE_CONFIG_H"
|
|
$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")
|
|
$objs << "md5ossl.#{$OBJEXT}"
|
|
|
|
else
|
|
$objs << "md5.#{$OBJEXT}"
|
|
end
|
|
|
|
have_header("sys/cdefs.h")
|
|
|
|
$preload = %w[digest]
|
|
|
|
create_makefile("digest/md5")
|