Dbus mainloop.h 缺失错误

发布于 2024-11-17 04:00:12 字数 331 浏览 2 评论 0原文

我曾经

gcc `pkg-config --cflags --libs dbus-1` hello-serv.c  -o server

编译 dbus 程序并收到错误:

hello-serv.c:7:32: fatal error: dbus/dbus-mainloop.h: No such file or directory
compilation terminated.

我正在使用 C 低级 API 进行开发。

我在任何包含目录中都找不到 mainloop.h

I used

gcc `pkg-config --cflags --libs dbus-1` hello-serv.c  -o server

to compile a dbus program and getting error:

hello-serv.c:7:32: fatal error: dbus/dbus-mainloop.h: No such file or directory
compilation terminated.

I'm developing in C low level API.

I couldn't find the mainloop.h in any of the include directories.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

忆伤 2024-11-24 04:00:12

如果dbus开发文件安装正确,
安装的 dbus 可能是旧的
这样它就没有 dbus-mainloop.h

如果您有 yum,请尝试检查 dbus-mainloop.h 是否提供。

# yum provides '*/dbus-mainloop.h'

如果没有返回,则应查阅 dbus-document 以获取相应的版本。

If dbus development files is installed correctly,
the installed dbus might be old
so that it does not have dbus-mainloop.h

If you have yum, try this to check dbus-mainloop.h is provided or not.

# yum provides '*/dbus-mainloop.h'

If it returns none, you should consult with dbus-document for corresponding version.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文