Module Name: src
Committed By: nia
Date: Thu Oct 1 21:22:47 UTC 2020
Modified Files:
src/external/mit/xorg/bin/xeyes: Makefile
Log Message:
xeyes: Enable anti-aliasing with XRENDER
If you prefer the "classic" look, "xeyes +render"
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/mit/xorg/bin/xeyes/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/mit/xorg/bin/xeyes/Makefile
diff -u src/external/mit/xorg/bin/xeyes/Makefile:1.2 src/external/mit/xorg/bin/xeyes/Makefile:1.3
--- src/external/mit/xorg/bin/xeyes/Makefile:1.2 Sun Mar 11 08:21:24 2018
+++ src/external/mit/xorg/bin/xeyes/Makefile Thu Oct 1 21:22:47 2020
@@ -1,11 +1,13 @@
-# $NetBSD: Makefile,v 1.2 2018/03/11 08:21:24 mrg Exp $
+# $NetBSD: Makefile,v 1.3 2020/10/01 21:22:47 nia Exp $
.include <bsd.own.mk>
+CPPFLAGS+=-DXRENDER
+
PROG= xeyes
SRCS= xeyes.c Eyes.c transform.c
-LDADD+= -lXmu -lXt -lSM -lICE -lXext -lX11 -lm
+LDADD+= -lXmu -lXt -lSM -lICE -lXext -lXrender -lX11 -lm
DPADD+= ${LIBXMU} ${LIBXT} ${LIBSM} ${LIBICE} ${LIBXEXT} ${LIBX11} ${LIBM}
.PATH: ${X11SRCDIR.${PROG}}