diff options
Diffstat (limited to 'hints/darwin.sh')
-rw-r--r-- | hints/darwin.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hints/darwin.sh b/hints/darwin.sh index 40c84cf267..1709d224f7 100644 --- a/hints/darwin.sh +++ b/hints/darwin.sh @@ -344,8 +344,8 @@ EOM darwin_major=$(echo $osvers|awk -F. '{print $1}') - # macOS 10.12 (darwin 6.0.0) deprecated syscall(). - if [ "$darwin_major" -ge 6 ]; then + # macOS 10.12 (darwin 16.0.0) deprecated syscall(). + if [ "$darwin_major" -ge 16 ]; then d_syscall='undef' # If deploying to pre-10.12, suppress Time::HiRes's detection of the system clock_gettime() case "$MACOSX_DEPLOYMENT_TARGET" in |