Changes in / [0512fca:40bdc14]
- Files:
-
- 2 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
.circleci/config.yml
r0512fca r40bdc14 3 3 command: | 4 4 sudo apt-get update 5 sudo apt-get -y install make sox pkg-config libavcodec-dev libavformat-dev libavresample-dev libavutil-dev libsndfile1-dev libsamplerate-dev 5 sudo apt-get -y install make sox pkg-config libavcodec-dev libavformat-dev libavresample-dev libavutil-dev libsndfile1-dev libsamplerate-dev libvorbis-dev 6 6 7 7 pip-install: &pip-install -
.travis.yml
r0512fca r40bdc14 58 58 - libsndfile1-dev 59 59 - libsamplerate-dev 60 - libvorbis-dev 60 61 - libjack-dev 61 62 - libasound2-dev … … 68 69 - ffmpeg 69 70 - libsndfile 71 - libvorbis 70 72 - lcov 71 73 #update: true -
azure-pipelines.yml
r0512fca r40bdc14 30 30 brew update 31 31 brew install pkg-config gnupg 32 brew install sox ffmpeg libsndfile l cov32 brew install sox ffmpeg libsndfile libvorbis lcov 33 33 displayName: 'brew install' 34 34 - script: | -
src/wscript_build
r0512fca r40bdc14 12 12 uselib += ['AVRESAMPLE'] 13 13 uselib += ['AVUTIL'] 14 uselib += ['VORBISENC'] 14 15 uselib += ['BLAS'] 15 16 -
wscript
r0512fca r40bdc14 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.