summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/dbus/dbus-1.2.24/tmpdir.patch
blob: f5c22af1293a2a7faeb53f0d2da90a23f4512c74 (plain)
1
2
3
4
5

@media only all and (prefers-color-scheme: dark) {
.highlight .hll { background-color: #49483e }
.highlight .c { color: #75715e } /* Comment */
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
.highlight .k { color: #66d9ef } /* Keyword */
.highlight .l { color: #ae81ff } /* Literal */
.highlight .n { color: #f8f8f2 } /* Name */
.highlight .o { color: #f92672 } /* Operator */
.highlight .p { color: #f8f8f2 } /* Punctuation */
.highlight .ch { color: #75715e } /* Comment.Hashbang */
.highlight .cm { color: #75715e } /* Comment.Multiline */
.highlight .cp { color: #75715e } /* Comment.Preproc */
.highlight .cpf { color: #75715e } /* Comment.PreprocFile */
.highlight .c1 { color: #75715e } /* Comment.Single */
.highlight .cs { color: #75715e } /* Comment.Special */
.highlight .gd { color: #f92672 } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emp
# avoid to check tmp dir at build time. instead uses hard coded /tmp here
#
# comment added by Kevin Tian <kevin.tian@intel.com>

--- dbus-0.22/configure.in.orig	2004-08-13 00:57:16.000000000 +0200
+++ dbus-0.22/configure.in	2004-12-30 21:15:57.000000000 +0100
@@ -1047,15 +1048,18 @@
 AC_SUBST(ABSOLUTE_TOP_BUILDDIR)
 
 #### Find socket directories
-if ! test -z "$TMPDIR" ; then
-   DEFAULT_SOCKET_DIR=$TMPDIR
-elif ! test -z "$TEMP" ; then
-   DEFAULT_SOCKET_DIR=$TEMP
-elif ! test -z "$TMP" ; then
-   DEFAULT_SOCKET_DIR=$TMP
-else
-   DEFAULT_SOCKET_DIR=/tmp
-fi
+#if ! test -z "$TMPDIR" ; then
+#   DEFAULT_SOCKET_DIR=$TMPDIR
+#elif ! test -z "$TEMP" ; then
+#   DEFAULT_SOCKET_DIR=$TEMP
+#elif ! test -z "$TMP" ; then
+#   DEFAULT_SOCKET_DIR=$TMP
+#else
+#   DEFAULT_SOCKET_DIR=/tmp
+#fi
+
+# checks disabled to avoid expanding this at build time
+DEFAULT_SOCKET_DIR=/tmp
 
 if ! test -z "$with_test_socket_dir" ; then
    TEST_SOCKET_DIR="$with_test_socket_dir"