summaryrefslogtreecommitdiffstats
path: root/meta/packages/dbus/dbus-1.2.14/tmpdir.patch
diff options
context:
space:
mode:
authorKevin Tian <kevin.tian@intel.com>2010-07-10 17:22:04 +0800
committerRichard Purdie <rpurdie@linux.intel.com>2010-07-13 15:21:45 +0100
commit67eeb71308e8307a99d12417dfb0fe8f016814da (patch)
tree1706a99abdce003edd62a683392b6661003777f5 /meta/packages/dbus/dbus-1.2.14/tmpdir.patch
parent85d83ab01bcb1ca9d5ba940ee84fa503f207a480 (diff)
downloadpoky-67eeb71308e8307a99d12417dfb0fe8f016814da.tar.gz
dbus: upgrade to 1.2.24
[Patches] REMOVE _cross.patch_: fixed in upstream KEEP _tmpdir.patch_: disable tmpdir test in build system UPDATE _fix-install-daemon.patch_: use automake for binary install instead of manual tweaks. extend it to cover dbus-daemon-launch-helper [Recipe] - remove native recipes and old versions - install to STAGING_DATADIR_NATIVE directly - remove manual tweak on dbus-daemon-launch-helper install - remove stale config options - adjust indention - enable dbus in runlevel 3 since networkmanager has requirement at that level - remove preferred versions in poky-fixed-revisions.inc. Based on discussion with Josh, the preferred version is there just because dbus is not carefully tested before Signed-off-by: Kevin Tian <kevin.tian@intel.com>
Diffstat (limited to 'meta/packages/dbus/dbus-1.2.14/tmpdir.patch')
-rw-r--r--meta/packages/dbus/dbus-1.2.14/tmpdir.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/meta/packages/dbus/dbus-1.2.14/tmpdir.patch b/meta/packages/dbus/dbus-1.2.14/tmpdir.patch
deleted file mode 100644
index 838b903f0a..0000000000
--- a/meta/packages/dbus/dbus-1.2.14/tmpdir.patch
+++ /dev/null
@@ -1,30 +0,0 @@
1--- dbus-0.22/configure.in.orig 2004-08-13 00:57:16.000000000 +0200
2+++ dbus-0.22/configure.in 2004-12-30 21:15:57.000000000 +0100
3@@ -1047,15 +1048,18 @@
4 AC_SUBST(ABSOLUTE_TOP_BUILDDIR)
5
6 #### Find socket directories
7-if ! test -z "$TMPDIR" ; then
8- DEFAULT_SOCKET_DIR=$TMPDIR
9-elif ! test -z "$TEMP" ; then
10- DEFAULT_SOCKET_DIR=$TEMP
11-elif ! test -z "$TMP" ; then
12- DEFAULT_SOCKET_DIR=$TMP
13-else
14- DEFAULT_SOCKET_DIR=/tmp
15-fi
16+#if ! test -z "$TMPDIR" ; then
17+# DEFAULT_SOCKET_DIR=$TMPDIR
18+#elif ! test -z "$TEMP" ; then
19+# DEFAULT_SOCKET_DIR=$TEMP
20+#elif ! test -z "$TMP" ; then
21+# DEFAULT_SOCKET_DIR=$TMP
22+#else
23+# DEFAULT_SOCKET_DIR=/tmp
24+#fi
25+
26+# checks disabled to avoid expanding this at build time
27+DEFAULT_SOCKET_DIR=/tmp
28
29 if ! test -z "$with_test_socket_dir" ; then
30 TEST_SOCKET_DIR="$with_test_socket_dir"