rounds up some stray underscores
This commit is contained in:
parent
3551896de1
commit
308e88b7cf
1 changed files with 3 additions and 2 deletions
5
deps/build.jl
vendored
5
deps/build.jl
vendored
|
@ -1,5 +1,6 @@
|
|||
using BinDeps
|
||||
using Compat
|
||||
using Compat.Sys: isapple, iswindows
|
||||
|
||||
@BinDeps.setup
|
||||
|
||||
|
@ -13,12 +14,12 @@ provides(AptGet, "libportaudio2", libportaudio)
|
|||
provides(Pacman, "portaudio", libportaudio)
|
||||
|
||||
|
||||
@static if is_apple()
|
||||
@static if isapple()
|
||||
using Homebrew
|
||||
provides(Homebrew.HB, "portaudio", libportaudio)
|
||||
end
|
||||
|
||||
@static if is_windows()
|
||||
@static if iswindows()
|
||||
using WinRPM
|
||||
provides(WinRPM.RPM, "libportaudio2", libportaudio, os = :Windows)
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue