svn commit: r508478 - head/sysutils/mtm

Mateusz Piotrowski 0mp at FreeBSD.org
Fri Aug 9 20:09:14 UTC 2019


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
 


More information about the svn-ports-all mailing list