diff options
author | Axel Lin <axel.lin@ingics.com> | 2013-12-12 11:11:45 +0800 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2013-12-12 23:24:21 +0100 |
commit | 434d31d66e2248f23a9c8353f6880de4dd1b2d18 (patch) | |
tree | 5e1311e4f20c98946d9ff993f7f1c3842f41ab54 /package/spice/spice-0001-fix-missing-monitor_latency-argument.patch | |
parent | 2a3311dbe86138ca711966a502f25bc34de28c3b (diff) | |
download | buildroot-434d31d66e2248f23a9c8353f6880de4dd1b2d18.tar.gz buildroot-434d31d66e2248f23a9c8353f6880de4dd1b2d18.zip |
spice: bump to version 0.12.4
According to the ChangeLog, spice needs glib2 since 0.12.2.
Thus add libglib2 dependency to fix build error if !BR2_PACKAGE_LIBGLIB2.
Also add a patch to fix trivial build error.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/spice/spice-0001-fix-missing-monitor_latency-argument.patch')
-rw-r--r-- | package/spice/spice-0001-fix-missing-monitor_latency-argument.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/package/spice/spice-0001-fix-missing-monitor_latency-argument.patch b/package/spice/spice-0001-fix-missing-monitor_latency-argument.patch new file mode 100644 index 0000000000..e14dd2ce37 --- /dev/null +++ b/package/spice/spice-0001-fix-missing-monitor_latency-argument.patch @@ -0,0 +1,28 @@ +From 0d3767853ca179ce04a9b312d7a30d33d1266a3b Mon Sep 17 00:00:00 2001 +From: Axel Lin <axel.lin@ingics.com> +Date: Thu, 10 Oct 2013 12:36:40 +0800 +Subject: [PATCH] red_tunnel_worker: Fix build error due to missing monitor_latency argument + +Fix missing monitor_latency argument in red_channel_client_create call. + +Signed-off-by: Axel Lin <axel.lin@ingics.com> +--- + server/red_tunnel_worker.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/server/red_tunnel_worker.c b/server/red_tunnel_worker.c +index 97dcafd..6781d73 100644 +--- a/server/red_tunnel_worker.c ++++ b/server/red_tunnel_worker.c +@@ -3417,7 +3417,7 @@ static void handle_tunnel_channel_link(RedChannel *channel, RedClient *client, + } + + tcc = (TunnelChannelClient*)red_channel_client_create(sizeof(TunnelChannelClient), +- channel, client, stream, ++ channel, client, stream, FALSE, + 0, NULL, 0, NULL); + if (!tcc) { + return; +-- +1.8.1.2 + |