svn commit: r523685 - head/editors/libreoffice

Piotr Kubaj pkubaj at FreeBSD.org
Mon Jan 20 20:14:25 UTC 2020


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}" \


More information about the svn-ports-all mailing list