Skip to content

Commit 3812caf

Browse files
authored
Merge pull request #238 from DhairyaLGandhi/dg/precomp
Error precompiling v0.11.6
2 parents c5c6e27 + 04b6b6b commit 3812caf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "Dagger"
22
uuid = "d58978e5-989f-55fb-8d15-ea34adc7bf54"
3-
version = "0.11.6"
3+
version = "0.11.7"
44

55
[deps]
66
Colors = "5ae59095-9a9b-59fe-a467-6f913c188581"

Diff for: src/sch/unix.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ if Sys.islinux()
2121
const CLOCK_MONOTONIC = Cint(1)
2222
const CLOCK_PROCESS_CPUTIME_ID = Cint(2)
2323
const CLOCK_THREAD_CPUTIME_ID = Cint(3)
24-
elseif Sys.KERNEL == :FreeBSD # atleast on FreeBSD 11.1
24+
elseif Sys.isfreebsd() # atleast on FreeBSD 11.1
2525
const CLOCK_MONOTONIC = Cint(4)
2626
const CLOCK_PROCESS_CPUTIME_ID = Cint(14)
27-
elseif Compat.Sys.isapple() # Version 10.12 required
27+
elseif Sys.isapple() # Version 10.12 required
2828
const CLOCK_MONOTONIC = Cint(6)
2929
const CLOCK_PROCESS_CPUTIME_ID = Cint(12)
3030
else

0 commit comments

Comments
 (0)