dependency_collector: add :java symbol

This commit is contained in:
Mike McQuaid 2014-07-21 02:11:35 -07:00
parent 7e7b721797
commit 31a444ef16

View File

@ -118,6 +118,7 @@ class DependencyCollector
# python2 is deprecated # python2 is deprecated
when :python, :python2 then PythonDependency.new(tags) when :python, :python2 then PythonDependency.new(tags)
when :python3 then Python3Dependency.new(tags) when :python3 then Python3Dependency.new(tags)
when :java then JavaDependency.new(tags)
# Tiger's ld is too old to properly link some software # Tiger's ld is too old to properly link some software
when :ld64 then LD64Dependency.new if MacOS.version < :leopard when :ld64 then LD64Dependency.new if MacOS.version < :leopard
when :ant then ant_dep(spec, tags) when :ant then ant_dep(spec, tags)