From owner-svn-ports-head@FreeBSD.ORG Fri Feb 22 19:37:56 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 2763EEBA; Fri, 22 Feb 2013 19:37:56 +0000 (UTC) (envelope-from jbeich@tormail.org) Received: from outgoing.tormail.org (outgoing.tormail.org [82.221.96.22]) by mx1.freebsd.org (Postfix) with ESMTP id 89E64793; Fri, 22 Feb 2013 19:37:43 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=internal.tormail.org) by outgoing.tormail.org with esmtp (Exim 4.72) (envelope-from ) id 1U8yQi-00049j-JQ; Fri, 22 Feb 2013 22:37:16 +0300 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tormail.org; s=tm; h=Message-Id:X-TorMail-User:Content-Type:MIME-Version:References:Date:In-Reply-To:Subject:Cc:To:From; bh=pdOPu3THloH0sZl0ApuOhITRvNfnRvxo8volKnRhskY=; b=cNj5tKSskJjF+bTg4L0EwYJbymupHdEFr54tdyyJCGxDTgdG4FSc/EjLEk9cD3U45W/AM35FMZ0THcrBvq6tDd/w83sjQA8vQszzvXxEgoVgfFeT3EpbUfr1hJS/Zxk45EhvPQOrC/8xKQXG8TRMkM81j0YEBoctLuAd1edD540=; Received: from jbeich by internal.tormail.org with local (Exim 4.63) (envelope-from ) id 1U8yOO-000A9E-Sl; Fri, 22 Feb 2013 19:34:50 +0000 From: Jan Beich To: Florian Smeets Subject: Re: svn commit: r312726 - head/security/nss In-Reply-To: <201302211643.r1LGhNVf090332@svn.freebsd.org> (Florian Smeets's message of "Thu, 21 Feb 2013 16:43:23 +0000 (UTC)") Date: Fri, 22 Feb 2013 21:34:52 +0200 References: <201302211643.r1LGhNVf090332@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain X-TorMail-User: jbeich Message-Id: <1U8yOO-000A9E-Sl@internal.tormail.org> Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Feb 2013 19:37:56 -0000 Florian Smeets writes: > Author: flo > Date: Thu Feb 21 16:43:22 2013 > New Revision: 312726 > URL: http://svnweb.freebsd.org/changeset/ports/312726 > > Log: > Add support for older FreeBSD released by relying on USE_GCC > > Requested by: ale > Submitted by: Jan Beich > > Modified: > head/security/nss/Makefile > > Modified: head/security/nss/Makefile > ============================================================================== > --- head/security/nss/Makefile Thu Feb 21 16:39:36 2013 (r312725) > +++ head/security/nss/Makefile Thu Feb 21 16:43:22 2013 (r312726) > @@ -57,6 +57,10 @@ USE_BINUTILS= # intel-gcm.s > CFLAGS+= -B${LOCALBASE}/bin > .if defined(WITH_CLANG_IS_CC) || ${CC:Mcc} && ${OSVERSION} > 1000023 > EXTRA_PATCHES+= ${FILESDIR}/extra-bug835050 > +.if ${CC:Mcc} && (${OSVERSION} >= 800000 && ${OSVERSION} < 802503 \ > + || ${OSVERSION} < 704101) > +USE_GCC?= yes # -mssse3 > +.endif > .endif > .endif > Why nest within WITH_CLANG_IS_CC block? --- security/nss/Makefile ports repo +++ security/nss/Makefile gecko repo @@ -57,12 +57,12 @@ USE_BINUTILS= # intel-gcm.s CFLAGS+= -B${LOCALBASE}/bin .if defined(WITH_CLANG_IS_CC) || ${CC:Mcc} && ${OSVERSION} > 1000023 EXTRA_PATCHES+= ${FILESDIR}/extra-bug835050 +.endif .if ${CC:Mcc} && (${OSVERSION} >= 800000 && ${OSVERSION} < 802503 \ || ${OSVERSION} < 704101) USE_GCC?= yes # -mssse3 .endif .endif -.endif check regression-test test: cd ${WRKSRC}/tests; \