我克隆了使用的 git 存储库xbindkeys
:
git clone git://git.sv.gnu.org/xbindkeys.git
我想编译它。我怎样才能做到这一点?在哪里可以找到编译说明?
有哪些依赖关系?
答案1
下载后,当我运行./configure
命令时,它抱怨缺少 2 个库:
checking for XCreateWindow in -lX11... no
configure: WARNING: Xbindkeys depends on the X11 libraries!
checking for guile... no
configure: error: guile required but not found
我必须安装这两个包:
$ sudo apt-get install guile-1.8-dev tk-dev
后来一个典型的./configure
并且make
工作得很好。