Changes in / [171ae68:cf4bc9f]
- Files:
-
- 2 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
.circleci/config.yml
r171ae68 rcf4bc9f 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 libvorbis-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 libflac-dev 6 6 7 7 pip-install: &pip-install -
.travis.yml
r171ae68 rcf4bc9f 63 63 - libsamplerate-dev 64 64 - libvorbis-dev 65 - libflac-dec 65 66 - libjack-dev 66 67 - libasound2-dev … … 74 75 - libsndfile 75 76 - libvorbis 77 - flac 76 78 - lcov 77 79 #update: true -
azure-pipelines.yml
r171ae68 rcf4bc9f 30 30 brew update 31 31 brew install pkg-config gnupg 32 brew install sox ffmpeg libsndfile libvorbis lcov32 brew install sox ffmpeg libsndfile libvorbis flac lcov 33 33 displayName: 'brew install' 34 34 - script: | -
src/wscript_build
r171ae68 rcf4bc9f 13 13 uselib += ['AVUTIL'] 14 14 uselib += ['VORBISENC'] 15 uselib += ['FLAC'] 15 16 uselib += ['BLAS'] 16 17 -
wscript
r171ae68 rcf4bc9f 70 70 help_str = 'compile with libvorbis (auto)', 71 71 help_disable_str = 'disable libvorbis') 72 add_option_enable_disable(ctx, 'flac', default = None, 73 help_str = 'compile with libFLAC (auto)', 74 help_disable_str = 'disable libflac') 72 75 add_option_enable_disable(ctx, 'samplerate', default = None, 73 76 help_str = 'compile with samplerate (auto)', … … 439 442 uselib_store = 'VORBISENC', 440 443 mandatory = ctx.options.enable_vorbis) 444 445 # check for flac 446 if (ctx.options.enable_flac != False): 447 ctx.check_cfg(package = 'flac', 448 args = '--cflags --libs', 449 uselib_store = 'FLAC', 450 mandatory = ctx.options.enable_flac) 441 451 442 452 if (ctx.options.enable_wavread != False):
Note: See TracChangeset
for help on using the changeset viewer.