| OLD | NEW |
| 1 #!/bin/sh | 1 #!/bin/sh |
| 2 ## | 2 ## |
| 3 ## configure | 3 ## configure |
| 4 ## | 4 ## |
| 5 ## This script is the front-end to the build system. It provides a similar | 5 ## This script is the front-end to the build system. It provides a similar |
| 6 ## interface to standard configure scripts with some extra bits for dealing | 6 ## interface to standard configure scripts with some extra bits for dealing |
| 7 ## with toolchains that differ from the standard POSIX interface and | 7 ## with toolchains that differ from the standard POSIX interface and |
| 8 ## for extracting subsets of the source tree. In theory, reusable parts | 8 ## for extracting subsets of the source tree. In theory, reusable parts |
| 9 ## of this script were intended to live in build/make/configure.sh, | 9 ## of this script were intended to live in build/make/configure.sh, |
| 10 ## but in practice, the line is pretty blurry. | 10 ## but in practice, the line is pretty blurry. |
| (...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 stdint_h | 274 stdint_h |
| 275 alt_tree_layout | 275 alt_tree_layout |
| 276 pthread_h | 276 pthread_h |
| 277 sys_mman_h | 277 sys_mman_h |
| 278 unistd_h | 278 unistd_h |
| 279 " | 279 " |
| 280 EXPERIMENT_LIST=" | 280 EXPERIMENT_LIST=" |
| 281 spatial_svc | 281 spatial_svc |
| 282 vp9_temporal_denoising | 282 vp9_temporal_denoising |
| 283 fp_mb_stats | 283 fp_mb_stats |
| 284 emulate_hardware_highbitdepth | 284 emulate_hardware |
| 285 " | 285 " |
| 286 CONFIG_LIST=" | 286 CONFIG_LIST=" |
| 287 external_build | 287 external_build |
| 288 install_docs | 288 install_docs |
| 289 install_bins | 289 install_bins |
| 290 install_libs | 290 install_libs |
| 291 install_srcs | 291 install_srcs |
| 292 use_x86inc | 292 use_x86inc |
| 293 debug | 293 debug |
| 294 gprof | 294 gprof |
| (...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 782 ## | 782 ## |
| 783 ## END APPLICATION SPECIFIC CONFIGURATION | 783 ## END APPLICATION SPECIFIC CONFIGURATION |
| 784 ## | 784 ## |
| 785 CONFIGURE_ARGS="$@" | 785 CONFIGURE_ARGS="$@" |
| 786 process "$@" | 786 process "$@" |
| 787 print_webm_license ${BUILD_PFX}vpx_config.c "/*" " */" | 787 print_webm_license ${BUILD_PFX}vpx_config.c "/*" " */" |
| 788 cat <<EOF >> ${BUILD_PFX}vpx_config.c | 788 cat <<EOF >> ${BUILD_PFX}vpx_config.c |
| 789 static const char* const cfg = "$CONFIGURE_ARGS"; | 789 static const char* const cfg = "$CONFIGURE_ARGS"; |
| 790 const char *vpx_codec_build_config(void) {return cfg;} | 790 const char *vpx_codec_build_config(void) {return cfg;} |
| 791 EOF | 791 EOF |
| OLD | NEW |