diff options
author | John Marino <marino@FreeBSD.org> | 2016-02-06 23:49:10 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2016-02-06 23:49:10 +0000 |
commit | 9a1d66859afcbe28d494890b4f980667f62a09d3 (patch) | |
tree | 9e1e534c6f7579127f168eeba913b43b5f5a6bb8 /comms/minicom/Makefile | |
parent | 98a871e900500652ca332f7a0300ee9fc88471f4 (diff) |
x11/minicom: document ncurses requirement (USES+=ncurses)
Also link to ncurses, not curses.
approved by: infrastructure blanket
Notes
Notes:
svn path=/head/; revision=408333
Diffstat (limited to 'comms/minicom/Makefile')
-rw-r--r-- | comms/minicom/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/comms/minicom/Makefile b/comms/minicom/Makefile index f48a2a96ddf4..69a4a06d1755 100644 --- a/comms/minicom/Makefile +++ b/comms/minicom/Makefile @@ -18,9 +18,9 @@ OPTIONS_SUB= yes NLS_USES= gettext NLS_CONFIGURE_ENABLE= nls -USES= iconv +USES= iconv ncurses CPPFLAGS+= -I${LOCALBASE}/include -LIBS+= -L${LOCALBASE}/lib ${ICONV_LIB} -lcurses +LIBS+= -L${LOCALBASE}/lib ${ICONV_LIB} -lncurses GNU_CONFIGURE= yes CONFIGURE_ARGS+= --enable-dfl-baud=57600 \ --sysconfdir=${PREFIX}/etc/minicom \ |