Changes in wscript [2d64a24:4ed1e47]
Legend:
- Unmodified
- Added
- Removed
-
wscript
r2d64a24 r4ed1e47 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 vorbis ogg', 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.