Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 10 Jan 2021 17:36:11 +0000 (UTC)
From:      Kyle Evans <kevans@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r561090 - head/editors/zile
Message-ID:  <202101101736.10AHaBL4064431@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kevans
Date: Sun Jan 10 17:36:11 2021
New Revision: 561090
URL: https://svnweb.freebsd.org/changeset/ports/561090

Log:
  editors/zile: fix the build on -CURRENT
  
  libgnuregex has been removed in FreeBSD 13.0. The version in base had a
  number of known or likely bugs associated with it, so just use the newer
  and more stable port on all supported FreeBSD versions.
  
  PR:		252251
  Approved by:	maintainer (culot)
  MFH:		2021Q1

Modified:
  head/editors/zile/Makefile

Modified: head/editors/zile/Makefile
==============================================================================
--- head/editors/zile/Makefile	Sun Jan 10 17:31:19 2021	(r561089)
+++ head/editors/zile/Makefile	Sun Jan 10 17:36:11 2021	(r561090)
@@ -12,7 +12,8 @@ COMMENT=	Small emacs-like text editor
 
 LICENSE=	GPLv3
 
-LIB_DEPENDS=	libgc.so:devel/boehm-gc
+LIB_DEPENDS=	libgc.so:devel/boehm-gc \
+		libgnuregex.so.6:devel/libgnuregex
 BUILD_DEPENDS=	${LOCALBASE}/bin/help2man:misc/help2man
 
 USES=		gmake ncurses perl5 pkgconfig compiler:c++11-lang
@@ -27,7 +28,7 @@ PLIST_FILES=	bin/${PORTNAME} \
 		%%DOCSDIR%%/NEWS \
 		%%DOCSDIR%%/dotzile.sample
 
-CPPFLAGS+=	-I${LOCALBASE}/include -isystem /usr/include/gnu
+CPPFLAGS+=	-I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib -lgnuregex
 
 post-patch:



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