mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-28 05:45:36 +00:00
30 lines
958 B
Ruby
30 lines
958 B
Ruby
def read_config
|
|
error "build-config not found: please run ./configure" unless File.exists?("build-config")
|
|
|
|
$config = Hash[ *IO.readlines("build-config").collect { |line| line.chomp.gsub(/#.*/, "") }.select { |line| !line.empty? }.collect do |line|
|
|
parts = line.split(/\s*=\s*/, 2).collect { |part| part.gsub(/^\s+/, '').gsub(/\s+$/, '') }
|
|
[ parts[0].to_sym, parts[1] || '' ]
|
|
end.flatten ]
|
|
$config.default = ''
|
|
end
|
|
|
|
def adjust_config
|
|
if c?(:LIBMTXCOMMONDLL)
|
|
$config[:LIBMTXCOMMONEXT] = 'dll'
|
|
$config[:CXXFLAGS_SRC_COMMON] += '-DMTX_DLL_EXPORT'
|
|
$config[:CXXFLAGS_NO_SRC_COMMON] += '-DMTX_DLL'
|
|
else
|
|
$config[:LIBMTXCOMMONEXT] = 'a'
|
|
end
|
|
end
|
|
|
|
def c(idx)
|
|
idx_s = idx.to_s
|
|
var = (ENV[idx_s].nil? ? $config[idx.to_sym] : ENV[idx_s]).to_s
|
|
var.gsub(/\$[\({](.*?)[\)}]/) { c($1) }.gsub(/^\s+/, '').gsub(/\s+$/, '')
|
|
end
|
|
|
|
def c?(idx)
|
|
c(idx).to_bool
|
|
end
|