diff options
| author | martin <martin@NetBSD.org> | 2020-10-08 15:40:52 +0000 |
|---|---|---|
| committer | martin <martin@NetBSD.org> | 2020-10-08 15:40:52 +0000 |
| commit | a961c8135ea7e5ff1db9cce73efe7077b9fc8cf1 (patch) | |
| tree | e127c4f7cf84cc54e2b8e7e0fa1b328926a29ae3 /external | |
| parent | 50b557cd07c9773b9d3bec61a9fb327affe9bb6b (diff) | |
Pull up following revision(s) (requested by nia in ticket #1097):
external/mit/xorg/bin/xterm/Makefile: revision 1.18
xterm: Enable SIXEL graphics support.
could also enable REGIS, it will require -lm and i suppose isn't
a default upstream yet(?)
test with "-ti vt340".
Diffstat (limited to 'external')
| -rw-r--r-- | external/mit/xorg/bin/xterm/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/external/mit/xorg/bin/xterm/Makefile b/external/mit/xorg/bin/xterm/Makefile index 6bd49c46461..7559fbd4675 100644 --- a/external/mit/xorg/bin/xterm/Makefile +++ b/external/mit/xorg/bin/xterm/Makefile @@ -1,16 +1,14 @@ -# $NetBSD: Makefile,v 1.17 2018/05/09 08:39:55 mrg Exp $ +# $NetBSD: Makefile,v 1.17.4.1 2020/10/08 15:40:52 martin Exp $ .include <bsd.own.mk> PROG= xterm SRCS= button.c charproc.c charsets.c cursor.c data.c doublechr.c \ - fontutils.c input.c linedata.c menu.c misc.c print.c ptydata.c \ - screen.c scrollback.c scrollbar.c tabs.c util.c xstrings.c \ - TekPrsTbl.c Tekproc.c VTPrsTbl.c main.c charclass.c precompose.c \ - wcwidth.c xutf8.c cachedGCs.c xtermcap.c version.c - -# graphics_regis.c graphics_sixel.c -# xterm.appdata.xml + graphics.c graphics_sixel.c fontutils.c input.c linedata.c menu.c \ + misc.c print.c ptydata.c screen.c scrollback.c scrollbar.c tabs.c \ + util.c xstrings.c TekPrsTbl.c Tekproc.c VTPrsTbl.c main.c \ + charclass.c precompose.c wcwidth.c xutf8.c cachedGCs.c xtermcap.c \ + version.c CPPFLAGS+= -I. \ -I${X11SRCDIR.${PROG}} \ @@ -19,6 +17,8 @@ CPPFLAGS+= -I. \ -I${DESTDIR}${X11INCDIR}/freetype2/freetype \ -DPROJECTROOT=${X11ROOTDIR} \ -DHAVE_CONFIG_H \ + -DOPT_GRAPHICS \ + -DOPT_SIXEL_GRAPHICS \ -D_REENTRANT \ ${X11FLAGS.VERSION} |
