将 Dwm 编译为 Arch Linux。 Xft.h 丢失?

将 Dwm 编译为 Arch Linux。 Xft.h 丢失?

尝试在 Arch Linux 上编译 Dwm Tile Manager(使用 Xorg )当前会产生以下错误(原始附件):

dwm build options:
CFLAGS   = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os -I/usr/include/X11 -I/usr/include/freetype2 -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE=200809L -DVERSION="6.2" -DXINERAMA
LDFLAGS  = -L/usr/lib -lX11 -lXinerama -lfontconfig -lXft
CC       = cc
cc -c -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os -I/usr/include/X11 -I/usr/include/freetype2 -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE=200809L -DVERSION=\"6.2\" -DXINERAMA drw.c
drw.c:6:10: fatal error: X11/Xft/Xft.h: No such file or directory
    6 | #include <X11/Xft/Xft.h>
      |          ^~~~~~~~~~~~~~~
compilation terminated.
make: *** [Makefile:18: drw.o] Error 1

这是否表明Xft.h编译Dwm需要该库?

Arch Linux 包管理器无法安装 Xorg-server(其中包含Xft.h),留下此密钥环错误(原始附件):

resolving dependencies...
looking for conflicting packages...
warning: dependency cycle detected:
warning: harfbuzz will be installed before its freetype2 dependency

Packages (21) freetype2-2.10.2-1  graphite-1:1.3.14-1  harfbuzz-2.7.2-1  libepoxy-1.5.4-2  libevdev-1.9.1-1  libfontenc-1.1.4-3  libgudev-234-1  libinput-1.16.1-1  libpng-1.6.37-3  libwacom-1.5-1  libxfont2-2.0.4-3  libxkbfile-1.1.0-2  mtdev-1.1.6-1  pixman-0.40.0-1  xf86-input-libinput-0.30.0-1  xkeyboard-config-2.30-2  xorg-fonts-encodings-1.0.5-2  xorg-server-common-1.20.9-2  xorg-setxkbmap-1.3.2-2  xorg-xkbcomp-1.4.3-1  xorg-server-1.20.9-2

Total Installed Size:  23.80 MiB

:: Proceed with installation? [Y/n] checking keyring...
downloading required keys...
:: Import PGP key 3B94A80E50A477C7, "Jan Alexander Steffens (heftig) <[email protected]>"? [Y/n] error: key "3B94A80E50A477C7" could not be looked up remotely
error: required key missing from keyring
error: failed to commit transaction (unexpected error)
Errors occurred, no packages were upgraded.

我可以通过其他方式获取吗Xft.h

答案1

是的,编译器抱怨无法X11/Xft/Xft.h在系统上的包含目录中找到。

您可以查询 pacman 的文件数据库以了解哪些软件包(包括未安装的软件包)提供了文件:

sudo pacman -Fy    # the database likely needs to be refreshed
pacman -F Xft.h

或者,如果您安装了功能更丰富的软件pkgfile(它维护自己的文件数据库):

pkgfile Xft.h

两者都会告诉您这usr/include/X11/Xft/Xft.h是由 提供的libxft

请注意,您还可以利用现有的软件包:dwm 存在于 AUR 中而且,即使您需要编译自己的版本,您仍然可以查看PKGBUILD此处提供的文件中声明的依赖项(“depends”、“makedepends”)。

有关问题的报告[电子邮件受保护]过去几个月里,gpg 密钥在 Arch Linux 论坛上出现了不止一次[1] [2]。如果您的archlinux-keyring软件包是最新的,并且您仍然看到与缺少密钥相关的错误,您可以尝试导入该密钥3B94A80E50A477C7恰好是以下项的子密钥:

sudo gpg --recv-keys --keyserver hkp://pool.sks-keyservers.net \
  --homedir /etc/pacman.d/gnupg 19802F8B0D70FC30

相关内容