Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 12 Feb 2015 19:50:52 +0000 (UTC)
From:      Sean Bruno <sbruno@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r378887 - head/lang/ruby20
Message-ID:  <201502121950.t1CJoqST066224@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201502121950.t1CJoqST066224>