Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 9 Aug 2019 20:09:14 +0000 (UTC)
From:      Mateusz Piotrowski <0mp@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r508478 - head/sysutils/mtm
Message-ID:  <201908092009.x79K9EY4027797@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: 0mp
Date: Fri Aug  9 20:09:14 2019
New Revision: 508478
URL: https://svnweb.freebsd.org/changeset/ports/508478

Log:
  sysutils/mtm: Fix building on 11.2 amd64
  
  /usr/bin/ld: undefined reference to symbol `intrflush' (try adding -ltinfow)
  /usr/local/lib/libtinfow.so: could not read symbols: Bad value
  
  Reported by:	pkg-fallout

Modified:
  head/sysutils/mtm/Makefile

Modified: head/sysutils/mtm/Makefile
==============================================================================
--- head/sysutils/mtm/Makefile	Fri Aug  9 20:02:13 2019	(r508477)
+++ head/sysutils/mtm/Makefile	Fri Aug  9 20:09:14 2019	(r508478)
@@ -20,7 +20,7 @@ PLIST_FILES=	bin/mtm \
 		man/man1/mtm.1.gz
 
 CFLAGS+=	-I${NCURSESINC}
-LDFLAGS+=	-L${NCURSESLIB}
+LDFLAGS+=	-L${NCURSESLIB} -ltinfow
 
 PORTDATA=	mtm.ti
 



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