Mike McQuaid 2e5272d04c Deprecate/disable code for Homebrew 2.5.0.
Do the usual "disable deprecations" and "uncomment pending deprecations"
dance and delete/deprecate/disable relevant/related code.
2020-09-03 10:34:22 +01:00

24 lines
478 B
Ruby

# frozen_string_literal: true
module OS
module Mac
class << self
module Compat
def preferred_arch
odisabled "MacOS.preferred_arch", "Hardware::CPU.arch (or ideally let the compiler handle it)"
end
def tcc_db
odisabled "MacOS.tcc_db"
end
def pre_mavericks_accessibility_dotfile
odisabled "MacOS.pre_mavericks_accessibility_dotfile"
end
end
prepend Compat
end
end
end