mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00

Do the usual "disable deprecations" and "uncomment pending deprecations" dance and delete/deprecate/disable relevant/related code.
24 lines
478 B
Ruby
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
|