能说会道:能说会道 2.5 安装问题

glib : glib 2.5 installation issue

我正在使用内核版本 2.6.32 开发 Red Hat 6,我正在尝试在我的机器上构建 glib 2.5。并因以下错误而失败:-

日志:-

../../gio/gfile.c: In function ‘splice_stream_with_progress’:
../../gio/gfile.c:3019: error: ‘F_SETPIPE_SZ’ undeclared (first use in this function)
../../gio/gfile.c:3019: error: (Each undeclared identifier is reported only once
../../gio/gfile.c:3019: error: for each function it appears in.)
../../gio/gfile.c:3023: error: ‘F_GETPIPE_SZ’ undeclared (first use in this function)
make[4]: *** [libgio_2_0_la-gfile.lo] Error 1

我可以在 F_SETPIPE_SZ undeclared 找到解决方案,将 #define _GNU_SOURCE 放在文件 gfile.c 中的所有包含之前,但它没有用。正如第二个答案中提到的:较旧的内核(例如 RHEL6 中使用的 2.6.32)没有它们,我们需要在您构建的任何内容中绕过它。我们怎么能这样做?

感谢您的帮助。

提前致谢。

此 bug 已修复。

architectures without F_SETPIPE_SZ and F_GETPIPE_SZ such as or1k. If those variables are undefined, put back previous behavior, buffer size set to 1024 * 64

https://gitlab.gnome.org/GNOME/glib/-/commit/0beb62f564072f3585762c9c55fe894485993b62

您可以将补丁应用于您的代码。