Date: Mon, 22 Jul 2002 20:59:45 -0400 From: Rocco Caputo <troc@netrus.net> To: freebsd-stable@FreeBSD.ORG Subject: xinput patch for gtk12 port Message-ID: <20020723005945.GC481@eyrie.homenet>
next in thread | raw e-mail | index | archive | help
--Yylu36WmvOXNoKYn Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Gtk supports XInput for pen and other odd input devices. Gimp uses this to support my Wacom tablet. I have attached a very short patch to gtk12's Makefile that adds a WITH_XINPUT flag to turn this on. -- Rocco Caputo / troc@pobox.com / poe.perl.org / poe.sf.net --Yylu36WmvOXNoKYn Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=gtk12-xinput-patch --- gtk12/Makefile-orig Mon Jul 22 20:49:47 2002 +++ gtk12/Makefile Mon Jul 22 20:48:08 2002 @@ -31,6 +31,12 @@ MAN1= gtk12-config.1 +.if defined(WITH_XINPUT) + CONFIGURE_ARGS+= --with-xinput=xfree +.else + ${ECHO_CMD} '*** Set WITH_XINPUT to enable XInput (for pen tablets, etc.)' +.endif + pre-build: ${RM} -rf ${WRKSRC}/docs/gtk.info* --Yylu36WmvOXNoKYn-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020723005945.GC481>