我一直在尝试使用此github项目https://github.com/glindste/xwobf安装xwobf
以使用i3lock
。但它不起作用,关于github讨论和README.md的信息很少。你能帮我试试吗?我试图克隆存储库,然后尝试make
然后make install
,但它会抛出此错误:
cc -Wall -std=c99 `pkg-config --cflags MagickWand xcb` -O3 -c xwobf.c
Package MagickWand was not found in the pkg-config search path.
Perhaps you should add the directory containing `MagickWand.pc'
to the PKG_CONFIG_PATH environment variable
No package 'MagickWand' found
Package xcb was not found in the pkg-config search path.
Perhaps you should add the directory containing `xcb.pc'
to the PKG_CONFIG_PATH environment variable
No package 'xcb' found
xwobf.c:28:21: fatal error: xcb/xcb.h: Aucun fichier ou dossier de ce type
#include <xcb/xcb.h>
^
compilation terminated.
make: *** [xwobf.o] Erreur 1
所以我试图下载MagickWand和XCB,但总是有错误。 感谢您阅读本文。
编辑:
我设法安装了好的库:libmagickwand-dev
所以我没有那么多错误。但我现在只有一个:
cc -Wall -std=c99 `pkg-config --cflags MagickWand xcb` -O3 -c xwobf.c
xwobf.c:29:35: fatal error: MagickWand/MagickWand.h: Aucun fichier ou
dossier de ce type
#include <MagickWand/MagickWand.h>
^
compilation terminated.
make: *** [xwobf.o] Erreur 1