mirror of https://github.com/wb2osz/direwolf.git
Add message that hamlib is currently not supported on Windows.
This commit is contained in:
parent
7fcee202ba
commit
c7c60c4a35
7
config.c
7
config.c
|
@ -1740,6 +1740,13 @@ void config_init (char *fname, struct audio_s *p_audio_config,
|
||||||
#else
|
#else
|
||||||
text_color_set(DW_COLOR_ERROR);
|
text_color_set(DW_COLOR_ERROR);
|
||||||
dw_printf ("Config file line %d: %s with RIG is only available when hamlib support is enabled.\n", line, otname);
|
dw_printf ("Config file line %d: %s with RIG is only available when hamlib support is enabled.\n", line, otname);
|
||||||
|
#if __WIN32__
|
||||||
|
dw_printf ("Hamlib is not currently supported on Windows.\n");
|
||||||
|
#else
|
||||||
|
dw_printf ("You must rebuild direwolf with hamlib support.\n");
|
||||||
|
dw_printf ("See User Guide for details.\n");
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
Loading…
Reference in New Issue