From owner-svn-ports-all@FreeBSD.ORG Thu Feb 12 19:50:53 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 28178ED2; Thu, 12 Feb 2015 19:50:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 13D461E1; Thu, 12 Feb 2015 19:50:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t1CJoq5Y066225; Thu, 12 Feb 2015 19:50:52 GMT (envelope-from sbruno@FreeBSD.org) Received: (from sbruno@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t1CJoqST066224; Thu, 12 Feb 2015 19:50:52 GMT (envelope-from sbruno@FreeBSD.org) Message-Id: <201502121950.t1CJoqST066224@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sbruno set sender to sbruno@FreeBSD.org using -f From: Sean Bruno Date: Thu, 12 Feb 2015 19:50:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r378887 - head/lang/ruby20 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Feb 2015 19:50:53 -0000 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