16.04でマルチタッチジェスチャをカスタマイズする

16.04でマルチタッチジェスチャをカスタマイズする

私は指示に従っていますここsudo makeしかし、 を実行するとエラーが発生しますsudo make install。このエラーを修正する方法について何かアイデアはありますか?

make  all-recursive
make[1]: Entering directory '/home/me/xserver-xorg-input-synaptics'
Making all in include
make[2]: Entering directory '/home/me/xserver-xorg-input-synaptics/include'
make[2]: Nothing to be done for 'all'.
make[2]: Leaving directory '/home/me/xserver-xorg-input-synaptics/include'
Making all in src
make[2]: Entering directory '/home/me/xserver-xorg-input-synaptics/src'
  CC       synaptics.lo
  CC       synproto.lo
In file included from /usr/include/string.h:630:0,
                 from /usr/include/xorg/os.h:53,
                 from /usr/include/xorg/misc.h:116,
                 from /usr/include/xorg/xf86str.h:37,
                 from /usr/include/xorg/xf86.h:44,
                 from /usr/include/xorg/xf86Xinput.h:54,
                 from synproto.h:36,
                 from synproto.c:24:
/usr/include/xorg/os.h:590:1: error: expected identifier or ‘(’ before ‘__extension__’
 strndup(const char *str, size_t n);
 ^
Makefile:515: recipe for target 'synproto.lo' failed
make[2]: *** [synproto.lo] Error 1
make[2]: Leaving directory '/home/me/xserver-xorg-input-synaptics/src'
Makefile:511: recipe for target 'all-recursive' failed
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory '/home/me/xserver-xorg-input-synaptics'
Makefile:420: recipe for target 'all' failed
make: *** [all] Error 2

答え1

私もこれに偶然遭遇し、次のことを発見しました:

https://github.com/felipejfc/xserver-xorg-input-synaptics/issues/1

そして私は次のことを発見しました:

https://cgit.freedesktop.org/xorg/driver/xf86-input-synaptics/commit/?id=96e60a4ea242d2decf109835981ae186cc36f642

数年前のものですが、同じ問題のようです。

上記の 2 つのリンクを要約すると、ドライバーを glibc の新しいバージョンで動作させるには、以下のコマンドでクローンした git リポジトリ内の 3 つのファイルを変更する必要があります。

$ git clone https://github.com/Chosko/xserver-xorg-input-synaptics.git

これらのファイルはすべて src ディレクトリにあり、次のように名前が付けられています。

  • イベント通信.h
  • ps2comm.h
  • シンプロト.h

#include <xorg-server.h>上記のファイルに追加し (各ファイルに含まれる他のファイルの上に配置しました)、次を再実行する必要があります。

$ ./autogen.sh $ ./configure --exec_prefix=/usr $ make $ sudo make install

これが正しいやり方かどうかは分かりませんが、私にとってはうまくいきました!

タッチパッドが機能しなくなっても私を責めないでください!

関連情報