Changes in examples/parse_args.h [c4d014a:e8fcc9a]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
examples/parse_args.h
rc4d014a re8fcc9a 116 116 " do not fail if output file already exists\n" 117 117 #endif /* PROG_HAS_OUTPUT */ 118 #if def PROG_HAS_JACK118 #if defined(PROG_HAS_JACK) && defined(HAVE_JACK) 119 119 " -j --jack use Jack\n" 120 120 #if defined(PROG_HAS_ONSET) && !defined(PROG_HAS_PITCH) … … 122 122 " -V --miditap-velo MIDI velocity; default=65.\n" 123 123 #endif /* defined(PROG_HAS_ONSET) && !defined(PROG_HAS_PITCH) */ 124 #endif /* PROG_HAS_JACK*/124 #endif /* defined(PROG_HAS_JACK) && defined(HAVE_JACK) */ 125 125 " -v --verbose be verbose\n" 126 126 " -h --help display this message\n" … … 314 314 #else 315 315 errmsg("Error: no arguments given (and no available audio input)\n"); 316 usage ( stderr, 1 ); 316 errmsg(" consider recompiling with jack support (--enable-jack)\n"); 317 exit ( 1 ); 317 318 #endif /* HAVE_JACK */ 318 319 #else
Note: See TracChangeset
for help on using the changeset viewer.