From owner-freebsd-gecko@FreeBSD.ORG Wed Oct 24 16:11:28 2012 Return-Path: Delivered-To: freebsd-gecko@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 50324A2 for ; Wed, 24 Oct 2012 16:11:28 +0000 (UTC) (envelope-from svn-freebsd-gecko@chruetertee.ch) Received: from trillian.chruetertee.ch (trillian.chruetertee.ch [217.150.245.56]) by mx1.freebsd.org (Postfix) with ESMTP id E492A8FC14 for ; Wed, 24 Oct 2012 16:11:27 +0000 (UTC) Received: from trillian.chruetertee.ch (trillian [217.150.245.56]) by trillian.chruetertee.ch (8.14.4/8.14.3) with ESMTP id q9OGBR9B027376 for ; Wed, 24 Oct 2012 16:11:27 GMT (envelope-from svn-freebsd-gecko@chruetertee.ch) Received: (from www@localhost) by trillian.chruetertee.ch (8.14.4/8.14.3/Submit) id q9OGBL5d025826 for freebsd-gecko@freebsd.org; Wed, 24 Oct 2012 16:11:21 GMT (envelope-from svn-freebsd-gecko@chruetertee.ch) Date: Wed, 24 Oct 2012 16:11:21 GMT Message-Id: <201210241611.q9OGBL5d025826@trillian.chruetertee.ch> X-Authentication-Warning: trillian.chruetertee.ch: www set sender to svn-freebsd-gecko@chruetertee.ch using -f From: svn-freebsd-gecko@chruetertee.ch To: freebsd-gecko@freebsd.org Subject: [SVN-Commit] r1076 - in trunk: mail/thunderbird mail/thunderbird-esr www/firefox www/firefox-esr www/firefox-nightly www/libxul www/seamonkey MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: freebsd-gecko@freebsd.org List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Oct 2012 16:11:28 -0000 Author: jbeich Date: Wed Oct 24 16:11:21 2012 New Revision: 1076 Log: yasm only used for bundled libvpx, libjpeg-turbo Modified: trunk/mail/thunderbird-esr/Makefile trunk/mail/thunderbird/Makefile trunk/www/firefox-esr/Makefile trunk/www/firefox-nightly/Makefile trunk/www/firefox/Makefile trunk/www/libxul/Makefile trunk/www/seamonkey/Makefile Modified: trunk/mail/thunderbird-esr/Makefile ============================================================================== --- trunk/mail/thunderbird-esr/Makefile Wed Oct 24 16:11:11 2012 (r1075) +++ trunk/mail/thunderbird-esr/Makefile Wed Oct 24 16:11:21 2012 (r1076) @@ -76,10 +76,6 @@ .endif .endif -.if ${ARCH} == amd64 || ${ARCH} == i386 -BUILD_DEPENDS+= yasm:${PORTSDIR}/devel/yasm -.endif - .if !empty(CXX:M*clang++*) CFLAGS+= -Wno-return-type-c-linkage .endif Modified: trunk/mail/thunderbird/Makefile ============================================================================== --- trunk/mail/thunderbird/Makefile Wed Oct 24 16:11:11 2012 (r1075) +++ trunk/mail/thunderbird/Makefile Wed Oct 24 16:11:21 2012 (r1076) @@ -77,10 +77,6 @@ .endif .endif -.if ${ARCH} == amd64 || ${ARCH} == i386 -BUILD_DEPENDS+= yasm:${PORTSDIR}/devel/yasm -.endif - .if ${PORT_OPTIONS:MENIGMAIL} MASTER_SITES+= http://www.enigmail.net/download/source/:enigmail DISTFILES+= ${EM_DISTFILE}:enigmail Modified: trunk/www/firefox-esr/Makefile ============================================================================== --- trunk/www/firefox-esr/Makefile Wed Oct 24 16:11:11 2012 (r1075) +++ trunk/www/firefox-esr/Makefile Wed Oct 24 16:11:21 2012 (r1076) @@ -80,10 +80,6 @@ @MOZ_OBJDIR@/_profile/pgo/profileserver.py" .endif -.if ${ARCH} == amd64 || ${ARCH} == i386 -BUILD_DEPENDS+= yasm:${PORTSDIR}/devel/yasm -.endif - .if !empty(CXX:M*clang++*) CXXFLAGS+= -Wno-return-type-c-linkage .endif Modified: trunk/www/firefox-nightly/Makefile ============================================================================== --- trunk/www/firefox-nightly/Makefile Wed Oct 24 16:11:11 2012 (r1075) +++ trunk/www/firefox-nightly/Makefile Wed Oct 24 16:11:21 2012 (r1076) @@ -84,10 +84,6 @@ @MOZ_OBJDIR@/_profile/pgo/profileserver.py" .endif -.if ${ARCH} == amd64 || ${ARCH} == i386 -BUILD_DEPENDS+= yasm:${PORTSDIR}/devel/yasm -.endif - pre-extract: .if ${PORT_OPTIONS:MPGO} @${ECHO} "*****************************************************************" Modified: trunk/www/firefox/Makefile ============================================================================== --- trunk/www/firefox/Makefile Wed Oct 24 16:11:11 2012 (r1075) +++ trunk/www/firefox/Makefile Wed Oct 24 16:11:21 2012 (r1076) @@ -83,10 +83,6 @@ @MOZ_OBJDIR@/_profile/pgo/profileserver.py" .endif -.if ${ARCH} == amd64 || ${ARCH} == i386 -BUILD_DEPENDS+= yasm:${PORTSDIR}/devel/yasm -.endif - pre-extract: .if ${PORT_OPTIONS:MPGO} @${ECHO} "*****************************************************************" Modified: trunk/www/libxul/Makefile ============================================================================== --- trunk/www/libxul/Makefile Wed Oct 24 16:11:11 2012 (r1075) +++ trunk/www/libxul/Makefile Wed Oct 24 16:11:21 2012 (r1076) @@ -69,10 +69,6 @@ .endif .endif -.if ${ARCH} == amd64 || ${ARCH} == i386 -BUILD_DEPENDS+= yasm:${PORTSDIR}/devel/yasm -.endif - .if !empty(CXX:M*clang++*) CXXFLAGS+= -Wno-return-type-c-linkage .endif Modified: trunk/www/seamonkey/Makefile ============================================================================== --- trunk/www/seamonkey/Makefile Wed Oct 24 16:11:11 2012 (r1075) +++ trunk/www/seamonkey/Makefile Wed Oct 24 16:11:21 2012 (r1076) @@ -111,10 +111,6 @@ MOZ_OPTIONS+= --disable-composer .endif -.if ${ARCH} == amd64 || ${ARCH} == i386 -BUILD_DEPENDS+= yasm:${PORTSDIR}/devel/yasm -.endif - .if ${PORT_OPTIONS:MLIGHTNING} MOZ_OPTIONS+= --enable-calendar MOZ_MK_OPTIONS+= MOZ_CO_PROJECT=calendar