
Mountain Lion: http://opensource.apple.com/source/libarchive/libarchive-25.1/config.h `/* #undef HAVE_LIBLZMA */` Mavericks: http://opensource.apple.com/source/libarchive/libarchive-29/config.h `#define HAVE_LIBLZMA 1`
12 lines
228 B
Ruby
12 lines
228 B
Ruby
class DependencyCollector
|
|
def ant_dep(tags)
|
|
return if MacOS.version < :mavericks
|
|
Dependency.new("ant", tags)
|
|
end
|
|
|
|
def xz_dep(tags)
|
|
return if MacOS.version >= :mavericks
|
|
Dependency.new("xz", tags)
|
|
end
|
|
end
|