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.

4751 lines
139KB

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