svn commit: r538048 - head/x11-servers/xorg-server

Niclas Zeising zeising at FreeBSD.org
Fri Jun 5 19:14:41 UTC 2020


Author: zeising
Date: Fri Jun  5 19:14:40 2020
New Revision: 538048
URL: https://svnweb.freebsd.org/changeset/ports/538048

Log:
  xserver: default to libinput if no driver is found
  
  Make xorg-server default to try the xf86-input-libinput driver if a
  configured driver can't be found.  This only applies if a specific driver
  for an input device has been configured manually in xorg, but that driver
  can't be found when starting xorg.
  
  Discussed with:	manu, jbeich
  MFH:		2020Q2

Modified:
  head/x11-servers/xorg-server/Makefile

Modified: head/x11-servers/xorg-server/Makefile
==============================================================================
--- head/x11-servers/xorg-server/Makefile	Fri Jun  5 18:52:30 2020	(r538047)
+++ head/x11-servers/xorg-server/Makefile	Fri Jun  5 19:14:40 2020	(r538048)
@@ -3,7 +3,7 @@
 
 PORTNAME?=	xorg-server
 PORTVERSION?=	1.20.8
-PORTREVISION?=	1
+PORTREVISION?=	2
 PORTEPOCH?=	1
 CATEGORIES=	x11-servers
 MASTER_SITES=	XORG/individual/xserver
@@ -66,7 +66,8 @@ USE_XORG+=	pixman xau xdmcp xfont2 xkbfile xorgproto x
 CONFIGURE_ARGS+=--without-doxygen --without-xmlto --without-fop \
 		--with-default-font-path="$$(${DEFAULT_FONTPATH_CMD})" \
 		--without-dtrace --disable-config-hal	\
-		--disable-install-setuid --disable-unit-tests
+		--disable-install-setuid --disable-unit-tests \
+		--with-fallback-input-driver=libinput
 INSTALL_TARGET=	install-strip
 CPE_VENDOR=	x.org
 


More information about the svn-ports-head mailing list