Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 7 Jan 2021 13:22:20 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r560707 - head/shells/bash
Message-ID:  <202101071322.107DMKhG054346@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Thu Jan  7 13:22:20 2021
New Revision: 560707
URL: https://svnweb.freebsd.org/changeset/ports/560707

Log:
  Enforce using libncursesw like the rest of the ports
  
  The whole ports tree has been enforced on libncursesw (widechar) version for a while.
  With the exception of a few ports including bash.
  
  This is even more problematic in the case of bash because it links to libreadline which is
  linked to libncursesw.so

Modified:
  head/shells/bash/Makefile

Modified: head/shells/bash/Makefile
==============================================================================
--- head/shells/bash/Makefile	Thu Jan  7 12:35:07 2021	(r560706)
+++ head/shells/bash/Makefile	Thu Jan  7 13:22:20 2021	(r560707)
@@ -4,7 +4,7 @@
 PORTNAME=		bash
 PATCHLEVEL=		4
 PORTVERSION=		5.1.${PATCHLEVEL:S/^0//g}
-PORTREVISION?=		0
+PORTREVISION?=		1
 CATEGORIES=		shells
 MASTER_SITES=		GNU
 DISTNAME=		${PORTNAME}-${PORTVERSION:R}
@@ -55,6 +55,8 @@ CONFIGURE_ARGS+=	--without-bash-malloc \
 			--disable-rpath \
 			--enable-disabled-builtins \
 			--with-libiconv-prefix=${ICONV_PREFIX}
+
+MAKE_ARGS+=	TERMCAP_LIB=-lncursesw
 
 .if empty(PKGNAMESUFFIX)
 CONFLICTS+=		bash-static-[0-9]*



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