2020-05-16 12:30:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module OS
|
|
|
|
module Mac
|
|
|
|
class << self
|
|
|
|
module Compat
|
|
|
|
def preferred_arch
|
2020-09-03 10:34:22 +01:00
|
|
|
odisabled "MacOS.preferred_arch", "Hardware::CPU.arch (or ideally let the compiler handle it)"
|
2020-05-16 12:30:29 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def tcc_db
|
2020-09-03 10:34:22 +01:00
|
|
|
odisabled "MacOS.tcc_db"
|
2020-05-16 12:30:29 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def pre_mavericks_accessibility_dotfile
|
2020-09-03 10:34:22 +01:00
|
|
|
odisabled "MacOS.pre_mavericks_accessibility_dotfile"
|
2020-05-16 12:30:29 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
prepend Compat
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|