From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 15 01:50:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id D0E1CBBC for ; Tue, 15 Oct 2013 01:50:00 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9792D26CE for ; Tue, 15 Oct 2013 01:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r9F1o0aJ039426 for ; Tue, 15 Oct 2013 01:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r9F1o0l5039425; Tue, 15 Oct 2013 01:50:00 GMT (envelope-from gnats) Resent-Date: Tue, 15 Oct 2013 01:50:00 GMT Resent-Message-Id: <201310150150.r9F1o0l5039425@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jack Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E67C2B54 for ; Tue, 15 Oct 2013 01:41:34 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from oldred.freebsd.org (oldred.freebsd.org [8.8.178.121]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D2E542696 for ; Tue, 15 Oct 2013 01:41:34 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r9F1fY5Z012643 for ; Tue, 15 Oct 2013 01:41:34 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r9F1fYNX012632; Tue, 15 Oct 2013 01:41:34 GMT (envelope-from nobody) Message-Id: <201310150141.r9F1fYNX012632@oldred.freebsd.org> Date: Tue, 15 Oct 2013 01:41:34 GMT From: Jack To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/182986: Add "without" configure args to audacity and disable sse on powerpc X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Oct 2013 01:50:00 -0000 >Number: 182986 >Category: ports >Synopsis: Add "without" configure args to audacity and disable sse on powerpc >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Oct 15 01:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Jack >Release: >Organization: >Environment: FreeBSD jlow.internetbrands.com 9.2-PRERELEASE FreeBSD 9.2-PRERELEASE #0 r255679M: Wed Sep 18 16:02:58 PDT 2013 jlow@jlow.internetbrands.com:/usr/obj/usr/src/sys/GENERIC amd64 >Description: powerpc doesn't have sse flags in the arch, disable it if the arch is powerpc Add --without-options if the option is disabled. >How-To-Repeat: >Fix: Index: Makefile =================================================================== --- Makefile (revision 330339) +++ Makefile (working copy) @@ -47,7 +47,7 @@ .include -.if ${ARCH} == "i386" +.if ${ARCH} == "i386" || ${ARCH} == "powerpc" SSE_CFLAGS= -mno-sse -mno-sse2 .endif @@ -136,10 +136,14 @@ .if ${PORT_OPTIONS:MSSE} CONFIGURE_ARGS+= --with-sse +.else +CONFIGURE_ARGS+= --without-sse .endif .if ${PORT_OPTIONS:MSOXR} CONFIGURE_ARGS+= --with-libsoxr +.else +CONFIGURE_ARGS+= --without-libsoxr .endif .if ${PORT_OPTIONS:MTWOLAME} >Release-Note: >Audit-Trail: >Unformatted: