summaryrefslogtreecommitdiffstats
path: root/recipes-support/spice/files/build-allow-separated-src-and-build-dirs.patch
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@gmail.com>2024-10-12 01:40:06 +0000
committerBruce Ashfield <bruce.ashfield@gmail.com>2024-10-12 01:40:06 +0000
commit12538d64862366eb365ed5f8a67fbb082bae1620 (patch)
treeb8c84a351545aafe56e861d63c7f30bf0488db3e /recipes-support/spice/files/build-allow-separated-src-and-build-dirs.patch
parenta35cc3d3aac992362f77d7ed0bbedf473a9aab13 (diff)
downloadmeta-cloud-services-12538d64862366eb365ed5f8a67fbb082bae1620.tar.gz
spice: remove recipe
meta-oe has a more updated version. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'recipes-support/spice/files/build-allow-separated-src-and-build-dirs.patch')
-rw-r--r--recipes-support/spice/files/build-allow-separated-src-and-build-dirs.patch62
1 files changed, 0 insertions, 62 deletions
diff --git a/recipes-support/spice/files/build-allow-separated-src-and-build-dirs.patch b/recipes-support/spice/files/build-allow-separated-src-and-build-dirs.patch
deleted file mode 100644
index 9cbbff9..0000000
--- a/recipes-support/spice/files/build-allow-separated-src-and-build-dirs.patch
+++ /dev/null
@@ -1,62 +0,0 @@
1From 7d0d0ff080b159e647ebb26c337cb75314d64b52 Mon Sep 17 00:00:00 2001
2From: Mark Asselstine <mark.asselstine@windriver.com>
3Date: Thu, 1 May 2014 12:09:16 -0400
4Subject: [PATCH] build: allow separated src and build dirs
5
6We need to expland the list of include dirs to include the build dir since
7generated files will be created there instead of in the src dir.
8
9We also don't want to force using $srcdir for generated files as this will
10allow them to be created in the build dir. We account for the slight
11deviation in the generated files with expanded include paths.
12
13Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
14---
15 configure.ac | 2 +-
16 spice-common/common/Makefile.am | 14 +++++++-------
17 2 file changed, 8 insertions(+), 8 deletions(-)
18
19diff --git a/configure.ac b/configure.ac
20index edda8e9..9151fcb 100644
21--- a/configure.ac
22+++ b/configure.ac
23@@ -165,7 +165,7 @@ dnl =========================================================================
24 dnl Check deps
25
26 AC_CONFIG_SUBDIRS([spice-common])
27-COMMON_CFLAGS='-I ${top_srcdir}/spice-common/ -I ${top_srcdir}/spice-common/spice-protocol/'
28+COMMON_CFLAGS='-I ${top_srcdir}/spice-common/ -I ${top_srcdir}/spice-common/common/ -I ${top_srcdir}/spice-common/spice-protocol/ -I ${top_builddir}/spice-common/'
29 AC_SUBST(COMMON_CFLAGS)
30
31 AC_CHECK_LIBM
32diff --git a/spice-common/common/Makefile.am b/spice-common/common/Makefile.am
33index 45568c6..4c65ac4 100644
34--- a/spice-common/common/Makefile.am
35+++ b/spice-common/common/Makefile.am
36@@ -2,16 +2,16 @@ NULL =
37
38 # Avoid need for python(pyparsing) by end users
39 CLIENT_MARSHALLERS = \
40- $(srcdir)/generated_client_demarshallers.c \
41- $(srcdir)/generated_client_demarshallers1.c \
42- $(srcdir)/generated_client_marshallers.c \
43- $(srcdir)/generated_client_marshallers1.c \
44+ generated_client_demarshallers.c \
45+ generated_client_demarshallers1.c \
46+ generated_client_marshallers.c \
47+ generated_client_marshallers1.c \
48 $(NULL)
49
50 SERVER_MARSHALLERS = \
51- $(srcdir)/generated_server_demarshallers.c \
52- $(srcdir)/generated_server_marshallers.c \
53- $(srcdir)/generated_server_marshallers.h \
54+ generated_server_demarshallers.c \
55+ generated_server_marshallers.c \
56+ generated_server_marshallers.h \
57 $(NULL)
58
59 BUILT_SOURCES = $(CLIENT_MARSHALLERS) $(SERVER_MARSHALLERS) $(top_srcdir)/spice-protocol/spice/enums.h
60--
611.8.3.2
62