Changeset 3efb631
- Timestamp:
- Dec 12, 2018, 2:15:51 PM (6 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/crepe, fix/ffmpeg5, master
- Children:
- dc46037b
- Parents:
- 6b84d81
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/wscript_build
r6b84d81 r3efb631 12 12 uselib += ['AVRESAMPLE'] 13 13 uselib += ['AVUTIL'] 14 uselib += ['VORBISENC'] 14 15 uselib += ['BLAS'] 15 16 -
wscript
r6b84d81 r3efb631 67 67 help_str = 'compile with libavcodec (auto)', 68 68 help_disable_str = 'disable libavcodec') 69 add_option_enable_disable(ctx, 'vorbis', default = None, 70 help_str = 'compile with libvorbis (auto)', 71 help_disable_str = 'disable libvorbis') 69 72 add_option_enable_disable(ctx, 'samplerate', default = None, 70 73 help_str = 'compile with samplerate (auto)', … … 429 432 ctx.define('HAVE_AVRESAMPLE', 1) 430 433 ctx.define('HAVE_LIBAV', 1) 434 435 # check for vorbisenc 436 if (ctx.options.enable_vorbis != False): 437 ctx.check_cfg(package = 'vorbisenc', 438 args = '--cflags --libs', 439 uselib_store = 'VORBISENC', 440 mandatory = ctx.options.enable_vorbis) 431 441 432 442 if (ctx.options.enable_wavread != False):
Note: See TracChangeset
for help on using the changeset viewer.