diff options
author | pho <pho@pkgsrc.org> | 2014-01-17 08:06:07 +0000 |
---|---|---|
committer | pho <pho@pkgsrc.org> | 2014-01-17 08:06:07 +0000 |
commit | 088231c1da2c38fc92672173a959d37ae7b6017d (patch) | |
tree | e20e867be27f82c2c789014861ad34bfbc00c918 /graphics | |
parent | 2e88a104a037a7a3f18059f5a0e03bcb3e59a53f (diff) | |
download | pkgsrc-088231c1da2c38fc92672173a959d37ae7b6017d.tar.gz |
Enable XFree86-DGA mouse and keyboard inputs. Bump revision.
The configure script determines the availability of libXxf86dga only by the existence of X11/extensions/xf86dga.h. This leads to a linkage error on platforms (e.g. Darwin) where the header in question can be found in the system default path but the corresponding library is installed elsewhere. The problem goes away if we had the library buildlinked, and I see no reason for not enabling DGA input anyway.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/libgii/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/graphics/libgii/Makefile b/graphics/libgii/Makefile index bb3071e95d9..95363ae7dd4 100644 --- a/graphics/libgii/Makefile +++ b/graphics/libgii/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.32 2012/10/06 14:11:04 asau Exp $ +# $NetBSD: Makefile,v 1.33 2014/01/17 08:06:07 pho Exp $ DISTNAME= libgii-1.0.2.src +PKGREVISION= 1 PKGNAME= ${DISTNAME:S/.src//} CATEGORIES= graphics MASTER_SITES= http://www.ggi-project.org/ftp/ggi/v2.2/ \ @@ -39,4 +40,5 @@ BUILDLINK_DEPMETHOD.libXt?= build .include "../../x11/libX11/buildlink3.mk" .include "../../x11/libXt/buildlink3.mk" +.include "../../x11/libXxf86dga/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |