mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
e34b2a73e6
macros moved to extconf.h. * ext/extmk.rb (extract_makefile, extmk): made RUBY_EXTCONF_H and EXTSTATIC permanent. * ext/{dbm,digest/*,socket,zlib}/extconf.rb: used $defs and $INCFLAGS. * {bcc32,win32,wince}/Makefile.sub (COMPILE_C, COMPILE_CXX): added $(INCFLAGS). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10193 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
25 lines
416 B
Ruby
25 lines
416 B
Ruby
# $RoughId: extconf.rb,v 1.4 2001/08/14 19:54:51 knu Exp $
|
|
# $Id$
|
|
|
|
require "mkmf"
|
|
|
|
$defs << "-DHAVE_CONFIG_H"
|
|
$INCFLAGS << " -I$(srcdir)/.."
|
|
|
|
$objs = [
|
|
"sha2.#{$OBJEXT}",
|
|
"sha2hl.#{$OBJEXT}",
|
|
"sha2init.#{$OBJEXT}",
|
|
]
|
|
|
|
have_header("sys/cdefs.h")
|
|
|
|
have_header("inttypes.h")
|
|
|
|
have_header("unistd.h")
|
|
|
|
$preload = %w[digest]
|
|
|
|
if have_type("uint64_t", "defs.h", $defs.join(' '))
|
|
create_makefile("digest/sha2")
|
|
end
|