mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
965393cbb8
much faster than what we have now (md5.[ch]). Add a knob (--with-bundled-md5) to extconf.rb which makes it use the bundled one anyway. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2893 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
27 lines
499 B
Ruby
27 lines
499 B
Ruby
# $RoughId: extconf.rb,v 1.3 2001/08/14 19:54:51 knu Exp $
|
|
# $Id$
|
|
|
|
require "mkmf"
|
|
|
|
$CFLAGS << " -DHAVE_CONFIG_H -I#{File.dirname(__FILE__)}/.."
|
|
|
|
$objs = [ "md5init.#{$OBJEXT}" ]
|
|
|
|
dir_config("openssl")
|
|
|
|
if !with_config("bundled-md5") &&
|
|
have_library("crypto") && have_header("openssl/md5.h")
|
|
$objs << "md5ossl.#{$OBJEXT}"
|
|
|
|
$libs << " -lcrypto"
|
|
else
|
|
$objs << "md5.#{$OBJEXT}"
|
|
end
|
|
|
|
have_header("sys/cdefs.h")
|
|
|
|
have_header("inttypes.h")
|
|
|
|
have_header("unistd.h")
|
|
|
|
create_makefile("digest/md5")
|