silences depwarn by switching to at-static rather than at-windows_only, etc.

This commit is contained in:
Spencer Russell 2016-08-26 12:35:24 -04:00
parent f19e9ca160
commit 5f53bcebc3

4
deps/build.jl vendored
View file

@ -13,12 +13,12 @@ provides(AptGet, "libportaudio2", libportaudio)
provides(Pacman, "portaudio", libportaudio) provides(Pacman, "portaudio", libportaudio)
@osx_only begin @static if is_apple() begin
using Homebrew using Homebrew
provides(Homebrew.HB, "portaudio", libportaudio) provides(Homebrew.HB, "portaudio", libportaudio)
end end
@windows_only begin @static if is_windows() begin
using WinRPM using WinRPM
provides(WinRPM.RPM, "libportaudio2", libportaudio, os = :Windows) provides(WinRPM.RPM, "libportaudio2", libportaudio, os = :Windows)
end end