mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Removed unused macro HAVE_CONFIG_H
It seems like a vestige of ext/md5.
This commit is contained in:
parent
795fb51f80
commit
96fd1e1f22
5 changed files with 0 additions and 9 deletions
ext/digest
|
@ -1,6 +1,4 @@
|
||||||
# frozen_string_literal: false
|
# frozen_string_literal: false
|
||||||
require 'mkmf'
|
require 'mkmf'
|
||||||
|
|
||||||
$defs << "-DHAVE_CONFIG_H"
|
|
||||||
|
|
||||||
create_makefile('digest/bubblebabble')
|
create_makefile('digest/bubblebabble')
|
||||||
|
|
|
@ -6,8 +6,6 @@
|
||||||
require "mkmf"
|
require "mkmf"
|
||||||
require File.expand_path("../../digest_conf", __FILE__)
|
require File.expand_path("../../digest_conf", __FILE__)
|
||||||
|
|
||||||
$defs << "-DHAVE_CONFIG_H"
|
|
||||||
|
|
||||||
$objs = [ "md5init.#{$OBJEXT}" ]
|
$objs = [ "md5init.#{$OBJEXT}" ]
|
||||||
|
|
||||||
digest_conf("md5")
|
digest_conf("md5")
|
||||||
|
|
|
@ -9,7 +9,6 @@ require File.expand_path("../../digest_conf", __FILE__)
|
||||||
if try_static_assert("RUBY_API_VERSION_MAJOR < 3", "ruby/version.h")
|
if try_static_assert("RUBY_API_VERSION_MAJOR < 3", "ruby/version.h")
|
||||||
$defs << "-DNDEBUG"
|
$defs << "-DNDEBUG"
|
||||||
end
|
end
|
||||||
$defs << "-DHAVE_CONFIG_H"
|
|
||||||
|
|
||||||
$objs = [ "rmd160init.#{$OBJEXT}" ]
|
$objs = [ "rmd160init.#{$OBJEXT}" ]
|
||||||
|
|
||||||
|
|
|
@ -6,8 +6,6 @@
|
||||||
require "mkmf"
|
require "mkmf"
|
||||||
require File.expand_path("../../digest_conf", __FILE__)
|
require File.expand_path("../../digest_conf", __FILE__)
|
||||||
|
|
||||||
$defs << "-DHAVE_CONFIG_H"
|
|
||||||
|
|
||||||
$objs = [ "sha1init.#{$OBJEXT}" ]
|
$objs = [ "sha1init.#{$OBJEXT}" ]
|
||||||
|
|
||||||
digest_conf("sha1")
|
digest_conf("sha1")
|
||||||
|
|
|
@ -6,8 +6,6 @@
|
||||||
require "mkmf"
|
require "mkmf"
|
||||||
require File.expand_path("../../digest_conf", __FILE__)
|
require File.expand_path("../../digest_conf", __FILE__)
|
||||||
|
|
||||||
$defs << "-DHAVE_CONFIG_H"
|
|
||||||
|
|
||||||
$objs = [ "sha2init.#{$OBJEXT}" ]
|
$objs = [ "sha2init.#{$OBJEXT}" ]
|
||||||
|
|
||||||
unless digest_conf("sha2")
|
unless digest_conf("sha2")
|
||||||
|
|
Loading…
Add table
Reference in a new issue