diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/dbus/dbus/0001-configure.ac-support-large-file-for-stat64.patch | 53 | ||||
-rw-r--r-- | meta/recipes-core/dbus/dbus_1.8.20.bb | 3 |
2 files changed, 56 insertions, 0 deletions
diff --git a/meta/recipes-core/dbus/dbus/0001-configure.ac-support-large-file-for-stat64.patch b/meta/recipes-core/dbus/dbus/0001-configure.ac-support-large-file-for-stat64.patch new file mode 100644 index 0000000000..bb73288609 --- /dev/null +++ b/meta/recipes-core/dbus/dbus/0001-configure.ac-support-large-file-for-stat64.patch | |||
@@ -0,0 +1,53 @@ | |||
1 | From e18bd3a571be716d90bedc835a014472470ae7bd Mon Sep 17 00:00:00 2001 | ||
2 | From: Hongxu Jia <hongxu.jia@windriver.com> | ||
3 | Date: Wed, 30 Dec 2015 10:58:39 +0800 | ||
4 | Subject: [PATCH] configure.ac: support large-file for stat64 | ||
5 | |||
6 | While starting dbus-daemon on a 32-bit linux host and it invokes | ||
7 | fstat to load /etc/dbus-1/system.conf through NFS. If system.conf | ||
8 | was created with a large indoe number on 64-bit host. The above | ||
9 | fstat invoking failed. Here is the log of strace: | ||
10 | ............ | ||
11 | $ ls -i /etc/dbus-1/system.conf | ||
12 | 53778558109 /etc/dbus-1/system.conf | ||
13 | |||
14 | $ strace /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation | ||
15 | |open("/etc/dbus-1/system.conf", O_RDONLY) = 4 | ||
16 | |fstat64(4, {st_mode=S_IFREG|0644, st_size=3340, ...}) = 0 | ||
17 | |close(4) = 0 | ||
18 | |close(3) = 0 | ||
19 | |write(2, "Failed to start message bus: Fai"..., 109Failed to start message bus: | ||
20 | Failed to stat "/etc/dbus-1/system.conf": Value too large for defined data type | ||
21 | |) = 109 | ||
22 | |exit_group(1) = ? | ||
23 | |+++ exited with 1 +++ | ||
24 | ............ | ||
25 | |||
26 | In this situation, we should support large-file for stat64. Add marco | ||
27 | AC_SYS_LARGEFILE to do the detection at configure time. It can be disabled | ||
28 | by configuring with the `--disable-largefile' option. | ||
29 | |||
30 | Upstream-Status: Submitted | ||
31 | |||
32 | Bug: https://bugs.freedesktop.org/show_bug.cgi?id=93545 | ||
33 | https://bugs.freedesktop.org/attachment.cgi?id=120747 | ||
34 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> | ||
35 | --- | ||
36 | configure.ac | 1 + | ||
37 | 1 file changed, 1 insertion(+) | ||
38 | |||
39 | diff --git a/configure.ac b/configure.ac | ||
40 | index 82806ba..cb5a60b 100644 | ||
41 | --- a/configure.ac | ||
42 | +++ b/configure.ac | ||
43 | @@ -64,6 +64,7 @@ AC_SUBST(DBUS_VERSION) | ||
44 | AC_PROG_CC | ||
45 | AM_PROG_CC_C_O | ||
46 | AC_PROG_CXX | ||
47 | +AC_SYS_LARGEFILE | ||
48 | AC_USE_SYSTEM_EXTENSIONS | ||
49 | AC_ISC_POSIX | ||
50 | AC_HEADER_STDC | ||
51 | -- | ||
52 | 1.9.1 | ||
53 | |||
diff --git a/meta/recipes-core/dbus/dbus_1.8.20.bb b/meta/recipes-core/dbus/dbus_1.8.20.bb index c0ad48b33c..0c7f6b1a21 100644 --- a/meta/recipes-core/dbus/dbus_1.8.20.bb +++ b/meta/recipes-core/dbus/dbus_1.8.20.bb | |||
@@ -17,6 +17,7 @@ SRC_URI = "http://dbus.freedesktop.org/releases/dbus/dbus-${PV}.tar.gz \ | |||
17 | file://dbus-1.init \ | 17 | file://dbus-1.init \ |
18 | file://os-test.patch \ | 18 | file://os-test.patch \ |
19 | file://clear-guid_from_server-if-send_negotiate_unix_f.patch \ | 19 | file://clear-guid_from_server-if-send_negotiate_unix_f.patch \ |
20 | file://0001-configure.ac-support-large-file-for-stat64.patch \ | ||
20 | " | 21 | " |
21 | 22 | ||
22 | SRC_URI[md5sum] = "b49890bbabedab3a1c3f4f73c7ff8b2b" | 23 | SRC_URI[md5sum] = "b49890bbabedab3a1c3f4f73c7ff8b2b" |
@@ -92,6 +93,7 @@ EXTRA_OECONF = "--disable-tests \ | |||
92 | EXTRA_OECONF_append_class-native = " --disable-selinux" | 93 | EXTRA_OECONF_append_class-native = " --disable-selinux" |
93 | 94 | ||
94 | PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)} \ | 95 | PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)} \ |
96 | ${@bb.utils.contains('DISTRO_FEATURES', 'largefile', 'largefile', '', d)} \ | ||
95 | ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11', '', d)}" | 97 | ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11', '', d)}" |
96 | PACKAGECONFIG_class-native = "" | 98 | PACKAGECONFIG_class-native = "" |
97 | PACKAGECONFIG_class-nativesdk = "" | 99 | PACKAGECONFIG_class-nativesdk = "" |
@@ -100,6 +102,7 @@ PACKAGECONFIG_class-nativesdk = "" | |||
100 | # systemd<->dbus | 102 | # systemd<->dbus |
101 | PACKAGECONFIG[systemd] = "--with-systemdsystemunitdir=${systemd_unitdir}/system/,--without-systemdsystemunitdir" | 103 | PACKAGECONFIG[systemd] = "--with-systemdsystemunitdir=${systemd_unitdir}/system/,--without-systemdsystemunitdir" |
102 | PACKAGECONFIG[x11] = "--with-x --enable-x11-autolaunch,--without-x --disable-x11-autolaunch, virtual/libx11 libsm" | 104 | PACKAGECONFIG[x11] = "--with-x --enable-x11-autolaunch,--without-x --disable-x11-autolaunch, virtual/libx11 libsm" |
105 | PACKAGECONFIG[largefile] = "--enable-largefile,--disable-largefile,," | ||
103 | 106 | ||
104 | do_install() { | 107 | do_install() { |
105 | autotools_do_install | 108 | autotools_do_install |