Changes in wscript [e836160:e625579]
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified wscript ¶
re836160 re625579 73 73 help_str = 'compile with libavcodec (auto)', 74 74 help_disable_str = 'disable libavcodec') 75 add_option_enable_disable(ctx, 'vorbis', default = None,76 help_str = 'compile with libvorbis (auto)',77 help_disable_str = 'disable libvorbis')78 add_option_enable_disable(ctx, 'flac', default = None,79 help_str = 'compile with libFLAC (auto)',80 help_disable_str = 'disable libflac')81 75 add_option_enable_disable(ctx, 'samplerate', default = None, 82 76 help_str = 'compile with samplerate (auto)', 83 77 help_disable_str = 'disable samplerate') 78 add_option_enable_disable(ctx, 'rubberband', default = None, 79 help_str = 'compile with rubberband (auto)', 80 help_disable_str = 'disable rubberband') 84 81 add_option_enable_disable(ctx, 'memcpy', default = True, 85 82 help_str = 'use memcpy hacks (default)', … … 141 138 'samplerate', 142 139 'jack', 140 'rubberband', 143 141 'avcodec', 144 142 'blas', 145 143 'fftw3', 146 144 'fftw3f', 147 'flac',148 'vorbis',149 145 ] 150 146 for d in external_deps: … … 417 413 mandatory = ctx.options.enable_samplerate) 418 414 415 # check for librubberband 416 if (ctx.options.enable_rubberband != False): 417 ctx.check_cfg(package = 'rubberband', atleast_version = '1.3', 418 args = '--cflags --libs', 419 mandatory = ctx.options.enable_rubberband) 420 419 421 # check for jack 420 422 if (ctx.options.enable_jack != False): … … 465 467 ctx.define('HAVE_AVRESAMPLE', 1) 466 468 ctx.define('HAVE_LIBAV', 1) 467 468 # check for vorbisenc469 if (ctx.options.enable_vorbis != False):470 ctx.check_cfg(package = 'vorbisenc vorbis ogg',471 args = '--cflags --libs',472 uselib_store = 'VORBISENC',473 mandatory = ctx.options.enable_vorbis)474 475 # check for flac476 if (ctx.options.enable_flac != False):477 ctx.check_cfg(package = 'flac',478 args = '--cflags --libs',479 uselib_store = 'FLAC',480 mandatory = ctx.options.enable_flac)481 469 482 470 if (ctx.options.enable_wavread != False):
Note: See TracChangeset
for help on using the changeset viewer.