From owner-svn-ports-all@freebsd.org Fri Jan 26 23:41:18 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1F09AED03E3; Fri, 26 Jan 2018 23:41:18 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C5CF86B545; Fri, 26 Jan 2018 23:41:17 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id A5E4D1D7E2; Fri, 26 Jan 2018 23:41:17 +0000 (UTC) From: Jan Beich To: Don Lewis Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r460047 - in head/editors/openoffice-4: . files References: <201801261833.w0QIX9uA026861@repo.freebsd.org> Date: Sat, 27 Jan 2018 00:41:14 +0100 In-Reply-To: <201801261833.w0QIX9uA026861@repo.freebsd.org> (Don Lewis's message of "Fri, 26 Jan 2018 18:33:09 +0000 (UTC)") Message-ID: <8tck-i3xh-wny@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 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: Fri, 26 Jan 2018 23:41:18 -0000 Don Lewis writes: > +.if defined(WITH_DEBUG) > +CONFIGURE_ARGS+= --enable-symbols > +.else > +.if ${PORT_OPTIONS:MCRASHDUMP} > +BROKEN= CRASHDUMP option requires WITH_DEBUG > +.endif > +.endif Why not CRASHDUMP_VARS=WITH_DEBUG= ? After r458513 WITH_DEBUG and WITH=DEBUG are different, so you can't CRASHDUMP_IMPLIES=DEBUG.