mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
94d17c1f1f
* ext/extmk.rb (extmake): set library name as source file name in Init_ext(). [ruby-dev:21137] * lib/mkmf.rb (Logging::postpone): postpone logging messages after heading message as the result of the block. * lib/mkmf.rb (macro_defined?): append newline to src unless ended with it. * lib/mkmf.rb (have_library): allow nil function name to just append a library. (ruby-bugs:PR#1083) * lib/mkmf.rb (pkg_config): should append additional libraries to $libs but not $LIBS. [ruby-dev:21137] * ext/io/wait/extconf.rb: check DOSISH macro instead of platform. * ext/digest/sha1/extconf.rb: have_library already appends library name. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4337 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
25 lines
503 B
Ruby
25 lines
503 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")
|
|
|
|
create_makefile("digest/sha1")
|