svn commit: r378887 - head/lang/ruby20
Sean Bruno
sbruno at FreeBSD.org
Thu Feb 12 19:50:53 UTC 2015
Author: sbruno
Date: Thu Feb 12 19:50:52 2015
New Revision: 378887
URL: https://svnweb.freebsd.org/changeset/ports/378887
QAT: https://qat.redports.org/buildarchive/r378887/
Log:
Only enable dtrace support for amd64/i386 for now.
More testing needs to be done on arm to see if our dtrace support is
compatible with what ruby needs. PowerPC may work as well, but needs
more testing.
Reviewed by: swills
Modified:
head/lang/ruby20/Makefile
Modified: head/lang/ruby20/Makefile
==============================================================================
--- head/lang/ruby20/Makefile Thu Feb 12 19:50:34 2015 (r378886)
+++ head/lang/ruby20/Makefile Thu Feb 12 19:50:52 2015 (r378887)
@@ -86,7 +86,7 @@ CPPFLAGS+= -I${LOCALBASE}/include
LIBS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS}
.if ${OPSYS} == "FreeBSD"
-.if exists(/usr/sbin/dtrace) && (${OSVERSION} > 1100032)
+.if exists(/usr/sbin/dtrace) && (${OSVERSION} > 1100032) && (${ARCH} == "amd64" || ${ARCH} == "i386")
CONFIGURE_ARGS+= --enable-dtrace
.else
CONFIGURE_ARGS+= --disable-dtrace
More information about the svn-ports-head
mailing list