Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 ,y C 应用程序中使用 gconf/gconf-client.h,但我不知道,用户机器上是否有 gconf。我如何在那里检查 gconf/gconf-client.h 和 gconf?
谢谢
如果代码编译,那么它可能已经安装了。否则,您可以下载该软件包并安装它。
如果使用pkg-config --cflags gconf-2.0and编译,如果PKG_CONFIG_PATH中不存在包,gcc会给出相应的错误。
pkg-config --cflags gconf-2.0
使用 pkg 配置。把它放在你的configure.ac:
configure.ac
PKG_CHECK_MODULES([MYAPPLICATION], [gtk+-2.0 gconf-2.0])
事实上,你应该已经有一条这样的线。只需添加gconf-2.0它。
gconf-2.0