如何在 Raspberry Pi 10 (Buster) 上安装 libsuinput

How do I install libsuinput on Raspberry Pi 10 (Buster)

我正在做一个需要 libsuinput 的项目

https://github.com/tuomasjjrasanen/libsuinput

我已经下载了它,但是当我按照自述文件中的说明进行操作时

只需运行以下命令:

./configure && make && make install

我收到以下错误

bash: ./configure: No such file or directory

说明再简单不过了,但就是行不通。我是不是遗漏了什么或者模块与最新版本的 Raspberry Pi 不兼容?

您需要先 运行 ./autogen.sh - 它会调用 autoreconf 创建 configure 脚本。

如果你得到:

pi@raspberrypi:~/libsuinput $ ./autogen.sh
aclocal: warning: couldn't open directory 'm4': No such file or directory
configure.ac:9: error: possibly undefined macro: AC_PROG_LIBTOOL
      If this token and others are legitimate, please use m4_pattern_allow.
      See the Autoconf documentation.
autoreconf: /usr/bin/autoconf failed with exit status: 1

安装 libtool:

sudo apt-get -y install libtool