1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Disable DTrace in FreeBSD (#3999)

The latest ruby cannot compile with FreeBSD Dtrace enabled.
This commit is contained in:
TAKANO Mitsuhiro 2020-12-25 12:06:46 +09:00 committed by GitHub
parent 1f18f5c61e
commit 78677f105d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
Notes: git 2020-12-25 12:07:10 +09:00
Merged-By: nurse <naruse@airemix.jp>

View file

@ -3422,6 +3422,9 @@ AS_CASE(["${enable_dtrace}"],
], [
rb_cv_dtrace_available=no
])
AS_CASE(["$target_os"],[freebsd*],[
rb_cv_dtrace_available=no
])
AS_IF([test "${enable_dtrace}" = yes], [dnl
AS_IF([test -z "$DTRACE"], [dnl
AC_MSG_ERROR([dtrace(1) is missing])