diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2018-02-02 07:45:46 +0100 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2018-02-09 05:05:11 +0100 |
commit | 637b047717fdeb6ffcd2fe7dff691a53f3804f42 (patch) | |
tree | 1eec57c6e8d18de6fc04967fb6d87ade8f7db752 /ui | |
parent | 008a51bbb343972dd8cf09126da8c3b87f4e1c96 (diff) | |
download | qemu-637b047717fdeb6ffcd2fe7dff691a53f3804f42.zip qemu-637b047717fdeb6ffcd2fe7dff691a53f3804f42.tar.gz qemu-637b047717fdeb6ffcd2fe7dff691a53f3804f42.tar.bz2 |
vnc: use stubs for CONFIG_VNC=n dummy functions
Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Message-Id: <20180202064546.21746-1-kraxel@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'ui')
-rw-r--r-- | ui/Makefile.objs | 1 | ||||
-rw-r--r-- | ui/vnc-stubs.c | 21 |
2 files changed, 22 insertions, 0 deletions
diff --git a/ui/Makefile.objs b/ui/Makefile.objs index 9919588..ced7d91 100644 --- a/ui/Makefile.objs +++ b/ui/Makefile.objs @@ -15,6 +15,7 @@ common-obj-$(CONFIG_SDL) += sdl.mo common-obj-$(CONFIG_COCOA) += cocoa.o common-obj-$(CONFIG_CURSES) += curses.o common-obj-$(CONFIG_VNC) += $(vnc-obj-y) +common-obj-$(call lnot,$(CONFIG_VNC)) += vnc-stubs.o common-obj-$(CONFIG_GTK) += gtk.o common-obj-$(if $(CONFIG_WIN32),n,$(if $(CONFIG_SDL),y,$(CONFIG_GTK))) += x_keymap.o diff --git a/ui/vnc-stubs.c b/ui/vnc-stubs.c new file mode 100644 index 0000000..f512805 --- /dev/null +++ b/ui/vnc-stubs.c @@ -0,0 +1,21 @@ +#include "qemu/osdep.h" +#include "ui/console.h" + +int vnc_display_password(const char *id, const char *password) +{ + return -ENODEV; +} +int vnc_display_pw_expire(const char *id, time_t expires) +{ + return -ENODEV; +}; +QemuOpts *vnc_parse(const char *str, Error **errp) +{ + error_setg(errp, "VNC support is disabled"); + return NULL; +} +int vnc_init_func(void *opaque, QemuOpts *opts, Error **errp) +{ + error_setg(errp, "VNC support is disabled"); + return -1; +} |