1
0
Fork 0
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:
Nobuyoshi Nakada 2021-04-28 18:16:02 +09:00
parent 795fb51f80
commit 96fd1e1f22
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6
5 changed files with 0 additions and 9 deletions

View file

@ -1,6 +1,4 @@
# frozen_string_literal: false
require 'mkmf'
$defs << "-DHAVE_CONFIG_H"
create_makefile('digest/bubblebabble')

View file

@ -6,8 +6,6 @@
require "mkmf"
require File.expand_path("../../digest_conf", __FILE__)
$defs << "-DHAVE_CONFIG_H"
$objs = [ "md5init.#{$OBJEXT}" ]
digest_conf("md5")

View file

@ -9,7 +9,6 @@ require File.expand_path("../../digest_conf", __FILE__)
if try_static_assert("RUBY_API_VERSION_MAJOR < 3", "ruby/version.h")
$defs << "-DNDEBUG"
end
$defs << "-DHAVE_CONFIG_H"
$objs = [ "rmd160init.#{$OBJEXT}" ]

View file

@ -6,8 +6,6 @@
require "mkmf"
require File.expand_path("../../digest_conf", __FILE__)
$defs << "-DHAVE_CONFIG_H"
$objs = [ "sha1init.#{$OBJEXT}" ]
digest_conf("sha1")

View file

@ -6,8 +6,6 @@
require "mkmf"
require File.expand_path("../../digest_conf", __FILE__)
$defs << "-DHAVE_CONFIG_H"
$objs = [ "sha2init.#{$OBJEXT}" ]
unless digest_conf("sha2")