maintainer-feedback requested: [Bug 244129] x11-servers/xwayland: use evdev xkb rules by default

[email protected]
Newsgroups gmane.os.freebsd.devel.x11
Message-ID <[email protected]/bugzilla/>
Bugzilla Automation <[email protected]> has asked freebsd-x11 mailing list
<[email protected]> for maintainer-feedback:
Bug 244129: x11-servers/xwayland: use evdev xkb rules by default
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=244129



--- Description ---
Wayland on FreeBSD only supports evdev(4) input devices, so use matching xkb
rules. This fixes at least Down (arrow) and Left (arrow) key repeat behavior.
Only necessary if using autotools.

configure.ac:
  AC_ARG_WITH(default-xkb-rules,
AS_HELP_STRING([--with-default-xkb-rules=RULES],
				     [Keyboard ruleset (default: base/evdev)]),
				  [ XKB_DFLT_RULES="$withval" ],
				  [ XKB_DFLT_RULES="" ])
  if test "x$XKB_DFLT_RULES" = x; then
      case $host_os in
      linux*)
	  dnl doesn't take AutoAddDevices into account, but whatever.
	  XKB_DFLT_RULES="evdev"
	  ;;
      *)
	  XKB_DFLT_RULES="base"
	  ;;
      esac
  fi

meson_options.txt:
  option('xkb_default_rules', type: 'string', value: 'evdev')
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-x11
To unsubscribe, send any mail to "[email protected]"
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.