Projects
openEuler:Mainline
libevdev
Sign Up
Log In
Username
Password
We truncated the diff of some files because they were too big. If you want to see the full diff for every file,
click here
.
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 2
View file
_service:tar_scm:libevdev.spec
Changed
@@ -1,12 +1,12 @@ Name: libevdev -Version: 1.12.1 -Release: 2 +Version: 1.13.0 +Release: 1 Summary: Library for handling evdev kernel devices License: MIT URL: http://www.freedesktop.org/wiki/Software/libevdev Source0: http://www.freedesktop.org/software/%{name}/%{name}-%{version}.tar.xz -BuildRequires: git-core automake libtool gcc python3 python3-devel +BuildRequires: libtool make gcc python3-devel check-devel %description Library for handling evdev kernel devices. It abstracts the ioctls @@ -30,9 +30,7 @@ %package_help %prep -%autosetup -n %{name}-%{version} -p1 -Sgit - -pathfix.py -i %{__python3} -p -n $(git grep -l '#!/usr/bin/.*python.*') +%autosetup -n %{name}-%{version} -p1 %build autoreconf -ivf @@ -45,6 +43,9 @@ %ldconfig_scriptlets +%check +make check + %files %doc COPYING %{_libdir}/libevdev.so.* @@ -69,6 +70,9 @@ %{_mandir}/man1/touchpad-edge-detector.1* %changelog +* Fri Oct 14 2022 Liu Zixian <liuzixian4@huawei.com> - 1.13.0-1 +- Update to 1.13.0 and enable regression check + * Mon Apr 18 2022 Liu Zixian <liuzixian4@huawei.com> - 1.12.1-2 - fix rpm build @@ -84,7 +88,7 @@ * Sat Jan 30 2021 xinghe <xinghe1@huawei.com> - 1.10.1-1 - update to 1.10.1 -* Thu Jul 22 2020 jinzhimin <jinzhimin2@huawei.com> - 1.8.0-2 +* Thu Jul 23 2020 jinzhimin <jinzhimin2@huawei.com> - 1.8.0-2 - delete old tar file * Thu Jul 16 2020 dingyue <dingyue5@openeuler.org> - 1.8.0-1
View file
_service
Changed
@@ -2,7 +2,7 @@ <service name="tar_scm"> <param name="scm">git</param> <param name="url">git@gitee.com:src-openeuler/libevdev.git</param> - <param name="revision">12df0c6ddc6dce5f7b1827531ccad17cd9816885</param> + <param name="revision">master</param> <param name="exclude">*</param> <param name="extract">*</param> </service>
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/Makefile.in -> _service:tar_scm:libevdev-1.13.0.tar.xz/Makefile.in
Changed
@@ -270,6 +270,7 @@ ETAGS = @ETAGS@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ +FILECMD = @FILECMD@ GCC_CFLAGS = @GCC_CFLAGS@ GCOV_CFLAGS = @GCOV_CFLAGS@ GCOV_LDFLAGS = @GCOV_LDFLAGS@
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/build-aux/config.guess -> _service:tar_scm:libevdev-1.13.0.tar.xz/build-aux/config.guess
Changed
@@ -1,12 +1,14 @@ #!/usr/bin/sh # Attempt to guess a canonical system name. -# Copyright 1992-2016 Free Software Foundation, Inc. +# Copyright 1992-2022 Free Software Foundation, Inc. -timestamp='2016-10-02' +# shellcheck disable=SC2006,SC2268 # see below for rationale + +timestamp='2022-05-25' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3 of the License, or +# the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but @@ -15,7 +17,7 @@ # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, see <http://www.gnu.org/licenses/>. +# along with this program; if not, see <https://www.gnu.org/licenses/>. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -27,11 +29,19 @@ # Originally written by Per Bothner; maintained since 2000 by Ben Elliston. # # You can get the latest version of this script from: -# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess +# https://git.savannah.gnu.org/cgit/config.git/plain/config.guess # # Please send patches to <config-patches@gnu.org>. +# The "shellcheck disable" line above the timestamp inhibits complaints +# about features and limitations of the classic Bourne shell that were +# superseded or lifted in POSIX. However, this script identifies a wide +# variety of pre-POSIX systems that do not have POSIX shells at all, and +# even some reasonably current systems (Solaris 10 as case-in-point) still +# have a pre-POSIX /bin/sh. + + me=`echo "$0" | sed -e 's,.*/,,'` usage="\ @@ -39,7 +49,7 @@ Output the configuration name of the system \`$me' is run on. -Operation modes: +Options: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit @@ -50,7 +60,7 @@ GNU config.guess ($timestamp) Originally written by Per Bothner. -Copyright 1992-2016 Free Software Foundation, Inc. +Copyright 1992-2022 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -84,7 +94,8 @@ exit 1 fi -trap 'exit 1' 1 2 15 +# Just in case it came from the environment. +GUESS= # CC_FOR_BUILD -- compiler used by this script. Note that the use of a # compiler to aid in system detection is discouraged as it requires @@ -96,66 +107,90 @@ # Portable tmp directory creation inspired by the Autoconf team. -set_cc_for_build=' -trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; -trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; -: ${TMPDIR=/tmp} ; - { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || - { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || - { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || - { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; -dummy=$tmp/dummy ; -tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; -case $CC_FOR_BUILD,$HOST_CC,$CC in - ,,) echo "int x;" > $dummy.c ; - for c in cc gcc c89 c99 ; do - if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then - CC_FOR_BUILD="$c"; break ; - fi ; - done ; - if test x"$CC_FOR_BUILD" = x ; then - CC_FOR_BUILD=no_compiler_found ; - fi - ;; - ,,*) CC_FOR_BUILD=$CC ;; - ,*,*) CC_FOR_BUILD=$HOST_CC ;; -esac ; set_cc_for_build= ;' +tmp= +# shellcheck disable=SC2172 +trap 'test -z "$tmp" || rm -fr "$tmp"' 0 1 2 13 15 + +set_cc_for_build() { + # prevent multiple calls if $tmp is already set + test "$tmp" && return 0 + : "${TMPDIR=/tmp}" + # shellcheck disable=SC2039,SC3028 + { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || + { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir "$tmp" 2>/dev/null) ; } || + { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir "$tmp" 2>/dev/null) && echo "Warning: creating insecure temp directory" >&2 ; } || + { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } + dummy=$tmp/dummy + case ${CC_FOR_BUILD-},${HOST_CC-},${CC-} in + ,,) echo "int x;" > "$dummy.c" + for driver in cc gcc c89 c99 ; do + if ($driver -c -o "$dummy.o" "$dummy.c") >/dev/null 2>&1 ; then + CC_FOR_BUILD=$driver + break + fi + done + if test x"$CC_FOR_BUILD" = x ; then + CC_FOR_BUILD=no_compiler_found + fi + ;; + ,,*) CC_FOR_BUILD=$CC ;; + ,*,*) CC_FOR_BUILD=$HOST_CC ;; + esac +} # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) -if (test -f /.attbin/uname) >/dev/null 2>&1 ; then +if test -f /.attbin/uname ; then PATH=$PATH:/.attbin ; export PATH fi UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown -UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown +UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown -case "${UNAME_SYSTEM}" in +case $UNAME_SYSTEM in Linux|GNU|GNU/*) - # If the system lacks a compiler, then just pick glibc. - # We could probably try harder. - LIBC=gnu + LIBC=unknown - eval $set_cc_for_build - cat <<-EOF > $dummy.c + set_cc_for_build + cat <<-EOF > "$dummy.c" #include <features.h> #if defined(__UCLIBC__) LIBC=uclibc #elif defined(__dietlibc__) LIBC=dietlibc - #else + #elif defined(__GLIBC__) LIBC=gnu + #else + #include <stdarg.h> + /* First heuristic to detect musl libc. */ + #ifdef __DEFINED_va_list + LIBC=musl + #endif #endif EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, ,,g'` + cc_set_libc=`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'` + eval "$cc_set_libc" + + # Second heuristic to detect musl libc. + if "$LIBC" = unknown && + command -v ldd >/dev/null && + ldd --version 2>&1 | grep -q ^musl; then + LIBC=musl + fi + + # If the system lacks a compiler, then just pick glibc. + # We could probably try harder. + if "$LIBC" = unknown ; then + LIBC=gnu + fi ;; esac # Note: order is significant - the case branches are not exclusive. -case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in +case $UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION in *:NetBSD:*:*)
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/build-aux/config.sub -> _service:tar_scm:libevdev-1.13.0.tar.xz/build-aux/config.sub
Changed
@@ -1,12 +1,14 @@ #!/usr/bin/sh # Configuration validation subroutine script. -# Copyright 1992-2016 Free Software Foundation, Inc. +# Copyright 1992-2022 Free Software Foundation, Inc. -timestamp='2016-09-05' +# shellcheck disable=SC2006,SC2268 # see below for rationale + +timestamp='2022-01-03' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3 of the License, or +# the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but @@ -15,7 +17,7 @@ # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, see <http://www.gnu.org/licenses/>. +# along with this program; if not, see <https://www.gnu.org/licenses/>. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -33,7 +35,7 @@ # Otherwise, we print the canonical config type on stdout and succeed. # You can get the latest version of this script from: -# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub +# https://git.savannah.gnu.org/cgit/config.git/plain/config.sub # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases @@ -50,6 +52,13 @@ # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # It is wrong to echo any other type of specification. +# The "shellcheck disable" line above the timestamp inhibits complaints +# about features and limitations of the classic Bourne shell that were +# superseded or lifted in POSIX. However, this script identifies a wide +# variety of pre-POSIX systems that do not have POSIX shells at all, and +# even some reasonably current systems (Solaris 10 as case-in-point) still +# have a pre-POSIX /bin/sh. + me=`echo "$0" | sed -e 's,.*/,,'` usage="\ @@ -57,7 +66,7 @@ Canonicalize a configuration name. -Operation modes: +Options: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit @@ -67,7 +76,7 @@ version="\ GNU config.sub ($timestamp) -Copyright 1992-2016 Free Software Foundation, Inc. +Copyright 1992-2022 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -89,12 +98,12 @@ - ) # Use stdin as input. break ;; -* ) - echo "$me: invalid option $1$help" + echo "$me: invalid option $1$help" >&2 exit 1 ;; *local*) # First pass through any local machine types. - echo $1 + echo "$1" exit ;; * ) @@ -110,1242 +119,1186 @@ exit 1;; esac -# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). -# Here we must recognize all the valid KERNEL-OS combinations. -maybe_os=`echo $1 | sed 's/^\(.*\)-\(^-*-^-*\)$/\2/'` -case $maybe_os in - nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ - linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ - knetbsd*-gnu* | netbsd*-gnu* | netbsd*-eabi* | \ - kopensolaris*-gnu* | cloudabi*-eabi* | \ - storm-chaos* | os2-emx* | rtmk-nova*) - os=-$maybe_os - basic_machine=`echo $1 | sed 's/^\(.*\)-\(^-*-^-*\)$/\1/'` - ;; - android-linux) - os=-linux-android - basic_machine=`echo $1 | sed 's/^\(.*\)-\(^-*-^-*\)$/\1/'`-unknown - ;; - *) - basic_machine=`echo $1 | sed 's/-^-*$//'` - if $basic_machine != $1 - then os=`echo $1 | sed 's/.*-/-/'` - else os=; fi - ;; -esac +# Split fields of configuration type +# shellcheck disable=SC2162 +saved_IFS=$IFS +IFS="-" read field1 field2 field3 field4 <<EOF +$1 +EOF +IFS=$saved_IFS -### Let's recognize common machines as not being operating systems so -### that things like config.sub decstation-3100 work. We also -### recognize some manufacturers as not being operating systems, so we -### can provide default operating systems below. -case $os in - -sun*os*) - # Prevent following clause from handling this invalid input. - ;; - -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ - -att* | -7300* | -3300* | -delta* | -motorola* | -sun234* | \ - -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ - -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ - -c123* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ - -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ - -apple | -axis | -knuth | -cray | -microblaze*) - os= - basic_machine=$1 - ;; - -bluegene*) - os=-cnk - ;; - -sim | -cisco | -oki | -wec | -winbond) - os= - basic_machine=$1 - ;; - -scout) - ;; - -wrs) - os=-vxworks - basic_machine=$1 - ;; - -chorusos*) - os=-chorusos - basic_machine=$1 - ;; - -chorusrdb) - os=-chorusrdb - basic_machine=$1 - ;; - -hiux*) - os=-hiuxwe2 - ;; - -sco6) - os=-sco5v6 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco5) - os=-sco3.2v5 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco4) - os=-sco3.2v4 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco3.2.4-9*) - os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco3.2v4-9*) - # Don't forget version if it is 3.2v4 or newer. - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco5v6*) - # Don't forget version if it is 3.2v4 or newer. - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -sco*) - os=-sco3.2v2 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -udk*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -isc) - os=-isc2.2 - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` - ;; - -clix*) - basic_machine=clipper-intergraph - ;; - -isc*) - basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/build-aux/ltmain.sh -> _service:tar_scm:libevdev-1.13.0.tar.xz/build-aux/ltmain.sh
Changed
@@ -1,12 +1,12 @@ -#! /bin/sh +#! /usr/bin/env sh ## DO NOT EDIT - This file generated from ./build-aux/ltmain.in -## by inline-source v2014-01-03.01 +## by inline-source v2019-02-19.15 -# libtool (GNU libtool) 2.4.6 +# libtool (GNU libtool) 2.4.7 # Provide generalized library-building support services. # Written by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996 -# Copyright (C) 1996-2015 Free Software Foundation, Inc. +# Copyright (C) 1996-2019, 2021-2022 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. @@ -31,8 +31,8 @@ PROGRAM=libtool PACKAGE=libtool -VERSION=2.4.6 -package_revision=2.4.6 +VERSION=2.4.7 +package_revision=2.4.7 ## ------ ## @@ -64,34 +64,25 @@ # libraries, which are installed to $pkgauxdir. # Set a version string for this script. -scriptversion=2015-01-20.17; # UTC +scriptversion=2019-02-19.15; # UTC # General shell script boiler plate, and helper functions. # Written by Gary V. Vaughan, 2004 -# Copyright (C) 2004-2015 Free Software Foundation, Inc. -# This is free software; see the source for copying conditions. There is NO -# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3 of the License, or -# (at your option) any later version. - -# As a special exception to the GNU General Public License, if you distribute -# this file as part of a program or library that is built using GNU Libtool, -# you may include this file under the same distribution terms that you use -# for the rest of that program. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNES FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. +# This is free software. There is NO warranty; not even for +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# +# Copyright (C) 2004-2019, 2021 Bootstrap Authors +# +# This file is dual licensed under the terms of the MIT license +# <https://opensource.org/license/MIT>, and GPL version 2 or later +# <http://www.gnu.org/licenses/gpl-2.0.html>. You must apply one of +# these licenses when using or redistributing this software or any of +# the files within it. See the URLs above, or the file `LICENSE` +# included in the Bootstrap distribution for the full license texts. -# Please report bugs or propose patches to gary@gnu.org. +# Please report bugs or propose patches to: +# <https://github.com/gnulib-modules/bootstrap/issues> ## ------ ## @@ -139,9 +130,12 @@ _G_safe_locale=\"$_G_var=C; \$_G_safe_locale\" fi" done - -# CDPATH. -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH +# These NLS vars are set unconditionally (bootstrap issue #24). Unset those +# in case the environment reset is needed later and the $save_* variant is not +# defined (see the code above). +LC_ALL=C +LANGUAGE=C +export LANGUAGE LC_ALL # Make sure IFS has a sensible default sp=' ' @@ -159,6 +153,26 @@ fi +# func_unset VAR +# -------------- +# Portably unset VAR. +# In some shells, an 'unset VAR' statement leaves a non-zero return +# status if VAR is already unset, which might be problematic if the +# statement is used at the end of a function (thus poisoning its return +# value) or when 'set -e' is active (causing even a spurious abort of +# the script in this case). +func_unset () +{ + { eval $1=; (eval unset $1) >/dev/null 2>&1 && eval unset $1 || : ; } +} + + +# Make sure CDPATH doesn't cause `cd` commands to output the target dir. +func_unset CDPATH + +# Make sure ${,E,F}GREP behave sanely. +func_unset GREP_OPTIONS + ## ------------------------- ## ## Locate command utilities. ## @@ -259,7 +273,7 @@ rm -f conftest.in conftest.tmp conftest.nl conftest.out } - func_path_progs "sed gsed" func_check_prog_sed $PATH:/usr/xpg4/bin + func_path_progs "sed gsed" func_check_prog_sed "$PATH:/usr/xpg4/bin" rm -f conftest.sed SED=$func_path_progs_result } @@ -295,7 +309,7 @@ rm -f conftest.in conftest.tmp conftest.nl conftest.out } - func_path_progs "grep ggrep" func_check_prog_grep $PATH:/usr/xpg4/bin + func_path_progs "grep ggrep" func_check_prog_grep "$PATH:/usr/xpg4/bin" GREP=$func_path_progs_result } @@ -360,6 +374,35 @@ s/\\(^$_G_bs\\)$_G_bs2$_G_dollar/\\1$_G_bs2$_G_bs$_G_dollar/g s/\n//g" +# require_check_ifs_backslash +# --------------------------- +# Check if we can use backslash as IFS='\' separator, and set +# $check_ifs_backshlash_broken to ':' or 'false'. +require_check_ifs_backslash=func_require_check_ifs_backslash +func_require_check_ifs_backslash () +{ + _G_save_IFS=$IFS + IFS='\' + _G_check_ifs_backshlash='a\\b' + for _G_i in $_G_check_ifs_backshlash + do + case $_G_i in + a) + check_ifs_backshlash_broken=false + ;; + '') + break + ;; + *) + check_ifs_backshlash_broken=: + break + ;; + esac + done + IFS=$_G_save_IFS + require_check_ifs_backslash=: +} + ## ----------------- ## ## Global variables. ## @@ -580,16 +623,16 @@ { $debug_cmd - func_quote_for_eval "$2" - eval "$1+=\\ \$func_quote_for_eval_result" + func_quote_arg pretty "$2" + eval "$1+=\\ \$func_quote_arg_result" }' else func_append_quoted () { $debug_cmd - func_quote_for_eval "$2" - eval "$1=\$$1\\ \$func_quote_for_eval_result" + func_quote_arg pretty "$2" + eval "$1=\$$1\\ \$func_quote_arg_result" } fi @@ -1091,85 +1134,203 @@ } -# func_quote_for_eval ARG...
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/configure -> _service:tar_scm:libevdev-1.13.0.tar.xz/configure
Changed
@@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.71 for libevdev 1.12.1. +# Generated by GNU Autoconf 2.71 for libevdev 1.13.0. # # Report bugs to <https://bugs.freedesktop.org/enter_bug.cgi?product=libevdev>. # @@ -622,8 +622,8 @@ # Identity of this package. PACKAGE_NAME='libevdev' PACKAGE_TARNAME='libevdev' -PACKAGE_VERSION='1.12.1' -PACKAGE_STRING='libevdev 1.12.1' +PACKAGE_VERSION='1.13.0' +PACKAGE_STRING='libevdev 1.13.0' PACKAGE_BUGREPORT='https://bugs.freedesktop.org/enter_bug.cgi?product=libevdev' PACKAGE_URL='http://freedesktop.org/wiki/Software/libevdev/' @@ -711,6 +711,7 @@ AR DLLTOOL OBJDUMP +FILECMD LN_S NM ac_ct_DUMPBIN @@ -1398,7 +1399,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures libevdev 1.12.1 to adapt to many kinds of systems. +\`configure' configures libevdev 1.13.0 to adapt to many kinds of systems. Usage: $0 OPTION... VAR=VALUE... @@ -1469,7 +1470,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of libevdev 1.12.1:";; + short | recursive ) echo "Configuration of libevdev 1.13.0:";; esac cat <<\_ACEOF @@ -1598,7 +1599,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -libevdev configure 1.12.1 +libevdev configure 1.13.0 generated by GNU Autoconf 2.71 Copyright (C) 2021 Free Software Foundation, Inc. @@ -1816,7 +1817,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by libevdev $as_me 1.12.1, which was +It was created by libevdev $as_me 1.13.0, which was generated by GNU Autoconf 2.71. Invocation command line was $ $0$ac_configure_args_raw @@ -4385,7 +4386,7 @@ # Define the identity of the package. PACKAGE='libevdev' - VERSION='1.12.1' + VERSION='1.13.0' printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h @@ -4679,8 +4680,8 @@ -macro_version='2.4.6' -macro_revision='2.4.6' +macro_version='2.4.7' +macro_revision='2.4.7' @@ -5308,13 +5309,13 @@ mingw*) lt_bad_file=conftest.nm/nofile ;; *) lt_bad_file=/dev/null ;; esac - case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in + case `"$tmp_nm" -B $lt_bad_file 2>&1 | $SED '1q'` in *$lt_bad_file* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break 2 ;; *) - case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in + case `"$tmp_nm" -p /dev/null 2>&1 | $SED '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break 2 @@ -5452,7 +5453,7 @@ fi fi - case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in + case `$DUMPBIN -symbols -headers /dev/null 2>&1 | $SED '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols -headers" ;; @@ -5556,7 +5557,7 @@ lt_cv_sys_max_cmd_len=8192; ;; - bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*) + bitrig* | darwin* | dragonfly* | freebsd* | midnightbsd* | netbsd* | openbsd*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` @@ -5599,7 +5600,7 @@ sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then - lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.* //'` + lt_cv_sys_max_cmd_len=`echo $kargmax | $SED 's/.* //'` else lt_cv_sys_max_cmd_len=32768 fi @@ -5805,6 +5806,114 @@ if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}file", so it can be a program name with args. +set dummy ${ac_tool_prefix}file; ac_word=$2 +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_FILECMD+y} +then : + printf %s "(cached) " >&6 +else $as_nop + if test -n "$FILECMD"; then + ac_cv_prog_FILECMD="$FILECMD" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then + ac_cv_prog_FILECMD="${ac_tool_prefix}file" + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +FILECMD=$ac_cv_prog_FILECMD +if test -n "$FILECMD"; then + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $FILECMD" >&5 +printf "%s\n" "$FILECMD" >&6; } +else + { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 +printf "%s\n" "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_FILECMD"; then + ac_ct_FILECMD=$FILECMD + # Extract the first word of "file", so it can be a program name with args. +set dummy file; ac_word=$2 +{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +printf %s "checking for $ac_word... " >&6; } +if test ${ac_cv_prog_ac_ct_FILECMD+y} +then : + printf %s "(cached) " >&6 +else $as_nop + if test -n "$ac_ct_FILECMD"; then + ac_cv_prog_ac_ct_FILECMD="$ac_ct_FILECMD" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + case $as_dir in #((( + '') as_dir=./ ;; + */) ;; + *) as_dir=$as_dir/ ;; + esac + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_FILECMD="file" + printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 + break 2
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/configure.ac -> _service:tar_scm:libevdev-1.13.0.tar.xz/configure.ac
Changed
@@ -7,7 +7,7 @@ # change meson version too AC_INIT(libevdev, - 1.12.1, + 1.13.0, https://bugs.freedesktop.org/enter_bug.cgi?product=libevdev, libevdev, http://freedesktop.org/wiki/Software/libevdev/)
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/doc/Makefile.in -> _service:tar_scm:libevdev-1.13.0.tar.xz/doc/Makefile.in
Changed
@@ -186,6 +186,7 @@ ETAGS = @ETAGS@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ +FILECMD = @FILECMD@ GCC_CFLAGS = @GCC_CFLAGS@ GCOV_CFLAGS = @GCOV_CFLAGS@ GCOV_LDFLAGS = @GCOV_LDFLAGS@
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/doc/html/backwardscompatibility.html -> _service:tar_scm:libevdev-1.13.0.tar.xz/doc/html/backwardscompatibility.html
Changed
@@ -25,7 +25,7 @@ <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> - <a class="navbar-brand">libevdev 1.12.1</a> + <a class="navbar-brand">libevdev 1.13.0</a> </div> </div> </nav>
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/doc/html/deprecated.html -> _service:tar_scm:libevdev-1.13.0.tar.xz/doc/html/deprecated.html
Changed
@@ -25,7 +25,7 @@ <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> - <a class="navbar-brand">libevdev 1.12.1</a> + <a class="navbar-brand">libevdev 1.13.0</a> </div> </div> </nav>
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/doc/html/dir_237a012ffe1a208b10d31c74b4ef545e.html -> _service:tar_scm:libevdev-1.13.0.tar.xz/doc/html/dir_237a012ffe1a208b10d31c74b4ef545e.html
Changed
@@ -8,7 +8,7 @@ <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.9.1"/> <script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script> - <title>libevdev: /home/whot/code/libevdev/release/libevdev/build.eXgVwUduJp/libevdev Directory Reference</title> + <title>libevdev: /home/whot/code/libevdev/release/libevdev/build.kshdg2gGMS/libevdev Directory Reference</title> <!--<link href="tabs.css" rel="stylesheet" type="text/css"/>--> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> @@ -25,7 +25,7 @@ <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> - <a class="navbar-brand">libevdev 1.12.1</a> + <a class="navbar-brand">libevdev 1.13.0</a> </div> </div> </nav>
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/doc/html/files.html -> _service:tar_scm:libevdev-1.13.0.tar.xz/doc/html/files.html
Changed
@@ -25,7 +25,7 @@ <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> - <a class="navbar-brand">libevdev 1.12.1</a> + <a class="navbar-brand">libevdev 1.13.0</a> </div> </div> </nav>
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/doc/html/globals.html -> _service:tar_scm:libevdev-1.13.0.tar.xz/doc/html/globals.html
Changed
@@ -25,7 +25,7 @@ <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> - <a class="navbar-brand">libevdev 1.12.1</a> + <a class="navbar-brand">libevdev 1.13.0</a> </div> </div> </nav>
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/doc/html/globals_defs.html -> _service:tar_scm:libevdev-1.13.0.tar.xz/doc/html/globals_defs.html
Changed
@@ -25,7 +25,7 @@ <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> - <a class="navbar-brand">libevdev 1.12.1</a> + <a class="navbar-brand">libevdev 1.13.0</a> </div> </div> </nav>
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/doc/html/globals_enum.html -> _service:tar_scm:libevdev-1.13.0.tar.xz/doc/html/globals_enum.html
Changed
@@ -25,7 +25,7 @@ <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> - <a class="navbar-brand">libevdev 1.12.1</a> + <a class="navbar-brand">libevdev 1.13.0</a> </div> </div> </nav>
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/doc/html/globals_eval.html -> _service:tar_scm:libevdev-1.13.0.tar.xz/doc/html/globals_eval.html
Changed
@@ -25,7 +25,7 @@ <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> - <a class="navbar-brand">libevdev 1.12.1</a> + <a class="navbar-brand">libevdev 1.13.0</a> </div> </div> </nav>
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/doc/html/globals_func.html -> _service:tar_scm:libevdev-1.13.0.tar.xz/doc/html/globals_func.html
Changed
@@ -25,7 +25,7 @@ <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> - <a class="navbar-brand">libevdev 1.12.1</a> + <a class="navbar-brand">libevdev 1.13.0</a> </div> </div> </nav>
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/doc/html/globals_type.html -> _service:tar_scm:libevdev-1.13.0.tar.xz/doc/html/globals_type.html
Changed
@@ -25,7 +25,7 @@ <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> - <a class="navbar-brand">libevdev 1.12.1</a> + <a class="navbar-brand">libevdev 1.13.0</a> </div> </div> </nav>
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/doc/html/group__bits.html -> _service:tar_scm:libevdev-1.13.0.tar.xz/doc/html/group__bits.html
Changed
@@ -25,7 +25,7 @@ <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> - <a class="navbar-brand">libevdev 1.12.1</a> + <a class="navbar-brand">libevdev 1.13.0</a> </div> </div> </nav>
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/doc/html/group__events.html -> _service:tar_scm:libevdev-1.13.0.tar.xz/doc/html/group__events.html
Changed
@@ -25,7 +25,7 @@ <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> - <a class="navbar-brand">libevdev 1.12.1</a> + <a class="navbar-brand">libevdev 1.13.0</a> </div> </div> </nav>
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/doc/html/group__init.html -> _service:tar_scm:libevdev-1.13.0.tar.xz/doc/html/group__init.html
Changed
@@ -25,7 +25,7 @@ <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> - <a class="navbar-brand">libevdev 1.12.1</a> + <a class="navbar-brand">libevdev 1.13.0</a> </div> </div> </nav>
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/doc/html/group__kernel.html -> _service:tar_scm:libevdev-1.13.0.tar.xz/doc/html/group__kernel.html
Changed
@@ -25,7 +25,7 @@ <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> - <a class="navbar-brand">libevdev 1.12.1</a> + <a class="navbar-brand">libevdev 1.13.0</a> </div> </div> </nav>
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/doc/html/group__logging.html -> _service:tar_scm:libevdev-1.13.0.tar.xz/doc/html/group__logging.html
Changed
@@ -25,7 +25,7 @@ <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> - <a class="navbar-brand">libevdev 1.12.1</a> + <a class="navbar-brand">libevdev 1.13.0</a> </div> </div> </nav>
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/doc/html/group__misc.html -> _service:tar_scm:libevdev-1.13.0.tar.xz/doc/html/group__misc.html
Changed
@@ -25,7 +25,7 @@ <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> - <a class="navbar-brand">libevdev 1.12.1</a> + <a class="navbar-brand">libevdev 1.13.0</a> </div> </div> </nav>
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/doc/html/group__mt.html -> _service:tar_scm:libevdev-1.13.0.tar.xz/doc/html/group__mt.html
Changed
@@ -25,7 +25,7 @@ <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> - <a class="navbar-brand">libevdev 1.12.1</a> + <a class="navbar-brand">libevdev 1.13.0</a> </div> </div> </nav>
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/doc/html/group__uinput.html -> _service:tar_scm:libevdev-1.13.0.tar.xz/doc/html/group__uinput.html
Changed
@@ -25,7 +25,7 @@ <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> - <a class="navbar-brand">libevdev 1.12.1</a> + <a class="navbar-brand">libevdev 1.13.0</a> </div> </div> </nav>
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/doc/html/index.html -> _service:tar_scm:libevdev-1.13.0.tar.xz/doc/html/index.html
Changed
@@ -25,7 +25,7 @@ <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> - <a class="navbar-brand">libevdev 1.12.1</a> + <a class="navbar-brand">libevdev 1.13.0</a> </div> </div> </nav>
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/doc/html/ioctls.html -> _service:tar_scm:libevdev-1.13.0.tar.xz/doc/html/ioctls.html
Changed
@@ -25,7 +25,7 @@ <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> - <a class="navbar-brand">libevdev 1.12.1</a> + <a class="navbar-brand">libevdev 1.13.0</a> </div> </div> </nav>
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/doc/html/kernel_header.html -> _service:tar_scm:libevdev-1.13.0.tar.xz/doc/html/kernel_header.html
Changed
@@ -25,7 +25,7 @@ <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> - <a class="navbar-brand">libevdev 1.12.1</a> + <a class="navbar-brand">libevdev 1.13.0</a> </div> </div> </nav>
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/doc/html/libevdev-uinput_8h.html -> _service:tar_scm:libevdev-1.13.0.tar.xz/doc/html/libevdev-uinput_8h.html
Changed
@@ -8,7 +8,7 @@ <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.9.1"/> <script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script> - <title>libevdev: /home/whot/code/libevdev/release/libevdev/build.eXgVwUduJp/libevdev/libevdev-uinput.h File Reference</title> + <title>libevdev: /home/whot/code/libevdev/release/libevdev/build.kshdg2gGMS/libevdev/libevdev-uinput.h File Reference</title> <!--<link href="tabs.css" rel="stylesheet" type="text/css"/>--> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> @@ -25,7 +25,7 @@ <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> - <a class="navbar-brand">libevdev 1.12.1</a> + <a class="navbar-brand">libevdev 1.13.0</a> </div> </div> </nav>
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/doc/html/libevdev-uinput_8h_source.html -> _service:tar_scm:libevdev-1.13.0.tar.xz/doc/html/libevdev-uinput_8h_source.html
Changed
@@ -8,7 +8,7 @@ <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.9.1"/> <script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script> - <title>libevdev: /home/whot/code/libevdev/release/libevdev/build.eXgVwUduJp/libevdev/libevdev-uinput.h Source File</title> + <title>libevdev: /home/whot/code/libevdev/release/libevdev/build.kshdg2gGMS/libevdev/libevdev-uinput.h Source File</title> <!--<link href="tabs.css" rel="stylesheet" type="text/css"/>--> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> @@ -25,7 +25,7 @@ <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> - <a class="navbar-brand">libevdev 1.12.1</a> + <a class="navbar-brand">libevdev 1.13.0</a> </div> </div> </nav>
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/doc/html/libevdev_8h.html -> _service:tar_scm:libevdev-1.13.0.tar.xz/doc/html/libevdev_8h.html
Changed
@@ -8,7 +8,7 @@ <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.9.1"/> <script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script> - <title>libevdev: /home/whot/code/libevdev/release/libevdev/build.eXgVwUduJp/libevdev/libevdev.h File Reference</title> + <title>libevdev: /home/whot/code/libevdev/release/libevdev/build.kshdg2gGMS/libevdev/libevdev.h File Reference</title> <!--<link href="tabs.css" rel="stylesheet" type="text/css"/>--> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> @@ -25,7 +25,7 @@ <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> - <a class="navbar-brand">libevdev 1.12.1</a> + <a class="navbar-brand">libevdev 1.13.0</a> </div> </div> </nav>
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/doc/html/libevdev_8h_source.html -> _service:tar_scm:libevdev-1.13.0.tar.xz/doc/html/libevdev_8h_source.html
Changed
@@ -8,7 +8,7 @@ <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.9.1"/> <script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script> - <title>libevdev: /home/whot/code/libevdev/release/libevdev/build.eXgVwUduJp/libevdev/libevdev.h Source File</title> + <title>libevdev: /home/whot/code/libevdev/release/libevdev/build.kshdg2gGMS/libevdev/libevdev.h Source File</title> <!--<link href="tabs.css" rel="stylesheet" type="text/css"/>--> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> @@ -25,7 +25,7 @@ <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> - <a class="navbar-brand">libevdev 1.12.1</a> + <a class="navbar-brand">libevdev 1.13.0</a> </div> </div> </nav>
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/doc/html/modules.html -> _service:tar_scm:libevdev-1.13.0.tar.xz/doc/html/modules.html
Changed
@@ -25,7 +25,7 @@ <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> - <a class="navbar-brand">libevdev 1.12.1</a> + <a class="navbar-brand">libevdev 1.13.0</a> </div> </div> </nav>
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/doc/html/pages.html -> _service:tar_scm:libevdev-1.13.0.tar.xz/doc/html/pages.html
Changed
@@ -25,7 +25,7 @@ <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> - <a class="navbar-brand">libevdev 1.12.1</a> + <a class="navbar-brand">libevdev 1.13.0</a> </div> </div> </nav>
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/doc/html/static_linking.html -> _service:tar_scm:libevdev-1.13.0.tar.xz/doc/html/static_linking.html
Changed
@@ -25,7 +25,7 @@ <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> - <a class="navbar-brand">libevdev 1.12.1</a> + <a class="navbar-brand">libevdev 1.13.0</a> </div> </div> </nav>
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/doc/html/syn_dropped.html -> _service:tar_scm:libevdev-1.13.0.tar.xz/doc/html/syn_dropped.html
Changed
@@ -25,7 +25,7 @@ <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> - <a class="navbar-brand">libevdev 1.12.1</a> + <a class="navbar-brand">libevdev 1.13.0</a> </div> </div> </nav>
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/doc/html/testing.html -> _service:tar_scm:libevdev-1.13.0.tar.xz/doc/html/testing.html
Changed
@@ -25,7 +25,7 @@ <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> - <a class="navbar-brand">libevdev 1.12.1</a> + <a class="navbar-brand">libevdev 1.13.0</a> </div> </div> </nav>
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/include/linux/linux/input-event-codes.h -> _service:tar_scm:libevdev-1.13.0.tar.xz/include/linux/linux/input-event-codes.h
Changed
@@ -662,6 +662,27 @@ /* Select an area of screen to be copied */ #define KEY_SELECTIVE_SCREENSHOT 0x27a +/* Move the focus to the next or previous user controllable element within a UI container */ +#define KEY_NEXT_ELEMENT 0x27b +#define KEY_PREVIOUS_ELEMENT 0x27c + +/* Toggle Autopilot engagement */ +#define KEY_AUTOPILOT_ENGAGE_TOGGLE 0x27d + +/* Shortcut Keys */ +#define KEY_MARK_WAYPOINT 0x27e +#define KEY_SOS 0x27f +#define KEY_NAV_CHART 0x280 +#define KEY_FISHING_CHART 0x281 +#define KEY_SINGLE_RANGE_RADAR 0x282 +#define KEY_DUAL_RANGE_RADAR 0x283 +#define KEY_RADAR_OVERLAY 0x284 +#define KEY_TRADITIONAL_SONAR 0x285 +#define KEY_CLEARVU_SONAR 0x286 +#define KEY_SIDEVU_SONAR 0x287 +#define KEY_NAV_INFO 0x288 +#define KEY_BRIGHTNESS_MENU 0x289 + /* * Some keyboards have keys which do not have a defined meaning, these keys * are intended to be programmed / bound to macros by the user. For most
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/include/linux/linux/input.h -> _service:tar_scm:libevdev-1.13.0.tar.xz/include/linux/linux/input.h
Changed
@@ -76,10 +76,13 @@ * Note that input core does not clamp reported values to the * minimum, maximum limits, such task is left to userspace. * - * The default resolution for main axes (ABS_X, ABS_Y, ABS_Z) - * is reported in units per millimeter (units/mm), resolution - * for rotational axes (ABS_RX, ABS_RY, ABS_RZ) is reported - * in units per radian. + * The default resolution for main axes (ABS_X, ABS_Y, ABS_Z, + * ABS_MT_POSITION_X, ABS_MT_POSITION_Y) is reported in units + * per millimeter (units/mm), resolution for rotational axes + * (ABS_RX, ABS_RY, ABS_RZ) is reported in units per radian. + * The resolution for the size axes (ABS_MT_TOUCH_MAJOR, + * ABS_MT_TOUCH_MINOR, ABS_MT_WIDTH_MAJOR, ABS_MT_WIDTH_MINOR) + * is reported in units per millimeter (units/mm). * When INPUT_PROP_ACCELEROMETER is set the resolution changes. * The main axes (ABS_X, ABS_Y, ABS_Z) are then reported in * units per g (units/g) and in units per degree per second @@ -269,6 +272,7 @@ #define BUS_RMI 0x1D #define BUS_CEC 0x1E #define BUS_INTEL_ISHTP 0x1F +#define BUS_AMD_SFH 0x20 /* * MT_TOOL types
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/libevdev/Makefile.in -> _service:tar_scm:libevdev-1.13.0.tar.xz/libevdev/Makefile.in
Changed
@@ -239,6 +239,7 @@ ETAGS = @ETAGS@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ +FILECMD = @FILECMD@ GCC_CFLAGS = @GCC_CFLAGS@ GCOV_CFLAGS = @GCOV_CFLAGS@ GCOV_LDFLAGS = @GCOV_LDFLAGS@
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/libevdev/libevdev-uinput.c -> _service:tar_scm:libevdev-1.13.0.tar.xz/libevdev/libevdev-uinput.c
Changed
@@ -468,7 +468,13 @@ unsigned int code, int value) { - struct input_event ev = { {0,0}, type, code, value }; + struct input_event ev = { + .input_event_sec = 0, + .input_event_usec = 0, + .type = type, + .code = code, + .value = value + }; int fd = libevdev_uinput_get_fd(uinput_dev); int rc, max;
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/libevdev/libevdev.c -> _service:tar_scm:libevdev-1.13.0.tar.xz/libevdev/libevdev.c
Changed
@@ -44,7 +44,8 @@ }; static int sync_mt_state(struct libevdev *dev, - struct slot_change_state *changes_out); + struct slot_change_state changes_outdev->num_slots); + static int update_key_state(struct libevdev *dev, const struct input_event *e); @@ -910,7 +911,8 @@ bool want_mt_sync = false; int last_reported_slot = 0; struct slot_change_state changesdev->num_slots > 0 ? dev->num_slots : 1; - memset(changes, 0, sizeof(changes)); + + memset(changes, 0, sizeof(changes)); /* see section "Discarding events before synchronizing" in * libevdev/libevdev.h */
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/m4/libtool.m4 -> _service:tar_scm:libevdev-1.13.0.tar.xz/m4/libtool.m4
Changed
@@ -1,6 +1,7 @@ # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- # -# Copyright (C) 1996-2001, 2003-2015 Free Software Foundation, Inc. +# Copyright (C) 1996-2001, 2003-2019, 2021-2022 Free Software +# Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is free software; the Free Software Foundation gives @@ -31,7 +32,7 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. ) -# serial 58 LT_INIT +# serial 59 LT_INIT # LT_PREREQ(VERSION) @@ -181,6 +182,7 @@ m4_require(_LT_CHECK_SHELL_FEATURES)dnl m4_require(_LT_PATH_CONVERSION_FUNCTIONS)dnl m4_require(_LT_CMD_RELOAD)dnl +m4_require(_LT_DECL_FILECMD)dnl m4_require(_LT_CHECK_MAGIC_METHOD)dnl m4_require(_LT_CHECK_SHAREDLIB_FROM_LINKLIB)dnl m4_require(_LT_CMD_OLD_ARCHIVE)dnl @@ -219,8 +221,8 @@ ofile=libtool can_build_shared=yes -# All known linkers require a '.a' archive for static linking (except MSVC, -# which needs '.lib'). +# All known linkers require a '.a' archive for static linking (except MSVC and +# ICC, which need '.lib'). libext=a with_gnu_ld=$lt_cv_prog_gnu_ld @@ -778,7 +780,7 @@ # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? - sed '$q' "$ltmain" >> "$cfgfile" \ + $SED '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) mv -f "$cfgfile" "$ofile" || @@ -1042,8 +1044,8 @@ _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD - echo "$AR cru libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD - $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD + echo "$AR $AR_FLAGS libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD + $AR $AR_FLAGS libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD cat > conftest.c << _LT_EOF @@ -1067,17 +1069,12 @@ _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; - darwin*) # darwin 5.x on - # if running on 10.5 or later, the deployment target defaults - # to the OS version, if on x86, and 10.4, the deployment - # target defaults to 10.4. Don't you love it? - case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in - 10.0,*86*-darwin8*|10.0,*-darwin91*) - _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; - 10.012,.*) - _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; - 10.*) - _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; + darwin*) + case $MACOSX_DEPLOYMENT_TARGET,$host in + 10.012,*|,*powerpc*-darwin5-8*) + _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; + *) + _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; esac ;; esac @@ -1126,12 +1123,12 @@ output_verbose_link_cmd=func_echo_all _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" - _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" - _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" + _LT_TAGVAR(archive_expsym_cmds, $1)="$SED 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" + _LT_TAGVAR(module_expsym_cmds, $1)="$SED -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" m4_if($1, CXX, if test yes != "$lt_cv_apple_cc_single_mod"; then _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dsymutil" - _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dar_export_syms$_lt_dsymutil" + _LT_TAGVAR(archive_expsym_cmds, $1)="$SED 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dar_export_syms$_lt_dsymutil" fi ,) else @@ -1245,7 +1242,8 @@ # _LT_WITH_SYSROOT # ---------------- AC_DEFUN(_LT_WITH_SYSROOT, -AC_MSG_CHECKING(for sysroot) +m4_require(_LT_DECL_SED)dnl +AC_MSG_CHECKING(for sysroot) AC_ARG_WITH(sysroot, AS_HELP_STRING(--with-sysroot@<:@=DIR@:>@, Search for dependent libraries within DIR (or the compiler's sysroot @@ -1262,7 +1260,7 @@ fi ;; #( /*) - lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` + lt_sysroot=`echo "$with_sysroot" | $SED -e "$sed_quote_subst"` ;; #( no|'') ;; #( @@ -1292,7 +1290,7 @@ # options accordingly. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then - case `/usr/bin/file conftest.$ac_objext` in + case `$FILECMD conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE=32 ;; @@ -1309,7 +1307,7 @@ echo '#line '$LINENO' "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then if test yes = "$lt_cv_prog_gnu_ld"; then - case `/usr/bin/file conftest.$ac_objext` in + case `$FILECMD conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; @@ -1321,7 +1319,7 @@ ;; esac else - case `/usr/bin/file conftest.$ac_objext` in + case `$FILECMD conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; @@ -1343,7 +1341,7 @@ echo '#line '$LINENO' "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then emul=elf - case `/usr/bin/file conftest.$ac_objext` in + case `$FILECMD conftest.$ac_objext` in *32-bit*) emul="${emul}32" ;; @@ -1351,7 +1349,7 @@ emul="${emul}64" ;; esac - case `/usr/bin/file conftest.$ac_objext` in + case `$FILECMD conftest.$ac_objext` in *MSB*) emul="${emul}btsmip" ;; @@ -1359,7 +1357,7 @@ emul="${emul}ltsmip" ;; esac - case `/usr/bin/file conftest.$ac_objext` in + case `$FILECMD conftest.$ac_objext` in *N32*) emul="${emul}n32" ;; @@ -1379,14 +1377,14 @@ # not appear in the list. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then - case `/usr/bin/file conftest.o` in + case `$FILECMD conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) - case `/usr/bin/file conftest.o` in + case `$FILECMD conftest.o` in *x86-64*) LD="${LD-ld} -m elf32_x86_64" ;; @@ -1454,7 +1452,7 @@ # options accordingly. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then - case `/usr/bin/file conftest.o` in + case `$FILECMD conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) @@ -1493,9 +1491,22 @@ m4_defun(_LT_PROG_AR, AC_CHECK_TOOLS(AR, ar, false) : ${AR=ar}
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/m4/ltoptions.m4 -> _service:tar_scm:libevdev-1.13.0.tar.xz/m4/ltoptions.m4
Changed
@@ -1,7 +1,7 @@ # Helper functions for option handling. -*- Autoconf -*- # -# Copyright (C) 2004-2005, 2007-2009, 2011-2015 Free Software -# Foundation, Inc. +# Copyright (C) 2004-2005, 2007-2009, 2011-2019, 2021-2022 Free +# Software Foundation, Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/m4/ltsugar.m4 -> _service:tar_scm:libevdev-1.13.0.tar.xz/m4/ltsugar.m4
Changed
@@ -1,6 +1,6 @@ # ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- # -# Copyright (C) 2004-2005, 2007-2008, 2011-2015 Free Software +# Copyright (C) 2004-2005, 2007-2008, 2011-2019, 2021-2022 Free Software # Foundation, Inc. # Written by Gary V. Vaughan, 2004 #
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/m4/ltversion.m4 -> _service:tar_scm:libevdev-1.13.0.tar.xz/m4/ltversion.m4
Changed
@@ -1,6 +1,7 @@ # ltversion.m4 -- version numbers -*- Autoconf -*- # -# Copyright (C) 2004, 2011-2015 Free Software Foundation, Inc. +# Copyright (C) 2004, 2011-2019, 2021-2022 Free Software Foundation, +# Inc. # Written by Scott James Remnant, 2004 # # This file is free software; the Free Software Foundation gives @@ -9,15 +10,15 @@ # @configure_input@ -# serial 4179 ltversion.m4 +# serial 4245 ltversion.m4 # This file is part of GNU Libtool -m4_define(LT_PACKAGE_VERSION, 2.4.6) -m4_define(LT_PACKAGE_REVISION, 2.4.6) +m4_define(LT_PACKAGE_VERSION, 2.4.7) +m4_define(LT_PACKAGE_REVISION, 2.4.7) AC_DEFUN(LTVERSION_VERSION, -macro_version='2.4.6' -macro_revision='2.4.6' +macro_version='2.4.7' +macro_revision='2.4.7' _LT_DECL(, macro_version, 0, Which release of libtool.m4 was used?) _LT_DECL(, macro_revision, 0) )
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/m4/lt~obsolete.m4 -> _service:tar_scm:libevdev-1.13.0.tar.xz/m4/lt~obsolete.m4
Changed
@@ -1,7 +1,7 @@ # lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- # -# Copyright (C) 2004-2005, 2007, 2009, 2011-2015 Free Software -# Foundation, Inc. +# Copyright (C) 2004-2005, 2007, 2009, 2011-2019, 2021-2022 Free +# Software Foundation, Inc. # Written by Scott James Remnant, 2004. # # This file is free software; the Free Software Foundation gives
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/meson.build -> _service:tar_scm:libevdev-1.13.0.tar.xz/meson.build
Changed
@@ -1,13 +1,14 @@ project('libevdev', 'c', - version: '1.12.1', # change autotools version too + version: '1.13.0', # change autotools version too license: 'MIT/Expat', default_options: 'c_std=gnu99', 'warning_level=2' , - meson_version: '>= 0.47.0') + meson_version: '>= 0.56.0') libevdev_version = meson.project_version().split('.') -dir_src = join_paths(meson.source_root(), 'libevdev') -dir_src_test = join_paths(meson.source_root(), 'test') +dir_root = meson.project_source_root() +dir_src = dir_root / 'libevdev' +dir_src_test = dir_root / 'test' # Include directories includes_include = include_directories('include') @@ -39,9 +40,8 @@ dep_lm = cc.find_library('m') dep_rt = cc.find_library('rt') -input_h = join_paths(meson.source_root(), 'include', 'linux', host_machine.system(), 'input.h') -uinput_h = join_paths(meson.source_root(), 'include', 'linux', host_machine.system(), 'uinput.h') -input_event_codes_h = join_paths(meson.source_root(), 'include', 'linux', host_machine.system(), 'input-event-codes.h') +input_h = dir_root / 'include' / 'linux' / host_machine.system() / 'input.h' +input_event_codes_h = dir_root / 'include' / 'linux' / host_machine.system() / 'input-event-codes.h' # event-names.h make_event_names = find_program('libevdev/make-event-names.py') @@ -67,12 +67,9 @@ 'libevdev/libevdev-names.c', 'include/linux/input.h', 'include/linux/uinput.h', - input_event_codes_h, - input_h, - uinput_h -mapfile = join_paths(dir_src, 'libevdev.sym') +mapfile = dir_src / 'libevdev.sym' version_flag = '-Wl,--version-script,@0@'.format(mapfile) lib_libevdev = library('evdev', src_libevdev, @@ -130,7 +127,8 @@ dependencies: dep_libevdev, install: true) install_man('tools/libevdev-tweak-device.1', - 'tools/touchpad-edge-detector.1') + 'tools/touchpad-edge-detector.1', + 'tools/mouse-dpi-tool.1') # tests dep_check = dependency('check', version: '>= 0.9.9', @@ -193,7 +191,7 @@ include_directories: includes_include, dependencies: dep_libevdev, dep_check, install: false) - test('test-libevdev', test_libevdev, suite: 'library') + test('test-libevdev', test_libevdev, suite: 'library', env: 'CK_DEFAULT_TIMEOUT=10') test_kernel = executable('test-kernel', sources: src_common + @@ -211,14 +209,14 @@ valgrind_env.set('CK_TIMEOUT_MULTIPLIER', '10') valgrind_env.set('CK_FORK', 'no') valgrind_env.set('RUNNING_ON_VALGRIND', '1') - valgrind_suppressions_file = join_paths(dir_src_test, 'valgrind.suppressions') + valgrind_suppressions_file = dir_src_test / 'valgrind.suppressions' add_test_setup('valgrind', exe_wrapper: valgrind, '--leak-check=full', '--gen-suppressions=all', '--error-exitcode=3', '--suppressions=' + valgrind_suppressions_file , - env: valgrind_env, + env: valgrind_env, timeout_multiplier: 100) else message('valgrind not found, disabling valgrind test suite') @@ -236,8 +234,8 @@ src_doxygen = files( # source files - join_paths(dir_src, 'libevdev.h'), - join_paths(dir_src, 'libevdev-uinput.h'), + dir_src / 'libevdev.h', + dir_src / 'libevdev-uinput.h', # style files 'doc/style/bootstrap.css', 'doc/style/customdoxygen.css', @@ -263,8 +261,8 @@ doc_config.set('PACKAGE_NAME', meson.project_name()) doc_config.set('PACKAGE_VERSION', meson.project_version()) doc_config.set('builddir', meson.current_build_dir()) - doc_config.set('top_srcdir', meson.source_root()) - doc_config.set('srcdir', join_paths(meson.source_root(), 'doc')) + doc_config.set('top_srcdir', dir_root) + doc_config.set('srcdir', dir_root / 'doc') doxyfile = configure_file(input: 'doc/libevdev.doxygen.in', output: 'libevdev.doxygen',
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/test/Makefile.in -> _service:tar_scm:libevdev-1.13.0.tar.xz/test/Makefile.in
Changed
@@ -553,6 +553,7 @@ ETAGS = @ETAGS@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ +FILECMD = @FILECMD@ GCC_CFLAGS = @GCC_CFLAGS@ GCOV_CFLAGS = @GCOV_CFLAGS@ GCOV_LDFLAGS = @GCOV_LDFLAGS@
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/test/test-libevdev-has-event.c -> _service:tar_scm:libevdev-1.13.0.tar.xz/test/test-libevdev-has-event.c
Changed
@@ -116,10 +116,11 @@ test_create_abs_device(&uidev, &dev, 1, &abs, -1); - } else + } else { test_create_device(&uidev, &dev, *evbit, code, -1); + } ck_assert_msg(libevdev_has_event_type(dev, *evbit), "for event type %d\n", *evbit); ck_assert_msg(libevdev_has_event_code(dev, *evbit, code), "for type %d code %d", *evbit, code);
View file
_service:tar_scm:libevdev-1.12.1.tar.xz/tools/Makefile.in -> _service:tar_scm:libevdev-1.13.0.tar.xz/tools/Makefile.in
Changed
@@ -257,6 +257,7 @@ ETAGS = @ETAGS@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ +FILECMD = @FILECMD@ GCC_CFLAGS = @GCC_CFLAGS@ GCOV_CFLAGS = @GCOV_CFLAGS@ GCOV_LDFLAGS = @GCOV_LDFLAGS@
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.
浙ICP备2022010568号-2