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.

4083 lines
118KB

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