Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 Jan 2020 20:14:24 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r523685 - head/editors/libreoffice
Message-ID:  <202001202014.00KKEO7D002207@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Mon Jan 20 20:14:24 2020
New Revision: 523685
URL: https://svnweb.freebsd.org/changeset/ports/523685

Log:
  editors/libreoffice: fix build on GCC architectures
  
  GCC architectures have /usr/bin/gperf binary resulting in failing to configure:
  checking for gperf... /usr/bin/gperf
  checking whether gperf is new enough... configure: error: "GNU gperf 3.0.3" is too old or unrecognized, must be at least gperf 3.1
  
  Put back GPERF to CONFIGURE_ENV to fix the build.
  
  PR:             243215
  Approved by:    lwhsu (maintainer)

Modified:
  head/editors/libreoffice/Makefile

Modified: head/editors/libreoffice/Makefile
==============================================================================
--- head/editors/libreoffice/Makefile	Mon Jan 20 20:12:35 2020	(r523684)
+++ head/editors/libreoffice/Makefile	Mon Jan 20 20:14:24 2020	(r523685)
@@ -270,6 +270,7 @@ CONFIGURE_ARGS=	--disable-dependency-tracking \
 CONFIGURE_ENV=	DMAKE=${LOCALBASE}/bin/dmake \
 		FLEX=${LOCALBASE}/bin/flex \
 		GNUTAR="${TAR}" \
+		GPERF=${LOCALBASE}/bin/gperf \
 		ICU_CFLAGS="`icu-config --cflags`" \
 		ICU_LIBS="`icu-config --ldflags`" \
 		OPENCOLLADA_CFLAGS="${COLLADA_CFLAGS}" \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202001202014.00KKEO7D002207>