Home | History | Annotate | Download | only in libvpx

Lines Matching refs:enabled

46   Codecs can be selectively enabled or disabled individually, or by family:
130 # all targets available are enabled, by default.
149 # to be enabled when doing dist builds, since that's no longer a common
151 enabled doxygen && php -v >/dev/null 2>&1 && enable install_docs
167 if ! enabled alt_tree_layout; then
311 # If the codec family is enabled, enable all components of that family.
315 enabled ${c%%_*} && enable ${c}
321 # Enable the codec family if any component of that family is enabled
323 enabled $c && enable ${c%_*}
326 # Set the {en,de}coders variable if any algorithm in that class is enabled
328 enabled ${c} && enable ${c##*_}s
334 enabled child || write_common_config_banner
335 enabled universal || write_common_target_config_h ${BUILD_PFX}vpx_config.h
341 if enabled universal; then
352 enabled universal && echo "FAT_ARCHS=${fat_bin_archs}" >> config.mk
354 # Calculate the default distribution name, based on the enabled features
358 if enabled ${cf}_encoder && enabled ${cf}_decoder; then
360 elif enabled ${cf}_encoder; then
362 elif enabled ${cf}_decoder; then
366 enabled debug_libs && DIST_DIR="${DIST_DIR}-debug"
367 enabled codec_srcs && DIST_DIR="${DIST_DIR}-src"
368 ! enabled postproc && DIST_DIR="${DIST_DIR}-nopost"
369 ! enabled multithread && DIST_DIR="${DIST_DIR}-nomt"
370 ! enabled install_docs && DIST_DIR="${DIST_DIR}-nodocs"
373 win*) enabled static_msvcrt && DIST_DIR="${DIST_DIR}mt" || DIST_DIR="${DIST_DIR}md"
388 enabled child || cat <<EOF >> config.mk
406 enabled child || echo "CONFIGURE_ARGS?=${CONFIGURE_ARGS}" >> config.mk
409 # Write makefiles for all enabled targets
414 if enabled $tgt; then
424 if enabled shared; then
428 enabled linux || die "--enable-shared only supported on ELF for now"
486 if enabled gcc; then
487 enabled werror && check_add_cflags -Werror
494 enabled extra_warnings || check_add_cflags -Wno-unused-function
497 if enabled icc; then
498 enabled werror && check_add_cflags -Werror
514 enabled gcc && EXTRA_WARNINGS="${GCC_EXTRA_WARNINGS}"
518 enabled rvct && EXTRA_WARNINGS="${RVCT_EXTRA_WARNINGS}"
519 if enabled extra_warnings; then
522 enabled gcc && enabled werror && check_add_cflags -Wno-error=${w}
527 enabled gcc || soft_disable ccache
528 if enabled mips; then
545 if enabled postproc_visualizer; then
546 enabled postproc || die "postproc_visualizer requires postproc to be enabled"