diff options
author | Rong-En Fan <rafan@FreeBSD.org> | 2007-03-09 12:11:58 +0000 |
---|---|---|
committer | Rong-En Fan <rafan@FreeBSD.org> | 2007-03-09 12:11:58 +0000 |
commit | 31b4134f7b6ec1a2533ed40ab917999fc0915190 (patch) | |
tree | df7c42863571e14b59adfbbc524c9dbaa17cc33e /lib/ncurses/panel/Makefile | |
parent | 557158de6428fe513e55abf0f577e8e5861086c6 (diff) | |
download | src-31b4134f7b6ec1a2533ed40ab917999fc0915190.tar.gz src-31b4134f7b6ec1a2533ed40ab917999fc0915190.zip |
Enable ncurses wide character support
Approved by: delphij (mentor)
Tested by: kris on pointyhat (early version), current@
Notes
Notes:
svn path=/head/; revision=167359
Diffstat (limited to 'lib/ncurses/panel/Makefile')
-rw-r--r-- | lib/ncurses/panel/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ncurses/panel/Makefile b/lib/ncurses/panel/Makefile index c47ad62ed216..1f734915b035 100644 --- a/lib/ncurses/panel/Makefile +++ b/lib/ncurses/panel/Makefile @@ -4,7 +4,7 @@ SRCDIR= ${NCURSES_DIR}/panel -LIB= panel +LIB= panel${LIB_SUFFIX} .PATH: ${SRCDIR} SRCS= \ @@ -29,8 +29,8 @@ CLEANFILES= ncurses_def.h CFLAGS+= -I${SRCDIR} -DPADD= ${LIBNCURSES} -LDADD= -lncurses +DPADD= ${LIBNCURSES${LIB_SUFFIX:U}} +LDADD= -lncurses${LIB_SUFFIX} INCS= panel.h |