summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/qxl.h3
-rw-r--r--src/qxl_driver.c3
2 files changed, 6 insertions, 0 deletions
diff --git a/src/qxl.h b/src/qxl.h
index 6a0138e..fdd2afd 100644
--- a/src/qxl.h
+++ b/src/qxl.h
@@ -96,6 +96,9 @@ typedef struct qxl_surface_t qxl_surface_t;
*/
enum {
+#ifdef XSPICE
+ OPTION_SPICE_PORT = 0,
+#endif
OPTION_COUNT,
};
diff --git a/src/qxl_driver.c b/src/qxl_driver.c
index 626b1bc..957661a 100644
--- a/src/qxl_driver.c
+++ b/src/qxl_driver.c
@@ -47,6 +47,9 @@
#define CHECK_POINT()
const OptionInfoRec DefaultOptions[] = {
+#ifdef XSPICE
+ { OPTION_SPICE_PORT, "SpicePort", OPTV_INTEGER, {5912}, FALSE },
+#endif
{ -1, NULL, OPTV_NONE, {0}, FALSE }
};