summary refs log tree commit diff stats
path: root/net
diff options
context:
space:
mode:
Diffstat (limited to 'net')
-rw-r--r--net/colo-stubs.c7
-rw-r--r--net/meson.build2
2 files changed, 9 insertions, 0 deletions
diff --git a/net/colo-stubs.c b/net/colo-stubs.c
new file mode 100644
index 0000000000..ec726665be
--- /dev/null
+++ b/net/colo-stubs.c
@@ -0,0 +1,7 @@
+#include "qemu/osdep.h"
+#include "qemu/notify.h"
+#include "net/colo-compare.h"
+
+void colo_compare_cleanup(void)
+{
+}
diff --git a/net/meson.build b/net/meson.build
index 9432a588e4..e0cd71470e 100644
--- a/net/meson.build
+++ b/net/meson.build
@@ -20,6 +20,8 @@ if get_option('replication').allowed() or \
     get_option('colo_proxy').allowed()
   system_ss.add(files('colo-compare.c'))
   system_ss.add(files('colo.c'))
+else
+  system_ss.add(files('colo-stubs.c'))
 endif
 
 if get_option('colo_proxy').allowed()