7c45bec07c
spice-protocol as available in fedora 15 is missing a #include <stdint.h> which breaks the build of the controller
21 lines
452 B
Diff
21 lines
452 B
Diff
--- a/gtk/controller/controller.c
|
|
+++ b/gtk/controller/controller.c
|
|
@@ -15,6 +15,7 @@
|
|
|
|
#include <glib.h>
|
|
#include <glib-object.h>
|
|
+#include <stdint.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <spice/controller_prot.h>
|
|
--- a/gtk/controller/menu.c
|
|
+++ b/gtk/controller/menu.c
|
|
@@ -15,6 +15,7 @@
|
|
|
|
#include <glib.h>
|
|
#include <glib-object.h>
|
|
+#include <stdint.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <spice/controller_prot.h>
|