From owner-svn-ports-head@freebsd.org Sun Jan 28 04:16:24 2018 Return-Path: Delivered-To: svn-ports-head@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 A67B9ED7191; Sun, 28 Jan 2018 04:16:24 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4D2B36A8B1; Sun, 28 Jan 2018 04:16:24 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 47B8B1497D; Sun, 28 Jan 2018 04:16:24 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0S4GOsG037107; Sun, 28 Jan 2018 04:16:24 GMT (envelope-from truckman@FreeBSD.org) Received: (from truckman@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0S4GOXB037106; Sun, 28 Jan 2018 04:16:24 GMT (envelope-from truckman@FreeBSD.org) Message-Id: <201801280416.w0S4GOXB037106@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: truckman set sender to truckman@FreeBSD.org using -f From: Don Lewis Date: Sun, 28 Jan 2018 04:16:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r460159 - head/editors/openoffice-4 X-SVN-Group: ports-head X-SVN-Commit-Author: truckman X-SVN-Commit-Paths: head/editors/openoffice-4 X-SVN-Commit-Revision: 460159 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 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: Sun, 28 Jan 2018 04:16:24 -0000 Author: truckman Date: Sun Jan 28 04:16:23 2018 New Revision: 460159 URL: https://svnweb.freebsd.org/changeset/ports/460159 Log: Set WITH_DEBUG if the CRASHDUMP option is set rather than bailing out if CRASHDUMP is selected and WITH_DEBUG is not set. Suggested by: jbeich Modified: head/editors/openoffice-4/Makefile Modified: head/editors/openoffice-4/Makefile ============================================================================== --- head/editors/openoffice-4/Makefile Sun Jan 28 04:12:44 2018 (r460158) +++ head/editors/openoffice-4/Makefile Sun Jan 28 04:16:23 2018 (r460159) @@ -141,7 +141,7 @@ CPE_VENDOR= apache OPTIONS_DEFINE= CRASHDUMP CUPS DBGUTIL DEBUG GNOME GNOMEVFS MMEDIA \ SDK WIKI_PUBLISHER OPTIONS_DEFAULT= CUPS GNOME GNOMEVFS MMEDIA WIKI_PUBLISHER -CRASHDUMP_DESC= Enable crashdumps, requires WITH_DEBUG +CRASHDUMP_DESC= Enable crashdumps, sets WITH_DEBUG DBGUTIL_DESC= Enable assertions, object counting. (non-production) DEBUG_DESC= Compile with -O0, sets WITH_DEBUG GNOME_DESC= GConf + screensaver presentation control via DBUS @@ -151,6 +151,7 @@ SDK_DESC= Build and install software development kit WIKI_PUBLISHER_DESC= Build and install Wiki Publisher extension CRASHDUMP_CONFIGURE_ENABLE= crashdump +CRASHDUMP_VARS= WITH_DEBUG=yes CUPS_CONFIGURE_ENABLE= cups CUPS_LIB_DEPENDS= libcups.so:print/cups @@ -196,10 +197,6 @@ TARGET_ORDER_OVERRIDE= 710:gnome-post-icons .if defined(WITH_DEBUG) CONFIGURE_ARGS+= --enable-symbols -.else -.if ${PORT_OPTIONS:MCRASHDUMP} -BROKEN= CRASHDUMP option requires WITH_DEBUG -.endif .endif .include <${FILESDIR}/Makefile.localized>