mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
44e22e8d78
* ext/extmk.rb: move dependent libraries just after depended libraries. * ext/digest/*/extconf.rb: depend on digest. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5409 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
27 lines
526 B
Ruby
27 lines
526 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 = [ "sha1init.#{$OBJEXT}" ]
|
|
|
|
dir_config("openssl")
|
|
|
|
if !with_config("bundled-sha1") &&
|
|
have_library("crypto") && have_header("openssl/sha.h")
|
|
$objs << "sha1ossl.#{$OBJEXT}"
|
|
else
|
|
$objs << "sha1.#{$OBJEXT}" << "sha1hl.#{$OBJEXT}"
|
|
end
|
|
|
|
have_header("sys/cdefs.h")
|
|
|
|
have_header("inttypes.h")
|
|
|
|
have_header("unistd.h")
|
|
|
|
$preload = %w[digest]
|
|
|
|
create_makefile("digest/sha1")
|