mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-11-27 06:22:06 +00:00
Add hint message when compiled without getopt support (#697)
This commit is contained in:
parent
ef789ad3eb
commit
032700f4e1
1 changed files with 5 additions and 0 deletions
|
@ -1142,6 +1142,11 @@ print_help(fluid_settings_t *settings)
|
|||
|
||||
printf("Usage: \n");
|
||||
printf(" fluidsynth [options] [soundfonts] [midifiles]\n");
|
||||
#ifndef GETOPT_SUPPORT
|
||||
printf("\nNote:"
|
||||
"\n This version of fluidsynth was compiled without getopt support."
|
||||
"\n Thus, the long options are not supported.\n\n");
|
||||
#endif
|
||||
printf("Possible options:\n");
|
||||
printf(" -a, --audio-driver=[label]\n"
|
||||
" The name of the audio driver to use.\n"
|
||||
|
|
Loading…
Reference in a new issue