You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

4720 lines
138KB

  1. #!/bin/sh
  2. #
  3. # Libav configure script
  4. #
  5. # Copyright (c) 2000-2002 Fabrice Bellard
  6. # Copyright (c) 2005-2008 Diego Biurrun
  7. # Copyright (c) 2005-2008 Mans Rullgard
  8. #
  9. # Prevent locale nonsense from breaking basic text processing.
  10. LC_ALL=C
  11. export LC_ALL
  12. # make sure we are running under a compatible shell
  13. # try to make this part work with most shells
  14. try_exec(){
  15. echo "Trying shell $1"
  16. type "$1" > /dev/null 2>&1 && exec "$@"
  17. }
  18. unset foo
  19. (: ${foo%%bar}) 2> /dev/null
  20. E1="$?"
  21. (: ${foo?}) 2> /dev/null
  22. E2="$?"
  23. if test "$E1" != 0 || test "$E2" = 0; then
  24. echo "Broken shell detected. Trying alternatives."
  25. export FF_CONF_EXEC
  26. if test "0$FF_CONF_EXEC" -lt 1; then
  27. FF_CONF_EXEC=1
  28. try_exec bash "$0" "$@"
  29. fi
  30. if test "0$FF_CONF_EXEC" -lt 2; then
  31. FF_CONF_EXEC=2
  32. try_exec ksh "$0" "$@"
  33. fi
  34. if test "0$FF_CONF_EXEC" -lt 3; then
  35. FF_CONF_EXEC=3
  36. try_exec /usr/xpg4/bin/sh "$0" "$@"
  37. fi
  38. echo "No compatible shell script interpreter found."
  39. echo "This configure script requires a POSIX-compatible shell"
  40. echo "such as bash or ksh."
  41. echo "THIS IS NOT A BUG IN LIBAV, DO NOT REPORT IT AS SUCH."
  42. echo "Instead, install a working POSIX-compatible shell."
  43. echo "Disabling this configure test will create a broken Libav."
  44. if test "$BASH_VERSION" = '2.04.0(1)-release'; then
  45. echo "This bash version ($BASH_VERSION) is broken on your platform."
  46. echo "Upgrade to a later version if available."
  47. fi
  48. exit 1
  49. fi
  50. test -d /usr/xpg4/bin && PATH=/usr/xpg4/bin:$PATH
  51. show_help(){
  52. cat <<EOF
  53. Usage: configure [options]
  54. Options: [defaults in brackets after descriptions]
  55. Help options:
  56. --help print this message
  57. --list-decoders show all available decoders
  58. --list-encoders show all available encoders
  59. --list-hwaccels show all available hardware accelerators
  60. --list-demuxers show all available demuxers
  61. --list-muxers show all available muxers
  62. --list-parsers show all available parsers
  63. --list-protocols show all available protocols
  64. --list-bsfs show all available bitstream filters
  65. --list-indevs show all available input devices
  66. --list-outdevs show all available output devices
  67. --list-filters show all available filters
  68. Standard options:
  69. --logfile=FILE log tests and output to FILE [config.log]
  70. --disable-logging do not log configure debug information
  71. --prefix=PREFIX install in PREFIX [$prefix]
  72. --bindir=DIR install binaries in DIR [PREFIX/bin]
  73. --datadir=DIR install data files in DIR [PREFIX/share/avconv]
  74. --docdir=DIR install documentation in DIR [PREFIX/share/doc/libav]
  75. --libdir=DIR install libs in DIR [PREFIX/lib]
  76. --shlibdir=DIR install shared libs in DIR [PREFIX/lib]
  77. --incdir=DIR install includes in DIR [PREFIX/include]
  78. --mandir=DIR install man page in DIR [PREFIX/share/man]
  79. Licensing options:
  80. --enable-gpl allow use of GPL code, the resulting libs
  81. and binaries will be under GPL [no]
  82. --enable-version3 upgrade (L)GPL to version 3 [no]
  83. --enable-nonfree allow use of nonfree code, the resulting libs
  84. and binaries will be unredistributable [no]
  85. Configuration options:
  86. --disable-static do not build static libraries [no]
  87. --enable-shared build shared libraries [no]
  88. --enable-small optimize for size instead of speed
  89. --enable-runtime-cpudetect detect cpu capabilities at runtime (bigger binary)
  90. --enable-gray enable full grayscale support (slower color)
  91. --disable-swscale-alpha disable alpha channel support in swscale
  92. --disable-all disable building components, libraries and programs
  93. Program options:
  94. --disable-programs do not build command line programs
  95. --disable-avconv disable avconv build
  96. --disable-avplay disable avplay build
  97. --disable-avprobe disable avprobe build
  98. --disable-avserver disable avserver build
  99. Component options:
  100. --disable-doc do not build documentation
  101. --disable-avdevice disable libavdevice build
  102. --disable-avcodec disable libavcodec build
  103. --disable-avformat disable libavformat build
  104. --disable-avutil disable libavutil build
  105. --disable-swscale disable libswscale build
  106. --disable-avfilter disable video filter support [no]
  107. --disable-avresample disable libavresample build [no]
  108. --disable-pthreads disable pthreads [auto]
  109. --disable-w32threads disable Win32 threads [auto]
  110. --disable-network disable network support [no]
  111. --disable-dct disable DCT code
  112. --disable-error-resilience disable error resilience code
  113. --disable-lsp disable LSP code
  114. --disable-lzo disable LZO decoder code
  115. --disable-mdct disable MDCT code
  116. --disable-rdft disable RDFT code
  117. --disable-fft disable FFT code
  118. Hardware accelerators:
  119. --enable-dxva2 enable DXVA2 code
  120. --enable-vaapi enable VAAPI code
  121. --enable-vda enable VDA code
  122. --enable-vdpau enable VDPAU code
  123. Individual component options:
  124. --disable-everything disable all components listed below
  125. --disable-encoder=NAME disable encoder NAME
  126. --enable-encoder=NAME enable encoder NAME
  127. --disable-encoders disable all encoders
  128. --disable-decoder=NAME disable decoder NAME
  129. --enable-decoder=NAME enable decoder NAME
  130. --disable-decoders disable all decoders
  131. --disable-hwaccel=NAME disable hwaccel NAME
  132. --enable-hwaccel=NAME enable hwaccel NAME
  133. --disable-hwaccels disable all hwaccels
  134. --disable-muxer=NAME disable muxer NAME
  135. --enable-muxer=NAME enable muxer NAME
  136. --disable-muxers disable all muxers
  137. --disable-demuxer=NAME disable demuxer NAME
  138. --enable-demuxer=NAME enable demuxer NAME
  139. --disable-demuxers disable all demuxers
  140. --enable-parser=NAME enable parser NAME
  141. --disable-parser=NAME disable parser NAME
  142. --disable-parsers disable all parsers
  143. --enable-bsf=NAME enable bitstream filter NAME
  144. --disable-bsf=NAME disable bitstream filter NAME
  145. --disable-bsfs disable all bitstream filters
  146. --enable-protocol=NAME enable protocol NAME
  147. --disable-protocol=NAME disable protocol NAME
  148. --disable-protocols disable all protocols
  149. --enable-indev=NAME enable input device NAME
  150. --disable-indev=NAME disable input device NAME
  151. --disable-indevs disable input devices
  152. --enable-outdev=NAME enable output device NAME
  153. --disable-outdev=NAME disable output device NAME
  154. --disable-outdevs disable output devices
  155. --disable-devices disable all devices
  156. --enable-filter=NAME enable filter NAME
  157. --disable-filter=NAME disable filter NAME
  158. --disable-filters disable all filters
  159. External library support:
  160. --enable-avisynth enable reading of AviSynth script files [no]
  161. --enable-bzlib enable bzlib [autodetect]
  162. --enable-frei0r enable frei0r video filtering
  163. --enable-gnutls enable gnutls [no]
  164. --enable-libbs2b enable bs2b DSP library [no]
  165. --enable-libcdio enable audio CD grabbing with libcdio
  166. --enable-libdc1394 enable IIDC-1394 grabbing using libdc1394
  167. and libraw1394 [no]
  168. --enable-libfaac enable AAC encoding via libfaac [no]
  169. --enable-libfdk-aac enable AAC de/encoding via libfdk-aac [no]
  170. --enable-libfreetype enable libfreetype [no]
  171. --enable-libgsm enable GSM de/encoding via libgsm [no]
  172. --enable-libilbc enable iLBC de/encoding via libilbc [no]
  173. --enable-libmp3lame enable MP3 encoding via libmp3lame [no]
  174. --enable-libopencore-amrnb enable AMR-NB de/encoding via libopencore-amrnb [no]
  175. --enable-libopencore-amrwb enable AMR-WB decoding via libopencore-amrwb [no]
  176. --enable-libopencv enable video filtering via libopencv [no]
  177. --enable-libopenjpeg enable JPEG 2000 de/encoding via OpenJPEG [no]
  178. --enable-libopus enable Opus decoding via libopus [no]
  179. --enable-libpulse enable Pulseaudio input via libpulse [no]
  180. --enable-librtmp enable RTMP[E] support via librtmp [no]
  181. --enable-libschroedinger enable Dirac de/encoding via libschroedinger [no]
  182. --enable-libspeex enable Speex de/encoding via libspeex [no]
  183. --enable-libtheora enable Theora encoding via libtheora [no]
  184. --enable-libtwolame enable MP2 encoding via libtwolame [no]
  185. --enable-libvo-aacenc enable AAC encoding via libvo-aacenc [no]
  186. --enable-libvo-amrwbenc enable AMR-WB encoding via libvo-amrwbenc [no]
  187. --enable-libvorbis enable Vorbis encoding via libvorbis [no]
  188. --enable-libvpx enable VP8 and VP9 de/encoding via libvpx [no]
  189. --enable-libwavpack enable wavpack encoding via libwavpack [no]
  190. --enable-libwebp enable WebP encoding via libwebp [no]
  191. --enable-libx264 enable H.264 encoding via x264 [no]
  192. --enable-libx265 enable HEVC encoding via x265 [no]
  193. --enable-libxavs enable AVS encoding via xavs [no]
  194. --enable-libxvid enable Xvid encoding via xvidcore,
  195. native MPEG-4/Xvid encoder exists [no]
  196. --enable-openssl enable openssl [no]
  197. --enable-x11grab enable X11 grabbing [no]
  198. --enable-zlib enable zlib [autodetect]
  199. Toolchain options:
  200. --arch=ARCH select architecture [$arch]
  201. --cpu=CPU select the minimum required CPU (affects
  202. instruction selection, may crash on older CPUs)
  203. --cross-prefix=PREFIX use PREFIX for compilation tools [$cross_prefix]
  204. --enable-cross-compile assume a cross-compiler is used
  205. --sysroot=PATH root of cross-build tree
  206. --sysinclude=PATH location of cross-build system headers
  207. --target-os=OS compiler targets OS [$target_os]
  208. --target-exec=CMD command to run executables on target
  209. --target-path=DIR path to view of build directory on target
  210. --target-samples=DIR path to samples directory on target
  211. --toolchain=NAME set tool defaults according to NAME
  212. --pkg-config=PKGCONFIG use pkg-config tool PKGCONFIG [$pkg_config_default]
  213. --nm=NM use nm tool
  214. --ar=AR use archive tool AR [$ar_default]
  215. --as=AS use assembler AS [$as_default]
  216. --cc=CC use C compiler CC [$cc_default]
  217. --dep-cc=DEPCC use dependency generator DEPCC [$cc_default]
  218. --ld=LD use linker LD
  219. --pkg-config=PKGCONF use pkg-config PKGCONF [$pkg_config_default]
  220. --pkg-config-flags=FLAGS pass additional flags to pkgconf []
  221. --host-cc=HOSTCC use host C compiler HOSTCC
  222. --host-cflags=HCFLAGS use HCFLAGS when compiling for host
  223. --host-cppflags=HCPPFLAGS use HCPPFLAGS when compiling for host
  224. --host-ld=HOSTLD use host linker HOSTLD
  225. --host-ldflags=HLDFLAGS use HLDFLAGS when linking for host
  226. --host-libs=HLIBS use libs HLIBS when linking for host
  227. --host-os=OS compiler host OS [$target_os]
  228. --extra-cflags=ECFLAGS add ECFLAGS to CFLAGS [$CFLAGS]
  229. --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]
  230. --extra-libs=ELIBS add ELIBS [$ELIBS]
  231. --extra-version=STRING version string suffix []
  232. --optflags=OPTFLAGS override optimization-related compiler flags
  233. --build-suffix=SUFFIX library name suffix []
  234. --enable-pic build position-independent code
  235. --enable-thumb compile for Thumb instruction set
  236. --enable-lto use link-time optimization
  237. Advanced options (experts only):
  238. --malloc-prefix=PREFIX prefix malloc and related names with PREFIX
  239. --disable-symver disable symbol versioning
  240. --enable-hardcoded-tables use hardcoded tables instead of runtime generation
  241. --disable-safe-bitstream-reader
  242. disable buffer boundary checking in bitreaders
  243. (faster, but may crash)
  244. --enable-memalign-hack emulate memalign, interferes with memory debuggers
  245. --enable-sram allow use of on-chip SRAM
  246. Optimization options (experts only):
  247. --disable-asm disable all assembler optimizations
  248. --disable-altivec disable AltiVec optimizations
  249. --disable-amd3dnow disable 3DNow! optimizations
  250. --disable-amd3dnowext disable 3DNow! extended optimizations
  251. --disable-mmx disable MMX optimizations
  252. --disable-mmxext disable MMXEXT optimizations
  253. --disable-sse disable SSE optimizations
  254. --disable-sse2 disable SSE2 optimizations
  255. --disable-sse3 disable SSE3 optimizations
  256. --disable-ssse3 disable SSSE3 optimizations
  257. --disable-sse4 disable SSE4 optimizations
  258. --disable-sse42 disable SSE4.2 optimizations
  259. --disable-avx disable AVX optimizations
  260. --disable-xop disable XOP optimizations
  261. --disable-fma3 disable FMA3 optimizations
  262. --disable-fma4 disable FMA4 optimizations
  263. --disable-avx2 disable AVX2 optimizations
  264. --disable-armv5te disable armv5te optimizations
  265. --disable-armv6 disable armv6 optimizations
  266. --disable-armv6t2 disable armv6t2 optimizations
  267. --disable-vfp disable VFP optimizations
  268. --disable-neon disable NEON optimizations
  269. --disable-inline-asm disable use of inline assembler
  270. --disable-yasm disable use of yasm assembler
  271. Developer options (useful when working on Libav itself):
  272. --disable-debug disable debugging symbols
  273. --enable-debug=LEVEL set the debug level [$debuglevel]
  274. --disable-optimizations disable compiler optimizations
  275. --enable-extra-warnings enable more compiler warnings
  276. --samples=PATH location of test samples for FATE, if not set use
  277. \$LIBAV_SAMPLES at make invocation time.
  278. --enable-neon-clobber-test check NEON registers for clobbering (should be
  279. used only for debugging purposes)
  280. --enable-xmm-clobber-test check XMM registers for clobbering (Win64-only;
  281. should be used only for debugging purposes)
  282. --enable-random randomly enable/disable components
  283. --disable-random
  284. --enable-random=LIST randomly enable/disable specific components or
  285. --disable-random=LIST component groups. LIST is a comma-separated list
  286. of NAME[:PROB] entries where NAME is a component
  287. (group) and PROB the probability associated with
  288. NAME (default 0.5).
  289. --random-seed=VALUE seed value for --enable/disable-random
  290. NOTE: Object files are built at the place where configure is launched.
  291. EOF
  292. exit 0
  293. }
  294. quotes='""'
  295. log(){
  296. echo "$@" >> $logfile
  297. }
  298. log_file(){
  299. log BEGIN $1
  300. pr -n -t $1 >> $logfile
  301. log END $1
  302. }
  303. echolog(){
  304. log "$@"
  305. echo "$@"
  306. }
  307. warn(){
  308. log "WARNING: $*"
  309. WARNINGS="${WARNINGS}WARNING: $*\n"
  310. }
  311. die(){
  312. echolog "$@"
  313. cat <<EOF
  314. If you think configure made a mistake, make sure you are using the latest
  315. version from Git. If the latest version fails, report the problem to the
  316. libav-tools@libav.org mailing list or IRC #libav on irc.freenode.net.
  317. EOF
  318. if disabled logging; then
  319. cat <<EOF
  320. Rerun configure with logging enabled (do not use --disable-logging), and
  321. include the log this produces with your report.
  322. EOF
  323. else
  324. cat <<EOF
  325. Include the log file "$logfile" produced by configure as this will help
  326. solving the problem.
  327. EOF
  328. fi
  329. exit 1
  330. }
  331. # Avoid locale weirdness, besides we really just want to translate ASCII.
  332. toupper(){
  333. echo "$@" | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ
  334. }
  335. tolower(){
  336. echo "$@" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
  337. }
  338. c_escape(){
  339. echo "$*" | sed 's/["\\]/\\\0/g'
  340. }
  341. sh_quote(){
  342. v=$(echo "$1" | sed "s/'/'\\\\''/g")
  343. test "x$v" = "x${v#*[!A-Za-z0-9_/.+-]}" || v="'$v'"
  344. echo "$v"
  345. }
  346. cleanws(){
  347. echo "$@" | sed 's/^ *//;s/ */ /g;s/ *$//'
  348. }
  349. filter(){
  350. pat=$1
  351. shift
  352. for v; do
  353. eval "case $v in $pat) echo $v ;; esac"
  354. done
  355. }
  356. filter_out(){
  357. pat=$1
  358. shift
  359. for v; do
  360. eval "case $v in $pat) ;; *) echo $v ;; esac"
  361. done
  362. }
  363. map(){
  364. m=$1
  365. shift
  366. for v; do eval $m; done
  367. }
  368. add_suffix(){
  369. suffix=$1
  370. shift
  371. for v; do echo ${v}${suffix}; done
  372. }
  373. set_all(){
  374. value=$1
  375. shift
  376. for var in $*; do
  377. eval $var=$value
  378. done
  379. }
  380. set_weak(){
  381. value=$1
  382. shift
  383. for var; do
  384. eval : \${$var:=$value}
  385. done
  386. }
  387. sanitize_var_name(){
  388. echo $@ | sed 's/[^A-Za-z0-9_]/_/g'
  389. }
  390. set_safe(){
  391. var=$1
  392. shift
  393. eval $(sanitize_var_name "$var")='$*'
  394. }
  395. get_safe(){
  396. eval echo \$$(sanitize_var_name "$1")
  397. }
  398. pushvar(){
  399. for pvar in $*; do
  400. eval level=\${${pvar}_level:=0}
  401. eval ${pvar}_${level}="\$$pvar"
  402. eval ${pvar}_level=$(($level+1))
  403. done
  404. }
  405. popvar(){
  406. for pvar in $*; do
  407. eval level=\${${pvar}_level:-0}
  408. test $level = 0 && continue
  409. eval level=$(($level-1))
  410. eval $pvar="\${${pvar}_${level}}"
  411. eval ${pvar}_level=$level
  412. eval unset ${pvar}_${level}
  413. done
  414. }
  415. enable(){
  416. set_all yes $*
  417. }
  418. disable(){
  419. set_all no $*
  420. }
  421. enable_weak(){
  422. set_weak yes $*
  423. }
  424. disable_weak(){
  425. set_weak no $*
  426. }
  427. enable_safe(){
  428. for var; do
  429. enable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
  430. done
  431. }
  432. disable_safe(){
  433. for var; do
  434. disable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
  435. done
  436. }
  437. do_enable_deep(){
  438. for var; do
  439. enabled $var && continue
  440. eval sel="\$${var}_select"
  441. eval sgs="\$${var}_suggest"
  442. pushvar var sgs
  443. enable_deep $sel
  444. popvar sgs
  445. enable_deep_weak $sgs
  446. popvar var
  447. done
  448. }
  449. enable_deep(){
  450. do_enable_deep $*
  451. enable $*
  452. }
  453. enable_deep_weak(){
  454. for var; do
  455. disabled $var && continue
  456. pushvar var
  457. do_enable_deep $var
  458. popvar var
  459. enable_weak $var
  460. done
  461. }
  462. enabled(){
  463. test "${1#!}" = "$1" && op== || op=!=
  464. eval test "x\$${1#!}" $op "xyes"
  465. }
  466. disabled(){
  467. test "${1#!}" = "$1" && op== || op=!=
  468. eval test "x\$${1#!}" $op "xno"
  469. }
  470. enabled_all(){
  471. for opt; do
  472. enabled $opt || return 1
  473. done
  474. }
  475. disabled_all(){
  476. for opt; do
  477. disabled $opt || return 1
  478. done
  479. }
  480. enabled_any(){
  481. for opt; do
  482. enabled $opt && return 0
  483. done
  484. }
  485. disabled_any(){
  486. for opt; do
  487. disabled $opt && return 0
  488. done
  489. return 1
  490. }
  491. set_default(){
  492. for opt; do
  493. eval : \${$opt:=\$${opt}_default}
  494. done
  495. }
  496. is_in(){
  497. value=$1
  498. shift
  499. for var in $*; do
  500. [ $var = $value ] && return 0
  501. done
  502. return 1
  503. }
  504. do_check_deps(){
  505. for cfg; do
  506. cfg="${cfg#!}"
  507. enabled ${cfg}_checking && die "Circular dependency for $cfg."
  508. disabled ${cfg}_checking && continue
  509. enable ${cfg}_checking
  510. append allopts $cfg
  511. eval dep_all="\$${cfg}_deps"
  512. eval dep_any="\$${cfg}_deps_any"
  513. eval dep_sel="\$${cfg}_select"
  514. eval dep_sgs="\$${cfg}_suggest"
  515. eval dep_ifa="\$${cfg}_if"
  516. eval dep_ifn="\$${cfg}_if_any"
  517. pushvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
  518. do_check_deps $dep_all $dep_any $dep_sel $dep_sgs $dep_ifa $dep_ifn
  519. popvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
  520. [ -n "$dep_ifa" ] && { enabled_all $dep_ifa && enable_weak $cfg; }
  521. [ -n "$dep_ifn" ] && { enabled_any $dep_ifn && enable_weak $cfg; }
  522. enabled_all $dep_all || disable $cfg
  523. enabled_any $dep_any || disable $cfg
  524. disabled_any $dep_sel && disable $cfg
  525. if enabled $cfg; then
  526. enable_deep $dep_sel
  527. enable_deep_weak $dep_sgs
  528. fi
  529. disable ${cfg}_checking
  530. done
  531. }
  532. check_deps(){
  533. unset allopts
  534. do_check_deps "$@"
  535. for cfg in $allopts; do
  536. enabled $cfg || continue
  537. eval dep_extralibs="\$${cfg}_extralibs"
  538. test -n "$dep_extralibs" && add_extralibs $dep_extralibs
  539. done
  540. }
  541. print_config(){
  542. pfx=$1
  543. files=$2
  544. shift 2
  545. map 'eval echo "$v \${$v:-no}"' "$@" |
  546. awk "BEGIN { split(\"$files\", files) }
  547. {
  548. c = \"$pfx\" toupper(\$1);
  549. v = \$2;
  550. sub(/yes/, 1, v);
  551. sub(/no/, 0, v);
  552. for (f in files) {
  553. file = files[f];
  554. if (file ~ /\\.h\$/) {
  555. printf(\"#define %s %d\\n\", c, v) >>file;
  556. } else if (file ~ /\\.asm\$/) {
  557. printf(\"%%define %s %d\\n\", c, v) >>file;
  558. } else if (file ~ /\\.mak\$/) {
  559. n = -v ? \"\" : \"!\";
  560. printf(\"%s%s=yes\\n\", n, c) >>file;
  561. }
  562. }
  563. }"
  564. }
  565. print_enabled(){
  566. suf=$1
  567. shift
  568. for v; do
  569. enabled $v && printf "%s\n" ${v%$suf};
  570. done
  571. }
  572. append(){
  573. var=$1
  574. shift
  575. eval "$var=\"\$$var $*\""
  576. }
  577. prepend(){
  578. var=$1
  579. shift
  580. eval "$var=\"$* \$$var\""
  581. }
  582. unique(){
  583. var=$1
  584. uniq_list=""
  585. for tok in $(eval echo \$$var); do
  586. uniq_list="$(filter_out $tok $uniq_list) $tok"
  587. done
  588. eval "$var=\"${uniq_list}\""
  589. }
  590. add_cppflags(){
  591. append CPPFLAGS "$@"
  592. }
  593. add_cflags(){
  594. append CFLAGS $($cflags_filter "$@")
  595. }
  596. add_asflags(){
  597. append ASFLAGS $($asflags_filter "$@")
  598. }
  599. add_ldflags(){
  600. append LDFLAGS $($ldflags_filter "$@")
  601. }
  602. add_stripflags(){
  603. append STRIPFLAGS "$@"
  604. }
  605. add_extralibs(){
  606. prepend extralibs $($ldflags_filter "$@")
  607. }
  608. add_host_cppflags(){
  609. append host_cppflags "$@"
  610. }
  611. add_host_cflags(){
  612. append host_cflags $($host_cflags_filter "$@")
  613. }
  614. add_host_ldflags(){
  615. append host_ldflags $($host_ldflags_filter "$@")
  616. }
  617. add_compat(){
  618. append compat_objs $1
  619. shift
  620. map 'add_cppflags -D$v' "$@"
  621. }
  622. check_cmd(){
  623. log "$@"
  624. "$@" >> $logfile 2>&1
  625. }
  626. cc_o(){
  627. eval printf '%s\\n' $CC_O
  628. }
  629. cc_e(){
  630. eval printf '%s\\n' $CC_E
  631. }
  632. check_cc(){
  633. log check_cc "$@"
  634. cat > $TMPC
  635. log_file $TMPC
  636. check_cmd $cc $CPPFLAGS $CFLAGS "$@" $CC_C $(cc_o $TMPO) $TMPC
  637. }
  638. check_cpp(){
  639. log check_cpp "$@"
  640. cat > $TMPC
  641. log_file $TMPC
  642. check_cmd $cc $CPPFLAGS $CFLAGS "$@" $(cc_e $TMPO) $TMPC
  643. }
  644. as_o(){
  645. eval printf '%s\\n' $AS_O
  646. }
  647. check_as(){
  648. log check_as "$@"
  649. cat > $TMPS
  650. log_file $TMPS
  651. check_cmd $as $CPPFLAGS $ASFLAGS "$@" $AS_C $(as_o $TMPO) $TMPS
  652. }
  653. check_inline_asm(){
  654. log check_inline_asm "$@"
  655. name="$1"
  656. code="$2"
  657. shift 2
  658. disable $name
  659. check_cc "$@" <<EOF && enable $name
  660. void foo(void){ __asm__ volatile($code); }
  661. EOF
  662. }
  663. check_insn(){
  664. log check_insn "$@"
  665. check_inline_asm ${1}_inline "\"$2\""
  666. echo "$2" | check_as && enable ${1}_external || disable ${1}_external
  667. }
  668. check_yasm(){
  669. log check_yasm "$@"
  670. echo "$1" > $TMPS
  671. log_file $TMPS
  672. shift 1
  673. check_cmd $yasmexe $YASMFLAGS "$@" -o $TMPO $TMPS
  674. }
  675. ld_o(){
  676. eval printf '%s\\n' $LD_O
  677. }
  678. check_ld(){
  679. log check_ld "$@"
  680. flags=$(filter_out '-l*' "$@")
  681. libs=$(filter '-l*' "$@")
  682. check_cc $($cflags_filter $flags) || return
  683. flags=$($ldflags_filter $flags)
  684. libs=$($ldflags_filter $libs)
  685. check_cmd $ld $LDFLAGS $flags $(ld_o $TMPE) $TMPO $libs $extralibs
  686. }
  687. print_include(){
  688. hdr=$1
  689. test "${hdr%.h}" = "${hdr}" &&
  690. echo "#include $hdr" ||
  691. echo "#include <$hdr>"
  692. }
  693. check_code(){
  694. log check_code "$@"
  695. check=$1
  696. headers=$2
  697. code=$3
  698. shift 3
  699. {
  700. for hdr in $headers; do
  701. print_include $hdr
  702. done
  703. echo "int main(void) { $code; return 0; }"
  704. } | check_$check "$@"
  705. }
  706. check_cppflags(){
  707. log check_cppflags "$@"
  708. check_cc "$@" <<EOF && append CPPFLAGS "$@"
  709. int x;
  710. EOF
  711. }
  712. test_cflags(){
  713. log test_cflags "$@"
  714. set -- $($cflags_filter "$@")
  715. check_cc "$@" <<EOF
  716. int x;
  717. EOF
  718. }
  719. check_cflags(){
  720. log check_cflags "$@"
  721. test_cflags "$@" && add_cflags "$@"
  722. }
  723. test_ldflags(){
  724. log test_ldflags "$@"
  725. check_ld "$@" <<EOF
  726. int main(void){ return 0; }
  727. EOF
  728. }
  729. check_ldflags(){
  730. log check_ldflags "$@"
  731. test_ldflags "$@" && add_ldflags "$@"
  732. }
  733. test_stripflags(){
  734. log test_stripflags "$@"
  735. # call check_cc to get a fresh TMPO
  736. check_cc <<EOF
  737. int main(void) { return 0; }
  738. EOF
  739. check_cmd $strip $STRIPFLAGS "$@" $TMPO
  740. }
  741. check_stripflags(){
  742. log check_stripflags "$@"
  743. test_stripflags "$@" && add_stripflags "$@"
  744. }
  745. check_header(){
  746. log check_header "$@"
  747. header=$1
  748. shift
  749. disable_safe $header
  750. check_cpp "$@" <<EOF && enable_safe $header
  751. #include <$header>
  752. int x;
  753. EOF
  754. }
  755. check_func(){
  756. log check_func "$@"
  757. func=$1
  758. shift
  759. disable $func
  760. check_ld "$@" <<EOF && enable $func
  761. extern int $func();
  762. int main(void){ $func(); }
  763. EOF
  764. }
  765. check_mathfunc(){
  766. log check_mathfunc "$@"
  767. func=$1
  768. narg=$2
  769. shift 2
  770. test $narg = 2 && args="f, g" || args="f"
  771. disable $func
  772. check_ld "$@" <<EOF && enable $func
  773. #include <math.h>
  774. float foo(float f, float g) { return $func($args); }
  775. int main(void){ return 0; }
  776. EOF
  777. }
  778. check_func_headers(){
  779. log check_func_headers "$@"
  780. headers=$1
  781. funcs=$2
  782. shift 2
  783. {
  784. for hdr in $headers; do
  785. print_include $hdr
  786. done
  787. for func in $funcs; do
  788. echo "long check_$func(void) { return (long) $func; }"
  789. done
  790. echo "int main(void) { return 0; }"
  791. } | check_ld "$@" && enable $funcs && enable_safe $headers
  792. }
  793. check_cpp_condition(){
  794. log check_cpp_condition "$@"
  795. header=$1
  796. condition=$2
  797. shift 2
  798. check_cpp "$@" <<EOF
  799. #include <$header>
  800. #if !($condition)
  801. #error "unsatisfied condition: $condition"
  802. #endif
  803. EOF
  804. }
  805. check_lib(){
  806. log check_lib "$@"
  807. header="$1"
  808. func="$2"
  809. shift 2
  810. check_header $header && check_func $func "$@" && add_extralibs "$@"
  811. }
  812. check_lib2(){
  813. log check_lib2 "$@"
  814. headers="$1"
  815. funcs="$2"
  816. shift 2
  817. check_func_headers "$headers" "$funcs" "$@" && add_extralibs "$@"
  818. }
  819. check_pkg_config(){
  820. log check_pkg_config "$@"
  821. pkg="$1"
  822. headers="$2"
  823. funcs="$3"
  824. shift 3
  825. check_cmd $pkg_config --exists --print-errors $pkg || return
  826. pkg_cflags=$($pkg_config --cflags $pkg_config_flags $pkg)
  827. pkg_libs=$($pkg_config --libs $pkg_config_flags $pkg)
  828. check_func_headers "$headers" "$funcs" $pkg_cflags $pkg_libs "$@" &&
  829. set_safe ${pkg}_cflags $pkg_cflags &&
  830. set_safe ${pkg}_libs $pkg_libs
  831. }
  832. check_exec(){
  833. check_ld "$@" && { enabled cross_compile || $TMPE >> $logfile 2>&1; }
  834. }
  835. check_exec_crash(){
  836. code=$(cat)
  837. # exit() is not async signal safe. _Exit (C99) and _exit (POSIX)
  838. # are safe but may not be available everywhere. Thus we use
  839. # raise(SIGTERM) instead. The check is run in a subshell so we
  840. # can redirect the "Terminated" message from the shell. SIGBUS
  841. # is not defined by standard C so it is used conditionally.
  842. (check_exec "$@") >> $logfile 2>&1 <<EOF
  843. #include <signal.h>
  844. static void sighandler(int sig){
  845. raise(SIGTERM);
  846. }
  847. int foo(void){
  848. $code
  849. }
  850. int (*func_ptr)(void) = foo;
  851. int main(void){
  852. signal(SIGILL, sighandler);
  853. signal(SIGFPE, sighandler);
  854. signal(SIGSEGV, sighandler);
  855. #ifdef SIGBUS
  856. signal(SIGBUS, sighandler);
  857. #endif
  858. return func_ptr();
  859. }
  860. EOF
  861. }
  862. check_type(){
  863. log check_type "$@"
  864. headers=$1
  865. type=$2
  866. shift 2
  867. disable_safe "$type"
  868. check_code cc "$headers" "$type v" "$@" && enable_safe "$type"
  869. }
  870. check_struct(){
  871. log check_struct "$@"
  872. headers=$1
  873. struct=$2
  874. member=$3
  875. shift 3
  876. disable_safe "${struct}_${member}"
  877. check_code cc "$headers" "const void *p = &(($struct *)0)->$member" "$@" &&
  878. enable_safe "${struct}_${member}"
  879. }
  880. check_builtin(){
  881. log check_builtin "$@"
  882. name=$1
  883. headers=$2
  884. builtin=$3
  885. shift 3
  886. disable "$name"
  887. check_code ld "$headers" "$builtin" "$@" && enable "$name"
  888. }
  889. check_compile_assert(){
  890. log check_compile_assert "$@"
  891. name=$1
  892. headers=$2
  893. condition=$3
  894. shift 3
  895. disable "$name"
  896. check_code cc "$headers" "char c[2 * !!($condition) - 1]" "$@" && enable "$name"
  897. }
  898. require(){
  899. name="$1"
  900. header="$2"
  901. func="$3"
  902. shift 3
  903. check_lib $header $func "$@" || die "ERROR: $name not found"
  904. }
  905. require2(){
  906. name="$1"
  907. headers="$2"
  908. func="$3"
  909. shift 3
  910. check_lib2 "$headers" $func "$@" || die "ERROR: $name not found"
  911. }
  912. require_pkg_config(){
  913. pkg="$1"
  914. check_pkg_config "$@" || die "ERROR: $pkg not found"
  915. add_cflags $(get_safe ${pkg}_cflags)
  916. add_extralibs $(get_safe ${pkg}_libs)
  917. }
  918. hostcc_e(){
  919. eval printf '%s\\n' $HOSTCC_E
  920. }
  921. hostcc_o(){
  922. eval printf '%s\\n' $HOSTCC_O
  923. }
  924. check_host_cc(){
  925. log check_host_cc "$@"
  926. cat > $TMPC
  927. log_file $TMPC
  928. check_cmd $host_cc $host_cflags "$@" $HOSTCC_C $(hostcc_o $TMPO) $TMPC
  929. }
  930. check_host_cpp(){
  931. log check_host_cpp "$@"
  932. cat > $TMPC
  933. log_file $TMPC
  934. check_cmd $host_cc $HOSTCPPFLAGS $HOSTCFLAGS "$@" $(hostcc_e $TMPO) $TMPC
  935. }
  936. check_host_cppflags(){
  937. log check_host_cppflags "$@"
  938. check_host_cc "$@" <<EOF && append host_cppflags "$@"
  939. int x;
  940. EOF
  941. }
  942. check_host_cflags(){
  943. log check_host_cflags "$@"
  944. set -- $($host_cflags_filter "$@")
  945. check_host_cc "$@" <<EOF && append host_cflags "$@"
  946. int x;
  947. EOF
  948. }
  949. check_host_cpp_condition(){
  950. log check_host_cpp_condition "$@"
  951. header=$1
  952. condition=$2
  953. shift 2
  954. check_host_cpp "$@" <<EOF
  955. #include <$header>
  956. #if !($condition)
  957. #error "unsatisfied condition: $condition"
  958. #endif
  959. EOF
  960. }
  961. apply(){
  962. file=$1
  963. shift
  964. "$@" < "$file" > "$file.tmp" && mv "$file.tmp" "$file" || rm "$file.tmp"
  965. }
  966. cp_if_changed(){
  967. cmp -s "$1" "$2" && echo "$2 is unchanged" && return
  968. mkdir -p "$(dirname $2)"
  969. $cp_f "$1" "$2"
  970. }
  971. # CONFIG_LIST contains configurable options, while HAVE_LIST is for
  972. # system-dependent things.
  973. COMPONENT_LIST="
  974. bsfs
  975. decoders
  976. demuxers
  977. encoders
  978. filters
  979. hwaccels
  980. indevs
  981. muxers
  982. outdevs
  983. parsers
  984. protocols
  985. "
  986. EXAMPLE_LIST="
  987. avcodec_example
  988. filter_audio_example
  989. metadata_example
  990. output_example
  991. transcode_aac_example
  992. "
  993. EXTERNAL_LIBRARY_LIST="
  994. avisynth
  995. bzlib
  996. frei0r
  997. gnutls
  998. libbs2b
  999. libcdio
  1000. libdc1394
  1001. libfaac
  1002. libfdk_aac
  1003. libfontconfig
  1004. libfreetype
  1005. libgsm
  1006. libilbc
  1007. libmp3lame
  1008. libopencore_amrnb
  1009. libopencore_amrwb
  1010. libopencv
  1011. libopenjpeg
  1012. libopus
  1013. libpulse
  1014. librtmp
  1015. libschroedinger
  1016. libspeex
  1017. libtheora
  1018. libtwolame
  1019. libvo_aacenc
  1020. libvo_amrwbenc
  1021. libvorbis
  1022. libvpx
  1023. libwavpack
  1024. libwebp
  1025. libx264
  1026. libx265
  1027. libxavs
  1028. libxvid
  1029. openssl
  1030. x11grab
  1031. zlib
  1032. "
  1033. FEATURE_LIST="
  1034. gray
  1035. hardcoded_tables
  1036. runtime_cpudetect
  1037. safe_bitstream_reader
  1038. shared
  1039. small
  1040. sram
  1041. static
  1042. swscale_alpha
  1043. "
  1044. HWACCEL_LIST="
  1045. dxva2
  1046. vaapi
  1047. vda
  1048. vdpau
  1049. "
  1050. LIBRARY_LIST="
  1051. avcodec
  1052. avdevice
  1053. avfilter
  1054. avformat
  1055. avresample
  1056. avutil
  1057. swscale
  1058. "
  1059. LICENSE_LIST="
  1060. gpl
  1061. nonfree
  1062. version3
  1063. "
  1064. PROGRAM_LIST="
  1065. avconv
  1066. avplay
  1067. avprobe
  1068. avserver
  1069. "
  1070. SUBSYSTEM_LIST="
  1071. dct
  1072. doc
  1073. error_resilience
  1074. fft
  1075. lsp
  1076. lzo
  1077. mdct
  1078. network
  1079. rdft
  1080. "
  1081. CONFIG_LIST="
  1082. $COMPONENT_LIST
  1083. $EXAMPLE_LIST
  1084. $EXTERNAL_LIBRARY_LIST
  1085. $FEATURE_LIST
  1086. $HWACCEL_LIST
  1087. $LICENSE_LIST
  1088. $LIBRARY_LIST
  1089. $PROGRAM_LIST
  1090. $SUBSYSTEM_LIST
  1091. memalign_hack
  1092. neon_clobber_test
  1093. pic
  1094. pod2man
  1095. texi2html
  1096. thumb
  1097. xmm_clobber_test
  1098. "
  1099. THREADS_LIST="
  1100. pthreads
  1101. w32threads
  1102. "
  1103. ATOMICS_LIST="
  1104. atomics_gcc
  1105. atomics_suncc
  1106. atomics_win32
  1107. "
  1108. ARCH_LIST="
  1109. aarch64
  1110. alpha
  1111. arm
  1112. avr32
  1113. avr32_ap
  1114. avr32_uc
  1115. bfin
  1116. ia64
  1117. m68k
  1118. mips
  1119. mips64
  1120. parisc
  1121. ppc
  1122. ppc64
  1123. s390
  1124. sh4
  1125. sparc
  1126. sparc64
  1127. tilegx
  1128. tilepro
  1129. tomi
  1130. x86
  1131. x86_32
  1132. x86_64
  1133. "
  1134. ARCH_EXT_LIST_ARM="
  1135. armv5te
  1136. armv6
  1137. armv6t2
  1138. armv8
  1139. neon
  1140. vfp
  1141. vfpv3
  1142. "
  1143. ARCH_EXT_LIST_X86_SIMD="
  1144. amd3dnow
  1145. amd3dnowext
  1146. avx
  1147. avx2
  1148. fma3
  1149. fma4
  1150. mmx
  1151. mmxext
  1152. sse
  1153. sse2
  1154. sse3
  1155. sse4
  1156. sse42
  1157. ssse3
  1158. xop
  1159. "
  1160. ARCH_EXT_LIST_PPC="
  1161. altivec
  1162. dcbzl
  1163. ldbrx
  1164. ppc4xx
  1165. "
  1166. ARCH_EXT_LIST_X86="
  1167. $ARCH_EXT_LIST_X86_SIMD
  1168. cpunop
  1169. i686
  1170. "
  1171. ARCH_EXT_LIST="
  1172. $ARCH_EXT_LIST_ARM
  1173. $ARCH_EXT_LIST_PPC
  1174. $ARCH_EXT_LIST_X86
  1175. loongson
  1176. vis
  1177. "
  1178. ARCH_FEATURES="
  1179. aligned_stack
  1180. fast_64bit
  1181. fast_clz
  1182. fast_cmov
  1183. local_aligned_8
  1184. local_aligned_16
  1185. "
  1186. BUILTIN_LIST="
  1187. atomic_cas_ptr
  1188. machine_rw_barrier
  1189. MemoryBarrier
  1190. mm_empty
  1191. rdtsc
  1192. sync_val_compare_and_swap
  1193. "
  1194. HAVE_LIST_CMDLINE="
  1195. inline_asm
  1196. symver
  1197. yasm
  1198. "
  1199. HAVE_LIST_PUB="
  1200. bigendian
  1201. fast_unaligned
  1202. "
  1203. HEADERS_LIST="
  1204. alsa_asoundlib_h
  1205. altivec_h
  1206. arpa_inet_h
  1207. cdio_paranoia_h
  1208. cdio_paranoia_paranoia_h
  1209. dev_bktr_ioctl_bt848_h
  1210. dev_bktr_ioctl_meteor_h
  1211. dev_ic_bt8xx_h
  1212. dev_video_bktr_ioctl_bt848_h
  1213. dev_video_meteor_ioctl_meteor_h
  1214. direct_h
  1215. dlfcn_h
  1216. dxva_h
  1217. gsm_h
  1218. io_h
  1219. mach_mach_time_h
  1220. machine_ioctl_bt848_h
  1221. machine_ioctl_meteor_h
  1222. malloc_h
  1223. poll_h
  1224. sndio_h
  1225. soundcard_h
  1226. sys_mman_h
  1227. sys_param_h
  1228. sys_resource_h
  1229. sys_select_h
  1230. sys_soundcard_h
  1231. sys_time_h
  1232. sys_un_h
  1233. sys_videoio_h
  1234. unistd_h
  1235. windows_h
  1236. winsock2_h
  1237. "
  1238. MATH_FUNCS="
  1239. atanf
  1240. atan2f
  1241. cbrtf
  1242. cosf
  1243. exp2
  1244. exp2f
  1245. expf
  1246. isinf
  1247. isnan
  1248. ldexpf
  1249. llrint
  1250. llrintf
  1251. log2
  1252. log2f
  1253. log10f
  1254. lrint
  1255. lrintf
  1256. powf
  1257. rint
  1258. round
  1259. roundf
  1260. sinf
  1261. trunc
  1262. truncf
  1263. "
  1264. SYSTEM_FUNCS="
  1265. aligned_malloc
  1266. closesocket
  1267. CommandLineToArgvW
  1268. CoTaskMemFree
  1269. CryptGenRandom
  1270. dlopen
  1271. fcntl
  1272. flt_lim
  1273. fork
  1274. getaddrinfo
  1275. gethrtime
  1276. getopt
  1277. GetProcessAffinityMask
  1278. GetProcessMemoryInfo
  1279. GetProcessTimes
  1280. getrusage
  1281. getservbyport
  1282. GetSystemTimeAsFileTime
  1283. gettimeofday
  1284. inet_aton
  1285. isatty
  1286. jack_port_get_latency_range
  1287. localtime_r
  1288. mach_absolute_time
  1289. MapViewOfFile
  1290. memalign
  1291. mkstemp
  1292. mmap
  1293. mprotect
  1294. nanosleep
  1295. posix_memalign
  1296. sched_getaffinity
  1297. SetConsoleTextAttribute
  1298. setmode
  1299. setrlimit
  1300. Sleep
  1301. strerror_r
  1302. strptime
  1303. sysconf
  1304. sysctl
  1305. usleep
  1306. VirtualAlloc
  1307. "
  1308. TOOLCHAIN_FEATURES="
  1309. asm_mod_q
  1310. attribute_may_alias
  1311. attribute_packed
  1312. ebp_available
  1313. ebx_available
  1314. gnu_as
  1315. ibm_asm
  1316. inline_asm_labels
  1317. pragma_deprecated
  1318. symver_asm_label
  1319. symver_gnu_asm
  1320. vfp_args
  1321. xform_asm
  1322. xmm_clobbers
  1323. "
  1324. TYPES_LIST="
  1325. socklen_t
  1326. struct_addrinfo
  1327. struct_group_source_req
  1328. struct_ip_mreq_source
  1329. struct_ipv6_mreq
  1330. struct_pollfd
  1331. struct_rusage_ru_maxrss
  1332. struct_sockaddr_in6
  1333. struct_sockaddr_sa_len
  1334. struct_sockaddr_storage
  1335. struct_v4l2_frmivalenum_discrete
  1336. "
  1337. HAVE_LIST="
  1338. $ARCH_EXT_LIST
  1339. $(add_suffix _external $ARCH_EXT_LIST)
  1340. $(add_suffix _inline $ARCH_EXT_LIST)
  1341. $ARCH_FEATURES
  1342. $ATOMICS_LIST
  1343. $BUILTIN_LIST
  1344. $HAVE_LIST_CMDLINE
  1345. $HAVE_LIST_PUB
  1346. $HEADERS_LIST
  1347. $MATH_FUNCS
  1348. $SYSTEM_FUNCS
  1349. $THREADS_LIST
  1350. $TOOLCHAIN_FEATURES
  1351. $TYPES_LIST
  1352. atomics_native
  1353. dos_paths
  1354. dxva2_lib
  1355. libc_msvcrt
  1356. libdc1394_1
  1357. libdc1394_2
  1358. sdl
  1359. threads
  1360. vdpau_x11
  1361. xlib
  1362. "
  1363. # options emitted with CONFIG_ prefix but not available on the command line
  1364. CONFIG_EXTRA="
  1365. aandcttables
  1366. ac3dsp
  1367. audio_frame_queue
  1368. cabac
  1369. dsputil
  1370. gcrypt
  1371. golomb
  1372. gplv3
  1373. h263dsp
  1374. h264chroma
  1375. h264dsp
  1376. h264pred
  1377. h264qpel
  1378. hpeldsp
  1379. huffman
  1380. intrax8
  1381. lgplv3
  1382. lpc
  1383. mpegaudio
  1384. mpegaudiodsp
  1385. mpegvideo
  1386. mpegvideoenc
  1387. nettle
  1388. rangecoder
  1389. riffdec
  1390. riffenc
  1391. rtpdec
  1392. rtpenc_chain
  1393. sinewin
  1394. tpeldsp
  1395. videodsp
  1396. vp3dsp
  1397. "
  1398. CMDLINE_SELECT="
  1399. $ARCH_EXT_LIST
  1400. $CONFIG_LIST
  1401. $HAVE_LIST_CMDLINE
  1402. $THREADS_LIST
  1403. asm
  1404. cross_compile
  1405. debug
  1406. extra_warnings
  1407. logging
  1408. lto
  1409. optimizations
  1410. "
  1411. PATHS_LIST="
  1412. bindir
  1413. datadir
  1414. docdir
  1415. incdir
  1416. libdir
  1417. mandir
  1418. prefix
  1419. shlibdir
  1420. "
  1421. CMDLINE_SET="
  1422. $PATHS_LIST
  1423. ar
  1424. arch
  1425. as
  1426. build_suffix
  1427. cc
  1428. cpu
  1429. cross_prefix
  1430. dep_cc
  1431. extra_version
  1432. host_cc
  1433. host_cflags
  1434. host_ld
  1435. host_ldflags
  1436. host_libs
  1437. host_os
  1438. ld
  1439. logfile
  1440. malloc_prefix
  1441. nm
  1442. optflags
  1443. pkg_config
  1444. pkg_config_flags
  1445. random_seed
  1446. samples
  1447. sysinclude
  1448. sysroot
  1449. target_exec
  1450. target_os
  1451. target_path
  1452. target_samples
  1453. toolchain
  1454. "
  1455. CMDLINE_APPEND="
  1456. extra_cflags
  1457. host_cppflags
  1458. "
  1459. # code dependency declarations
  1460. # architecture extensions
  1461. armv5te_deps="arm"
  1462. armv6_deps="arm"
  1463. armv6t2_deps="arm"
  1464. armv8_deps="aarch64"
  1465. neon_deps_any="aarch64 arm"
  1466. vfp_deps_any="aarch64 arm"
  1467. vfpv3_deps="vfp"
  1468. map 'eval ${v}_inline_deps=inline_asm' $ARCH_EXT_LIST_ARM
  1469. altivec_deps="ppc"
  1470. ppc4xx_deps="ppc"
  1471. cpunop_deps="i686"
  1472. x86_64_select="i686"
  1473. x86_64_suggest="fast_cmov"
  1474. amd3dnow_deps="mmx"
  1475. amd3dnowext_deps="amd3dnow"
  1476. i686_deps="x86"
  1477. mmx_deps="x86"
  1478. mmxext_deps="mmx"
  1479. sse_deps="mmxext"
  1480. sse2_deps="sse"
  1481. sse3_deps="sse2"
  1482. ssse3_deps="sse3"
  1483. sse4_deps="ssse3"
  1484. sse42_deps="sse4"
  1485. avx_deps="sse42"
  1486. xop_deps="avx"
  1487. fma3_deps="avx"
  1488. fma4_deps="avx"
  1489. avx2_deps="avx"
  1490. mmx_external_deps="yasm"
  1491. mmx_inline_deps="inline_asm"
  1492. mmx_suggest="mmx_external mmx_inline"
  1493. for ext in $(filter_out mmx $ARCH_EXT_LIST_X86_SIMD); do
  1494. eval dep=\$${ext}_deps
  1495. eval ${ext}_external_deps='"${dep}_external"'
  1496. eval ${ext}_inline_deps='"${dep}_inline"'
  1497. eval ${ext}_suggest='"${ext}_external ${ext}_inline"'
  1498. done
  1499. aligned_stack_if_any="aarch64 ppc x86"
  1500. fast_64bit_if_any="aarch64 alpha ia64 mips64 parisc64 ppc64 sparc64 x86_64"
  1501. fast_clz_if_any="aarch64 alpha avr32 mips ppc x86"
  1502. fast_unaligned_if_any="aarch64 ppc x86"
  1503. need_memalign="altivec neon sse"
  1504. # system capabilities
  1505. log2_deps="!libc_msvcrt"
  1506. symver_if_any="symver_asm_label symver_gnu_asm"
  1507. # threading support
  1508. atomics_gcc_if="sync_val_compare_and_swap"
  1509. atomics_suncc_if="atomic_cas_ptr machine_rw_barrier"
  1510. atomics_win32_if="MemoryBarrier"
  1511. atomics_native_if_any="$ATOMICS_LIST"
  1512. w32threads_deps="atomics_native"
  1513. threads_if_any="$THREADS_LIST"
  1514. # subsystems
  1515. dct_select="rdft"
  1516. error_resilience_select="dsputil"
  1517. mdct_select="fft"
  1518. rdft_select="fft"
  1519. mpegaudio_select="mpegaudiodsp"
  1520. mpegaudiodsp_select="dct"
  1521. mpegvideo_select="dsputil hpeldsp videodsp"
  1522. mpegvideoenc_select="dsputil mpegvideo"
  1523. # decoders / encoders
  1524. aac_decoder_select="mdct sinewin"
  1525. aac_encoder_select="audio_frame_queue mdct sinewin"
  1526. aac_latm_decoder_select="aac_decoder aac_latm_parser"
  1527. ac3_decoder_select="mdct ac3dsp ac3_parser dsputil"
  1528. ac3_encoder_select="mdct ac3dsp dsputil"
  1529. ac3_fixed_encoder_select="mdct ac3dsp dsputil"
  1530. aic_decoder_select="dsputil golomb"
  1531. alac_encoder_select="lpc"
  1532. als_decoder_select="dsputil"
  1533. amrnb_decoder_select="lsp"
  1534. amrwb_decoder_select="lsp"
  1535. amv_decoder_select="sp5x_decoder"
  1536. ape_decoder_select="dsputil"
  1537. asv1_decoder_select="dsputil"
  1538. asv1_encoder_select="dsputil"
  1539. asv2_decoder_select="dsputil"
  1540. asv2_encoder_select="dsputil"
  1541. atrac1_decoder_select="mdct sinewin"
  1542. atrac3_decoder_select="mdct"
  1543. atrac3p_decoder_select="mdct sinewin"
  1544. bink_decoder_select="dsputil hpeldsp"
  1545. binkaudio_dct_decoder_select="mdct rdft dct sinewin"
  1546. binkaudio_rdft_decoder_select="mdct rdft sinewin"
  1547. cavs_decoder_select="dsputil golomb h264chroma videodsp"
  1548. cllc_decoder_select="dsputil"
  1549. comfortnoise_encoder_select="lpc"
  1550. cook_decoder_select="dsputil mdct sinewin"
  1551. cscd_decoder_select="lzo"
  1552. cscd_decoder_suggest="zlib"
  1553. dca_decoder_select="mdct"
  1554. dnxhd_decoder_select="dsputil"
  1555. dnxhd_encoder_select="aandcttables dsputil mpegvideoenc"
  1556. dvvideo_decoder_select="dsputil"
  1557. dvvideo_encoder_select="dsputil"
  1558. dxa_decoder_deps="zlib"
  1559. eac3_decoder_select="ac3_decoder"
  1560. eac3_encoder_select="ac3_encoder"
  1561. eamad_decoder_select="aandcttables dsputil mpegvideo"
  1562. eatgq_decoder_select="aandcttables dsputil"
  1563. eatqi_decoder_select="aandcttables dsputil error_resilience mpegvideo"
  1564. exr_decoder_deps="zlib"
  1565. ffv1_decoder_select="golomb rangecoder"
  1566. ffv1_encoder_select="rangecoder"
  1567. ffvhuff_decoder_select="huffyuv_decoder"
  1568. ffvhuff_encoder_select="huffyuv_encoder"
  1569. fic_decoder_select="golomb"
  1570. flac_decoder_select="golomb"
  1571. flac_encoder_select="dsputil golomb lpc"
  1572. flashsv_decoder_deps="zlib"
  1573. flashsv_encoder_deps="zlib"
  1574. flashsv2_decoder_deps="zlib"
  1575. flv_decoder_select="h263_decoder"
  1576. flv_encoder_select="h263_encoder"
  1577. fourxm_decoder_select="dsputil"
  1578. fraps_decoder_select="dsputil huffman"
  1579. g2m_decoder_deps="zlib"
  1580. g2m_decoder_select="dsputil"
  1581. h261_decoder_select="error_resilience mpegvideo"
  1582. h261_encoder_select="aandcttables mpegvideoenc"
  1583. h263_decoder_select="error_resilience h263_parser h263dsp mpegvideo"
  1584. h263_encoder_select="aandcttables h263dsp mpegvideoenc"
  1585. h263i_decoder_select="h263_decoder"
  1586. h263p_encoder_select="h263_encoder"
  1587. h264_decoder_select="cabac golomb h264chroma h264dsp h264pred h264qpel videodsp"
  1588. h264_decoder_suggest="error_resilience"
  1589. hevc_decoder_select="cabac dsputil golomb videodsp"
  1590. huffyuv_decoder_select="dsputil"
  1591. huffyuv_encoder_select="dsputil huffman"
  1592. iac_decoder_select="imc_decoder"
  1593. imc_decoder_select="dsputil fft mdct sinewin"
  1594. indeo3_decoder_select="hpeldsp"
  1595. interplay_video_decoder_select="hpeldsp"
  1596. jpegls_decoder_select="golomb mjpeg_decoder"
  1597. jpegls_encoder_select="golomb"
  1598. jv_decoder_select="dsputil"
  1599. lagarith_decoder_select="dsputil"
  1600. ljpeg_encoder_select="aandcttables mpegvideoenc"
  1601. loco_decoder_select="golomb"
  1602. mdec_decoder_select="dsputil error_resilience mpegvideo"
  1603. metasound_decoder_select="lsp mdct sinewin"
  1604. mimic_decoder_select="dsputil hpeldsp"
  1605. mjpeg_decoder_select="dsputil hpeldsp"
  1606. mjpeg_encoder_select="aandcttables mpegvideoenc"
  1607. mjpegb_decoder_select="mjpeg_decoder"
  1608. mlp_decoder_select="mlp_parser"
  1609. motionpixels_decoder_select="dsputil"
  1610. mp1_decoder_select="mpegaudio"
  1611. mp1float_decoder_select="mpegaudio"
  1612. mp2_decoder_select="mpegaudio"
  1613. mp2float_decoder_select="mpegaudio"
  1614. mp3_decoder_select="mpegaudio"
  1615. mp3adu_decoder_select="mpegaudio"
  1616. mp3adufloat_decoder_select="mpegaudio"
  1617. mp3float_decoder_select="mpegaudio"
  1618. mp3on4_decoder_select="mpegaudio"
  1619. mp3on4float_decoder_select="mpegaudio"
  1620. mpc7_decoder_select="dsputil mpegaudiodsp"
  1621. mpc8_decoder_select="mpegaudiodsp"
  1622. mpeg_xvmc_decoder_deps="X11_extensions_XvMClib_h"
  1623. mpeg_xvmc_decoder_select="mpeg2video_decoder"
  1624. mpeg1video_decoder_select="error_resilience mpegvideo"
  1625. mpeg1video_encoder_select="aandcttables mpegvideoenc"
  1626. mpeg2video_decoder_select="error_resilience mpegvideo"
  1627. mpeg2video_encoder_select="aandcttables mpegvideoenc"
  1628. mpeg4_decoder_select="h263_decoder mpeg4video_parser"
  1629. mpeg4_encoder_select="h263_encoder"
  1630. msmpeg4v1_decoder_select="h263_decoder"
  1631. msmpeg4v2_decoder_select="h263_decoder"
  1632. msmpeg4v2_encoder_select="h263_encoder"
  1633. msmpeg4v3_decoder_select="h263_decoder"
  1634. msmpeg4v3_encoder_select="h263_encoder"
  1635. mss2_decoder_select="error_resilience vc1_decoder"
  1636. mxpeg_decoder_select="mjpeg_decoder"
  1637. nellymoser_decoder_select="mdct sinewin"
  1638. nellymoser_encoder_select="audio_frame_queue mdct sinewin"
  1639. nuv_decoder_select="dsputil lzo"
  1640. on2avc_decoder_select="mdct"
  1641. png_decoder_deps="zlib"
  1642. png_encoder_deps="zlib"
  1643. png_encoder_select="dsputil"
  1644. prores_decoder_select="dsputil"
  1645. prores_encoder_select="dsputil"
  1646. qcelp_decoder_select="lsp"
  1647. qdm2_decoder_select="mdct rdft mpegaudiodsp"
  1648. ra_144_encoder_select="audio_frame_queue lpc"
  1649. ralf_decoder_select="golomb"
  1650. rv10_decoder_select="error_resilience h263_decoder h263dsp"
  1651. rv10_encoder_select="h263_encoder"
  1652. rv20_decoder_select="error_resilience h263_decoder h263dsp"
  1653. rv20_encoder_select="h263_encoder"
  1654. rv30_decoder_select="error_resilience golomb h264chroma h264pred h264qpel mpegvideo videodsp"
  1655. rv40_decoder_select="error_resilience golomb h264chroma h264pred h264qpel mpegvideo videodsp"
  1656. shorten_decoder_select="golomb"
  1657. sipr_decoder_select="lsp"
  1658. sp5x_decoder_select="mjpeg_decoder"
  1659. svq1_decoder_select="hpeldsp"
  1660. svq1_encoder_select="aandcttables dsputil hpeldsp mpegvideoenc"
  1661. svq3_decoder_select="h264_decoder hpeldsp tpeldsp"
  1662. svq3_decoder_suggest="zlib"
  1663. tak_decoder_select="dsputil"
  1664. theora_decoder_select="vp3_decoder"
  1665. thp_decoder_select="mjpeg_decoder"
  1666. tiff_decoder_suggest="zlib"
  1667. tiff_encoder_suggest="zlib"
  1668. truehd_decoder_select="mlp_decoder"
  1669. truemotion2_decoder_select="dsputil"
  1670. truespeech_decoder_select="dsputil"
  1671. tscc_decoder_deps="zlib"
  1672. twinvq_decoder_select="mdct lsp sinewin"
  1673. utvideo_decoder_select="dsputil"
  1674. utvideo_encoder_select="dsputil huffman"
  1675. vble_decoder_select="dsputil"
  1676. vc1_decoder_select="error_resilience h263_decoder h264chroma h264qpel intrax8"
  1677. vc1image_decoder_select="vc1_decoder"
  1678. vorbis_decoder_select="mdct"
  1679. vorbis_encoder_select="mdct"
  1680. vp3_decoder_select="hpeldsp vp3dsp videodsp"
  1681. vp5_decoder_select="h264chroma hpeldsp videodsp vp3dsp"
  1682. vp6_decoder_select="h264chroma hpeldsp huffman videodsp vp3dsp"
  1683. vp6a_decoder_select="vp6_decoder"
  1684. vp6f_decoder_select="vp6_decoder"
  1685. vp7_decoder_select="h264pred videodsp"
  1686. vp8_decoder_select="h264pred videodsp"
  1687. vp9_decoder_select="videodsp"
  1688. webp_decoder_select="vp8_decoder"
  1689. wmapro_decoder_select="mdct sinewin"
  1690. wmav1_decoder_select="mdct sinewin"
  1691. wmav1_encoder_select="mdct sinewin"
  1692. wmav2_decoder_select="mdct sinewin"
  1693. wmav2_encoder_select="mdct sinewin"
  1694. wmavoice_decoder_select="lsp rdft dct mdct sinewin"
  1695. wmv1_decoder_select="h263_decoder"
  1696. wmv1_encoder_select="h263_encoder"
  1697. wmv2_decoder_select="h263_decoder intrax8 videodsp"
  1698. wmv2_encoder_select="h263_encoder"
  1699. wmv3_decoder_select="vc1_decoder"
  1700. wmv3image_decoder_select="wmv3_decoder"
  1701. zerocodec_decoder_deps="zlib"
  1702. zlib_decoder_deps="zlib"
  1703. zlib_encoder_deps="zlib"
  1704. zmbv_decoder_deps="zlib"
  1705. zmbv_encoder_deps="zlib"
  1706. # hardware accelerators
  1707. dxva2_deps="dxva2api_h"
  1708. vaapi_deps="va_va_h"
  1709. vda_deps="VideoDecodeAcceleration_VDADecoder_h pthreads"
  1710. vda_extralibs="-framework CoreFoundation -framework VideoDecodeAcceleration -framework QuartzCore"
  1711. vdpau_deps="vdpau_vdpau_h vdpau_vdpau_x11_h"
  1712. h263_vaapi_hwaccel_deps="vaapi"
  1713. h263_vaapi_hwaccel_select="h263_decoder"
  1714. h263_vdpau_hwaccel_deps="vdpau"
  1715. h263_vdpau_hwaccel_select="h263_decoder"
  1716. h264_dxva2_hwaccel_deps="dxva2"
  1717. h264_dxva2_hwaccel_select="h264_decoder"
  1718. h264_vaapi_hwaccel_deps="vaapi"
  1719. h264_vaapi_hwaccel_select="h264_decoder"
  1720. h264_vda_hwaccel_deps="vda"
  1721. h264_vda_hwaccel_select="h264_decoder"
  1722. h264_vda_old_hwaccel_deps="vda"
  1723. h264_vda_old_hwaccel_select="h264_decoder"
  1724. h264_vdpau_hwaccel_deps="vdpau"
  1725. h264_vdpau_hwaccel_select="h264_decoder"
  1726. mpeg1_vdpau_hwaccel_deps="vdpau"
  1727. mpeg1_vdpau_hwaccel_select="mpeg1video_decoder"
  1728. mpeg2_dxva2_hwaccel_deps="dxva2"
  1729. mpeg2_dxva2_hwaccel_select="mpeg2video_decoder"
  1730. mpeg2_vaapi_hwaccel_deps="vaapi"
  1731. mpeg2_vaapi_hwaccel_select="mpeg2video_decoder"
  1732. mpeg2_vdpau_hwaccel_deps="vdpau"
  1733. mpeg2_vdpau_hwaccel_select="mpeg2video_decoder"
  1734. mpeg4_vaapi_hwaccel_deps="vaapi"
  1735. mpeg4_vaapi_hwaccel_select="mpeg4_decoder"
  1736. mpeg4_vdpau_hwaccel_deps="vdpau"
  1737. mpeg4_vdpau_hwaccel_select="mpeg4_decoder"
  1738. vc1_dxva2_hwaccel_deps="dxva2"
  1739. vc1_dxva2_hwaccel_select="vc1_decoder"
  1740. vc1_vaapi_hwaccel_deps="vaapi"
  1741. vc1_vaapi_hwaccel_select="vc1_decoder"
  1742. vc1_vdpau_hwaccel_deps="vdpau"
  1743. vc1_vdpau_hwaccel_select="vc1_decoder"
  1744. wmv3_dxva2_hwaccel_select="vc1_dxva2_hwaccel"
  1745. wmv3_vaapi_hwaccel_select="vc1_vaapi_hwaccel"
  1746. wmv3_vdpau_hwaccel_select="vc1_vdpau_hwaccel"
  1747. # parsers
  1748. h264_parser_select="h264_decoder"
  1749. mpeg4video_parser_select="error_resilience h263dsp mpegvideo"
  1750. mpegvideo_parser_select="error_resilience mpegvideo"
  1751. vc1_parser_select="mpegvideo"
  1752. # external libraries
  1753. libfaac_encoder_deps="libfaac"
  1754. libfaac_encoder_select="audio_frame_queue"
  1755. libfdk_aac_decoder_deps="libfdk_aac"
  1756. libfdk_aac_encoder_deps="libfdk_aac"
  1757. libfdk_aac_encoder_select="audio_frame_queue"
  1758. libgsm_decoder_deps="libgsm"
  1759. libgsm_encoder_deps="libgsm"
  1760. libgsm_ms_decoder_deps="libgsm"
  1761. libgsm_ms_encoder_deps="libgsm"
  1762. libilbc_decoder_deps="libilbc"
  1763. libilbc_encoder_deps="libilbc"
  1764. libmp3lame_encoder_deps="libmp3lame"
  1765. libmp3lame_encoder_select="audio_frame_queue"
  1766. libopencore_amrnb_decoder_deps="libopencore_amrnb"
  1767. libopencore_amrnb_encoder_deps="libopencore_amrnb"
  1768. libopencore_amrnb_encoder_select="audio_frame_queue"
  1769. libopencore_amrwb_decoder_deps="libopencore_amrwb"
  1770. libopenjpeg_decoder_deps="libopenjpeg"
  1771. libopenjpeg_encoder_deps="libopenjpeg"
  1772. libopus_decoder_deps="libopus"
  1773. libopus_encoder_deps="libopus"
  1774. libopus_encoder_select="audio_frame_queue"
  1775. libschroedinger_decoder_deps="libschroedinger"
  1776. libschroedinger_encoder_deps="libschroedinger"
  1777. libspeex_decoder_deps="libspeex"
  1778. libspeex_encoder_deps="libspeex"
  1779. libspeex_encoder_select="audio_frame_queue"
  1780. libtheora_encoder_deps="libtheora"
  1781. libtwolame_encoder_deps="libtwolame"
  1782. libvo_aacenc_encoder_deps="libvo_aacenc"
  1783. libvo_aacenc_encoder_select="audio_frame_queue"
  1784. libvo_amrwbenc_encoder_deps="libvo_amrwbenc"
  1785. libvorbis_encoder_deps="libvorbis"
  1786. libvorbis_encoder_select="audio_frame_queue"
  1787. libvpx_vp8_decoder_deps="libvpx"
  1788. libvpx_vp8_encoder_deps="libvpx"
  1789. libvpx_vp9_decoder_deps="libvpx"
  1790. libvpx_vp9_encoder_deps="libvpx"
  1791. libwavpack_encoder_deps="libwavpack"
  1792. libwebp_encoder_deps="libwebp"
  1793. libx264_encoder_deps="libx264"
  1794. libx265_encoder_deps="libx265"
  1795. libxavs_encoder_deps="libxavs"
  1796. libxvid_encoder_deps="libxvid"
  1797. # demuxers / muxers
  1798. ac3_demuxer_select="ac3_parser"
  1799. asf_demuxer_select="riffdec"
  1800. asf_muxer_select="riffenc"
  1801. asf_stream_muxer_select="asf_muxer"
  1802. avi_demuxer_select="riffdec"
  1803. avi_muxer_select="riffenc"
  1804. avisynth_demuxer_deps="avisynth"
  1805. avisynth_demuxer_select="riffdec"
  1806. caf_demuxer_select="riffdec"
  1807. dirac_demuxer_select="dirac_parser"
  1808. dxa_demuxer_select="riffdec"
  1809. eac3_demuxer_select="ac3_parser"
  1810. f4v_muxer_select="mov_muxer"
  1811. flac_demuxer_select="flac_parser"
  1812. hds_muxer_select="flv_muxer"
  1813. hls_muxer_select="mpegts_muxer"
  1814. ipod_muxer_select="mov_muxer"
  1815. ismv_muxer_select="mov_muxer"
  1816. matroska_audio_muxer_select="matroska_muxer"
  1817. matroska_demuxer_select="riffdec"
  1818. matroska_demuxer_suggest="bzlib lzo zlib"
  1819. matroska_muxer_select="riffenc"
  1820. mmf_muxer_select="riffenc"
  1821. mov_demuxer_select="riffdec"
  1822. mov_demuxer_suggest="zlib"
  1823. mov_muxer_select="riffenc rtpenc_chain"
  1824. mp3_demuxer_select="mpegaudio_parser"
  1825. mp4_muxer_select="mov_muxer"
  1826. mpegts_muxer_select="adts_muxer latm_muxer"
  1827. mpegtsraw_demuxer_select="mpegts_demuxer"
  1828. mxf_d10_muxer_select="mxf_muxer"
  1829. nut_muxer_select="riffenc"
  1830. nuv_demuxer_select="riffdec"
  1831. ogg_demuxer_select="golomb"
  1832. psp_muxer_select="mov_muxer"
  1833. rtp_demuxer_select="sdp_demuxer"
  1834. rtpdec_select="asf_demuxer rm_demuxer rtp_protocol mpegts_demuxer mov_demuxer"
  1835. rtsp_demuxer_select="http_protocol rtpdec"
  1836. rtsp_muxer_select="rtp_muxer http_protocol rtp_protocol rtpenc_chain"
  1837. sap_demuxer_select="sdp_demuxer"
  1838. sap_muxer_select="rtp_muxer rtp_protocol rtpenc_chain"
  1839. sdp_demuxer_select="rtpdec"
  1840. smoothstreaming_muxer_select="ismv_muxer"
  1841. spdif_muxer_select="aac_parser"
  1842. tak_demuxer_select="tak_parser"
  1843. tg2_muxer_select="mov_muxer"
  1844. tgp_muxer_select="mov_muxer"
  1845. w64_demuxer_select="wav_demuxer"
  1846. wav_demuxer_select="riffdec"
  1847. wav_muxer_select="riffenc"
  1848. webm_muxer_select="riffenc"
  1849. wtv_demuxer_select="riffdec"
  1850. xmv_demuxer_select="riffdec"
  1851. xwma_demuxer_select="riffdec"
  1852. # indevs / outdevs
  1853. alsa_indev_deps="alsa_asoundlib_h snd_pcm_htimestamp"
  1854. alsa_outdev_deps="alsa_asoundlib_h"
  1855. bktr_indev_deps_any="dev_bktr_ioctl_bt848_h machine_ioctl_bt848_h dev_video_bktr_ioctl_bt848_h dev_ic_bt8xx_h"
  1856. dv1394_indev_deps="dv1394"
  1857. dv1394_indev_select="dv_demuxer"
  1858. fbdev_indev_deps="linux_fb_h"
  1859. jack_indev_deps="jack_jack_h pthreads"
  1860. libcdio_indev_deps="libcdio"
  1861. libdc1394_indev_deps="libdc1394"
  1862. oss_indev_deps_any="soundcard_h sys_soundcard_h"
  1863. oss_outdev_deps_any="soundcard_h sys_soundcard_h"
  1864. pulse_indev_deps="libpulse"
  1865. sndio_indev_deps="sndio_h"
  1866. sndio_outdev_deps="sndio_h"
  1867. v4l2_indev_deps_any="linux_videodev2_h sys_videoio_h"
  1868. vfwcap_indev_deps="capCreateCaptureWindow vfwcap_defines"
  1869. vfwcap_indev_extralibs="-lavicap32"
  1870. x11grab_indev_deps="x11grab XShmCreateImage"
  1871. # protocols
  1872. ffrtmpcrypt_protocol_deps="!librtmp_protocol"
  1873. ffrtmpcrypt_protocol_deps_any="gcrypt nettle openssl"
  1874. ffrtmpcrypt_protocol_select="tcp_protocol"
  1875. ffrtmphttp_protocol_deps="!librtmp_protocol"
  1876. ffrtmphttp_protocol_select="http_protocol"
  1877. gopher_protocol_select="network"
  1878. http_protocol_select="tcp_protocol"
  1879. httpproxy_protocol_select="tcp_protocol"
  1880. https_protocol_select="tls_protocol"
  1881. librtmp_protocol_deps="librtmp"
  1882. librtmpe_protocol_deps="librtmp"
  1883. librtmps_protocol_deps="librtmp"
  1884. librtmpt_protocol_deps="librtmp"
  1885. librtmpte_protocol_deps="librtmp"
  1886. mmsh_protocol_select="http_protocol"
  1887. mmst_protocol_select="network"
  1888. rtmp_protocol_deps="!librtmp_protocol"
  1889. rtmp_protocol_select="tcp_protocol"
  1890. rtmpe_protocol_select="ffrtmpcrypt_protocol"
  1891. rtmps_protocol_deps="!librtmp_protocol"
  1892. rtmps_protocol_select="tls_protocol"
  1893. rtmpt_protocol_select="ffrtmphttp_protocol"
  1894. rtmpte_protocol_select="ffrtmpcrypt_protocol ffrtmphttp_protocol"
  1895. rtmpts_protocol_select="ffrtmphttp_protocol https_protocol"
  1896. rtp_protocol_select="udp_protocol"
  1897. sctp_protocol_deps="struct_sctp_event_subscribe"
  1898. sctp_protocol_select="network"
  1899. srtp_protocol_select="rtp_protocol"
  1900. tcp_protocol_select="network"
  1901. tls_protocol_deps_any="openssl gnutls"
  1902. tls_protocol_select="tcp_protocol"
  1903. udp_protocol_select="network"
  1904. unix_protocol_deps="sys_un_h"
  1905. unix_protocol_select="network"
  1906. # filters
  1907. blackframe_filter_deps="gpl"
  1908. boxblur_filter_deps="gpl"
  1909. bs2b_filter_deps="libbs2b"
  1910. cropdetect_filter_deps="gpl"
  1911. delogo_filter_deps="gpl"
  1912. drawtext_filter_deps="libfreetype"
  1913. frei0r_filter_deps="frei0r dlopen"
  1914. frei0r_filter_extralibs='$ldl'
  1915. frei0r_src_filter_deps="frei0r dlopen"
  1916. frei0r_src_filter_extralibs='$ldl'
  1917. hqdn3d_filter_deps="gpl"
  1918. interlace_filter_deps="gpl"
  1919. ocv_filter_deps="libopencv"
  1920. resample_filter_deps="avresample"
  1921. scale_filter_deps="swscale"
  1922. # examples
  1923. avcodec_example_deps="avcodec avutil"
  1924. filter_audio_example_deps="avfilter avutil"
  1925. metadata_example_deps="avformat avutil"
  1926. output_example_deps="avcodec avformat avutil swscale"
  1927. transcode_aac_example_deps="avcodec avformat avresample"
  1928. # libraries, in linking order
  1929. avcodec_deps="avutil"
  1930. avdevice_deps="avformat avcodec avutil"
  1931. avfilter_deps="avutil"
  1932. avformat_deps="avcodec avutil"
  1933. avresample_deps="avutil"
  1934. swscale_deps="avutil"
  1935. # programs
  1936. avconv_deps="avcodec avfilter avformat avresample swscale"
  1937. avconv_select="aformat_filter anull_filter asyncts_filter atrim_filter format_filter
  1938. fps_filter null_filter resample_filter scale_filter
  1939. setpts_filter trim_filter"
  1940. avplay_deps="avcodec avformat avresample swscale sdl"
  1941. avplay_libs='$sdl_libs'
  1942. avplay_select="rdft"
  1943. avprobe_deps="avcodec avformat"
  1944. avserver_deps="avformat fork !shared"
  1945. avserver_select="ffm_muxer rtp_protocol rtsp_demuxer"
  1946. # documentation
  1947. pod2man_deps="doc"
  1948. texi2html_deps="doc"
  1949. # default parameters
  1950. logfile="config.log"
  1951. # installation paths
  1952. prefix_default="/usr/local"
  1953. bindir_default='${prefix}/bin'
  1954. datadir_default='${prefix}/share/avconv'
  1955. docdir_default='${prefix}/share/doc/libav'
  1956. incdir_default='${prefix}/include'
  1957. libdir_default='${prefix}/lib'
  1958. mandir_default='${prefix}/share/man'
  1959. shlibdir_default="$libdir_default"
  1960. # toolchain
  1961. ar_default="ar"
  1962. cc_default="gcc"
  1963. host_cc_default="gcc"
  1964. cp_f="cp -f"
  1965. ln_s="ln -s -f"
  1966. nm_default="nm -g"
  1967. objformat="elf"
  1968. pkg_config_default=pkg-config
  1969. ranlib="ranlib"
  1970. strip="strip"
  1971. yasmexe="yasm"
  1972. nogas=":"
  1973. # machine
  1974. arch_default=$(uname -m)
  1975. cpu="generic"
  1976. # OS
  1977. target_os_default=$(tolower $(uname -s))
  1978. host_os=$target_os_default
  1979. # configurable options
  1980. enable $EXAMPLE_LIST $LIBRARY_LIST $PROGRAM_LIST
  1981. enable asm
  1982. enable debug
  1983. enable doc
  1984. enable optimizations
  1985. enable safe_bitstream_reader
  1986. enable static
  1987. enable swscale_alpha
  1988. # By default, enable only those hwaccels that have no external dependencies.
  1989. enable dxva2 vdpau
  1990. # build settings
  1991. SHFLAGS='-shared -Wl,-soname,$$(@F)'
  1992. LIBPREF="lib"
  1993. LIBSUF=".a"
  1994. FULLNAME='$(NAME)$(BUILDSUF)'
  1995. LIBNAME='$(LIBPREF)$(FULLNAME)$(LIBSUF)'
  1996. SLIBPREF="lib"
  1997. SLIBSUF=".so"
  1998. SLIBNAME='$(SLIBPREF)$(FULLNAME)$(SLIBSUF)'
  1999. SLIBNAME_WITH_VERSION='$(SLIBNAME).$(LIBVERSION)'
  2000. SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)'
  2001. LIB_INSTALL_EXTRA_CMD='$$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
  2002. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_VERSION)'
  2003. SLIB_INSTALL_LINKS='$(SLIBNAME_WITH_MAJOR) $(SLIBNAME)'
  2004. asflags_filter=echo
  2005. cflags_filter=echo
  2006. ldflags_filter=echo
  2007. AS_C='-c'
  2008. AS_O='-o $@'
  2009. CC_C='-c'
  2010. CC_E='-E -o $@'
  2011. CC_O='-o $@'
  2012. LD_O='-o $@'
  2013. LD_LIB='-l%'
  2014. LD_PATH='-L'
  2015. HOSTCC_C='-c'
  2016. HOSTCC_E='-E -o $@'
  2017. HOSTCC_O='-o $@'
  2018. HOSTLD_O='-o $@'
  2019. host_libs='-lm'
  2020. host_cflags_filter=echo
  2021. host_ldflags_filter=echo
  2022. target_path='$(CURDIR)'
  2023. # since the object filename is not given with the -MM flag, the compiler
  2024. # is only able to print the basename, and we must add the path ourselves
  2025. DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(*F)\\.o,$(@D)/$(*F).o," > $(@:.o=.d)'
  2026. DEPFLAGS='-MM'
  2027. # find source path
  2028. if test -f configure; then
  2029. source_path=.
  2030. else
  2031. source_path=$(cd $(dirname "$0"); pwd)
  2032. echo "$source_path" | grep -q '[[:blank:]]' &&
  2033. die "Out of tree builds are impossible with whitespace in source path."
  2034. test -e "$source_path/config.h" &&
  2035. die "Out of tree builds are impossible with config.h in source dir."
  2036. fi
  2037. for v in "$@"; do
  2038. r=${v#*=}
  2039. l=${v%"$r"}
  2040. r=$(sh_quote "$r")
  2041. LIBAV_CONFIGURATION="${LIBAV_CONFIGURATION# } ${l}${r}"
  2042. done
  2043. find_things(){
  2044. thing=$1
  2045. pattern=$2
  2046. file=$source_path/$3
  2047. sed -n "s/^[^#]*$pattern.*([^,]*, *\([^,]*\)\(,.*\)*).*/\1_$thing/p" "$file"
  2048. }
  2049. ENCODER_LIST=$(find_things encoder ENC libavcodec/allcodecs.c)
  2050. DECODER_LIST=$(find_things decoder DEC libavcodec/allcodecs.c)
  2051. HWACCEL_LIST=$(find_things hwaccel HWACCEL libavcodec/allcodecs.c)
  2052. PARSER_LIST=$(find_things parser PARSER libavcodec/allcodecs.c)
  2053. BSF_LIST=$(find_things bsf BSF libavcodec/allcodecs.c)
  2054. MUXER_LIST=$(find_things muxer _MUX libavformat/allformats.c)
  2055. DEMUXER_LIST=$(find_things demuxer DEMUX libavformat/allformats.c)
  2056. OUTDEV_LIST=$(find_things outdev OUTDEV libavdevice/alldevices.c)
  2057. INDEV_LIST=$(find_things indev _IN libavdevice/alldevices.c)
  2058. PROTOCOL_LIST=$(find_things protocol PROTOCOL libavformat/allformats.c)
  2059. FILTER_LIST=$(find_things filter FILTER libavfilter/allfilters.c)
  2060. ALL_COMPONENTS="
  2061. $BSF_LIST
  2062. $DECODER_LIST
  2063. $DEMUXER_LIST
  2064. $ENCODER_LIST
  2065. $FILTER_LIST
  2066. $HWACCEL_LIST
  2067. $INDEV_LIST
  2068. $MUXER_LIST
  2069. $OUTDEV_LIST
  2070. $PARSER_LIST
  2071. $PROTOCOL_LIST
  2072. "
  2073. for n in $COMPONENT_LIST; do
  2074. v=$(toupper ${n%s})_LIST
  2075. eval enable \$$v
  2076. eval ${n}_if_any="\$$v"
  2077. done
  2078. enable $ARCH_EXT_LIST
  2079. die_unknown(){
  2080. echo "Unknown option \"$1\"."
  2081. echo "See $0 --help for available options."
  2082. exit 1
  2083. }
  2084. print_3_columns() {
  2085. cat | tr ' ' '\n' | sort | pr -r -3 -t
  2086. }
  2087. show_list() {
  2088. suffix=_$1
  2089. shift
  2090. echo $* | sed s/$suffix//g | print_3_columns
  2091. exit 0
  2092. }
  2093. rand_list(){
  2094. IFS=', '
  2095. set -- $*
  2096. unset IFS
  2097. for thing; do
  2098. comp=${thing%:*}
  2099. prob=${thing#$comp}
  2100. prob=${prob#:}
  2101. is_in ${comp} $COMPONENT_LIST && eval comp=\$$(toupper ${comp%s})_LIST
  2102. echo "prob ${prob:-0.5}"
  2103. printf '%s\n' $comp
  2104. done
  2105. }
  2106. do_random(){
  2107. action=$1
  2108. shift
  2109. random_seed=$(awk "BEGIN { srand($random_seed); print srand() }")
  2110. $action $(rand_list "$@" | awk "BEGIN { srand($random_seed) } \$1 == \"prob\" { prob = \$2; next } rand() < prob { print }")
  2111. }
  2112. for opt do
  2113. optval="${opt#*=}"
  2114. case "$opt" in
  2115. --extra-ldflags=*)
  2116. add_ldflags $optval
  2117. ;;
  2118. --extra-libs=*)
  2119. add_extralibs $optval
  2120. ;;
  2121. --disable-devices)
  2122. disable $INDEV_LIST $OUTDEV_LIST
  2123. ;;
  2124. --enable-debug=*)
  2125. debuglevel="$optval"
  2126. ;;
  2127. --disable-programs)
  2128. disable $PROGRAM_LIST
  2129. ;;
  2130. --disable-everything)
  2131. map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
  2132. ;;
  2133. --disable-all)
  2134. map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
  2135. disable $LIBRARY_LIST $PROGRAM_LIST doc
  2136. ;;
  2137. --enable-random|--disable-random)
  2138. action=${opt%%-random}
  2139. do_random ${action#--} $COMPONENT_LIST
  2140. ;;
  2141. --enable-random=*|--disable-random=*)
  2142. action=${opt%%-random=*}
  2143. do_random ${action#--} $optval
  2144. ;;
  2145. --enable-*=*|--disable-*=*)
  2146. eval $(echo "${opt%%=*}" | sed 's/--/action=/;s/-/ thing=/')
  2147. is_in "${thing}s" $COMPONENT_LIST || die_unknown "$opt"
  2148. eval list=\$$(toupper $thing)_LIST
  2149. name=$(echo "${optval}" | sed "s/,/_${thing}|/g")_${thing}
  2150. $action $(filter "$name" $list)
  2151. ;;
  2152. --enable-?*|--disable-?*)
  2153. eval $(echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g')
  2154. if is_in $option $COMPONENT_LIST; then
  2155. test $action = disable && action=unset
  2156. eval $action \$$(toupper ${option%s})_LIST
  2157. elif is_in $option $CMDLINE_SELECT; then
  2158. $action $option
  2159. else
  2160. die_unknown $opt
  2161. fi
  2162. ;;
  2163. --list-*)
  2164. NAME="${opt#--list-}"
  2165. is_in $NAME $COMPONENT_LIST || die_unknown $opt
  2166. NAME=${NAME%s}
  2167. eval show_list $NAME \$$(toupper $NAME)_LIST
  2168. ;;
  2169. --help|-h) show_help
  2170. ;;
  2171. *)
  2172. optname="${opt%%=*}"
  2173. optname="${optname#--}"
  2174. optname=$(echo "$optname" | sed 's/-/_/g')
  2175. if is_in $optname $CMDLINE_SET; then
  2176. eval $optname='$optval'
  2177. elif is_in $optname $CMDLINE_APPEND; then
  2178. append $optname "$optval"
  2179. else
  2180. die_unknown $opt
  2181. fi
  2182. ;;
  2183. esac
  2184. done
  2185. disabled logging && logfile=/dev/null
  2186. echo "# $0 $LIBAV_CONFIGURATION" > $logfile
  2187. set >> $logfile
  2188. test -n "$cross_prefix" && enable cross_compile
  2189. if enabled cross_compile; then
  2190. test -n "$arch" && test -n "$target_os" ||
  2191. die "Must specify target arch and OS when cross-compiling"
  2192. fi
  2193. ar_default="${cross_prefix}${ar_default}"
  2194. cc_default="${cross_prefix}${cc_default}"
  2195. nm_default="${cross_prefix}${nm_default}"
  2196. pkg_config_default="${cross_prefix}${pkg_config_default}"
  2197. ranlib="${cross_prefix}${ranlib}"
  2198. strip="${cross_prefix}${strip}"
  2199. sysinclude_default="${sysroot}/usr/include"
  2200. case "$toolchain" in
  2201. clang-asan)
  2202. cc_default="clang"
  2203. add_cflags -fsanitize=address
  2204. add_ldflags -fsanitize=address
  2205. ;;
  2206. clang-tsan)
  2207. cc_default="clang"
  2208. add_cflags -fsanitize=thread -pie
  2209. add_ldflags -fsanitize=thread -pie
  2210. ;;
  2211. clang-usan)
  2212. cc_default="clang"
  2213. add_cflags -fsanitize=undefined
  2214. add_ldflags -fsanitize=undefined
  2215. ;;
  2216. gcc-asan)
  2217. cc_default="gcc"
  2218. add_cflags -fsanitize=address
  2219. add_ldflags -fsanitize=address
  2220. ;;
  2221. gcc-tsan)
  2222. cc_default="gcc"
  2223. add_cflags -fsanitize=thread -pie -fPIC
  2224. add_ldflags -fsanitize=thread -pie -fPIC
  2225. ;;
  2226. gcc-usan)
  2227. cc_default="gcc"
  2228. add_cflags -fsanitize=undefined
  2229. add_ldflags -fsanitize=undefined
  2230. ;;
  2231. valgrind-massif)
  2232. target_exec_default="valgrind"
  2233. target_exec_args="--alloc-fn=av_malloc --alloc-fn=av_mallocz"
  2234. ;;
  2235. valgrind-memcheck)
  2236. target_exec_default="valgrind"
  2237. target_exec_args="--track-origins=yes --leak-check=full"
  2238. ;;
  2239. msvc)
  2240. # Check whether the current MSVC version needs the C99 converter.
  2241. # From MSVC 2013 (compiler major version 18) onwards, it does actually
  2242. # support enough of C99 to build libav. Default to the new
  2243. # behaviour if the regexp was unable to match anything, since this
  2244. # successfully parses the version number of existing supported
  2245. # versions that require the converter (MSVC 2010 and 2012).
  2246. cl_major_ver=$(cl 2>&1 | sed -n 's/.*Version \([[:digit:]]\{1,\}\)\..*/\1/p')
  2247. if [ -z "$cl_major_ver" ] || [ $cl_major_ver -ge 18 ]; then
  2248. cc_default="cl"
  2249. else
  2250. cc_default="c99wrap cl"
  2251. fi
  2252. ld_default="link"
  2253. nm_default="dumpbin -symbols"
  2254. ar_default="lib"
  2255. target_os_default="win32"
  2256. # Use a relative path for TMPDIR. This makes sure all the
  2257. # ffconf temp files are written with a relative path, avoiding
  2258. # issues with msys/win32 path conversion for MSVC parameters
  2259. # such as -Fo<file> or -out:<file>.
  2260. TMPDIR=.
  2261. ;;
  2262. icl)
  2263. cc_default="icl"
  2264. ld_default="xilink"
  2265. nm_default="dumpbin -symbols"
  2266. ar_default="xilib"
  2267. target_os_default="win32"
  2268. TMPDIR=.
  2269. ;;
  2270. gcov)
  2271. add_cflags -fprofile-arcs -ftest-coverage
  2272. add_ldflags -fprofile-arcs -ftest-coverage
  2273. ;;
  2274. hardened)
  2275. add_cflags -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fno-strict-overflow -fstack-protector-all
  2276. add_ldflags -Wl,-z,relro -Wl,-z,now
  2277. ;;
  2278. ?*)
  2279. die "Unknown toolchain $toolchain"
  2280. ;;
  2281. esac
  2282. set_default arch cc pkg_config sysinclude target_exec target_os
  2283. enabled cross_compile || host_cc_default=$cc
  2284. set_default host_cc
  2285. if ! $pkg_config --version >/dev/null 2>&1; then
  2286. warn "$pkg_config not found, library detection may fail."
  2287. pkg_config=false
  2288. fi
  2289. exesuf() {
  2290. case $1 in
  2291. mingw32*|win32|win64|cygwin*|*-dos|freedos|opendos|os/2*|symbian) echo .exe ;;
  2292. esac
  2293. }
  2294. EXESUF=$(exesuf $target_os)
  2295. HOSTEXESUF=$(exesuf $host_os)
  2296. # set temporary file name
  2297. : ${TMPDIR:=$TEMPDIR}
  2298. : ${TMPDIR:=$TMP}
  2299. : ${TMPDIR:=/tmp}
  2300. if ! check_cmd mktemp -u XXXXXX; then
  2301. # simple replacement for missing mktemp
  2302. # NOT SAFE FOR GENERAL USE
  2303. mktemp(){
  2304. echo "${2%%XXX*}.${HOSTNAME}.${UID}.$$"
  2305. }
  2306. fi
  2307. tmpfile(){
  2308. tmp=$(mktemp -u "${TMPDIR}/ffconf.XXXXXXXX")$2 &&
  2309. (set -C; exec > $tmp) 2>/dev/null ||
  2310. die "Unable to create temporary file in $TMPDIR."
  2311. append TMPFILES $tmp
  2312. eval $1=$tmp
  2313. }
  2314. trap 'rm -f -- $TMPFILES' EXIT
  2315. tmpfile TMPASM .asm
  2316. tmpfile TMPC .c
  2317. tmpfile TMPE $EXESUF
  2318. tmpfile TMPH .h
  2319. tmpfile TMPO .o
  2320. tmpfile TMPS .S
  2321. tmpfile TMPSH .sh
  2322. tmpfile TMPV .ver
  2323. unset -f mktemp
  2324. chmod +x $TMPE
  2325. # make sure we can execute files in $TMPDIR
  2326. cat > $TMPSH 2>> $logfile <<EOF
  2327. #! /bin/sh
  2328. EOF
  2329. chmod +x $TMPSH >> $logfile 2>&1
  2330. if ! $TMPSH >> $logfile 2>&1; then
  2331. cat <<EOF
  2332. Unable to create and execute files in $TMPDIR. Set the TMPDIR environment
  2333. variable to another directory and make sure that it is not mounted noexec.
  2334. EOF
  2335. die "Sanity test failed."
  2336. fi
  2337. ccc_flags(){
  2338. for flag; do
  2339. case $flag in
  2340. -std=c99) echo -c99 ;;
  2341. -mcpu=*) echo -arch ${flag#*=} ;;
  2342. -mieee) echo -ieee ;;
  2343. -O*|-fast) echo $flag ;;
  2344. -fno-math-errno) echo -assume nomath_errno ;;
  2345. -g) echo -g3 ;;
  2346. -Wall) echo -msg_enable level2 ;;
  2347. -Wno-pointer-sign) echo -msg_disable ptrmismatch1 ;;
  2348. -Wl,*) echo $flag ;;
  2349. -f*|-W*) ;;
  2350. *) echo $flag ;;
  2351. esac
  2352. done
  2353. }
  2354. cparser_flags(){
  2355. for flag; do
  2356. case $flag in
  2357. -Wno-switch) echo -Wno-switch-enum ;;
  2358. -Wno-format-zero-length) ;;
  2359. -Wdisabled-optimization) ;;
  2360. -Wno-pointer-sign) echo -Wno-other ;;
  2361. *) echo $flag ;;
  2362. esac
  2363. done
  2364. }
  2365. msvc_common_flags(){
  2366. for flag; do
  2367. case $flag in
  2368. # In addition to specifying certain flags under the compiler
  2369. # specific filters, they must be specified here as well or else the
  2370. # generic catch all at the bottom will print the original flag.
  2371. -Wall) ;;
  2372. -std=c99) ;;
  2373. # Common flags
  2374. -fomit-frame-pointer) ;;
  2375. -g) echo -Z7 ;;
  2376. -fno-math-errno) ;;
  2377. -fno-common) ;;
  2378. -fno-signed-zeros) ;;
  2379. -fPIC) ;;
  2380. -mthumb) ;;
  2381. -march=*) ;;
  2382. -lz) echo zlib.lib ;;
  2383. -lavifil32) echo vfw32.lib ;;
  2384. -lavicap32) echo vfw32.lib user32.lib ;;
  2385. -l*) echo ${flag#-l}.lib ;;
  2386. *) echo $flag ;;
  2387. esac
  2388. done
  2389. }
  2390. msvc_flags(){
  2391. msvc_common_flags "$@"
  2392. for flag; do
  2393. case $flag in
  2394. -Wall) echo -W4 -wd4244 -wd4127 -wd4018 -wd4389 \
  2395. -wd4146 -wd4057 -wd4204 -wd4706 -wd4305 \
  2396. -wd4152 -wd4324 -we4013 -wd4100 -wd4214 \
  2397. -wd4273 ;;
  2398. esac
  2399. done
  2400. }
  2401. icl_flags(){
  2402. msvc_common_flags "$@"
  2403. for flag; do
  2404. case $flag in
  2405. # Despite what Intel's documentation says -Wall, which is supported
  2406. # on Windows, does enable remarks so disable them here.
  2407. -Wall) echo $flag -Qdiag-disable:remark ;;
  2408. -std=c99) echo -Qstd=c99 ;;
  2409. esac
  2410. done
  2411. }
  2412. pgi_flags(){
  2413. for flag; do
  2414. case $flag in
  2415. -flto) echo -Mipa=fast,libopt,libinline,vestigial ;;
  2416. -fomit-frame-pointer) echo -Mnoframe ;;
  2417. -g) echo -gopt ;;
  2418. *) echo $flag ;;
  2419. esac
  2420. done
  2421. }
  2422. suncc_flags(){
  2423. for flag; do
  2424. case $flag in
  2425. -march=*|-mcpu=*)
  2426. case "${flag#*=}" in
  2427. native) echo -xtarget=native ;;
  2428. v9|niagara) echo -xarch=sparc ;;
  2429. ultrasparc) echo -xarch=sparcvis ;;
  2430. ultrasparc3|niagara2) echo -xarch=sparcvis2 ;;
  2431. i586|pentium) echo -xchip=pentium ;;
  2432. i686|pentiumpro|pentium2) echo -xtarget=pentium_pro ;;
  2433. pentium3*|c3-2) echo -xtarget=pentium3 ;;
  2434. pentium-m) echo -xarch=sse2 -xchip=pentium3 ;;
  2435. pentium4*) echo -xtarget=pentium4 ;;
  2436. prescott|nocona) echo -xarch=sse3 -xchip=pentium4 ;;
  2437. *-sse3) echo -xarch=sse3 ;;
  2438. core2) echo -xarch=ssse3 -xchip=core2 ;;
  2439. corei7) echo -xarch=sse4_2 -xchip=nehalem ;;
  2440. corei7-avx) echo -xarch=avx -xchip=sandybridge ;;
  2441. amdfam10|barcelona|bdver*) echo -xarch=sse4_1 ;;
  2442. athlon-4|athlon-[mx]p) echo -xarch=ssea ;;
  2443. k8|opteron|athlon64|athlon-fx)
  2444. echo -xarch=sse2a ;;
  2445. athlon*) echo -xarch=pentium_proa ;;
  2446. esac
  2447. ;;
  2448. -std=c99) echo -xc99 ;;
  2449. -fomit-frame-pointer) echo -xregs=frameptr ;;
  2450. -fPIC) echo -KPIC -xcode=pic32 ;;
  2451. -W*,*) echo $flag ;;
  2452. -f*-*|-W*|-mimpure-text) ;;
  2453. -shared) echo -G ;;
  2454. *) echo $flag ;;
  2455. esac
  2456. done
  2457. }
  2458. tms470_flags(){
  2459. for flag; do
  2460. case $flag in
  2461. -march=*|-mcpu=*)
  2462. case "${flag#*=}" in
  2463. armv7-a|cortex-a*) echo -mv=7a8 ;;
  2464. armv7-r|cortex-r*) echo -mv=7r4 ;;
  2465. armv7-m|cortex-m*) echo -mv=7m3 ;;
  2466. armv6*|arm11*) echo -mv=6 ;;
  2467. armv5*e|arm[79]*e*|arm9[24]6*|arm96*|arm102[26])
  2468. echo -mv=5e ;;
  2469. armv4*|arm7*|arm9[24]*) echo -mv=4 ;;
  2470. esac
  2471. ;;
  2472. -mfpu=neon) echo --float_support=vfpv3 --neon ;;
  2473. -mfpu=vfp) echo --float_support=vfpv2 ;;
  2474. -mfpu=vfpv3) echo --float_support=vfpv3 ;;
  2475. -mfpu=vfpv3-d16) echo --float_support=vfpv3d16 ;;
  2476. -msoft-float) echo --float_support=vfplib ;;
  2477. -O[0-3]|-mf=*) echo $flag ;;
  2478. -g) echo -g -mn ;;
  2479. -pds=*) echo $flag ;;
  2480. -D*|-I*) echo $flag ;;
  2481. --gcc|--abi=*) echo $flag ;;
  2482. -me) echo $flag ;;
  2483. esac
  2484. done
  2485. }
  2486. probe_cc(){
  2487. pfx=$1
  2488. _cc=$2
  2489. unset _type _ident _cc_c _cc_e _cc_o _flags _cflags
  2490. unset _ld_o _ldflags _ld_lib _ld_path
  2491. unset _depflags _DEPCMD _DEPFLAGS
  2492. _flags_filter=echo
  2493. if $_cc -v 2>&1 | grep -q '^gcc.*LLVM'; then
  2494. _type=llvm_gcc
  2495. gcc_extra_ver=$(expr "$($_cc --version | head -n1)" : '.*\((.*)\)')
  2496. _ident="llvm-gcc $($_cc -dumpversion) $gcc_extra_ver"
  2497. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  2498. _cflags_speed='-O3'
  2499. _cflags_size='-Os'
  2500. elif $_cc -v 2>&1 | grep -qi ^gcc; then
  2501. _type=gcc
  2502. gcc_version=$($_cc --version | head -n1)
  2503. gcc_basever=$($_cc -dumpversion)
  2504. gcc_pkg_ver=$(expr "$gcc_version" : '[^ ]* \(([^)]*)\)')
  2505. gcc_ext_ver=$(expr "$gcc_version" : ".*$gcc_pkg_ver $gcc_basever \\(.*\\)")
  2506. _ident=$(cleanws "gcc $gcc_basever $gcc_pkg_ver $gcc_ext_ver")
  2507. if ! $_cc -dumpversion | grep -q '^2\.'; then
  2508. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  2509. fi
  2510. _cflags_speed='-O3'
  2511. _cflags_size='-Os'
  2512. elif $_cc --version 2>/dev/null | grep -q ^icc; then
  2513. _type=icc
  2514. _ident=$($_cc --version | head -n1)
  2515. _depflags='-MMD'
  2516. _cflags_speed='-O3'
  2517. _cflags_size='-Os'
  2518. _cflags_noopt='-O1'
  2519. elif $_cc -v 2>&1 | grep -q xlc; then
  2520. _type=xlc
  2521. _ident=$($_cc -qversion 2>/dev/null | head -n1)
  2522. _cflags_speed='-O5'
  2523. _cflags_size='-O5 -qcompact'
  2524. elif $_cc -V 2>/dev/null | grep -q Compaq; then
  2525. _type=ccc
  2526. _ident=$($_cc -V | head -n1 | cut -d' ' -f1-3)
  2527. _DEPFLAGS='-M'
  2528. _cflags_speed='-fast'
  2529. _cflags_size='-O1'
  2530. _flags_filter=ccc_flags
  2531. elif $_cc --vsn 2>/dev/null | grep -Eq "ARM (C/C\+\+ )?Compiler"; then
  2532. test -d "$sysroot" || die "No valid sysroot specified."
  2533. _type=armcc
  2534. _ident=$($_cc --vsn | head -n1 | sed 's/.*: //')
  2535. armcc_conf="$PWD/armcc.conf"
  2536. $_cc --arm_linux_configure \
  2537. --arm_linux_config_file="$armcc_conf" \
  2538. --configure_sysroot="$sysroot" \
  2539. --configure_cpp_headers="$sysinclude" >>$logfile 2>&1 ||
  2540. die "Error creating armcc configuration file."
  2541. $_cc --vsn | grep -q RVCT && armcc_opt=rvct || armcc_opt=armcc
  2542. _flags="--arm_linux_config_file=$armcc_conf --translate_gcc"
  2543. as_default="${cross_prefix}gcc"
  2544. _depflags='-MMD'
  2545. _cflags_speed='-O3'
  2546. _cflags_size='-Os'
  2547. elif $_cc -version 2>/dev/null | grep -Eq 'TMS470|TI ARM'; then
  2548. _type=tms470
  2549. _ident=$($_cc -version | head -n1 | tr -s ' ')
  2550. _flags='--gcc --abi=eabi -me'
  2551. _cc_e='-ppl -fe=$@'
  2552. _cc_o='-fe=$@'
  2553. _depflags='-ppa -ppd=$(@:.o=.d)'
  2554. _cflags_speed='-O3 -mf=5'
  2555. _cflags_size='-O3 -mf=2'
  2556. _flags_filter=tms470_flags
  2557. elif $_cc -v 2>&1 | grep -q clang; then
  2558. _type=clang
  2559. _ident=$($_cc --version | head -n1)
  2560. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  2561. _cflags_speed='-O3'
  2562. _cflags_size='-Os'
  2563. elif $_cc -V 2>&1 | grep -q Sun; then
  2564. _type=suncc
  2565. _ident=$($_cc -V 2>&1 | head -n1 | cut -d' ' -f 2-)
  2566. _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\," -e "1!s,^.*: , ," > $(@:.o=.d)'
  2567. _DEPFLAGS='-xM1 -xc99'
  2568. _ldflags='-std=c99'
  2569. _cflags_speed='-O5'
  2570. _cflags_size='-O5 -xspace'
  2571. _flags_filter=suncc_flags
  2572. elif $_cc -v 2>&1 | grep -q 'PathScale\|Path64'; then
  2573. _type=pathscale
  2574. _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
  2575. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  2576. _cflags_speed='-O2'
  2577. _cflags_size='-Os'
  2578. _flags_filter='filter_out -Wdisabled-optimization'
  2579. elif $_cc -v 2>&1 | grep -q Open64; then
  2580. _type=open64
  2581. _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
  2582. _depflags='-MMD -MF $(@:.o=.d) -MT $@'
  2583. _cflags_speed='-O2'
  2584. _cflags_size='-Os'
  2585. _flags_filter='filter_out -Wdisabled-optimization|-Wtype-limits|-fno-signed-zeros'
  2586. elif $_cc -V 2>&1 | grep -q Portland; then
  2587. _type=pgi
  2588. _ident="PGI $($_cc -V 2>&1 | awk '/^pgcc/ { print $2; exit }')"
  2589. opt_common='-alias=ansi -Mdse -Mlre -Mpre'
  2590. _cflags_speed="-O3 -Mautoinline -Munroll=c:4 $opt_common"
  2591. _cflags_size="-O2 -Munroll=c:1 $opt_common"
  2592. _cflags_noopt="-O1"
  2593. _flags_filter=pgi_flags
  2594. elif $_cc 2>&1 | grep -q Microsoft; then
  2595. _type=msvc
  2596. _ident=$($cc 2>&1 | head -n1)
  2597. _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< 2>&1 | awk '\''/including/ { sub(/^.*file: */, ""); gsub(/\\/, "/"); if (!match($$0, / /)) print "$@:", $$0 }'\'' > $(@:.o=.d)'
  2598. _DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -showIncludes -Zs'
  2599. _cflags_speed="-O2"
  2600. _cflags_size="-O1"
  2601. if $_cc 2>&1 | grep -q Linker; then
  2602. _ld_o='-out:$@'
  2603. else
  2604. _ld_o='-Fe$@'
  2605. fi
  2606. _cc_o='-Fo$@'
  2607. _cc_e='-P -Fi$@'
  2608. _flags_filter=msvc_flags
  2609. _ld_lib='lib%.a'
  2610. _ld_path='-libpath:'
  2611. _flags='-nologo'
  2612. _cflags='-D_USE_MATH_DEFINES -D_CRT_SECURE_NO_WARNINGS -Dinline=__inline -FIstdlib.h -Dstrtoll=_strtoi64'
  2613. if [ $pfx = hostcc ]; then
  2614. append _cflags -Dsnprintf=_snprintf
  2615. fi
  2616. elif $_cc 2>&1 | grep -q Intel; then
  2617. _type=icl
  2618. _ident=$($cc 2>&1 | head -n1)
  2619. _depflags='-QMMD -QMF$(@:.o=.d) -QMT$@'
  2620. # Not only is O3 broken on 13.x+ but it is slower on all previous
  2621. # versions (tested) as well.
  2622. _cflags_speed="-O2"
  2623. _cflags_size="-O1 -Oi" # -O1 without -Oi miscompiles stuff
  2624. if $_cc 2>&1 | grep -q Linker; then
  2625. _ld_o='-out:$@'
  2626. else
  2627. _ld_o='-Fe$@'
  2628. fi
  2629. _cc_o='-Fo$@'
  2630. _cc_e='-P'
  2631. _flags_filter=icl_flags
  2632. _ld_lib='lib%.a'
  2633. _ld_path='-libpath:'
  2634. # -Qdiag-error to make icl error when seeing certain unknown arguments
  2635. _flags='-nologo -Qdiag-error:4044,10157'
  2636. # -Qvec- -Qsimd- to prevent miscompilation, -GS for consistency
  2637. # with MSVC which enables it by default.
  2638. _cflags='-D_USE_MATH_DEFINES -FIstdlib.h -Dstrtoll=_strtoi64 -Qms0 -Qvec- -Qsimd- -GS'
  2639. if [ $pfx = hostcc ]; then
  2640. append _cflags -Dsnprintf=_snprintf
  2641. fi
  2642. elif $_cc --version 2>/dev/null | grep -q ^cparser; then
  2643. _type=cparser
  2644. _ident=$($_cc --version | head -n1)
  2645. _depflags='-MMD'
  2646. _cflags_speed='-O4'
  2647. _cflags_size='-O2'
  2648. _flags_filter=cparser_flags
  2649. fi
  2650. eval ${pfx}_type=\$_type
  2651. eval ${pfx}_ident=\$_ident
  2652. }
  2653. set_ccvars(){
  2654. eval ${1}_C=\${_cc_c-\${${1}_C}}
  2655. eval ${1}_E=\${_cc_e-\${${1}_E}}
  2656. eval ${1}_O=\${_cc_o-\${${1}_O}}
  2657. if [ -n "$_depflags" ]; then
  2658. eval ${1}_DEPFLAGS=\$_depflags
  2659. else
  2660. eval ${1}DEP=\${_DEPCMD:-\$DEPCMD}
  2661. eval ${1}DEP_FLAGS=\${_DEPFLAGS:-\$DEPFLAGS}
  2662. eval DEP${1}FLAGS=\$_flags
  2663. fi
  2664. }
  2665. probe_cc cc "$cc"
  2666. cflags_filter=$_flags_filter
  2667. cflags_speed=$_cflags_speed
  2668. cflags_size=$_cflags_size
  2669. cflags_noopt=$_cflags_noopt
  2670. add_cflags $_flags $_cflags
  2671. cc_ldflags=$_ldflags
  2672. set_ccvars CC
  2673. probe_cc hostcc "$host_cc"
  2674. host_cflags_filter=$_flags_filter
  2675. add_host_cflags $_flags $_cflags
  2676. set_ccvars HOSTCC
  2677. test -n "$cc_type" && enable $cc_type ||
  2678. warn "Unknown C compiler $cc, unable to select optimal CFLAGS"
  2679. : ${as_default:=$cc}
  2680. : ${dep_cc_default:=$cc}
  2681. : ${ld_default:=$cc}
  2682. : ${host_ld_default:=$host_cc}
  2683. set_default ar as dep_cc ld host_ld
  2684. probe_cc as "$as"
  2685. asflags_filter=$_flags_filter
  2686. add_asflags $_flags $_cflags
  2687. set_ccvars AS
  2688. probe_cc ld "$ld"
  2689. ldflags_filter=$_flags_filter
  2690. add_ldflags $_flags $_ldflags
  2691. test "$cc_type" != "$ld_type" && add_ldflags $cc_ldflags
  2692. LD_O=${_ld_o-$LD_O}
  2693. LD_LIB=${_ld_lib-$LD_LIB}
  2694. LD_PATH=${_ld_path-$LD_PATH}
  2695. probe_cc hostld "$host_ld"
  2696. host_ldflags_filter=$_flags_filter
  2697. add_host_ldflags $_flags $_ldflags
  2698. HOSTLD_O=${_ld_o-$HOSTLD_O}
  2699. if [ -z "$CC_DEPFLAGS" ] && [ "$dep_cc" != "$cc" ]; then
  2700. probe_cc depcc "$dep_cc"
  2701. CCDEP=${_DEPCMD:-$DEPCMD}
  2702. CCDEP_FLAGS=${_DEPFLAGS:=$DEPFLAGS}
  2703. DEPCCFLAGS=$_flags
  2704. fi
  2705. if $ar 2>&1 | grep -q Microsoft; then
  2706. arflags="-nologo"
  2707. ar_o='-out:$@'
  2708. elif $ar 2>&1 | grep -q 'Texas Instruments'; then
  2709. arflags="rq"
  2710. ar_o='$@'
  2711. elif $ar 2>&1 | grep -q 'Usage: ar.*-X.*any'; then
  2712. arflags='-Xany -r -c'
  2713. ar_o='$@'
  2714. else
  2715. arflags="rc"
  2716. ar_o='$@'
  2717. fi
  2718. add_cflags $extra_cflags
  2719. add_asflags $extra_cflags
  2720. if test -n "$sysroot"; then
  2721. case "$cc_type" in
  2722. gcc|llvm_gcc|clang)
  2723. add_cppflags --sysroot="$sysroot"
  2724. add_ldflags --sysroot="$sysroot"
  2725. ;;
  2726. tms470)
  2727. add_cppflags -I"$sysinclude"
  2728. add_ldflags --sysroot="$sysroot"
  2729. ;;
  2730. esac
  2731. fi
  2732. if test "$cpu" = host; then
  2733. enabled cross_compile &&
  2734. die "--cpu=host makes no sense when cross-compiling."
  2735. case "$cc_type" in
  2736. gcc|llvm_gcc)
  2737. check_native(){
  2738. $cc $1=native -v -c -o $TMPO $TMPC >$TMPE 2>&1 || return
  2739. sed -n "/cc1.*$1=/{
  2740. s/.*$1=\\([^ ]*\\).*/\\1/
  2741. p
  2742. q
  2743. }" $TMPE
  2744. }
  2745. cpu=$(check_native -march || check_native -mcpu)
  2746. ;;
  2747. esac
  2748. test "${cpu:-host}" = host &&
  2749. die "--cpu=host not supported with compiler $cc"
  2750. fi
  2751. # Deal with common $arch aliases
  2752. case "$arch" in
  2753. aarch64|arm64)
  2754. arch="aarch64"
  2755. ;;
  2756. arm*)
  2757. arch="arm"
  2758. ;;
  2759. mips*|IP*)
  2760. arch="mips"
  2761. ;;
  2762. parisc*|hppa*)
  2763. arch="parisc"
  2764. ;;
  2765. "Power Macintosh"|ppc*|powerpc*)
  2766. arch="ppc"
  2767. ;;
  2768. s390|s390x)
  2769. arch="s390"
  2770. ;;
  2771. sh4|sh)
  2772. arch="sh4"
  2773. ;;
  2774. sun4u|sparc*)
  2775. arch="sparc"
  2776. ;;
  2777. tilegx|tile-gx)
  2778. arch="tilegx"
  2779. ;;
  2780. i[3-6]86|i86pc|BePC|x86pc|x86_64|amd64)
  2781. arch="x86"
  2782. ;;
  2783. esac
  2784. is_in $arch $ARCH_LIST || warn "unknown architecture $arch"
  2785. enable $arch
  2786. # Add processor-specific flags
  2787. if enabled aarch64; then
  2788. case $cpu in
  2789. armv*)
  2790. cpuflags="-march=$cpu"
  2791. ;;
  2792. *)
  2793. cpuflags="-mcpu=$cpu"
  2794. ;;
  2795. esac
  2796. elif enabled alpha; then
  2797. cpuflags="-mcpu=$cpu"
  2798. elif enabled arm; then
  2799. check_arm_arch() {
  2800. check_cpp_condition stddef.h \
  2801. "defined __ARM_ARCH_${1}__ || defined __TARGET_ARCH_${2:-$1}" \
  2802. $cpuflags
  2803. }
  2804. probe_arm_arch() {
  2805. if check_arm_arch 4; then echo armv4;
  2806. elif check_arm_arch 4T; then echo armv4t;
  2807. elif check_arm_arch 5; then echo armv5;
  2808. elif check_arm_arch 5E; then echo armv5e;
  2809. elif check_arm_arch 5T; then echo armv5t;
  2810. elif check_arm_arch 5TE; then echo armv5te;
  2811. elif check_arm_arch 5TEJ; then echo armv5te;
  2812. elif check_arm_arch 6; then echo armv6;
  2813. elif check_arm_arch 6J; then echo armv6j;
  2814. elif check_arm_arch 6K; then echo armv6k;
  2815. elif check_arm_arch 6Z; then echo armv6z;
  2816. elif check_arm_arch 6ZK; then echo armv6zk;
  2817. elif check_arm_arch 6T2; then echo armv6t2;
  2818. elif check_arm_arch 7; then echo armv7;
  2819. elif check_arm_arch 7A 7_A; then echo armv7-a;
  2820. elif check_arm_arch 7R 7_R; then echo armv7-r;
  2821. elif check_arm_arch 7M 7_M; then echo armv7-m;
  2822. elif check_arm_arch 7EM 7E_M; then echo armv7-m;
  2823. elif check_arm_arch 8A 8_A; then echo armv8-a;
  2824. fi
  2825. }
  2826. [ "$cpu" = generic ] && cpu=$(probe_arm_arch)
  2827. case $cpu in
  2828. armv*)
  2829. cpuflags="-march=$cpu"
  2830. subarch=$(echo $cpu | sed 's/[^a-z0-9]//g')
  2831. ;;
  2832. *)
  2833. cpuflags="-mcpu=$cpu"
  2834. case $cpu in
  2835. cortex-a*) subarch=armv7a ;;
  2836. cortex-r*) subarch=armv7r ;;
  2837. cortex-m*) enable thumb; subarch=armv7m ;;
  2838. arm11*) subarch=armv6 ;;
  2839. arm[79]*e*|arm9[24]6*|arm96*|arm102[26]) subarch=armv5te ;;
  2840. armv4*|arm7*|arm9[24]*) subarch=armv4 ;;
  2841. *) subarch=$(probe_arm_arch) ;;
  2842. esac
  2843. ;;
  2844. esac
  2845. case "$subarch" in
  2846. armv5t*) enable fast_clz ;;
  2847. armv[6-8]*) enable fast_clz fast_unaligned ;;
  2848. esac
  2849. elif enabled avr32; then
  2850. case $cpu in
  2851. ap7[02]0[0-2])
  2852. subarch="avr32_ap"
  2853. cpuflags="-mpart=$cpu"
  2854. ;;
  2855. ap)
  2856. subarch="avr32_ap"
  2857. cpuflags="-march=$cpu"
  2858. ;;
  2859. uc3[ab]*)
  2860. subarch="avr32_uc"
  2861. cpuflags="-mcpu=$cpu"
  2862. ;;
  2863. uc)
  2864. subarch="avr32_uc"
  2865. cpuflags="-march=$cpu"
  2866. ;;
  2867. esac
  2868. elif enabled bfin; then
  2869. cpuflags="-mcpu=$cpu"
  2870. elif enabled mips; then
  2871. cpuflags="-march=$cpu"
  2872. elif enabled ppc; then
  2873. disable ldbrx
  2874. case $(tolower $cpu) in
  2875. 601|ppc601|powerpc601)
  2876. cpuflags="-mcpu=601"
  2877. disable altivec
  2878. ;;
  2879. 603*|ppc603*|powerpc603*)
  2880. cpuflags="-mcpu=603"
  2881. disable altivec
  2882. ;;
  2883. 604*|ppc604*|powerpc604*)
  2884. cpuflags="-mcpu=604"
  2885. disable altivec
  2886. ;;
  2887. g3|75*|ppc75*|powerpc75*)
  2888. cpuflags="-mcpu=750"
  2889. disable altivec
  2890. ;;
  2891. g4|745*|ppc745*|powerpc745*)
  2892. cpuflags="-mcpu=7450"
  2893. ;;
  2894. 74*|ppc74*|powerpc74*)
  2895. cpuflags="-mcpu=7400"
  2896. ;;
  2897. g5|970|ppc970|powerpc970)
  2898. cpuflags="-mcpu=970"
  2899. ;;
  2900. power[3-7]*)
  2901. cpuflags="-mcpu=$cpu"
  2902. ;;
  2903. cell)
  2904. cpuflags="-mcpu=cell"
  2905. enable ldbrx
  2906. ;;
  2907. e500mc)
  2908. cpuflags="-mcpu=e500mc"
  2909. disable altivec
  2910. ;;
  2911. e500v2)
  2912. cpuflags="-mcpu=8548 -mhard-float -mfloat-gprs=double"
  2913. disable altivec
  2914. disable dcbzl
  2915. ;;
  2916. e500)
  2917. cpuflags="-mcpu=8540 -mhard-float"
  2918. disable altivec
  2919. disable dcbzl
  2920. ;;
  2921. esac
  2922. elif enabled sparc; then
  2923. case $cpu in
  2924. cypress|f93[04]|tsc701|sparcl*|supersparc|hypersparc|niagara|v[789])
  2925. cpuflags="-mcpu=$cpu"
  2926. ;;
  2927. ultrasparc*|niagara[234])
  2928. cpuflags="-mcpu=$cpu"
  2929. ;;
  2930. esac
  2931. elif enabled x86; then
  2932. case $cpu in
  2933. i[345]86|pentium)
  2934. cpuflags="-march=$cpu"
  2935. disable mmx
  2936. ;;
  2937. # targets that do NOT support nopl and conditional mov (cmov)
  2938. pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3)
  2939. cpuflags="-march=$cpu"
  2940. disable i686
  2941. ;;
  2942. # targets that do support nopl and conditional mov (cmov)
  2943. i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64*|k8*|opteron*|athlon-fx|core2|corei7*|amdfam10|barcelona|atom|bdver*)
  2944. cpuflags="-march=$cpu"
  2945. enable i686
  2946. enable fast_cmov
  2947. ;;
  2948. # targets that do support conditional mov but on which it's slow
  2949. pentium4|pentium4m|prescott|nocona)
  2950. cpuflags="-march=$cpu"
  2951. enable i686
  2952. disable fast_cmov
  2953. ;;
  2954. esac
  2955. fi
  2956. if [ "$cpu" != generic ]; then
  2957. add_cflags $cpuflags
  2958. add_asflags $cpuflags
  2959. fi
  2960. # compiler sanity check
  2961. check_exec <<EOF
  2962. int main(void){ return 0; }
  2963. EOF
  2964. if test "$?" != 0; then
  2965. echo "$cc is unable to create an executable file."
  2966. if test -z "$cross_prefix" && ! enabled cross_compile ; then
  2967. echo "If $cc is a cross-compiler, use the --enable-cross-compile option."
  2968. echo "Only do this if you know what cross compiling means."
  2969. fi
  2970. die "C compiler test failed."
  2971. fi
  2972. add_cppflags -D_ISOC99_SOURCE
  2973. check_cflags -std=c99
  2974. check_cc -D_FILE_OFFSET_BITS=64 <<EOF && add_cppflags -D_FILE_OFFSET_BITS=64
  2975. #include <stdlib.h>
  2976. EOF
  2977. check_cc -D_LARGEFILE_SOURCE <<EOF && add_cppflags -D_LARGEFILE_SOURCE
  2978. #include <stdlib.h>
  2979. EOF
  2980. add_host_cppflags -D_ISOC99_SOURCE
  2981. check_host_cflags -std=c99
  2982. check_host_cflags -Wall
  2983. check_host_cflags -O3
  2984. check_64bit(){
  2985. arch32=$1
  2986. arch64=$2
  2987. expr=$3
  2988. check_code cc "" "int test[2*($expr) - 1]" &&
  2989. subarch=$arch64 || subarch=$arch32
  2990. }
  2991. case "$arch" in
  2992. aarch64|alpha|ia64)
  2993. spic=$shared
  2994. ;;
  2995. mips)
  2996. check_64bit mips mips64 '_MIPS_SIM > 1'
  2997. spic=$shared
  2998. ;;
  2999. parisc)
  3000. check_64bit parisc parisc64 'sizeof(void *) > 4'
  3001. spic=$shared
  3002. ;;
  3003. ppc)
  3004. check_64bit ppc ppc64 'sizeof(void *) > 4'
  3005. spic=$shared
  3006. ;;
  3007. s390)
  3008. check_64bit s390 s390x 'sizeof(void *) > 4'
  3009. spic=$shared
  3010. ;;
  3011. sparc)
  3012. check_64bit sparc sparc64 'sizeof(void *) > 4'
  3013. spic=$shared
  3014. ;;
  3015. x86)
  3016. check_64bit x86_32 x86_64 'sizeof(void *) > 4'
  3017. if test "$subarch" = "x86_64"; then
  3018. spic=$shared
  3019. fi
  3020. ;;
  3021. esac
  3022. enable $subarch
  3023. enabled spic && enable_weak pic
  3024. # OS specific
  3025. case $target_os in
  3026. aix)
  3027. SHFLAGS=-shared
  3028. add_cppflags '-I\$(SRC_PATH)/compat/aix'
  3029. enabled shared && add_ldflags -Wl,-brtl
  3030. ;;
  3031. haiku)
  3032. prefix_default="/boot/common"
  3033. network_extralibs="-lnetwork"
  3034. host_libs=
  3035. ;;
  3036. sunos)
  3037. SHFLAGS='-shared -Wl,-h,$$(@F)'
  3038. enabled x86 && SHFLAGS="-mimpure-text $SHFLAGS"
  3039. network_extralibs="-lsocket -lnsl"
  3040. # When using suncc to build, the Solaris linker will mark
  3041. # an executable with each instruction set encountered by
  3042. # the Solaris assembler. As our libraries contain their own
  3043. # guards for processor-specific code, instead suppress
  3044. # generation of the HWCAPS ELF section on Solaris x86 only.
  3045. enabled_all suncc x86 &&
  3046. echo "hwcap_1 = OVERRIDE;" > mapfile &&
  3047. add_ldflags -Wl,-M,mapfile
  3048. nm_default='nm -P -g'
  3049. ;;
  3050. netbsd)
  3051. disable symver
  3052. oss_indev_extralibs="-lossaudio"
  3053. oss_outdev_extralibs="-lossaudio"
  3054. ;;
  3055. openbsd|bitrig)
  3056. disable symver
  3057. SHFLAGS='-shared'
  3058. SLIB_INSTALL_NAME='$(SLIBNAME).$(LIBMAJOR).$(LIBMINOR)'
  3059. SLIB_INSTALL_LINKS=
  3060. oss_indev_extralibs="-lossaudio"
  3061. oss_outdev_extralibs="-lossaudio"
  3062. ;;
  3063. dragonfly)
  3064. disable symver
  3065. ;;
  3066. freebsd)
  3067. ;;
  3068. bsd/os)
  3069. add_extralibs -lpoll -lgnugetopt
  3070. ;;
  3071. darwin)
  3072. gas="gas-preprocessor.pl $cc"
  3073. enabled ppc && add_asflags -force_cpusubtype_ALL
  3074. SHFLAGS='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR)'
  3075. enabled x86_32 && append SHFLAGS -Wl,-read_only_relocs,suppress
  3076. add_ldflags -Wl,-dynamic,-search_paths_first
  3077. SLIBSUF=".dylib"
  3078. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)'
  3079. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)'
  3080. objformat="macho"
  3081. enabled x86_64 && objformat="macho64"
  3082. enabled_any pic shared ||
  3083. { check_cflags -mdynamic-no-pic && add_asflags -mdynamic-no-pic; }
  3084. ;;
  3085. mingw32*)
  3086. if test $target_os = "mingw32ce"; then
  3087. disable network
  3088. else
  3089. target_os=mingw32
  3090. fi
  3091. LIBTARGET=i386
  3092. if enabled x86_64; then
  3093. LIBTARGET="i386:x86-64"
  3094. elif enabled arm; then
  3095. LIBTARGET=arm-wince
  3096. fi
  3097. check_ldflags -Wl,--nxcompat
  3098. check_ldflags -Wl,--dynamicbase
  3099. shlibdir_default="$bindir_default"
  3100. SLIBPREF=""
  3101. SLIBSUF=".dll"
  3102. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  3103. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  3104. SLIB_EXTRA_CMD=-'sed -e "s/ @[^ ]*//" $$(@:$(SLIBSUF)=.orig.def) > $$(@:$(SLIBSUF)=.def); $(DLLTOOL) -m $(LIBTARGET) -d $$(@:$(SLIBSUF)=.def) -l $(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib) -D $(SLIBNAME_WITH_MAJOR)'
  3105. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
  3106. SLIB_INSTALL_LINKS=
  3107. SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
  3108. SLIB_INSTALL_EXTRA_LIB='lib$(SLIBNAME:$(SLIBSUF)=.dll.a) $(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
  3109. SHFLAGS='-shared -Wl,--output-def,$$(@:$(SLIBSUF)=.orig.def) -Wl,--out-implib,$(SUBDIR)lib$(SLIBNAME:$(SLIBSUF)=.dll.a) -Wl,--enable-runtime-pseudo-reloc -Wl,--enable-auto-image-base'
  3110. objformat="win32"
  3111. dlltool="${cross_prefix}dlltool"
  3112. ranlib=:
  3113. enable dos_paths
  3114. ;;
  3115. win32|win64)
  3116. disable symver
  3117. if enabled shared; then
  3118. # Link to the import library instead of the normal static library
  3119. # for shared libs.
  3120. LD_LIB='%.lib'
  3121. # Cannot build both shared and static libs with MSVC or icl.
  3122. disable static
  3123. fi
  3124. shlibdir_default="$bindir_default"
  3125. SLIBPREF=""
  3126. SLIBSUF=".dll"
  3127. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  3128. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  3129. SLIB_CREATE_DEF_CMD='$(SRC_PATH)/compat/windows/makedef $(SUBDIR)lib$(NAME).ver $(OBJS) > $$(@:$(SLIBSUF)=.def)'
  3130. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
  3131. SLIB_INSTALL_LINKS=
  3132. SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
  3133. SLIB_INSTALL_EXTRA_LIB='$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
  3134. SHFLAGS='-dll -def:$$(@:$(SLIBSUF)=.def) -implib:$(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib)'
  3135. objformat="win32"
  3136. ranlib=:
  3137. enable dos_paths
  3138. ;;
  3139. cygwin*)
  3140. target_os=cygwin
  3141. shlibdir_default="$bindir_default"
  3142. SLIBPREF="cyg"
  3143. SLIBSUF=".dll"
  3144. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  3145. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  3146. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
  3147. SLIB_INSTALL_LINKS=
  3148. SLIB_INSTALL_EXTRA_LIB='lib$(FULLNAME).dll.a'
  3149. SHFLAGS='-shared -Wl,--out-implib,$(SUBDIR)lib$(FULLNAME).dll.a'
  3150. objformat="win32"
  3151. enable dos_paths
  3152. ;;
  3153. *-dos|freedos|opendos)
  3154. network_extralibs="-lsocket"
  3155. objformat="coff"
  3156. enable dos_paths
  3157. add_cppflags -U__STRICT_ANSI__
  3158. ;;
  3159. linux)
  3160. enable dv1394
  3161. ;;
  3162. irix*)
  3163. target_os=irix
  3164. ranlib="echo ignoring ranlib"
  3165. ;;
  3166. os/2*)
  3167. ln_s="cp -f"
  3168. objformat="aout"
  3169. add_cppflags -D_GNU_SOURCE
  3170. add_ldflags -Zomf -Zbin-files -Zargs-wild -Zmap
  3171. SHFLAGS='$(SUBDIR)$(NAME).def -Zdll -Zomf'
  3172. LIBSUF="_s.a"
  3173. SLIBPREF=""
  3174. SLIBSUF=".dll"
  3175. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
  3176. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(shell echo $(NAME) | cut -c1-6)$(LIBMAJOR)$(SLIBSUF)'
  3177. SLIB_CREATE_DEF_CMD='echo LIBRARY $(SLIBNAME_WITH_MAJOR) INITINSTANCE TERMINSTANCE > $(SUBDIR)$(NAME).def; \
  3178. echo PROTMODE >> $(SUBDIR)$(NAME).def; \
  3179. echo CODE PRELOAD MOVEABLE DISCARDABLE >> $(SUBDIR)$(NAME).def; \
  3180. echo DATA PRELOAD MOVEABLE MULTIPLE NONSHARED >> $(SUBDIR)$(NAME).def; \
  3181. echo EXPORTS >> $(SUBDIR)$(NAME).def; \
  3182. emxexp -o $(OBJS) >> $(SUBDIR)$(NAME).def'
  3183. SLIB_EXTRA_CMD='emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(NAME).def; \
  3184. emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib $(SUBDIR)$(NAME).def;'
  3185. SLIB_INSTALL_EXTRA_LIB='$(LIBPREF)$(NAME)_dll.a $(LIBPREF)$(NAME)_dll.lib'
  3186. enable dos_paths
  3187. ;;
  3188. gnu/kfreebsd)
  3189. add_cppflags -D_BSD_SOURCE
  3190. ;;
  3191. gnu)
  3192. ;;
  3193. qnx)
  3194. add_cppflags -D_QNX_SOURCE
  3195. network_extralibs="-lsocket"
  3196. ;;
  3197. symbian)
  3198. SLIBSUF=".dll"
  3199. enable dos_paths
  3200. add_cflags --include=$sysinclude/gcce/gcce.h -fvisibility=default
  3201. add_cppflags -D__GCCE__ -D__SYMBIAN32__ -DSYMBIAN_OE_POSIX_SIGNALS
  3202. add_ldflags -Wl,--target1-abs,--no-undefined \
  3203. -Wl,-Ttext,0x80000,-Tdata,0x1000000 -shared \
  3204. -Wl,--entry=_E32Startup -Wl,-u,_E32Startup
  3205. add_extralibs -l:eexe.lib -l:usrt2_2.lib -l:dfpaeabi.dso \
  3206. -l:drtaeabi.dso -l:scppnwdl.dso -lsupc++ -lgcc \
  3207. -l:libc.dso -l:libm.dso -l:euser.dso -l:libcrt0.lib
  3208. ;;
  3209. osf1)
  3210. add_cppflags -D_OSF_SOURCE -D_POSIX_PII -D_REENTRANT
  3211. ;;
  3212. minix)
  3213. ;;
  3214. plan9)
  3215. add_cppflags -D_C99_SNPRINTF_EXTENSION \
  3216. -D_REENTRANT_SOURCE \
  3217. -D_RESEARCH_SOURCE \
  3218. -DFD_SETSIZE=96 \
  3219. -DHAVE_SOCK_OPTS
  3220. add_compat strtod.o strtod=avpriv_strtod
  3221. network_extralibs='-lbsd'
  3222. exeobjs=compat/plan9/main.o
  3223. disable avserver
  3224. cp_f='cp'
  3225. ;;
  3226. none)
  3227. ;;
  3228. *)
  3229. die "Unknown OS '$target_os'."
  3230. ;;
  3231. esac
  3232. # determine libc flavour
  3233. probe_libc(){
  3234. pfx=$1
  3235. pfx_no_=${pfx%_}
  3236. # uclibc defines __GLIBC__, so it needs to be checked before glibc.
  3237. if check_${pfx}cpp_condition features.h "defined __UCLIBC__"; then
  3238. eval ${pfx}libc_type=uclibc
  3239. add_${pfx}cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
  3240. elif check_${pfx}cpp_condition features.h "defined __GLIBC__"; then
  3241. eval ${pfx}libc_type=glibc
  3242. add_${pfx}cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
  3243. # MinGW headers can be installed on Cygwin, so check for newlib first.
  3244. elif check_${pfx}cpp_condition newlib.h "defined _NEWLIB_VERSION"; then
  3245. eval ${pfx}libc_type=newlib
  3246. add_${pfx}cppflags -U__STRICT_ANSI__
  3247. # MinGW64 is backwards compatible with MinGW32, so check for it first.
  3248. elif check_${pfx}cpp_condition _mingw.h "defined __MINGW64_VERSION_MAJOR"; then
  3249. eval ${pfx}libc_type=mingw64
  3250. add_${pfx}cppflags -U__STRICT_ANSI__ -D__USE_MINGW_ANSI_STDIO=1
  3251. eval test \$${pfx_no_}cc_type = "gcc" &&
  3252. add_${pfx}cppflags -D__printf__=__gnu_printf__
  3253. elif check_${pfx}cpp_condition _mingw.h "defined __MINGW_VERSION" ||
  3254. check_${pfx}cpp_condition _mingw.h "defined __MINGW32_VERSION"; then
  3255. eval ${pfx}libc_type=mingw32
  3256. check_${pfx}cpp_condition _mingw.h "__MINGW32_MAJOR_VERSION > 3 || \
  3257. (__MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION >= 15)" ||
  3258. die "ERROR: MinGW32 runtime version must be >= 3.15."
  3259. add_${pfx}cppflags -U__STRICT_ANSI__ -D__USE_MINGW_ANSI_STDIO=1
  3260. eval test \$${pfx_no_}cc_type = "gcc" &&
  3261. add_${pfx}cppflags -D__printf__=__gnu_printf__
  3262. elif check_${pfx}cpp_condition crtversion.h "defined _VC_CRT_MAJOR_VERSION"; then
  3263. eval ${pfx}libc_type=msvcrt
  3264. # The MSVC 2010 headers (Win 7.0 SDK) set _WIN32_WINNT to
  3265. # 0x601 by default unless something else is set by the user.
  3266. # This can easily lead to us detecting functions only present
  3267. # in such new versions and producing binaries requiring windows 7.0.
  3268. # Therefore explicitly set the default to XP unless the user has
  3269. # set something else on the command line.
  3270. check_${pfx}cpp_condition stdlib.h "defined(_WIN32_WINNT)" ||
  3271. add_${pfx}cppflags -D_WIN32_WINNT=0x0502
  3272. elif check_${pfx}cpp_condition stddef.h "defined __KLIBC__"; then
  3273. eval ${pfx}libc_type=klibc
  3274. elif check_${pfx}cpp_condition sys/cdefs.h "defined __BIONIC__"; then
  3275. eval ${pfx}libc_type=bionic
  3276. elif check_${pfx}cpp_condition sys/brand.h "defined LABELED_BRAND_NAME"; then
  3277. eval ${pfx}libc_type=solaris
  3278. add_${pfx}cppflags -D__EXTENSIONS__ -D_XOPEN_SOURCE=600
  3279. fi
  3280. }
  3281. probe_libc
  3282. test -n "$libc_type" && enable libc_$libc_type
  3283. probe_libc host_
  3284. test -n "$host_libc_type" && enable host_libc_$host_libc_type
  3285. case $libc_type in
  3286. bionic)
  3287. add_compat strtod.o strtod=avpriv_strtod
  3288. ;;
  3289. msvcrt)
  3290. add_compat strtod.o strtod=avpriv_strtod
  3291. add_compat msvcrt/snprintf.o snprintf=avpriv_snprintf \
  3292. _snprintf=avpriv_snprintf \
  3293. vsnprintf=avpriv_vsnprintf
  3294. ;;
  3295. esac
  3296. # hacks for compiler/libc/os combinations
  3297. if enabled_all tms470 libc_glibc; then
  3298. CPPFLAGS="-I${source_path}/compat/tms470 ${CPPFLAGS}"
  3299. add_cppflags -D__USER_LABEL_PREFIX__=
  3300. add_cppflags -D__builtin_memset=memset
  3301. add_cppflags -D__gnuc_va_list=va_list -D_VA_LIST_DEFINED
  3302. add_cflags -pds=48 # incompatible redefinition of macro
  3303. fi
  3304. if enabled_all ccc libc_glibc; then
  3305. add_ldflags -Wl,-z,now # calls to libots crash without this
  3306. fi
  3307. check_compile_assert flt_lim "float.h limits.h" "DBL_MAX == (double)DBL_MAX" ||
  3308. add_cppflags '-I\$(SRC_PATH)/compat/float'
  3309. esc(){
  3310. echo "$*" | sed 's/%/%25/g;s/:/%3a/g'
  3311. }
  3312. echo "config:$arch:$subarch:$cpu:$target_os:$(esc $cc_ident):$(esc $LIBAV_CONFIGURATION)" >config.fate
  3313. check_cpp_condition stdlib.h "defined(__PIC__) || defined(__pic__) || defined(PIC)" && enable_weak pic
  3314. set_default $PATHS_LIST
  3315. set_default nm
  3316. # we need to build at least one lib type
  3317. if ! enabled_any static shared; then
  3318. cat <<EOF
  3319. At least one library type must be built.
  3320. Specify --enable-static to build the static libraries or --enable-shared to
  3321. build the shared libraries as well. To only build the shared libraries specify
  3322. --disable-static in addition to --enable-shared.
  3323. EOF
  3324. exit 1;
  3325. fi
  3326. die_license_disabled() {
  3327. enabled $1 || { enabled $2 && die "$2 is $1 and --enable-$1 is not specified."; }
  3328. }
  3329. die_license_disabled gpl libcdio
  3330. die_license_disabled gpl libx264
  3331. die_license_disabled gpl libx265
  3332. die_license_disabled gpl libxavs
  3333. die_license_disabled gpl libxvid
  3334. die_license_disabled gpl x11grab
  3335. die_license_disabled nonfree libfaac
  3336. die_license_disabled nonfree libfdk_aac
  3337. die_license_disabled nonfree openssl
  3338. die_license_disabled version3 libopencore_amrnb
  3339. die_license_disabled version3 libopencore_amrwb
  3340. die_license_disabled version3 libvo_aacenc
  3341. die_license_disabled version3 libvo_amrwbenc
  3342. enabled version3 && { enabled gpl && enable gplv3 || enable lgplv3; }
  3343. disabled optimizations || check_cflags -fomit-frame-pointer
  3344. enable_weak_pic() {
  3345. disabled pic && return
  3346. enable pic
  3347. add_cppflags -DPIC
  3348. case "$target_os" in
  3349. mingw*|cygwin*)
  3350. ;;
  3351. *)
  3352. add_cflags -fPIC
  3353. ;;
  3354. esac
  3355. add_asflags -fPIC
  3356. }
  3357. enabled pic && enable_weak_pic
  3358. check_cc <<EOF || die "Symbol mangling check failed."
  3359. int ff_extern;
  3360. EOF
  3361. sym=$($nm $TMPO | awk '/ff_extern/{ print substr($0, match($0, /[^ \t]*ff_extern/)) }')
  3362. extern_prefix=${sym%%ff_extern*}
  3363. check_cc <<EOF && enable_weak inline_asm
  3364. void foo(void) { __asm__ volatile ("" ::); }
  3365. EOF
  3366. _restrict=
  3367. for restrict_keyword in restrict __restrict__ __restrict; do
  3368. check_cc <<EOF && _restrict=$restrict_keyword && break
  3369. void foo(char * $restrict_keyword p);
  3370. EOF
  3371. done
  3372. check_cc <<EOF && enable pragma_deprecated
  3373. void foo(void) { _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"") }
  3374. EOF
  3375. check_cc <<EOF && enable attribute_packed
  3376. struct { int x; } __attribute__((packed)) x;
  3377. EOF
  3378. check_cc <<EOF && enable attribute_may_alias
  3379. union { int x; } __attribute__((may_alias)) x;
  3380. EOF
  3381. check_cc <<EOF || die "endian test failed"
  3382. unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
  3383. EOF
  3384. od -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian
  3385. check_inline_asm inline_asm_labels '"1:\n"'
  3386. if enabled aarch64; then
  3387. enabled armv8 && check_insn armv8 'prfm pldl1strm, [x0]'
  3388. # internal assembler in clang 3.3 does not support this instruction
  3389. enabled neon && check_insn neon 'ext v0.8B, v0.8B, v1.8B, #1'
  3390. enabled vfp && check_insn vfp 'fmadd d0, d0, d1, d2'
  3391. map 'enabled_any ${v}_external ${v}_inline || disable $v' $ARCH_EXT_LIST_ARM
  3392. elif enabled alpha; then
  3393. check_cflags -mieee
  3394. elif enabled arm; then
  3395. check_cpp_condition stddef.h "defined __thumb__" && enable_weak thumb
  3396. enabled thumb && check_cflags -mthumb || check_cflags -marm
  3397. nogas=die
  3398. if check_cpp_condition stddef.h "defined __ARM_PCS_VFP"; then
  3399. enable vfp_args
  3400. elif ! check_cpp_condition stddef.h "defined __ARM_PCS || defined __SOFTFP__"; then
  3401. case "${cross_prefix:-$cc}" in
  3402. *hardfloat*) enable vfp_args; fpabi=vfp ;;
  3403. *) check_ld <<EOF && enable vfp_args && fpabi=vfp || fpabi=soft ;;
  3404. __asm__ (".eabi_attribute 28, 1");
  3405. int main(void) { return 0; }
  3406. EOF
  3407. esac
  3408. warn "Compiler does not indicate floating-point ABI, guessing $fpabi."
  3409. fi
  3410. enabled armv5te && check_insn armv5te 'qadd r0, r0, r0'
  3411. enabled armv6 && check_insn armv6 'sadd16 r0, r0, r0'
  3412. enabled armv6t2 && check_insn armv6t2 'movt r0, #0'
  3413. enabled neon && check_insn neon 'vadd.i16 q0, q0, q0'
  3414. enabled vfp && check_insn vfp 'fadds s0, s0, s0'
  3415. enabled vfpv3 && check_insn vfpv3 'vmov.f32 s0, #1.0'
  3416. [ $target_os = linux ] ||
  3417. map 'enabled_any ${v}_external ${v}_inline || disable $v' \
  3418. $ARCH_EXT_LIST_ARM
  3419. check_inline_asm asm_mod_q '"add r0, %Q0, %R0" :: "r"((long long)0)'
  3420. [ $target_os != win32 ] && enabled_all armv6t2 shared !pic && enable_weak_pic
  3421. elif enabled mips; then
  3422. check_inline_asm loongson '"dmult.g $1, $2, $3"'
  3423. elif enabled parisc; then
  3424. if enabled gcc; then
  3425. case $($cc -dumpversion) in
  3426. 4.[3-8].*) check_cflags -fno-optimize-sibling-calls ;;
  3427. esac
  3428. fi
  3429. elif enabled ppc; then
  3430. enable local_aligned_8 local_aligned_16
  3431. check_inline_asm dcbzl '"dcbzl 0, %0" :: "r"(0)'
  3432. check_inline_asm ibm_asm '"add 0, 0, 0"'
  3433. check_inline_asm ppc4xx '"maclhw r10, r11, r12"'
  3434. check_inline_asm xform_asm '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)'
  3435. # AltiVec flags: The FSF version of GCC differs from the Apple version
  3436. if enabled altivec; then
  3437. nogas=warn
  3438. check_cflags -maltivec -mabi=altivec &&
  3439. { check_header altivec.h && inc_altivec_h="#include <altivec.h>" ; } ||
  3440. check_cflags -faltivec
  3441. # check if our compiler supports Motorola AltiVec C API
  3442. check_cc <<EOF || disable altivec
  3443. $inc_altivec_h
  3444. int main(void) {
  3445. vector signed int v1 = (vector signed int) { 0 };
  3446. vector signed int v2 = (vector signed int) { 1 };
  3447. v1 = vec_add(v1, v2);
  3448. return 0;
  3449. }
  3450. EOF
  3451. enabled altivec || warn "Altivec disabled, possibly missing --cpu flag"
  3452. fi
  3453. elif enabled x86; then
  3454. check_builtin rdtsc intrin.h "__rdtsc()"
  3455. check_builtin mm_empty mmintrin.h "_mm_empty()"
  3456. enable local_aligned_8 local_aligned_16
  3457. # check whether EBP is available on x86
  3458. # As 'i' is stored on the stack, this program will crash
  3459. # if the base pointer is used to access it because the
  3460. # base pointer is cleared in the inline assembly code.
  3461. check_exec_crash <<EOF && enable ebp_available
  3462. volatile int i=0;
  3463. __asm__ volatile ("xorl %%ebp, %%ebp" ::: "%ebp");
  3464. return i;
  3465. EOF
  3466. # check whether EBX is available on x86
  3467. check_inline_asm ebx_available '""::"b"(0)' &&
  3468. check_inline_asm ebx_available '"":::"%ebx"'
  3469. # check whether xmm clobbers are supported
  3470. check_inline_asm xmm_clobbers '"":::"%xmm0"'
  3471. # check whether binutils is new enough to compile SSSE3/MMXEXT
  3472. enabled ssse3 && check_inline_asm ssse3_inline '"pabsw %xmm0, %xmm0"'
  3473. enabled mmxext && check_inline_asm mmxext_inline '"pmaxub %mm0, %mm1"'
  3474. if ! disabled_any asm mmx yasm; then
  3475. if check_cmd $yasmexe --version; then
  3476. enabled x86_64 && yasm_extra="-m amd64"
  3477. yasm_debug="-g dwarf2"
  3478. elif check_cmd nasm -v; then
  3479. yasmexe=nasm
  3480. yasm_debug="-g -F dwarf"
  3481. enabled x86_64 && test "$objformat" = elf && objformat=elf64
  3482. fi
  3483. YASMFLAGS="-f $objformat $yasm_extra"
  3484. enabled pic && append YASMFLAGS "-DPIC"
  3485. test -n "$extern_prefix" && append YASMFLAGS "-DPREFIX"
  3486. case "$objformat" in
  3487. elf*) enabled debug && append YASMFLAGS $yasm_debug ;;
  3488. esac
  3489. check_yasm "movbe ecx, [5]" && enable yasm ||
  3490. die "yasm/nasm not found or too old. Use --disable-yasm for a crippled build."
  3491. check_yasm "vpmacsdd xmm0, xmm1, xmm2, xmm3" || disable xop_external
  3492. check_yasm "vfmadd132ps ymm0, ymm1, ymm2" || disable fma3_external
  3493. check_yasm "vfmaddps ymm0, ymm1, ymm2, ymm3" || disable fma4_external
  3494. check_yasm "CPU amdnop" || disable cpunop
  3495. fi
  3496. case "$cpu" in
  3497. athlon*|opteron*|k8*|pentium|pentium-mmx|prescott|nocona|atom|geode)
  3498. disable fast_clz
  3499. ;;
  3500. esac
  3501. fi
  3502. if enabled asm; then
  3503. as=${gas:=$as}
  3504. check_as <<EOF && enable gnu_as || \
  3505. $nogas "GNU assembler not found, install gas-preprocessor"
  3506. .macro m n
  3507. \n: .int 0
  3508. .endm
  3509. m x
  3510. EOF
  3511. fi
  3512. check_ldflags -Wl,--as-needed
  3513. if check_func dlopen; then
  3514. ldl=
  3515. elif check_func dlopen -ldl; then
  3516. ldl=-ldl
  3517. fi
  3518. if ! disabled network; then
  3519. check_func getaddrinfo $network_extralibs
  3520. check_func getservbyport $network_extralibs
  3521. check_func inet_aton $network_extralibs
  3522. check_type netdb.h "struct addrinfo"
  3523. check_type netinet/in.h "struct group_source_req" -D_BSD_SOURCE
  3524. check_type netinet/in.h "struct ip_mreq_source" -D_BSD_SOURCE
  3525. check_type netinet/in.h "struct ipv6_mreq" -D_DARWIN_C_SOURCE
  3526. check_type poll.h "struct pollfd"
  3527. check_type netinet/sctp.h "struct sctp_event_subscribe"
  3528. check_struct "sys/types.h sys/socket.h" "struct sockaddr" sa_len
  3529. check_type netinet/in.h "struct sockaddr_in6"
  3530. check_type "sys/types.h sys/socket.h" "struct sockaddr_storage"
  3531. check_type "sys/types.h sys/socket.h" socklen_t
  3532. # Prefer arpa/inet.h over winsock2
  3533. if check_header arpa/inet.h ; then
  3534. check_func closesocket
  3535. elif check_header winsock2.h ; then
  3536. check_func_headers winsock2.h closesocket -lws2 &&
  3537. network_extralibs="-lws2" ||
  3538. { check_func_headers winsock2.h closesocket -lws2_32 &&
  3539. network_extralibs="-lws2_32"; } || disable winsock2_h network
  3540. check_func_headers ws2tcpip.h getaddrinfo $network_extralibs
  3541. check_type ws2tcpip.h socklen_t
  3542. check_type ws2tcpip.h "struct addrinfo"
  3543. check_type ws2tcpip.h "struct group_source_req"
  3544. check_type ws2tcpip.h "struct ip_mreq_source"
  3545. check_type ws2tcpip.h "struct ipv6_mreq"
  3546. check_type winsock2.h "struct pollfd"
  3547. check_struct winsock2.h "struct sockaddr" sa_len
  3548. check_type ws2tcpip.h "struct sockaddr_in6"
  3549. check_type ws2tcpip.h "struct sockaddr_storage"
  3550. else
  3551. disable network
  3552. fi
  3553. fi
  3554. check_builtin atomic_cas_ptr atomic.h "void **ptr; void *oldval, *newval; atomic_cas_ptr(ptr, oldval, newval)"
  3555. check_builtin machine_rw_barrier mbarrier.h "__machine_rw_barrier()"
  3556. check_builtin MemoryBarrier windows.h "MemoryBarrier()"
  3557. check_builtin sync_val_compare_and_swap "" "int *ptr; int oldval, newval; __sync_val_compare_and_swap(ptr, oldval, newval)"
  3558. check_func_headers malloc.h _aligned_malloc && enable aligned_malloc
  3559. check_func ${malloc_prefix}memalign && enable memalign
  3560. check_func ${malloc_prefix}posix_memalign && enable posix_memalign
  3561. check_func fcntl
  3562. check_func fork
  3563. check_func gethrtime
  3564. check_func getopt
  3565. check_func getrusage
  3566. check_func gettimeofday
  3567. check_func isatty
  3568. check_func localtime_r
  3569. check_func mach_absolute_time
  3570. check_func mkstemp
  3571. check_func mmap
  3572. check_func mprotect
  3573. # Solaris has nanosleep in -lrt, OpenSolaris no longer needs that
  3574. check_func nanosleep || { check_func nanosleep -lrt && add_extralibs -lrt; }
  3575. check_func sched_getaffinity
  3576. check_func setrlimit
  3577. check_func strerror_r
  3578. check_func strptime
  3579. check_func sysconf
  3580. check_func sysctl
  3581. check_func usleep
  3582. check_func_headers io.h setmode
  3583. check_func_headers stdlib.h getenv
  3584. check_func_headers windows.h CoTaskMemFree -lole32
  3585. check_func_headers windows.h GetProcessAffinityMask
  3586. check_func_headers windows.h GetProcessTimes
  3587. check_func_headers windows.h GetSystemTimeAsFileTime
  3588. check_func_headers windows.h MapViewOfFile
  3589. check_func_headers windows.h SetConsoleTextAttribute
  3590. check_func_headers windows.h Sleep
  3591. check_func_headers windows.h VirtualAlloc
  3592. check_header direct.h
  3593. check_header dlfcn.h
  3594. check_header dxva.h
  3595. check_header dxva2api.h
  3596. check_header io.h
  3597. check_header mach/mach_time.h
  3598. check_header malloc.h
  3599. check_header poll.h
  3600. check_header sys/mman.h
  3601. check_header sys/param.h
  3602. check_header sys/resource.h
  3603. check_header sys/select.h
  3604. check_header sys/time.h
  3605. check_header sys/un.h
  3606. check_header unistd.h
  3607. check_header vdpau/vdpau.h
  3608. check_header vdpau/vdpau_x11.h
  3609. check_header VideoDecodeAcceleration/VDADecoder.h
  3610. check_header windows.h
  3611. check_header X11/extensions/XvMClib.h
  3612. check_lib2 "windows.h shellapi.h" CommandLineToArgvW -lshell32
  3613. check_lib2 "windows.h wincrypt.h" CryptGenRandom -ladvapi32
  3614. check_lib2 "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
  3615. check_struct "sys/time.h sys/resource.h" "struct rusage" ru_maxrss
  3616. if ! disabled w32threads && ! enabled pthreads; then
  3617. check_func_headers "windows.h process.h" _beginthreadex &&
  3618. enable w32threads || disable w32threads
  3619. fi
  3620. # check for some common methods of building with pthread support
  3621. # do this before the optional library checks as some of them require pthreads
  3622. if ! disabled pthreads && ! enabled w32threads; then
  3623. enable pthreads
  3624. if check_func pthread_join -pthread; then
  3625. add_cflags -pthread
  3626. add_extralibs -pthread
  3627. elif check_func pthread_join -pthreads; then
  3628. add_cflags -pthreads
  3629. add_extralibs -pthreads
  3630. elif check_func pthread_join -lpthreadGC2; then
  3631. add_extralibs -lpthreadGC2
  3632. elif check_lib pthread.h pthread_join -lpthread; then
  3633. :
  3634. elif ! check_func pthread_join; then
  3635. disable pthreads
  3636. fi
  3637. fi
  3638. disabled zlib || check_lib zlib.h zlibVersion -lz || disable zlib
  3639. disabled bzlib || check_lib2 bzlib.h BZ2_bzlibVersion -lbz2 || disable bzlib
  3640. check_lib math.h sin -lm && LIBM="-lm"
  3641. enabled vaapi && require vaapi va/va.h vaInitialize -lva
  3642. atan2f_args=2
  3643. ldexpf_args=2
  3644. powf_args=2
  3645. for func in $MATH_FUNCS; do
  3646. eval check_mathfunc $func \${${func}_args:-1}
  3647. done
  3648. # these are off by default, so fail if requested and not available
  3649. enabled avisynth && { { check_header "avisynth/avisynth_c.h" && check_lib2 "windows.h" LoadLibrary; } ||
  3650. { check_header "avxsynth/avxsynth_c.h" && check_lib2 "dlfcn.h" dlopen -ldl; } ||
  3651. die "ERROR: LoadLibrary/dlopen not found, or avisynth header not found"; }
  3652. enabled frei0r && { check_header frei0r.h || die "ERROR: frei0r.h header not found"; }
  3653. enabled gnutls && require_pkg_config gnutls gnutls/gnutls.h gnutls_global_init
  3654. enabled libbs2b && require_pkg_config libbs2b bs2b.h bs2b_open
  3655. enabled libfaac && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaac
  3656. enabled libfdk_aac && require libfdk_aac fdk-aac/aacenc_lib.h aacEncOpen -lfdk-aac
  3657. enabled libfontconfig && require_pkg_config fontconfig "fontconfig/fontconfig.h" FcInit
  3658. enabled libfreetype && require_pkg_config freetype2 "ft2build.h FT_FREETYPE_H" FT_Init_FreeType
  3659. enabled libgsm && { for gsm_hdr in "gsm.h" "gsm/gsm.h"; do
  3660. check_lib "${gsm_hdr}" gsm_create -lgsm && break;
  3661. done || die "ERROR: libgsm not found"; }
  3662. enabled libilbc && require libilbc ilbc.h WebRtcIlbcfix_InitDecode -lilbc
  3663. enabled libmp3lame && require "libmp3lame >= 3.98.3" lame/lame.h lame_set_VBR_quality -lmp3lame
  3664. enabled libopencore_amrnb && require libopencore_amrnb opencore-amrnb/interf_dec.h Decoder_Interface_init -lopencore-amrnb
  3665. enabled libopencore_amrwb && require libopencore_amrwb opencore-amrwb/dec_if.h D_IF_init -lopencore-amrwb
  3666. enabled libopencv && require_pkg_config opencv opencv/cv.h cvCreateImageHeader
  3667. enabled libopenjpeg && { { check_header openjpeg.h && check_lib2 openjpeg.h opj_version -lopenjpeg -DOPJ_STATIC; } ||
  3668. { require_pkg_config libopenjpeg1 openjpeg.h opj_version -DOPJ_STATIC; } }
  3669. enabled libopus && require_pkg_config opus opus_multistream.h opus_multistream_decoder_create
  3670. enabled libpulse && require_pkg_config libpulse-simple pulse/simple.h pa_simple_new
  3671. enabled librtmp && require_pkg_config librtmp librtmp/rtmp.h RTMP_Socket
  3672. enabled libschroedinger && require_pkg_config schroedinger-1.0 schroedinger/schro.h schro_init
  3673. enabled libspeex && require libspeex speex/speex.h speex_decoder_init -lspeex
  3674. enabled libtheora && require libtheora theora/theoraenc.h th_info_init -ltheoraenc -ltheoradec -logg
  3675. enabled libtwolame && require libtwolame twolame.h twolame_init -ltwolame
  3676. enabled libvo_aacenc && require libvo_aacenc vo-aacenc/voAAC.h voGetAACEncAPI -lvo-aacenc
  3677. enabled libvo_amrwbenc && require libvo_amrwbenc vo-amrwbenc/enc_if.h E_IF_init -lvo-amrwbenc
  3678. enabled libvorbis && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbisenc -lvorbis -logg
  3679. enabled libvpx && {
  3680. enabled libvpx_vp8_decoder && { check_lib2 "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_dec_init_ver -lvpx ||
  3681. die "ERROR: libvpx decoder version must be >=0.9.1"; }
  3682. enabled libvpx_vp8_encoder && { check_lib2 "vpx/vpx_encoder.h vpx/vp8cx.h" "vpx_codec_enc_init_ver VPX_CQ" -lvpx ||
  3683. die "ERROR: libvpx encoder version must be >=0.9.6"; }
  3684. enabled libvpx_vp9_decoder && { check_lib2 "vpx/vpx_decoder.h vpx/vp8dx.h" "vpx_codec_vp9_dx" -lvpx || disable libvpx_vp9_decoder; }
  3685. enabled libvpx_vp9_encoder && { check_lib2 "vpx/vpx_encoder.h vpx/vp8cx.h" "vpx_codec_vp9_cx" -lvpx || disable libvpx_vp9_encoder; } }
  3686. enabled libwavpack && require libwavpack wavpack/wavpack.h WavpackOpenFileOutput -lwavpack
  3687. enabled libwebp && require_pkg_config libwebp webp/encode.h WebPGetEncoderVersion
  3688. enabled libx264 && require libx264 x264.h x264_encoder_encode -lx264 &&
  3689. { check_cpp_condition x264.h "X264_BUILD >= 118" ||
  3690. die "ERROR: libx264 version must be >= 0.118."; }
  3691. enabled libx265 && require_pkg_config x265 x265.h x265_encoder_encode &&
  3692. { check_cpp_condition x265.h "X265_BUILD >= 13" ||
  3693. die "ERROR: libx265 version must be >= 13."; }
  3694. enabled libxavs && require libxavs xavs.h xavs_encoder_encode -lxavs
  3695. enabled libxvid && require libxvid xvid.h xvid_global -lxvidcore
  3696. enabled openssl && { check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto ||
  3697. check_lib openssl/ssl.h SSL_library_init -lssl32 -leay32 ||
  3698. check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto -lws2_32 -lgdi32 ||
  3699. die "ERROR: openssl not found"; }
  3700. if enabled gnutls; then
  3701. { check_lib nettle/bignum.h nettle_mpz_get_str_256 -lnettle -lhogweed -lgmp && enable nettle; } ||
  3702. { check_lib gcrypt.h gcry_mpi_new -lgcrypt && enable gcrypt; }
  3703. fi
  3704. # libdc1394 check
  3705. if enabled libdc1394; then
  3706. { check_lib dc1394/dc1394.h dc1394_new -ldc1394 -lraw1394 &&
  3707. enable libdc1394_2; } ||
  3708. { check_lib libdc1394/dc1394_control.h dc1394_create_handle -ldc1394_control -lraw1394 &&
  3709. enable libdc1394_1; } ||
  3710. die "ERROR: No version of libdc1394 found "
  3711. fi
  3712. if check_pkg_config sdl SDL_events.h SDL_PollEvent; then
  3713. check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
  3714. check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) < 0x010300" $sdl_cflags &&
  3715. enable sdl
  3716. fi
  3717. pod2man --help > /dev/null 2>&1 && enable pod2man || disable pod2man
  3718. texi2html -version > /dev/null 2>&1 && enable texi2html || disable texi2html
  3719. check_header linux/fb.h
  3720. check_header linux/videodev2.h
  3721. check_struct linux/videodev2.h "struct v4l2_frmivalenum" discrete
  3722. check_header sys/videoio.h
  3723. check_func_headers "windows.h vfw.h" capCreateCaptureWindow "$vfwcap_indev_extralibs"
  3724. # check that WM_CAP_DRIVER_CONNECT is defined to the proper value
  3725. # w32api 3.12 had it defined wrong
  3726. check_cpp_condition vfw.h "WM_CAP_DRIVER_CONNECT > WM_USER" && enable vfwcap_defines
  3727. # check for ioctl_meteor.h, ioctl_bt848.h and alternatives
  3728. { check_header dev/bktr/ioctl_meteor.h &&
  3729. check_header dev/bktr/ioctl_bt848.h; } ||
  3730. { check_header machine/ioctl_meteor.h &&
  3731. check_header machine/ioctl_bt848.h; } ||
  3732. { check_header dev/video/meteor/ioctl_meteor.h &&
  3733. check_header dev/video/bktr/ioctl_bt848.h; } ||
  3734. check_header dev/ic/bt8xx.h
  3735. check_header sndio.h
  3736. check_header sys/soundcard.h
  3737. check_header soundcard.h
  3738. enabled_any alsa_indev alsa_outdev &&
  3739. check_lib2 alsa/asoundlib.h snd_pcm_htimestamp -lasound
  3740. enabled jack_indev && check_lib2 jack/jack.h jack_client_open -ljack &&
  3741. check_func jack_port_get_latency_range -ljack
  3742. enabled_any sndio_indev sndio_outdev && check_lib2 sndio.h sio_open -lsndio
  3743. if enabled libcdio; then
  3744. check_lib2 "cdio/cdda.h cdio/paranoia.h" cdio_cddap_open -lcdio_paranoia -lcdio_cdda -lcdio ||
  3745. check_lib2 "cdio/paranoia/cdda.h cdio/paranoia/paranoia.h" cdio_cddap_open -lcdio_paranoia -lcdio_cdda -lcdio
  3746. fi
  3747. check_lib X11/Xlib.h XOpenDisplay -lX11 && enable xlib
  3748. enabled x11grab &&
  3749. require Xext X11/extensions/XShm.h XShmCreateImage -lXext &&
  3750. require Xfixes X11/extensions/Xfixes.h XFixesGetCursorImage -lXfixes &&
  3751. { enabled xlib || die "ERROR: Xlib not found"; }
  3752. enabled vdpau &&
  3753. check_cpp_condition vdpau/vdpau.h "defined VDP_DECODER_PROFILE_MPEG4_PART2_ASP" ||
  3754. disable vdpau
  3755. enabled vdpau && enabled xlib &&
  3756. check_func_headers "vdpau/vdpau.h vdpau/vdpau_x11.h" vdp_device_create_x11 -lvdpau &&
  3757. prepend avconv_libs $($ldflags_filter "-lvdpau") &&
  3758. enable vdpau_x11
  3759. enabled debug && add_cflags -g"$debuglevel" && add_asflags -g"$debuglevel"
  3760. # add some useful compiler flags if supported
  3761. check_cflags -Wdeclaration-after-statement
  3762. check_cflags -Wall
  3763. check_cflags -Wdisabled-optimization
  3764. check_cflags -Wpointer-arith
  3765. check_cflags -Wredundant-decls
  3766. check_cflags -Wcast-qual
  3767. check_cflags -Wwrite-strings
  3768. check_cflags -Wtype-limits
  3769. check_cflags -Wundef
  3770. check_cflags -Wmissing-prototypes
  3771. check_cflags -Wstrict-prototypes
  3772. enabled extra_warnings && check_cflags -Winline
  3773. check_disable_warning(){
  3774. warning_flag=-W${1#-Wno-}
  3775. test_cflags $warning_flag && add_cflags $1
  3776. }
  3777. check_disable_warning -Wno-parentheses
  3778. check_disable_warning -Wno-switch
  3779. check_disable_warning -Wno-format-zero-length
  3780. check_disable_warning -Wno-pointer-sign
  3781. # add some linker flags
  3782. check_ldflags -Wl,--warn-common
  3783. check_ldflags -Wl,-rpath-link=libswscale:libavfilter:libavdevice:libavformat:libavcodec:libavutil:libavresample
  3784. test_ldflags -Wl,-Bsymbolic && append SHFLAGS -Wl,-Bsymbolic
  3785. # add some strip flags
  3786. # -wN '..@*' is more selective than -x, but not available everywhere.
  3787. check_stripflags -wN \'..@*\' || check_stripflags -x || strip='true'
  3788. enabled neon_clobber_test &&
  3789. check_ldflags -Wl,--wrap,avcodec_open2 \
  3790. -Wl,--wrap,avcodec_decode_audio4 \
  3791. -Wl,--wrap,avcodec_decode_video2 \
  3792. -Wl,--wrap,avcodec_decode_subtitle2 \
  3793. -Wl,--wrap,avcodec_encode_audio2 \
  3794. -Wl,--wrap,avcodec_encode_video2 \
  3795. -Wl,--wrap,avcodec_encode_subtitle \
  3796. -Wl,--wrap,avresample_convert ||
  3797. disable neon_clobber_test
  3798. enabled xmm_clobber_test &&
  3799. check_ldflags -Wl,--wrap,avcodec_open2 \
  3800. -Wl,--wrap,avcodec_decode_audio4 \
  3801. -Wl,--wrap,avcodec_decode_video2 \
  3802. -Wl,--wrap,avcodec_decode_subtitle2 \
  3803. -Wl,--wrap,avcodec_encode_audio2 \
  3804. -Wl,--wrap,avcodec_encode_video2 \
  3805. -Wl,--wrap,avcodec_encode_subtitle \
  3806. -Wl,--wrap,avresample_convert \
  3807. -Wl,--wrap,sws_scale ||
  3808. disable xmm_clobber_test
  3809. echo "X{};" > $TMPV
  3810. if test_ldflags -Wl,--version-script,$TMPV; then
  3811. append SHFLAGS '-Wl,--version-script,\$(SUBDIR)lib\$(NAME).ver'
  3812. check_cc <<EOF && enable symver_asm_label
  3813. void ff_foo(void) __asm__ ("av_foo@VERSION");
  3814. void ff_foo(void) { ${inline_asm+__asm__($quotes);} }
  3815. EOF
  3816. check_cc <<EOF && enable symver_gnu_asm
  3817. __asm__(".symver ff_foo,av_foo@VERSION");
  3818. void ff_foo(void) {}
  3819. EOF
  3820. fi
  3821. if [ -z "$optflags" ]; then
  3822. if enabled small; then
  3823. optflags=$cflags_size
  3824. elif enabled optimizations; then
  3825. optflags=$cflags_speed
  3826. else
  3827. optflags=$cflags_noopt
  3828. fi
  3829. fi
  3830. check_optflags(){
  3831. check_cflags "$@"
  3832. enabled lto && check_ldflags "$@"
  3833. }
  3834. if enabled lto; then
  3835. test "$cc_type" != "$ld_type" && die "LTO requires same compiler and linker"
  3836. check_cflags -flto
  3837. check_ldflags -flto $cpuflags
  3838. fi
  3839. check_optflags $optflags
  3840. check_optflags -fno-math-errno
  3841. check_optflags -fno-signed-zeros
  3842. if enabled icc; then
  3843. # Just warnings, no remarks
  3844. check_cflags -w1
  3845. # -wd: Disable following warnings
  3846. # 144, 167, 556: -Wno-pointer-sign
  3847. # 1292: attribute "foo" ignored
  3848. # 1419: external declaration in primary source file
  3849. # 10006: ignoring unknown option -fno-signed-zeros
  3850. # 10148: ignoring unknown option -Wno-parentheses
  3851. # 10156: ignoring option '-W'; no argument required
  3852. check_cflags -wd144,167,556,1292,1419,10006,10148,10156
  3853. # 11030: Warning unknown option --as-needed
  3854. # 10156: ignoring option '-export'; no argument required
  3855. check_ldflags -wd10156,11030
  3856. # icc 11.0 and 11.1 work with ebp_available, but don't pass the test
  3857. enable ebp_available
  3858. if enabled x86_32; then
  3859. icc_version=$($cc -dumpversion)
  3860. test ${icc_version%%.*} -ge 11 &&
  3861. check_cflags -falign-stack=maintain-16-byte ||
  3862. disable aligned_stack
  3863. fi
  3864. elif enabled ccc; then
  3865. # disable some annoying warnings
  3866. add_cflags -msg_disable bitnotint
  3867. add_cflags -msg_disable mixfuncvoid
  3868. add_cflags -msg_disable nonstandcast
  3869. add_cflags -msg_disable unsupieee
  3870. elif enabled gcc; then
  3871. check_optflags -fno-tree-vectorize
  3872. check_cflags -Werror=implicit-function-declaration
  3873. check_cflags -Werror=missing-prototypes
  3874. check_cflags -Werror=return-type
  3875. check_cflags -Werror=declaration-after-statement
  3876. check_cflags -Werror=vla
  3877. enabled extra_warnings || check_disable_warning -Wno-maybe-uninitialized
  3878. elif enabled llvm_gcc; then
  3879. check_cflags -mllvm -stack-alignment=16
  3880. elif enabled clang; then
  3881. check_cflags -mllvm -stack-alignment=16
  3882. check_cflags -Qunused-arguments
  3883. check_cflags -Werror=implicit-function-declaration
  3884. check_cflags -Werror=missing-prototypes
  3885. check_cflags -Werror=return-type
  3886. elif enabled cparser; then
  3887. add_cflags -Wno-missing-variable-declarations
  3888. add_cflags -Wno-empty-statement
  3889. elif enabled armcc; then
  3890. add_cflags -W${armcc_opt},--diag_suppress=4343 # hardfp compat
  3891. add_cflags -W${armcc_opt},--diag_suppress=3036 # using . as system include dir
  3892. # 2523: use of inline assembler is deprecated
  3893. add_cflags -W${armcc_opt},--diag_suppress=2523
  3894. add_cflags -W${armcc_opt},--diag_suppress=1207
  3895. add_cflags -W${armcc_opt},--diag_suppress=1293 # assignment in condition
  3896. add_cflags -W${armcc_opt},--diag_suppress=3343 # hardfp compat
  3897. add_cflags -W${armcc_opt},--diag_suppress=167 # pointer sign
  3898. add_cflags -W${armcc_opt},--diag_suppress=513 # pointer sign
  3899. elif enabled tms470; then
  3900. add_cflags -pds=824 -pds=837
  3901. disable inline_asm
  3902. elif enabled pathscale; then
  3903. add_cflags -fstrict-overflow -OPT:wrap_around_unsafe_opt=OFF
  3904. elif enabled_any msvc icl; then
  3905. enabled x86_32 && disable aligned_stack
  3906. enabled_all x86_32 debug && add_cflags -Oy-
  3907. enabled debug && add_ldflags -debug
  3908. enable pragma_deprecated
  3909. if enabled icl; then
  3910. # -Qansi-alias is basically -fstrict-aliasing, but does not work
  3911. # (correctly) on icl 13.x.
  3912. check_cpp_condition "windows.h" "__ICL < 1300 || __ICL >= 1400" &&
  3913. add_cflags -Qansi-alias
  3914. # icl will pass the inline asm tests but inline asm is currently
  3915. # not supported (build will fail)
  3916. disable inline_asm
  3917. fi
  3918. fi
  3919. case $as_type in
  3920. clang)
  3921. add_asflags -Qunused-arguments
  3922. ;;
  3923. esac
  3924. case $ld_type in
  3925. clang)
  3926. check_ldflags -Qunused-arguments
  3927. ;;
  3928. esac
  3929. case $target_os in
  3930. osf1)
  3931. enabled ccc && add_ldflags '-Wl,-expect_unresolved,*'
  3932. ;;
  3933. plan9)
  3934. add_cppflags -Dmain=plan9_main
  3935. ;;
  3936. esac
  3937. enabled asm || { arch=c; disable $ARCH_LIST $ARCH_EXT_LIST; }
  3938. check_deps $CONFIG_LIST \
  3939. $CONFIG_EXTRA \
  3940. $HAVE_LIST \
  3941. $ALL_COMPONENTS \
  3942. enabled_all dxva2 CoTaskMemFree &&
  3943. prepend avconv_libs $($ldflags_filter "-lole32") &&
  3944. enable dxva2_lib
  3945. ! enabled_any memalign posix_memalign aligned_malloc &&
  3946. enabled_any $need_memalign && enable memalign_hack
  3947. for thread in $THREADS_LIST; do
  3948. if enabled $thread; then
  3949. test -n "$thread_type" &&
  3950. die "ERROR: Only one thread type must be selected." ||
  3951. thread_type="$thread"
  3952. fi
  3953. done
  3954. # conditional library dependencies, in linking order
  3955. enabled movie_filter && prepend avfilter_deps "avformat avcodec"
  3956. enabled resample_filter && prepend avfilter_deps "avresample"
  3957. enabled scale_filter && prepend avfilter_deps "swscale"
  3958. expand_deps(){
  3959. lib_deps=${1}_deps
  3960. eval "deps=\$$lib_deps"
  3961. append $lib_deps $(map 'eval echo \$${v}_deps' $deps)
  3962. unique $lib_deps
  3963. }
  3964. map 'expand_deps $v' $LIBRARY_LIST
  3965. echo "install prefix $prefix"
  3966. echo "source path $source_path"
  3967. echo "C compiler $cc"
  3968. echo "C library $libc_type"
  3969. if test "$host_cc" != "$cc"; then
  3970. echo "host C compiler $host_cc"
  3971. echo "host C library $host_libc_type"
  3972. fi
  3973. echo "ARCH $arch ($cpu)"
  3974. if test "$build_suffix" != ""; then
  3975. echo "build suffix $build_suffix"
  3976. fi
  3977. if test "$extra_version" != ""; then
  3978. echo "version string suffix $extra_version"
  3979. fi
  3980. echo "big-endian ${bigendian-no}"
  3981. echo "runtime cpu detection ${runtime_cpudetect-no}"
  3982. if enabled x86; then
  3983. echo "${yasmexe} ${yasm-no}"
  3984. echo "MMX enabled ${mmx-no}"
  3985. echo "MMXEXT enabled ${mmxext-no}"
  3986. echo "3DNow! enabled ${amd3dnow-no}"
  3987. echo "3DNow! extended enabled ${amd3dnowext-no}"
  3988. echo "SSE enabled ${sse-no}"
  3989. echo "SSSE3 enabled ${ssse3-no}"
  3990. echo "AVX enabled ${avx-no}"
  3991. echo "XOP enabled ${xop-no}"
  3992. echo "FMA3 enabled ${fma3-no}"
  3993. echo "FMA4 enabled ${fma4-no}"
  3994. echo "i686 features enabled ${i686-no}"
  3995. echo "CMOV is fast ${fast_cmov-no}"
  3996. echo "EBX available ${ebx_available-no}"
  3997. echo "EBP available ${ebp_available-no}"
  3998. fi
  3999. if enabled aarch64; then
  4000. echo "NEON enabled ${neon-no}"
  4001. echo "VFP enabled ${vfp-no}"
  4002. fi
  4003. if enabled arm; then
  4004. echo "ARMv5TE enabled ${armv5te-no}"
  4005. echo "ARMv6 enabled ${armv6-no}"
  4006. echo "ARMv6T2 enabled ${armv6t2-no}"
  4007. echo "VFP enabled ${vfp-no}"
  4008. echo "NEON enabled ${neon-no}"
  4009. fi
  4010. if enabled ppc; then
  4011. echo "AltiVec enabled ${altivec-no}"
  4012. echo "PPC 4xx optimizations ${ppc4xx-no}"
  4013. echo "dcbzl available ${dcbzl-no}"
  4014. fi
  4015. echo "debug symbols ${debug-no}"
  4016. echo "optimize for size ${small-no}"
  4017. echo "optimizations ${optimizations-no}"
  4018. echo "static ${static-no}"
  4019. echo "shared ${shared-no}"
  4020. echo "new filter support ${avfilter-no}"
  4021. echo "network support ${network-no}"
  4022. echo "threading support ${thread_type-no}"
  4023. echo "safe bitstream reader ${safe_bitstream_reader-no}"
  4024. echo "SDL support ${sdl-no}"
  4025. test -n "$random_seed" &&
  4026. echo "random seed ${random_seed}"
  4027. echo
  4028. echo "External libraries:"
  4029. print_enabled '' $EXTERNAL_LIBRARY_LIST | print_3_columns
  4030. echo
  4031. for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do
  4032. echo "Enabled ${type}s:"
  4033. eval list=\$$(toupper $type)_LIST
  4034. print_enabled '_*' $list | print_3_columns
  4035. echo
  4036. done
  4037. license="LGPL version 2.1 or later"
  4038. if enabled nonfree; then
  4039. license="nonfree and unredistributable"
  4040. elif enabled gplv3; then
  4041. license="GPL version 3 or later"
  4042. elif enabled lgplv3; then
  4043. license="LGPL version 3 or later"
  4044. elif enabled gpl; then
  4045. license="GPL version 2 or later"
  4046. fi
  4047. echo "License: $license"
  4048. echo "Creating config.mak and config.h..."
  4049. test -e Makefile || echo "include $source_path/Makefile" > Makefile
  4050. config_files="$TMPH config.mak"
  4051. cat > config.mak <<EOF
  4052. # Automatically generated by configure - do not modify!
  4053. LIBAV_CONFIGURATION=$LIBAV_CONFIGURATION
  4054. prefix=$prefix
  4055. LIBDIR=\$(DESTDIR)$libdir
  4056. SHLIBDIR=\$(DESTDIR)$shlibdir
  4057. INCDIR=\$(DESTDIR)$incdir
  4058. BINDIR=\$(DESTDIR)$bindir
  4059. DATADIR=\$(DESTDIR)$datadir
  4060. DOCDIR=\$(DESTDIR)$docdir
  4061. MANDIR=\$(DESTDIR)$mandir
  4062. SRC_PATH=$source_path
  4063. CC_IDENT=$cc_ident
  4064. ARCH=$arch
  4065. CC=$cc
  4066. AS=$as
  4067. LD=$ld
  4068. DEPCC=$dep_cc
  4069. DEPCCFLAGS=$DEPCCFLAGS \$(CPPFLAGS)
  4070. DEPAS=$as
  4071. DEPASFLAGS=$DEPASFLAGS \$(CPPFLAGS)
  4072. YASM=$yasmexe
  4073. DEPYASM=$yasmexe
  4074. AR=$ar
  4075. ARFLAGS=$arflags
  4076. AR_O=$ar_o
  4077. RANLIB=$ranlib
  4078. STRIP=$strip
  4079. LN_S=$ln_s
  4080. CPPFLAGS=$CPPFLAGS
  4081. CFLAGS=$CFLAGS
  4082. ASFLAGS=$ASFLAGS
  4083. AS_C=$AS_C
  4084. AS_O=$AS_O
  4085. CC_C=$CC_C
  4086. CC_E=$CC_E
  4087. CC_O=$CC_O
  4088. LD_O=$LD_O
  4089. LD_LIB=$LD_LIB
  4090. LD_PATH=$LD_PATH
  4091. DLLTOOL=$dlltool
  4092. LDFLAGS=$LDFLAGS
  4093. SHFLAGS=$(echo $($ldflags_filter $SHFLAGS))
  4094. STRIPFLAGS=$STRIPFLAGS
  4095. YASMFLAGS=$YASMFLAGS
  4096. BUILDSUF=$build_suffix
  4097. FULLNAME=$FULLNAME
  4098. LIBPREF=$LIBPREF
  4099. LIBSUF=$LIBSUF
  4100. LIBNAME=$LIBNAME
  4101. SLIBPREF=$SLIBPREF
  4102. SLIBSUF=$SLIBSUF
  4103. EXESUF=$EXESUF
  4104. EXTRA_VERSION=$extra_version
  4105. CCDEP=$CCDEP
  4106. CCDEP_FLAGS=$CCDEP_FLAGS
  4107. ASDEP=$ASDEP
  4108. ASDEP_FLAGS=$ASDEP_FLAGS
  4109. CC_DEPFLAGS=$CC_DEPFLAGS
  4110. AS_DEPFLAGS=$AS_DEPFLAGS
  4111. HOSTCC=$host_cc
  4112. HOSTLD=$host_ld
  4113. HOSTCFLAGS=$host_cflags
  4114. HOSTCPPFLAGS=$host_cppflags
  4115. HOSTEXESUF=$HOSTEXESUF
  4116. HOSTLDFLAGS=$host_ldflags
  4117. HOSTLIBS=$host_libs
  4118. DEPHOSTCC=$host_cc
  4119. DEPHOSTCCFLAGS=$DEPHOSTCCFLAGS \$(HOSTCCFLAGS)
  4120. HOSTCCDEP=$HOSTCCDEP
  4121. HOSTCCDEP_FLAGS=$HOSTCCDEP_FLAGS
  4122. HOSTCC_DEPFLAGS=$HOSTCC_DEPFLAGS
  4123. HOSTCC_C=$HOSTCC_C
  4124. HOSTCC_O=$HOSTCC_O
  4125. HOSTLD_O=$HOSTLD_O
  4126. TARGET_EXEC=$target_exec $target_exec_args
  4127. TARGET_PATH=$target_path
  4128. TARGET_SAMPLES=${target_samples:-\$(SAMPLES)}
  4129. CFLAGS-avplay=$sdl_cflags
  4130. ZLIB=$($ldflags_filter -lz)
  4131. LIB_INSTALL_EXTRA_CMD=$LIB_INSTALL_EXTRA_CMD
  4132. EXTRALIBS=$extralibs
  4133. COMPAT_OBJS=$compat_objs
  4134. EXEOBJS=$exeobjs
  4135. INSTALL=install
  4136. LIBTARGET=${LIBTARGET}
  4137. SLIBNAME=${SLIBNAME}
  4138. SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}
  4139. SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}
  4140. SLIB_CREATE_DEF_CMD=${SLIB_CREATE_DEF_CMD}
  4141. SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}
  4142. SLIB_INSTALL_NAME=${SLIB_INSTALL_NAME}
  4143. SLIB_INSTALL_LINKS=${SLIB_INSTALL_LINKS}
  4144. SLIB_INSTALL_EXTRA_LIB=${SLIB_INSTALL_EXTRA_LIB}
  4145. SLIB_INSTALL_EXTRA_SHLIB=${SLIB_INSTALL_EXTRA_SHLIB}
  4146. SAMPLES:=${samples:-\$(LIBAV_SAMPLES)}
  4147. EOF
  4148. get_version(){
  4149. lcname=lib${1}
  4150. name=$(toupper $lcname)
  4151. file=$source_path/$lcname/version.h
  4152. eval $(awk "/#define ${name}_VERSION_M/ { print \$2 \"=\" \$3 }" "$file")
  4153. eval ${name}_VERSION=\$${name}_VERSION_MAJOR.\$${name}_VERSION_MINOR.\$${name}_VERSION_MICRO
  4154. eval echo "${lcname}_VERSION=\$${name}_VERSION" >> config.mak
  4155. eval echo "${lcname}_VERSION_MAJOR=\$${name}_VERSION_MAJOR" >> config.mak
  4156. eval echo "${lcname}_VERSION_MINOR=\$${name}_VERSION_MINOR" >> config.mak
  4157. }
  4158. map 'get_version $v' $LIBRARY_LIST
  4159. map 'eval echo "FFLIBS-${v}=\$${v}_deps" >> config.mak' $LIBRARY_LIST
  4160. print_program_libs(){
  4161. eval "program_libs=\$${1}_libs"
  4162. eval echo "LIBS-${1}=${program_libs}" >> config.mak
  4163. }
  4164. map 'print_program_libs $v' $PROGRAM_LIST
  4165. cat > $TMPH <<EOF
  4166. /* Automatically generated by configure - do not modify! */
  4167. #ifndef LIBAV_CONFIG_H
  4168. #define LIBAV_CONFIG_H
  4169. #define LIBAV_CONFIGURATION "$(c_escape $LIBAV_CONFIGURATION)"
  4170. #define LIBAV_LICENSE "$(c_escape $license)"
  4171. #define AVCONV_DATADIR "$(eval c_escape $datadir)"
  4172. #define CC_IDENT "$(c_escape ${cc_ident:-Unknown compiler})"
  4173. #define restrict $_restrict
  4174. #define EXTERN_PREFIX "${extern_prefix}"
  4175. #define EXTERN_ASM ${extern_prefix}
  4176. #define SLIBSUF "$SLIBSUF"
  4177. EOF
  4178. test -n "$malloc_prefix" &&
  4179. echo "#define MALLOC_PREFIX $malloc_prefix" >>$TMPH
  4180. if enabled yasm; then
  4181. append config_files $TMPASM
  4182. printf '' >$TMPASM
  4183. fi
  4184. enabled getenv || echo "#define getenv(x) NULL" >> $TMPH
  4185. print_config ARCH_ "$config_files" $ARCH_LIST
  4186. print_config HAVE_ "$config_files" $HAVE_LIST
  4187. print_config CONFIG_ "$config_files" $CONFIG_LIST \
  4188. $CONFIG_EXTRA \
  4189. $ALL_COMPONENTS \
  4190. echo "#endif /* LIBAV_CONFIG_H */" >> $TMPH
  4191. # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
  4192. cp_if_changed $TMPH config.h
  4193. touch .config
  4194. enabled yasm && cp_if_changed $TMPASM config.asm
  4195. cat > $TMPH <<EOF
  4196. /* Generated by ffconf */
  4197. #ifndef AVUTIL_AVCONFIG_H
  4198. #define AVUTIL_AVCONFIG_H
  4199. EOF
  4200. print_config AV_HAVE_ $TMPH $HAVE_LIST_PUB
  4201. echo "#endif /* AVUTIL_AVCONFIG_H */" >> $TMPH
  4202. cp_if_changed $TMPH libavutil/avconfig.h
  4203. test -n "$WARNINGS" && printf "\n$WARNINGS"
  4204. # build pkg-config files
  4205. lib_version(){
  4206. eval printf "\"lib${1} >= \$LIB$(toupper ${1})_VERSION, \""
  4207. }
  4208. pkgconfig_generate(){
  4209. name=$1
  4210. shortname=${name#lib}${build_suffix}
  4211. comment=$2
  4212. version=$3
  4213. libs=$4
  4214. requires=$(map 'lib_version $v' $(eval echo \$${name#lib}_deps))
  4215. requires=${requires%, }
  4216. enabled ${name#lib} || return 0
  4217. mkdir -p $name
  4218. cat <<EOF > $name/$name.pc
  4219. prefix=$prefix
  4220. exec_prefix=\${prefix}
  4221. libdir=$libdir
  4222. includedir=$incdir
  4223. Name: $name
  4224. Description: $comment
  4225. Version: $version
  4226. Requires: $(enabled shared || echo $requires)
  4227. Requires.private: $(enabled shared && echo $requires)
  4228. Conflicts:
  4229. Libs: -L\${libdir} -l${shortname} $(enabled shared || echo $libs)
  4230. Libs.private: $(enabled shared && echo $libs)
  4231. Cflags: -I\${includedir}
  4232. EOF
  4233. cat <<EOF > $name/$name-uninstalled.pc
  4234. prefix=
  4235. exec_prefix=
  4236. libdir=\${pcfiledir}
  4237. includedir=${source_path}
  4238. Name: $name
  4239. Description: $comment
  4240. Version: $version
  4241. Requires: $requires
  4242. Conflicts:
  4243. Libs: \${libdir}/${LIBPREF}${shortname}${LIBSUF} $libs
  4244. Cflags: -I\${includedir}
  4245. EOF
  4246. }
  4247. pkgconfig_generate libavutil "Libav utility library" "$LIBAVUTIL_VERSION" "$LIBM"
  4248. pkgconfig_generate libavcodec "Libav codec library" "$LIBAVCODEC_VERSION" "$extralibs"
  4249. pkgconfig_generate libavformat "Libav container format library" "$LIBAVFORMAT_VERSION" "$extralibs"
  4250. pkgconfig_generate libavdevice "Libav device handling library" "$LIBAVDEVICE_VERSION" "$extralibs"
  4251. pkgconfig_generate libavfilter "Libav video filtering library" "$LIBAVFILTER_VERSION" "$extralibs"
  4252. pkgconfig_generate libavresample "Libav audio resampling library" "$LIBAVRESAMPLE_VERSION" "$extralibs"
  4253. pkgconfig_generate libswscale "Libav image rescaling library" "$LIBSWSCALE_VERSION" "$LIBM"