mirror of https://github.com/xqemu/xqemu.git
curses: curses_display_init() stub
One less #ifdef in vl.c. Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
This commit is contained in:
parent
f8c75b2486
commit
674ec68693
|
@ -466,7 +466,16 @@ static inline char *vnc_display_local_addr(const char *id)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* curses.c */
|
/* curses.c */
|
||||||
|
#ifdef CONFIG_CURSES
|
||||||
void curses_display_init(DisplayState *ds, int full_screen);
|
void curses_display_init(DisplayState *ds, int full_screen);
|
||||||
|
#else
|
||||||
|
static inline void curses_display_init(DisplayState *ds, int full_screen)
|
||||||
|
{
|
||||||
|
/* This must never be called if CONFIG_CURSES is disabled */
|
||||||
|
error_report("curses support is disabled");
|
||||||
|
abort();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
/* input.c */
|
/* input.c */
|
||||||
int index_from_key(const char *key, size_t key_length);
|
int index_from_key(const char *key, size_t key_length);
|
||||||
|
|
2
vl.c
2
vl.c
|
@ -4540,11 +4540,9 @@ int main(int argc, char **argv, char **envp)
|
||||||
case DT_NOGRAPHIC:
|
case DT_NOGRAPHIC:
|
||||||
(void)ds; /* avoid warning if no display is configured */
|
(void)ds; /* avoid warning if no display is configured */
|
||||||
break;
|
break;
|
||||||
#if defined(CONFIG_CURSES)
|
|
||||||
case DT_CURSES:
|
case DT_CURSES:
|
||||||
curses_display_init(ds, full_screen);
|
curses_display_init(ds, full_screen);
|
||||||
break;
|
break;
|
||||||
#endif
|
|
||||||
#if defined(CONFIG_SDL)
|
#if defined(CONFIG_SDL)
|
||||||
case DT_SDL:
|
case DT_SDL:
|
||||||
sdl_display_init(ds, full_screen, no_frame);
|
sdl_display_init(ds, full_screen, no_frame);
|
||||||
|
|
Loading…
Reference in New Issue