Skip to content

Commit c7c60c4

Browse files
committed
Add message that hamlib is currently not supported on Windows.
1 parent 7fcee20 commit c7c60c4

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

config.c

+7
Original file line numberDiff line numberDiff line change
@@ -1740,6 +1740,13 @@ void config_init (char *fname, struct audio_s *p_audio_config,
17401740
#else
17411741
text_color_set(DW_COLOR_ERROR);
17421742
dw_printf ("Config file line %d: %s with RIG is only available when hamlib support is enabled.\n", line, otname);
1743+
#if __WIN32__
1744+
dw_printf ("Hamlib is not currently supported on Windows.\n");
1745+
#else
1746+
dw_printf ("You must rebuild direwolf with hamlib support.\n");
1747+
dw_printf ("See User Guide for details.\n");
1748+
#endif
1749+
17431750
#endif
17441751
}
17451752
else {

0 commit comments

Comments
 (0)