- Disable wide char support by default, as it breaks 8-bit charset
support. - Introduce a new knob WITH_WIDE_CHARS to enable wide chars. Approved by: krion (maintainer)
This commit is contained in:
parent
e6cfcb52e1
commit
640601eabc
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=225450
1 changed files with 8 additions and 3 deletions
|
@ -22,8 +22,13 @@ USE_XORG= xaw xft
|
|||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib"
|
||||
CONFIGURE_ARGS+=--enable-wide-chars --enable-luit --with-utempter \
|
||||
--enable-narrowproto
|
||||
CONFIGURE_ARGS+=--with-utempter --enable-narrowproto
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if defined(WITH_WIDE_CHARS)
|
||||
CONFIGURE_ARGS+= --enable-wide-chars --enable-luit
|
||||
.endif
|
||||
|
||||
.if defined(WITH_256_COLOR)
|
||||
CONFIGURE_ARGS+= --enable-256-color
|
||||
|
@ -34,4 +39,4 @@ MAN1= resize.1 koi8rxterm.1 uxterm.1 xterm.1
|
|||
post-install:
|
||||
@${CHMOD} 4711 ${PREFIX}/bin/xterm
|
||||
|
||||
.include <bsd.port.mk>
|
||||
.include <bsd.port.post.mk>
|
||||
|
|
Loading…
Reference in a new issue