Date: Sun, 28 Jan 2018 04:16:24 +0000 (UTC) From: Don Lewis <truckman@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r460159 - head/editors/openoffice-4 Message-ID: <201801280416.w0S4GOXB037106@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201801280416.w0S4GOXB037106>