* ext/digest/sha2/extconf.rb: do not create Makefile when no 64bit
integer type is detected. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1683 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
04a8e85bc5
commit
5b63fc556f
@ -1,3 +1,8 @@
|
|||||||
|
Tue Aug 14 21:14:07 2001 Akinori MUSHA <knu@iDaemons.org>
|
||||||
|
|
||||||
|
* ext/digest/sha2/extconf.rb: do not create Makefile when no 64bit
|
||||||
|
integer type is detected.
|
||||||
|
|
||||||
Tue Aug 14 17:09:12 2001 Yukihiro Matsumoto <matz@ruby-lang.org>
|
Tue Aug 14 17:09:12 2001 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
* range.c (range_step): new method.
|
* range.c (range_step): new method.
|
||||||
|
@ -17,4 +17,12 @@ have_header("inttypes.h")
|
|||||||
|
|
||||||
have_header("unistd.h")
|
have_header("unistd.h")
|
||||||
|
|
||||||
|
unless try_link(<<SRC, $defs.join(' '))
|
||||||
|
#include "../defs.h"
|
||||||
|
main(){}
|
||||||
|
SRC
|
||||||
|
puts "** Cannot find a 64bit integer type - skipping the SHA2 module."
|
||||||
|
exit 1
|
||||||
|
end
|
||||||
|
|
||||||
create_makefile("digest/sha2")
|
create_makefile("digest/sha2")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user