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.

3438 lines
102KB

  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. show_help(){
  51. cat <<EOF
  52. Usage: configure [options]
  53. Options: [defaults in brackets after descriptions]
  54. Standard options:
  55. --help print this message
  56. --logfile=FILE log tests and output to FILE [config.log]
  57. --disable-logging do not log configure debug information
  58. --prefix=PREFIX install in PREFIX [$prefix]
  59. --bindir=DIR install binaries in DIR [PREFIX/bin]
  60. --datadir=DIR install data files in DIR [PREFIX/share/avconv]
  61. --libdir=DIR install libs in DIR [PREFIX/lib]
  62. --shlibdir=DIR install shared libs in DIR [PREFIX/lib]
  63. --incdir=DIR install includes in DIR [PREFIX/include]
  64. --mandir=DIR install man page in DIR [PREFIX/share/man]
  65. Configuration options:
  66. --disable-static do not build static libraries [no]
  67. --enable-shared build shared libraries [no]
  68. --enable-gpl allow use of GPL code, the resulting libs
  69. and binaries will be under GPL [no]
  70. --enable-version3 upgrade (L)GPL to version 3 [no]
  71. --enable-nonfree allow use of nonfree code, the resulting libs
  72. and binaries will be unredistributable [no]
  73. --disable-doc do not build documentation
  74. --disable-ffmpeg disable ffmpeg build
  75. --disable-avconv disable avconv build
  76. --disable-avplay disable avplay build
  77. --disable-avprobe disable avprobe build
  78. --disable-avserver disable avserver build
  79. --disable-avdevice disable libavdevice build
  80. --disable-avcodec disable libavcodec build
  81. --disable-avformat disable libavformat build
  82. --disable-swscale disable libswscale build
  83. --disable-postproc disable libpostproc build
  84. --disable-avfilter disable video filter support [no]
  85. --disable-pthreads disable pthreads [auto]
  86. --enable-w32threads use Win32 threads [no]
  87. --enable-x11grab enable X11 grabbing [no]
  88. --disable-network disable network support [no]
  89. --enable-gray enable full grayscale support (slower color)
  90. --disable-swscale-alpha disable alpha channel support in swscale
  91. --disable-fastdiv disable table-based division
  92. --enable-small optimize for size instead of speed
  93. --disable-aandct disable AAN DCT code
  94. --disable-dct disable DCT code
  95. --disable-fft disable FFT code
  96. --disable-golomb disable Golomb code
  97. --disable-huffman disable Huffman code
  98. --disable-lpc disable LPC code
  99. --disable-mdct disable MDCT code
  100. --disable-rdft disable RDFT code
  101. --enable-vaapi enable VAAPI code
  102. --enable-vdpau enable VDPAU code
  103. --disable-dxva2 disable DXVA2 code
  104. --enable-runtime-cpudetect detect cpu capabilities at runtime (bigger binary)
  105. --enable-hardcoded-tables use hardcoded tables instead of runtime generation
  106. --enable-memalign-hack emulate memalign, interferes with memory debuggers
  107. --disable-everything disable all components listed below
  108. --disable-encoder=NAME disable encoder NAME
  109. --enable-encoder=NAME enable encoder NAME
  110. --disable-encoders disable all encoders
  111. --disable-decoder=NAME disable decoder NAME
  112. --enable-decoder=NAME enable decoder NAME
  113. --disable-decoders disable all decoders
  114. --disable-hwaccel=NAME disable hwaccel NAME
  115. --enable-hwaccel=NAME enable hwaccel NAME
  116. --disable-hwaccels disable all hwaccels
  117. --disable-muxer=NAME disable muxer NAME
  118. --enable-muxer=NAME enable muxer NAME
  119. --disable-muxers disable all muxers
  120. --disable-demuxer=NAME disable demuxer NAME
  121. --enable-demuxer=NAME enable demuxer NAME
  122. --disable-demuxers disable all demuxers
  123. --enable-parser=NAME enable parser NAME
  124. --disable-parser=NAME disable parser NAME
  125. --disable-parsers disable all parsers
  126. --enable-bsf=NAME enable bitstream filter NAME
  127. --disable-bsf=NAME disable bitstream filter NAME
  128. --disable-bsfs disable all bitstream filters
  129. --enable-protocol=NAME enable protocol NAME
  130. --disable-protocol=NAME disable protocol NAME
  131. --disable-protocols disable all protocols
  132. --disable-indev=NAME disable input device NAME
  133. --disable-outdev=NAME disable output device NAME
  134. --disable-indevs disable input devices
  135. --disable-outdevs disable output devices
  136. --disable-devices disable all devices
  137. --enable-filter=NAME enable filter NAME
  138. --disable-filter=NAME disable filter NAME
  139. --disable-filters disable all filters
  140. --list-decoders show all available decoders
  141. --list-encoders show all available encoders
  142. --list-hwaccels show all available hardware accelerators
  143. --list-muxers show all available muxers
  144. --list-demuxers show all available demuxers
  145. --list-parsers show all available parsers
  146. --list-protocols show all available protocols
  147. --list-bsfs show all available bitstream filters
  148. --list-indevs show all available input devices
  149. --list-outdevs show all available output devices
  150. --list-filters show all available filters
  151. External library support:
  152. --enable-avisynth enable reading of AVISynth script files [no]
  153. --enable-bzlib enable bzlib [autodetect]
  154. --enable-frei0r enable frei0r video filtering
  155. --enable-libopencore-amrnb enable AMR-NB de/encoding via libopencore-amrnb [no]
  156. --enable-libopencore-amrwb enable AMR-WB decoding via libopencore-amrwb [no]
  157. --enable-libopencv enable video filtering via libopencv [no]
  158. --enable-libcdio enable audio CD grabbing with libcdio
  159. --enable-libdc1394 enable IIDC-1394 grabbing using libdc1394
  160. and libraw1394 [no]
  161. --enable-libdirac enable Dirac support via libdirac [no]
  162. --enable-libfaac enable FAAC support via libfaac [no]
  163. --enable-libfreetype enable libfreetype [no]
  164. --enable-libgsm enable GSM support via libgsm [no]
  165. --enable-libmp3lame enable MP3 encoding via libmp3lame [no]
  166. --enable-libnut enable NUT (de)muxing via libnut,
  167. native (de)muxer exists [no]
  168. --enable-libopenjpeg enable JPEG 2000 decoding via OpenJPEG [no]
  169. --enable-librtmp enable RTMP[E] support via librtmp [no]
  170. --enable-libschroedinger enable Dirac support via libschroedinger [no]
  171. --enable-libspeex enable Speex decoding via libspeex [no]
  172. --enable-libtheora enable Theora encoding via libtheora [no]
  173. --enable-libvo-aacenc enable AAC encoding via libvo-aacenc [no]
  174. --enable-libvo-amrwbenc enable AMR-WB encoding via libvo-amrwbenc [no]
  175. --enable-libvorbis enable Vorbis encoding via libvorbis,
  176. native implementation exists [no]
  177. --enable-libvpx enable VP8 support via libvpx [no]
  178. --enable-libx264 enable H.264 encoding via x264 [no]
  179. --enable-libxavs enable AVS encoding via xavs [no]
  180. --enable-libxvid enable Xvid encoding via xvidcore,
  181. native MPEG-4/Xvid encoder exists [no]
  182. --enable-mlib enable Sun medialib [no]
  183. --enable-zlib enable zlib [autodetect]
  184. Advanced options (experts only):
  185. --cross-prefix=PREFIX use PREFIX for compilation tools [$cross_prefix]
  186. --enable-cross-compile assume a cross-compiler is used
  187. --sysroot=PATH root of cross-build tree
  188. --sysinclude=PATH location of cross-build system headers
  189. --target-os=OS compiler targets OS [$target_os]
  190. --target-exec=CMD command to run executables on target
  191. --target-path=DIR path to view of build directory on target
  192. --nm=NM use nm tool
  193. --ar=AR use archive tool AR [$ar_default]
  194. --as=AS use assembler AS [$as_default]
  195. --cc=CC use C compiler CC [$cc_default]
  196. --ld=LD use linker LD
  197. --host-cc=HOSTCC use host C compiler HOSTCC
  198. --host-cflags=HCFLAGS use HCFLAGS when compiling for host
  199. --host-ldflags=HLDFLAGS use HLDFLAGS when linking for host
  200. --host-libs=HLIBS use libs HLIBS when linking for host
  201. --extra-cflags=ECFLAGS add ECFLAGS to CFLAGS [$CFLAGS]
  202. --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]
  203. --extra-libs=ELIBS add ELIBS [$ELIBS]
  204. --extra-version=STRING version string suffix []
  205. --build-suffix=SUFFIX library name suffix []
  206. --arch=ARCH select architecture [$arch]
  207. --cpu=CPU select the minimum required CPU (affects
  208. instruction selection, may crash on older CPUs)
  209. --disable-asm disable all assembler optimizations
  210. --disable-altivec disable AltiVec optimizations
  211. --disable-amd3dnow disable 3DNow! optimizations
  212. --disable-amd3dnowext disable 3DNow! extended optimizations
  213. --disable-mmx disable MMX optimizations
  214. --disable-mmx2 disable MMX2 optimizations
  215. --disable-sse disable SSE optimizations
  216. --disable-ssse3 disable SSSE3 optimizations
  217. --disable-avx disable AVX optimizations
  218. --disable-armv5te disable armv5te optimizations
  219. --disable-armv6 disable armv6 optimizations
  220. --disable-armv6t2 disable armv6t2 optimizations
  221. --disable-armvfp disable ARM VFP optimizations
  222. --disable-iwmmxt disable iwmmxt optimizations
  223. --disable-mmi disable MMI optimizations
  224. --disable-neon disable neon optimizations
  225. --disable-vis disable VIS optimizations
  226. --disable-yasm disable use of yasm assembler
  227. --enable-pic build position-independent code
  228. --malloc-prefix=PFX prefix malloc and related names with PFX
  229. --enable-sram allow use of on-chip SRAM
  230. --disable-symver disable symbol versioning
  231. --optflags override optimization-related compiler flags
  232. Developer options (useful when working on Libav itself):
  233. --disable-debug disable debugging symbols
  234. --enable-debug=LEVEL set the debug level [$debuglevel]
  235. --disable-optimizations disable compiler optimizations
  236. --enable-extra-warnings enable more compiler warnings
  237. --samples=PATH location of test samples for FATE, if not set use
  238. \$FATE_SAMPLES at make invocation time.
  239. NOTE: Object files are built at the place where configure is launched.
  240. EOF
  241. exit 0
  242. }
  243. quotes='""'
  244. log(){
  245. echo "$@" >> $logfile
  246. }
  247. log_file(){
  248. log BEGIN $1
  249. pr -n -t $1 >> $logfile
  250. log END $1
  251. }
  252. echolog(){
  253. log "$@"
  254. echo "$@"
  255. }
  256. warn(){
  257. log "WARNING: $*"
  258. WARNINGS="${WARNINGS}WARNING: $*\n"
  259. }
  260. die(){
  261. echolog "$@"
  262. cat <<EOF
  263. If you think configure made a mistake, make sure you are using the latest
  264. version from Git. If the latest version fails, report the problem to the
  265. libav-user@libav.org mailing list or IRC #libav on irc.freenode.net.
  266. EOF
  267. if disabled logging; then
  268. cat <<EOF
  269. Rerun configure with logging enabled (do not use --disable-logging), and
  270. include the log this produces with your report.
  271. EOF
  272. else
  273. cat <<EOF
  274. Include the log file "$logfile" produced by configure as this will help
  275. solving the problem.
  276. EOF
  277. fi
  278. exit 1
  279. }
  280. # Avoid locale weirdness, besides we really just want to translate ASCII.
  281. toupper(){
  282. echo "$@" | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ
  283. }
  284. tolower(){
  285. echo "$@" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
  286. }
  287. c_escape(){
  288. echo "$*" | sed 's/["\\]/\\\0/g'
  289. }
  290. sh_quote(){
  291. v=$(echo "$1" | sed "s/'/'\\\\''/g")
  292. test "x$v" = "x${v#*[!A-Za-z0-9_/.+-]}" || v="'$v'"
  293. echo "$v"
  294. }
  295. cleanws(){
  296. echo "$@" | sed 's/^ *//;s/ */ /g;s/ *$//'
  297. }
  298. filter(){
  299. pat=$1
  300. shift
  301. for v; do
  302. eval "case $v in $pat) echo $v ;; esac"
  303. done
  304. }
  305. filter_out(){
  306. pat=$1
  307. shift
  308. for v; do
  309. eval "case $v in $pat) ;; *) echo $v ;; esac"
  310. done
  311. }
  312. map(){
  313. m=$1
  314. shift
  315. for v; do eval $m; done
  316. }
  317. set_all(){
  318. value=$1
  319. shift
  320. for var in $*; do
  321. eval $var=$value
  322. done
  323. }
  324. set_weak(){
  325. value=$1
  326. shift
  327. for var; do
  328. eval : \${$var:=$value}
  329. done
  330. }
  331. set_safe(){
  332. var=$1
  333. shift
  334. eval $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')='$*'
  335. }
  336. get_safe(){
  337. eval echo \$$(echo "$1" | sed 's/[^A-Za-z0-9_]/_/g')
  338. }
  339. pushvar(){
  340. for var in $*; do
  341. eval level=\${${var}_level:=0}
  342. eval ${var}_${level}="\$$var"
  343. eval ${var}_level=$(($level+1))
  344. done
  345. }
  346. popvar(){
  347. for var in $*; do
  348. eval level=\${${var}_level:-0}
  349. test $level = 0 && continue
  350. eval level=$(($level-1))
  351. eval $var="\${${var}_${level}}"
  352. eval ${var}_level=$level
  353. eval unset ${var}_${level}
  354. done
  355. }
  356. enable(){
  357. set_all yes $*
  358. }
  359. disable(){
  360. set_all no $*
  361. }
  362. enable_weak(){
  363. set_weak yes $*
  364. }
  365. disable_weak(){
  366. set_weak no $*
  367. }
  368. enable_safe(){
  369. for var; do
  370. enable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
  371. done
  372. }
  373. disable_safe(){
  374. for var; do
  375. disable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
  376. done
  377. }
  378. do_enable_deep(){
  379. for var; do
  380. enabled $var && continue
  381. eval sel="\$${var}_select"
  382. eval sgs="\$${var}_suggest"
  383. pushvar var sgs
  384. enable_deep $sel
  385. popvar sgs
  386. enable_deep_weak $sgs
  387. popvar var
  388. done
  389. }
  390. enable_deep(){
  391. do_enable_deep $*
  392. enable $*
  393. }
  394. enable_deep_weak(){
  395. do_enable_deep $*
  396. enable_weak $*
  397. }
  398. enabled(){
  399. test "${1#!}" = "$1" && op== || op=!=
  400. eval test "x\$${1#!}" $op "xyes"
  401. }
  402. disabled(){
  403. test "${1#!}" = "$1" && op== || op=!=
  404. eval test "x\$${1#!}" $op "xno"
  405. }
  406. enabled_all(){
  407. for opt; do
  408. enabled $opt || return 1
  409. done
  410. }
  411. disabled_all(){
  412. for opt; do
  413. disabled $opt || return 1
  414. done
  415. }
  416. enabled_any(){
  417. for opt; do
  418. enabled $opt && return 0
  419. done
  420. }
  421. disabled_any(){
  422. for opt; do
  423. disabled $opt && return 0
  424. done
  425. return 1
  426. }
  427. set_default(){
  428. for opt; do
  429. eval : \${$opt:=\$${opt}_default}
  430. done
  431. }
  432. is_in(){
  433. value=$1
  434. shift
  435. for var in $*; do
  436. [ $var = $value ] && return 0
  437. done
  438. return 1
  439. }
  440. check_deps(){
  441. for cfg; do
  442. cfg="${cfg#!}"
  443. enabled ${cfg}_checking && die "Circular dependency for $cfg."
  444. disabled ${cfg}_checking && continue
  445. enable ${cfg}_checking
  446. eval dep_all="\$${cfg}_deps"
  447. eval dep_any="\$${cfg}_deps_any"
  448. eval dep_sel="\$${cfg}_select"
  449. eval dep_sgs="\$${cfg}_suggest"
  450. eval dep_ifa="\$${cfg}_if"
  451. eval dep_ifn="\$${cfg}_if_any"
  452. pushvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
  453. check_deps $dep_all $dep_any $dep_sel $dep_sgs $dep_ifa $dep_ifn
  454. popvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
  455. [ -n "$dep_ifa" ] && { enabled_all $dep_ifa && enable_weak $cfg; }
  456. [ -n "$dep_ifn" ] && { enabled_any $dep_ifn && enable_weak $cfg; }
  457. enabled_all $dep_all || disable $cfg
  458. enabled_any $dep_any || disable $cfg
  459. disabled_any $dep_sel && disable $cfg
  460. if enabled $cfg; then
  461. eval dep_extralibs="\$${cfg}_extralibs"
  462. test -n "$dep_extralibs" && add_extralibs $dep_extralibs
  463. enable_deep $dep_sel
  464. enable_deep_weak $dep_sgs
  465. fi
  466. disable ${cfg}_checking
  467. done
  468. }
  469. print_config_h(){
  470. enabled $1 && v=1 || v=0
  471. echo "#define $2 $v"
  472. }
  473. print_config_mak(){
  474. enabled $1 && v= || v=!
  475. echo "$v$2=yes"
  476. }
  477. print_config_asm(){
  478. enabled $1 && echo "%define $2"
  479. }
  480. print_config(){
  481. pfx=$1
  482. files=$2
  483. shift 2
  484. for cfg; do
  485. ucname="$(toupper $cfg)"
  486. for f in $files; do
  487. "print_config_${f##*.}" $cfg ${pfx}${ucname} >>$f
  488. done
  489. done
  490. }
  491. print_enabled(){
  492. test "$1" = -n && end=" " && shift || end="\n"
  493. suf=$1
  494. shift
  495. for v; do
  496. enabled $v && printf "%s$end" ${v%$suf};
  497. done
  498. }
  499. append(){
  500. var=$1
  501. shift
  502. eval "$var=\"\$$var $*\""
  503. }
  504. prepend(){
  505. var=$1
  506. shift
  507. eval "$var=\"$* \$$var\""
  508. }
  509. add_cppflags(){
  510. append CPPFLAGS $($filter_cppflags "$@")
  511. }
  512. add_cflags(){
  513. append CFLAGS $($filter_cflags "$@")
  514. }
  515. add_asflags(){
  516. append ASFLAGS $($filter_asflags "$@")
  517. }
  518. add_ldflags(){
  519. append LDFLAGS "$@"
  520. }
  521. add_extralibs(){
  522. prepend extralibs "$@"
  523. }
  524. check_cmd(){
  525. log "$@"
  526. "$@" >> $logfile 2>&1
  527. }
  528. check_cc(){
  529. log check_cc "$@"
  530. cat > $TMPC
  531. log_file $TMPC
  532. check_cmd $cc $CPPFLAGS $CFLAGS "$@" -c -o $TMPO $TMPC
  533. }
  534. check_cpp(){
  535. log check_cpp "$@"
  536. cat > $TMPC
  537. log_file $TMPC
  538. check_cmd $cc $CPPFLAGS $CFLAGS "$@" -E -o $TMPO $TMPC
  539. }
  540. check_as(){
  541. log check_as "$@"
  542. cat > $TMPC
  543. log_file $TMPC
  544. check_cmd $as $CPPFLAGS $ASFLAGS "$@" -c -o $TMPO $TMPC
  545. }
  546. check_asm(){
  547. log check_asm "$@"
  548. name="$1"
  549. code="$2"
  550. shift 2
  551. disable $name
  552. check_as "$@" <<EOF && enable $name
  553. void foo(void){ __asm__ volatile($code); }
  554. EOF
  555. }
  556. check_yasm(){
  557. log check_yasm "$@"
  558. echo "$1" > $TMPS
  559. log_file $TMPS
  560. shift 1
  561. check_cmd $yasmexe $YASMFLAGS "$@" -o $TMPO $TMPS
  562. }
  563. check_ld(){
  564. log check_ld "$@"
  565. flags=''
  566. libs=''
  567. for f; do
  568. test "${f}" = "${f#-l}" && flags="$flags $f" || libs="$libs $f"
  569. done
  570. check_cc $($filter_cflags $flags) || return
  571. check_cmd $ld $LDFLAGS $flags -o $TMPE $TMPO $libs $extralibs
  572. }
  573. check_cppflags(){
  574. log check_cppflags "$@"
  575. set -- $($filter_cppflags "$@")
  576. check_cc "$@" <<EOF && append CPPFLAGS "$@"
  577. int x;
  578. EOF
  579. }
  580. check_cflags(){
  581. log check_cflags "$@"
  582. set -- $($filter_cflags "$@")
  583. check_cc "$@" <<EOF && append CFLAGS "$@"
  584. int x;
  585. EOF
  586. }
  587. test_ldflags(){
  588. log test_ldflags "$@"
  589. check_ld "$@" <<EOF
  590. int main(void){ return 0; }
  591. EOF
  592. }
  593. check_ldflags(){
  594. log check_ldflags "$@"
  595. test_ldflags "$@" && add_ldflags "$@"
  596. }
  597. check_header(){
  598. log check_header "$@"
  599. header=$1
  600. shift
  601. disable_safe $header
  602. check_cpp "$@" <<EOF && enable_safe $header
  603. #include <$header>
  604. int x;
  605. EOF
  606. }
  607. check_func(){
  608. log check_func "$@"
  609. func=$1
  610. shift
  611. disable $func
  612. check_ld "$@" <<EOF && enable $func
  613. extern int $func();
  614. int main(void){ $func(); }
  615. EOF
  616. }
  617. check_mathfunc(){
  618. log check_mathfunc "$@"
  619. func=$1
  620. shift
  621. disable $func
  622. check_ld "$@" <<EOF && enable $func
  623. #include <math.h>
  624. float foo(float f) { return $func(f); }
  625. int main(void){ return 0; }
  626. EOF
  627. }
  628. check_func_headers(){
  629. log check_func_headers "$@"
  630. headers=$1
  631. funcs=$2
  632. shift 2
  633. {
  634. for hdr in $headers; do
  635. echo "#include <$hdr>"
  636. done
  637. for func in $funcs; do
  638. echo "long check_$func(void) { return (long) $func; }"
  639. done
  640. echo "int main(void) { return 0; }"
  641. } | check_ld "$@" && enable $funcs && enable_safe $headers
  642. }
  643. check_cpp_condition(){
  644. log check_cpp_condition "$@"
  645. header=$1
  646. condition=$2
  647. shift 2
  648. check_cpp $($filter_cppflags "$@") <<EOF
  649. #include <$header>
  650. #if !($condition)
  651. #error "unsatisfied condition: $condition"
  652. #endif
  653. EOF
  654. }
  655. check_lib(){
  656. log check_lib "$@"
  657. header="$1"
  658. func="$2"
  659. shift 2
  660. check_header $header && check_func $func "$@" && add_extralibs "$@"
  661. }
  662. check_lib2(){
  663. log check_lib2 "$@"
  664. headers="$1"
  665. funcs="$2"
  666. shift 2
  667. check_func_headers "$headers" "$funcs" "$@" && add_extralibs "$@"
  668. }
  669. check_pkg_config(){
  670. log check_pkg_config "$@"
  671. pkg="$1"
  672. headers="$2"
  673. funcs="$3"
  674. shift 3
  675. $pkg_config --exists $pkg || return
  676. pkg_cflags=$($pkg_config --cflags $pkg)
  677. pkg_libs=$($pkg_config --libs $pkg)
  678. check_func_headers "$headers" "$funcs" $pkg_cflags $pkg_libs "$@" &&
  679. set_safe ${pkg}_cflags $pkg_cflags &&
  680. set_safe ${pkg}_libs $pkg_libs
  681. }
  682. check_exec(){
  683. check_ld "$@" && { enabled cross_compile || $TMPE >> $logfile 2>&1; }
  684. }
  685. check_exec_crash(){
  686. code=$(cat)
  687. # exit() is not async signal safe. _Exit (C99) and _exit (POSIX)
  688. # are safe but may not be available everywhere. Thus we use
  689. # raise(SIGTERM) instead. The check is run in a subshell so we
  690. # can redirect the "Terminated" message from the shell. SIGBUS
  691. # is not defined by standard C so it is used conditionally.
  692. (check_exec "$@") >> $logfile 2>&1 <<EOF
  693. #include <signal.h>
  694. static void sighandler(int sig){
  695. raise(SIGTERM);
  696. }
  697. int main(void){
  698. signal(SIGILL, sighandler);
  699. signal(SIGFPE, sighandler);
  700. signal(SIGSEGV, sighandler);
  701. #ifdef SIGBUS
  702. signal(SIGBUS, sighandler);
  703. #endif
  704. { $code }
  705. }
  706. EOF
  707. }
  708. check_type(){
  709. log check_type "$@"
  710. headers=$1
  711. type=$2
  712. shift 2
  713. disable_safe "$type"
  714. incs=""
  715. for hdr in $headers; do
  716. incs="$incs
  717. #include <$hdr>"
  718. done
  719. check_cc "$@" <<EOF && enable_safe "$type"
  720. $incs
  721. $type v;
  722. EOF
  723. }
  724. check_struct(){
  725. log check_type "$@"
  726. headers=$1
  727. struct=$2
  728. member=$3
  729. shift 3
  730. disable_safe "${struct}_${member}"
  731. incs=""
  732. for hdr in $headers; do
  733. incs="$incs
  734. #include <$hdr>"
  735. done
  736. check_cc "$@" <<EOF && enable_safe "${struct}_${member}"
  737. $incs
  738. const void *p = &(($struct *)0)->$member;
  739. EOF
  740. }
  741. require(){
  742. name="$1"
  743. header="$2"
  744. func="$3"
  745. shift 3
  746. check_lib $header $func "$@" || die "ERROR: $name not found"
  747. }
  748. require2(){
  749. name="$1"
  750. headers="$2"
  751. func="$3"
  752. shift 3
  753. check_lib2 "$headers" $func "$@" || die "ERROR: $name not found"
  754. }
  755. require_pkg_config(){
  756. pkg="$1"
  757. check_pkg_config "$@" || die "ERROR: $pkg not found"
  758. add_cflags $(get_safe ${pkg}_cflags)
  759. add_extralibs $(get_safe ${pkg}_libs)
  760. }
  761. check_host_cc(){
  762. log check_host_cc "$@"
  763. cat > $TMPC
  764. log_file $TMPC
  765. check_cmd $host_cc $host_cflags "$@" -c -o $TMPO $TMPC
  766. }
  767. check_host_cflags(){
  768. log check_host_cflags "$@"
  769. check_host_cc "$@" <<EOF && append host_cflags "$@"
  770. int x;
  771. EOF
  772. }
  773. apply(){
  774. file=$1
  775. shift
  776. "$@" < "$file" > "$file.tmp" && mv "$file.tmp" "$file" || rm "$file.tmp"
  777. }
  778. cp_if_changed(){
  779. cmp -s "$1" "$2" && echo "$2 is unchanged" && return
  780. mkdir -p "$(dirname $2)"
  781. cp -f "$1" "$2"
  782. }
  783. # CONFIG_LIST contains configurable options, while HAVE_LIST is for
  784. # system-dependent things.
  785. COMPONENT_LIST="
  786. bsfs
  787. decoders
  788. demuxers
  789. encoders
  790. filters
  791. hwaccels
  792. indevs
  793. muxers
  794. outdevs
  795. parsers
  796. protocols
  797. "
  798. CONFIG_LIST="
  799. $COMPONENT_LIST
  800. aandct
  801. ac3dsp
  802. avcodec
  803. avdevice
  804. avfilter
  805. avformat
  806. avisynth
  807. bzlib
  808. dct
  809. doc
  810. dwt
  811. dxva2
  812. fastdiv
  813. ffmpeg
  814. avconv
  815. avplay
  816. avprobe
  817. avserver
  818. fft
  819. frei0r
  820. golomb
  821. gpl
  822. gray
  823. h264dsp
  824. h264pred
  825. hardcoded_tables
  826. huffman
  827. libcdio
  828. libdc1394
  829. libdirac
  830. libfaac
  831. libfreetype
  832. libgsm
  833. libmp3lame
  834. libnut
  835. libopencore_amrnb
  836. libopencore_amrwb
  837. libopencv
  838. libopenjpeg
  839. librtmp
  840. libschroedinger
  841. libspeex
  842. libtheora
  843. libvo_aacenc
  844. libvo_amrwbenc
  845. libvorbis
  846. libvpx
  847. libx264
  848. libxavs
  849. libxvid
  850. lpc
  851. lsp
  852. mdct
  853. memalign_hack
  854. mlib
  855. mpegaudiodsp
  856. network
  857. nonfree
  858. pic
  859. postproc
  860. rdft
  861. rtpdec
  862. runtime_cpudetect
  863. shared
  864. sinewin
  865. small
  866. sram
  867. static
  868. swscale
  869. swscale_alpha
  870. thumb
  871. vaapi
  872. vdpau
  873. version3
  874. x11grab
  875. zlib
  876. "
  877. THREADS_LIST='
  878. pthreads
  879. w32threads
  880. '
  881. ARCH_LIST='
  882. alpha
  883. arm
  884. avr32
  885. avr32_ap
  886. avr32_uc
  887. bfin
  888. ia64
  889. m68k
  890. mips
  891. mips64
  892. parisc
  893. ppc
  894. ppc64
  895. s390
  896. sh4
  897. sparc
  898. sparc64
  899. tomi
  900. x86
  901. x86_32
  902. x86_64
  903. '
  904. ARCH_EXT_LIST='
  905. altivec
  906. amd3dnow
  907. amd3dnowext
  908. armv5te
  909. armv6
  910. armv6t2
  911. armvfp
  912. avx
  913. iwmmxt
  914. mmi
  915. mmx
  916. mmx2
  917. neon
  918. ppc4xx
  919. sse
  920. ssse3
  921. vfpv3
  922. vis
  923. '
  924. HAVE_LIST_PUB='
  925. bigendian
  926. fast_unaligned
  927. '
  928. HAVE_LIST="
  929. $ARCH_EXT_LIST
  930. $HAVE_LIST_PUB
  931. $THREADS_LIST
  932. aligned_stack
  933. alsa_asoundlib_h
  934. altivec_h
  935. arpa_inet_h
  936. asm_mod_y
  937. attribute_may_alias
  938. attribute_packed
  939. bswap
  940. closesocket
  941. cmov
  942. dcbzl
  943. dev_bktr_ioctl_bt848_h
  944. dev_bktr_ioctl_meteor_h
  945. dev_ic_bt8xx_h
  946. dev_video_meteor_ioctl_meteor_h
  947. dev_video_bktr_ioctl_bt848_h
  948. dlfcn_h
  949. dlopen
  950. dos_paths
  951. ebp_available
  952. ebx_available
  953. exp2
  954. exp2f
  955. fast_64bit
  956. fast_clz
  957. fast_cmov
  958. fcntl
  959. fork
  960. getaddrinfo
  961. gethrtime
  962. GetProcessMemoryInfo
  963. GetProcessTimes
  964. getrusage
  965. gnu_as
  966. struct_rusage_ru_maxrss
  967. ibm_asm
  968. inet_aton
  969. inline_asm
  970. isatty
  971. ldbrx
  972. libdc1394_1
  973. libdc1394_2
  974. llrint
  975. llrintf
  976. local_aligned_16
  977. local_aligned_8
  978. localtime_r
  979. log2
  980. log2f
  981. loongson
  982. lrint
  983. lrintf
  984. lzo1x_999_compress
  985. machine_ioctl_bt848_h
  986. machine_ioctl_meteor_h
  987. malloc_h
  988. MapViewOfFile
  989. memalign
  990. mkstemp
  991. mmap
  992. posix_memalign
  993. round
  994. roundf
  995. sdl
  996. sdl_video_size
  997. setmode
  998. sndio_h
  999. socklen_t
  1000. soundcard_h
  1001. poll_h
  1002. setrlimit
  1003. strerror_r
  1004. strptime
  1005. strtok_r
  1006. struct_addrinfo
  1007. struct_ipv6_mreq
  1008. struct_sockaddr_in6
  1009. struct_sockaddr_sa_len
  1010. struct_sockaddr_storage
  1011. symver
  1012. symver_gnu_asm
  1013. symver_asm_label
  1014. sys_mman_h
  1015. sys_resource_h
  1016. sys_select_h
  1017. sys_soundcard_h
  1018. sys_videoio_h
  1019. threads
  1020. trunc
  1021. truncf
  1022. vfp_args
  1023. VirtualAlloc
  1024. winsock2_h
  1025. xform_asm
  1026. xmm_clobbers
  1027. yasm
  1028. "
  1029. # options emitted with CONFIG_ prefix but not available on command line
  1030. CONFIG_EXTRA="
  1031. avutil
  1032. gplv3
  1033. lgplv3
  1034. "
  1035. CMDLINE_SELECT="
  1036. $ARCH_EXT_LIST
  1037. $CONFIG_LIST
  1038. $THREADS_LIST
  1039. asm
  1040. cross_compile
  1041. debug
  1042. extra_warnings
  1043. logging
  1044. optimizations
  1045. symver
  1046. yasm
  1047. "
  1048. PATHS_LIST='
  1049. bindir
  1050. datadir
  1051. incdir
  1052. libdir
  1053. mandir
  1054. prefix
  1055. shlibdir
  1056. '
  1057. CMDLINE_SET="
  1058. $PATHS_LIST
  1059. ar
  1060. arch
  1061. as
  1062. build_suffix
  1063. cc
  1064. cpu
  1065. cross_prefix
  1066. dep_cc
  1067. extra_version
  1068. host_cc
  1069. host_cflags
  1070. host_ldflags
  1071. host_libs
  1072. host_os
  1073. ld
  1074. logfile
  1075. malloc_prefix
  1076. nm
  1077. optflags
  1078. pkg_config
  1079. samples
  1080. sysinclude
  1081. sysroot
  1082. target_exec
  1083. target_os
  1084. target_path
  1085. "
  1086. CMDLINE_APPEND="
  1087. extra_cflags
  1088. "
  1089. # code dependency declarations
  1090. # architecture extensions
  1091. armv5te_deps="arm"
  1092. armv6_deps="arm"
  1093. armv6t2_deps="arm"
  1094. armvfp_deps="arm"
  1095. iwmmxt_deps="arm"
  1096. neon_deps="arm"
  1097. vfpv3_deps="armvfp"
  1098. mmi_deps="mips"
  1099. altivec_deps="ppc"
  1100. ppc4xx_deps="ppc"
  1101. vis_deps="sparc"
  1102. x86_64_suggest="cmov fast_cmov"
  1103. amd3dnow_deps="mmx"
  1104. amd3dnowext_deps="amd3dnow"
  1105. mmx_deps="x86"
  1106. mmx2_deps="mmx"
  1107. sse_deps="mmx"
  1108. ssse3_deps="sse"
  1109. avx_deps="ssse3"
  1110. aligned_stack_if_any="ppc x86"
  1111. fast_64bit_if_any="alpha ia64 mips64 parisc64 ppc64 sparc64 x86_64"
  1112. fast_clz_if_any="alpha armv5te avr32 mips ppc x86"
  1113. fast_unaligned_if_any="armv6 ppc x86"
  1114. need_memalign="altivec neon sse"
  1115. inline_asm_deps="!tms470"
  1116. symver_if_any="symver_asm_label symver_gnu_asm"
  1117. # subsystems
  1118. dct_select="rdft"
  1119. mdct_select="fft"
  1120. rdft_select="fft"
  1121. mpegaudiodsp_select="dct"
  1122. # decoders / encoders / hardware accelerators
  1123. aac_decoder_select="mdct sinewin"
  1124. aac_encoder_select="mdct sinewin"
  1125. aac_latm_decoder_select="aac_decoder aac_latm_parser"
  1126. ac3_decoder_select="mdct ac3dsp ac3_parser"
  1127. ac3_encoder_select="mdct ac3dsp"
  1128. ac3_fixed_encoder_select="mdct ac3dsp"
  1129. alac_encoder_select="lpc"
  1130. amrnb_decoder_select="lsp"
  1131. amrwb_decoder_select="lsp"
  1132. atrac1_decoder_select="mdct sinewin"
  1133. atrac3_decoder_select="mdct"
  1134. binkaudio_dct_decoder_select="mdct rdft dct sinewin"
  1135. binkaudio_rdft_decoder_select="mdct rdft sinewin"
  1136. cavs_decoder_select="golomb"
  1137. cook_decoder_select="mdct sinewin"
  1138. cscd_decoder_suggest="zlib"
  1139. dca_decoder_select="mdct"
  1140. dnxhd_encoder_select="aandct"
  1141. dxa_decoder_select="zlib"
  1142. eac3_decoder_select="ac3_decoder"
  1143. eac3_encoder_select="mdct ac3dsp"
  1144. eamad_decoder_select="aandct"
  1145. eatgq_decoder_select="aandct"
  1146. eatqi_decoder_select="aandct"
  1147. ffv1_decoder_select="golomb"
  1148. flac_decoder_select="golomb"
  1149. flac_encoder_select="golomb lpc"
  1150. flashsv_decoder_select="zlib"
  1151. flashsv_encoder_select="zlib"
  1152. flashsv2_decoder_select="zlib"
  1153. flv_decoder_select="h263_decoder"
  1154. flv_encoder_select="h263_encoder"
  1155. fraps_decoder_select="huffman"
  1156. h261_encoder_select="aandct"
  1157. h263_decoder_select="h263_parser"
  1158. h263_encoder_select="aandct"
  1159. h263_vaapi_hwaccel_select="vaapi h263_decoder"
  1160. h263i_decoder_select="h263_decoder"
  1161. h263p_encoder_select="h263_encoder"
  1162. h264_decoder_select="golomb h264dsp h264pred"
  1163. h264_dxva2_hwaccel_deps="dxva2api_h"
  1164. h264_dxva2_hwaccel_select="dxva2 h264_decoder"
  1165. h264_vaapi_hwaccel_select="vaapi"
  1166. h264_vdpau_decoder_select="vdpau h264_decoder"
  1167. imc_decoder_select="fft mdct sinewin"
  1168. jpegls_decoder_select="golomb"
  1169. jpegls_encoder_select="golomb"
  1170. ljpeg_encoder_select="aandct"
  1171. loco_decoder_select="golomb"
  1172. mjpeg_encoder_select="aandct"
  1173. mlp_decoder_select="mlp_parser"
  1174. mp1_decoder_select="mpegaudiodsp"
  1175. mp2_decoder_select="mpegaudiodsp"
  1176. mp3adu_decoder_select="mpegaudiodsp"
  1177. mp3_decoder_select="mpegaudiodsp"
  1178. mp3on4_decoder_select="mpegaudiodsp"
  1179. mp1float_decoder_select="mpegaudiodsp"
  1180. mp2float_decoder_select="mpegaudiodsp"
  1181. mp3adufloat_decoder_select="mpegaudiodsp"
  1182. mp3float_decoder_select="mpegaudiodsp"
  1183. mp3on4float_decoder_select="mpegaudiodsp"
  1184. mpeg1video_encoder_select="aandct"
  1185. mpeg2video_encoder_select="aandct"
  1186. mpeg4_decoder_select="h263_decoder mpeg4video_parser"
  1187. mpeg4_encoder_select="h263_encoder"
  1188. mpeg_vdpau_decoder_select="vdpau mpegvideo_decoder"
  1189. mpeg1_vdpau_decoder_select="vdpau mpeg1video_decoder"
  1190. mpeg2_dxva2_hwaccel_deps="dxva2api_h"
  1191. mpeg2_dxva2_hwaccel_select="dxva2 mpeg2video_decoder"
  1192. mpeg2_vaapi_hwaccel_select="vaapi mpeg2video_decoder"
  1193. mpeg4_vaapi_hwaccel_select="vaapi mpeg4_decoder"
  1194. mpeg4_vdpau_decoder_select="vdpau mpeg4_decoder"
  1195. mpeg_xvmc_decoder_deps="X11_extensions_XvMClib_h"
  1196. mpeg_xvmc_decoder_select="mpegvideo_decoder"
  1197. msmpeg4v1_decoder_select="h263_decoder"
  1198. msmpeg4v1_encoder_select="h263_encoder"
  1199. msmpeg4v2_decoder_select="h263_decoder"
  1200. msmpeg4v2_encoder_select="h263_encoder"
  1201. msmpeg4v3_decoder_select="h263_decoder"
  1202. msmpeg4v3_encoder_select="h263_encoder"
  1203. nellymoser_decoder_select="mdct sinewin"
  1204. nellymoser_encoder_select="mdct sinewin"
  1205. png_decoder_select="zlib"
  1206. png_encoder_select="zlib"
  1207. qcelp_decoder_select="lsp"
  1208. qdm2_decoder_select="mdct rdft mpegaudiodsp"
  1209. ra_144_encoder_select="lpc"
  1210. rv10_decoder_select="h263_decoder"
  1211. rv10_encoder_select="h263_encoder"
  1212. rv20_decoder_select="h263_decoder"
  1213. rv20_encoder_select="h263_encoder"
  1214. rv30_decoder_select="golomb h264pred"
  1215. rv40_decoder_select="golomb h264pred"
  1216. shorten_decoder_select="golomb"
  1217. sipr_decoder_select="lsp"
  1218. snow_decoder_select="dwt"
  1219. snow_encoder_select="aandct dwt"
  1220. svq1_encoder_select="aandct"
  1221. svq3_decoder_select="golomb h264dsp h264pred"
  1222. svq3_decoder_suggest="zlib"
  1223. theora_decoder_select="vp3_decoder"
  1224. tiff_decoder_suggest="zlib"
  1225. tiff_encoder_suggest="zlib"
  1226. truehd_decoder_select="mlp_decoder"
  1227. tscc_decoder_select="zlib"
  1228. twinvq_decoder_select="mdct lsp sinewin"
  1229. vc1_decoder_select="h263_decoder"
  1230. vc1_dxva2_hwaccel_deps="dxva2api_h DXVA_PictureParameters_wDecodedPictureIndex"
  1231. vc1_dxva2_hwaccel_select="dxva2 vc1_decoder"
  1232. vc1_vaapi_hwaccel_select="vaapi vc1_decoder"
  1233. vc1_vdpau_decoder_select="vdpau vc1_decoder"
  1234. vc1image_decoder_select="vc1_decoder"
  1235. vorbis_decoder_select="mdct"
  1236. vorbis_encoder_select="mdct"
  1237. vp6_decoder_select="huffman"
  1238. vp6a_decoder_select="vp6_decoder"
  1239. vp6f_decoder_select="vp6_decoder"
  1240. vp8_decoder_select="h264pred"
  1241. wmapro_decoder_select="mdct sinewin"
  1242. wmav1_decoder_select="mdct sinewin"
  1243. wmav1_encoder_select="mdct sinewin"
  1244. wmav2_decoder_select="mdct sinewin"
  1245. wmav2_encoder_select="mdct sinewin"
  1246. wmavoice_decoder_select="lsp rdft dct mdct sinewin"
  1247. wmv1_decoder_select="h263_decoder"
  1248. wmv1_encoder_select="h263_encoder"
  1249. wmv2_decoder_select="h263_decoder"
  1250. wmv2_encoder_select="h263_encoder"
  1251. wmv3_decoder_select="vc1_decoder"
  1252. wmv3_dxva2_hwaccel_select="vc1_dxva2_hwaccel"
  1253. wmv3_vaapi_hwaccel_select="vc1_vaapi_hwaccel"
  1254. wmv3_vdpau_decoder_select="vc1_vdpau_decoder"
  1255. wmv3image_decoder_select="wmv3_decoder"
  1256. zlib_decoder_select="zlib"
  1257. zlib_encoder_select="zlib"
  1258. zmbv_decoder_select="zlib"
  1259. zmbv_encoder_select="zlib"
  1260. vaapi_deps="va_va_h"
  1261. vdpau_deps="vdpau_vdpau_h vdpau_vdpau_x11_h"
  1262. # parsers
  1263. h264_parser_select="golomb h264dsp h264pred"
  1264. # external libraries
  1265. libdirac_decoder_deps="libdirac !libschroedinger"
  1266. libdirac_encoder_deps="libdirac"
  1267. libfaac_encoder_deps="libfaac"
  1268. libgsm_decoder_deps="libgsm"
  1269. libgsm_encoder_deps="libgsm"
  1270. libgsm_ms_decoder_deps="libgsm"
  1271. libgsm_ms_encoder_deps="libgsm"
  1272. libmp3lame_encoder_deps="libmp3lame"
  1273. libopencore_amrnb_decoder_deps="libopencore_amrnb"
  1274. libopencore_amrnb_encoder_deps="libopencore_amrnb"
  1275. libopencore_amrwb_decoder_deps="libopencore_amrwb"
  1276. libopenjpeg_decoder_deps="libopenjpeg"
  1277. libschroedinger_decoder_deps="libschroedinger"
  1278. libschroedinger_encoder_deps="libschroedinger"
  1279. libspeex_decoder_deps="libspeex"
  1280. libtheora_encoder_deps="libtheora"
  1281. libvo_aacenc_encoder_deps="libvo_aacenc"
  1282. libvo_amrwbenc_encoder_deps="libvo_amrwbenc"
  1283. libvorbis_encoder_deps="libvorbis"
  1284. libvpx_decoder_deps="libvpx"
  1285. libvpx_encoder_deps="libvpx"
  1286. libx264_encoder_deps="libx264"
  1287. libxavs_encoder_deps="libxavs"
  1288. libxvid_encoder_deps="libxvid"
  1289. # demuxers / muxers
  1290. ac3_demuxer_select="ac3_parser"
  1291. asf_stream_muxer_select="asf_muxer"
  1292. avisynth_demuxer_deps="avisynth"
  1293. dirac_demuxer_select="dirac_parser"
  1294. eac3_demuxer_select="ac3_parser"
  1295. flac_demuxer_select="flac_parser"
  1296. ipod_muxer_select="mov_muxer"
  1297. libnut_demuxer_deps="libnut"
  1298. libnut_muxer_deps="libnut"
  1299. matroska_audio_muxer_select="matroska_muxer"
  1300. matroska_demuxer_suggest="zlib bzlib"
  1301. mov_demuxer_suggest="zlib"
  1302. mp3_demuxer_select="mpegaudio_parser"
  1303. mp4_muxer_select="mov_muxer"
  1304. mpegtsraw_demuxer_select="mpegts_demuxer"
  1305. mxf_d10_muxer_select="mxf_muxer"
  1306. ogg_demuxer_select="golomb"
  1307. psp_muxer_select="mov_muxer"
  1308. rtp_demuxer_select="sdp_demuxer"
  1309. rtpdec_select="asf_demuxer rm_demuxer rtp_protocol mpegts_demuxer mov_demuxer"
  1310. rtsp_demuxer_select="http_protocol rtpdec"
  1311. rtsp_muxer_select="rtp_muxer http_protocol rtp_protocol"
  1312. sap_demuxer_select="sdp_demuxer"
  1313. sap_muxer_select="rtp_muxer rtp_protocol"
  1314. sdp_demuxer_select="rtpdec"
  1315. spdif_muxer_select="aac_parser"
  1316. tg2_muxer_select="mov_muxer"
  1317. tgp_muxer_select="mov_muxer"
  1318. w64_demuxer_deps="wav_demuxer"
  1319. # indevs / outdevs
  1320. alsa_indev_deps="alsa_asoundlib_h snd_pcm_htimestamp"
  1321. alsa_outdev_deps="alsa_asoundlib_h"
  1322. bktr_indev_deps_any="dev_bktr_ioctl_bt848_h machine_ioctl_bt848_h dev_video_bktr_ioctl_bt848_h dev_ic_bt8xx_h"
  1323. dv1394_indev_deps="dv1394 dv_demuxer"
  1324. fbdev_indev_deps="linux_fb_h"
  1325. jack_indev_deps="jack_jack_h"
  1326. libcdio_indev_deps="libcdio"
  1327. libdc1394_indev_deps="libdc1394"
  1328. oss_indev_deps_any="soundcard_h sys_soundcard_h"
  1329. oss_outdev_deps_any="soundcard_h sys_soundcard_h"
  1330. sndio_indev_deps="sndio_h"
  1331. sndio_outdev_deps="sndio_h"
  1332. v4l_indev_deps="linux_videodev_h"
  1333. v4l2_indev_deps_any="linux_videodev2_h sys_videoio_h"
  1334. vfwcap_indev_deps="capCreateCaptureWindow vfwcap_defines"
  1335. vfwcap_indev_extralibs="-lavicap32"
  1336. x11_grab_device_indev_deps="x11grab XShmCreateImage"
  1337. x11_grab_device_indev_extralibs="-lX11 -lXext -lXfixes"
  1338. # protocols
  1339. gopher_protocol_deps="network"
  1340. http_protocol_deps="network"
  1341. http_protocol_select="tcp_protocol"
  1342. mmsh_protocol_select="http_protocol"
  1343. mmst_protocol_deps="network"
  1344. rtmp_protocol_select="tcp_protocol"
  1345. rtp_protocol_select="udp_protocol"
  1346. tcp_protocol_deps="network"
  1347. udp_protocol_deps="network"
  1348. # filters
  1349. blackframe_filter_deps="gpl"
  1350. cropdetect_filter_deps="gpl"
  1351. drawtext_filter_deps="libfreetype"
  1352. frei0r_filter_deps="frei0r dlopen strtok_r"
  1353. frei0r_src_filter_deps="frei0r dlopen strtok_r"
  1354. hqdn3d_filter_deps="gpl"
  1355. ocv_filter_deps="libopencv"
  1356. scale_filter_deps="swscale"
  1357. yadif_filter_deps="gpl"
  1358. # libraries
  1359. avdevice_deps="avcodec avformat"
  1360. avformat_deps="avcodec"
  1361. postproc_deps="gpl"
  1362. # programs
  1363. ffmpeg_deps="avcodec avformat swscale"
  1364. ffmpeg_select="buffer_filter"
  1365. avconv_deps="avcodec avformat swscale"
  1366. avconv_select="buffer_filter"
  1367. avplay_deps="avcodec avformat swscale sdl"
  1368. avplay_select="rdft"
  1369. avprobe_deps="avcodec avformat"
  1370. avserver_deps="avformat ffm_muxer fork rtp_protocol rtsp_demuxer"
  1371. avserver_extralibs='$ldl'
  1372. doc_deps="texi2html"
  1373. # tests
  1374. test_deps(){
  1375. suf1=$1
  1376. suf2=$2
  1377. shift 2
  1378. for v; do
  1379. dep=${v%=*}
  1380. tests=${v#*=}
  1381. for name in ${tests}; do
  1382. append ${name}_test_deps ${dep}$suf1 ${dep}$suf2
  1383. done
  1384. done
  1385. }
  1386. mxf_d10_test_deps="avfilter"
  1387. seek_lavf_mxf_d10_test_deps="mxf_d10_test"
  1388. test_deps _encoder _decoder \
  1389. adpcm_g726=g726 \
  1390. adpcm_ima_qt \
  1391. adpcm_ima_wav \
  1392. adpcm_ms \
  1393. adpcm_swf \
  1394. adpcm_yamaha=adpcm_yam \
  1395. alac \
  1396. asv1 \
  1397. asv2 \
  1398. bmp \
  1399. dnxhd="dnxhd_1080i dnxhd_720p dnxhd_720p_rd" \
  1400. dvvideo="dv dv50" \
  1401. ffv1 \
  1402. flac \
  1403. flashsv \
  1404. flv \
  1405. gif \
  1406. h261 \
  1407. h263="h263 h263p" \
  1408. huffyuv \
  1409. jpegls \
  1410. mjpeg="jpg mjpeg ljpeg" \
  1411. mp2 \
  1412. mpeg1video="mpeg mpeg1b" \
  1413. mpeg2video="mpeg2 mpeg2thread" \
  1414. mpeg4="mpeg4 mpeg4adv mpeg4nr mpeg4thread error rc" \
  1415. msmpeg4v3=msmpeg4 \
  1416. msmpeg4v2 \
  1417. pbm=pbmpipe \
  1418. pcx \
  1419. pgm="pgm pgmpipe" \
  1420. png \
  1421. ppm="ppm ppmpipe" \
  1422. rawvideo="rgb yuv" \
  1423. roq \
  1424. rv10 \
  1425. rv20 \
  1426. sgi \
  1427. snow="snow snowll" \
  1428. svq1 \
  1429. targa=tga \
  1430. tiff \
  1431. wmav1 \
  1432. wmav2 \
  1433. wmv1 \
  1434. wmv2 \
  1435. test_deps _muxer _demuxer \
  1436. aiff \
  1437. pcm_alaw=alaw \
  1438. asf \
  1439. au \
  1440. avi \
  1441. dv=dv_fmt \
  1442. ffm \
  1443. flv=flv_fmt \
  1444. gxf \
  1445. matroska=mkv \
  1446. mmf \
  1447. mov \
  1448. pcm_mulaw=mulaw \
  1449. mxf="mxf mxf_d10" \
  1450. nut \
  1451. ogg \
  1452. rawvideo=pixfmt \
  1453. rm \
  1454. swf \
  1455. mpegts=ts \
  1456. voc \
  1457. wav \
  1458. yuv4mpegpipe=yuv4mpeg \
  1459. ac3_fixed_test_deps="ac3_fixed_encoder ac3_decoder rm_muxer rm_demuxer"
  1460. mpg_test_deps="mpeg1system_muxer mpegps_demuxer"
  1461. # default parameters
  1462. logfile="config.log"
  1463. # installation paths
  1464. prefix_default="/usr/local"
  1465. bindir_default='${prefix}/bin'
  1466. datadir_default='${prefix}/share/avconv'
  1467. incdir_default='${prefix}/include'
  1468. libdir_default='${prefix}/lib'
  1469. mandir_default='${prefix}/share/man'
  1470. shlibdir_default="$libdir_default"
  1471. # toolchain
  1472. ar_default="ar"
  1473. cc_default="gcc"
  1474. cc_version=\"unknown\"
  1475. host_cc_default="gcc"
  1476. ln_s="ln -sf"
  1477. nm_default="nm"
  1478. objformat="elf"
  1479. pkg_config_default=pkg-config
  1480. ranlib="ranlib"
  1481. yasmexe="yasm"
  1482. nogas=":"
  1483. nm_opts='-g'
  1484. # machine
  1485. arch_default=$(uname -m)
  1486. cpu="generic"
  1487. # OS
  1488. target_os_default=$(tolower $(uname -s))
  1489. host_os=$target_os_default
  1490. # configurable options
  1491. enable avcodec
  1492. enable avdevice
  1493. enable avfilter
  1494. enable avformat
  1495. enable avutil
  1496. enable asm
  1497. enable debug
  1498. enable doc
  1499. enable fastdiv
  1500. enable ffmpeg
  1501. enable avconv
  1502. enable avplay
  1503. enable avprobe
  1504. enable avserver
  1505. enable network
  1506. enable optimizations
  1507. enable postproc
  1508. enable protocols
  1509. enable static
  1510. enable swscale
  1511. enable swscale_alpha
  1512. # build settings
  1513. SHFLAGS='-shared -Wl,-soname,$$(@F)'
  1514. AVSERVERLDFLAGS=-Wl,-E
  1515. LIBPREF="lib"
  1516. LIBSUF=".a"
  1517. FULLNAME='$(NAME)$(BUILDSUF)'
  1518. LIBNAME='$(LIBPREF)$(FULLNAME)$(LIBSUF)'
  1519. SLIBPREF="lib"
  1520. SLIBSUF=".so"
  1521. SLIBNAME='$(SLIBPREF)$(FULLNAME)$(SLIBSUF)'
  1522. SLIBNAME_WITH_VERSION='$(SLIBNAME).$(LIBVERSION)'
  1523. SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)'
  1524. LIB_INSTALL_EXTRA_CMD='$$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
  1525. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_VERSION)'
  1526. SLIB_INSTALL_LINKS='$(SLIBNAME_WITH_MAJOR) $(SLIBNAME)'
  1527. AS_O='-o $@'
  1528. CC_O='-o $@'
  1529. host_cflags='-D_ISOC99_SOURCE -O3 -g'
  1530. host_libs='-lm'
  1531. target_path='$(CURDIR)'
  1532. # since the object filename is not given with the -MM flag, the compiler
  1533. # is only able to print the basename, and we must add the path ourselves
  1534. DEPEND_CMD='$(DEPCC) $(DEPFLAGS) $< | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(*F)\\.o,$(@D)/$(*F).o," > $(@:.o=.d)'
  1535. DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -MM'
  1536. # find source path
  1537. if test -f configure; then
  1538. source_path=.
  1539. else
  1540. source_path=$(cd $(dirname "$0"); pwd)
  1541. echo "$source_path" | grep -q '[[:blank:]]' &&
  1542. die "Out of tree builds are impossible with whitespace in source path."
  1543. test -e "$source_path/config.h" &&
  1544. die "Out of tree builds are impossible with config.h in source dir."
  1545. fi
  1546. for v in "$@"; do
  1547. r=${v#*=}
  1548. l=${v%"$r"}
  1549. r=$(sh_quote "$r")
  1550. LIBAV_CONFIGURATION="${LIBAV_CONFIGURATION# } ${l}${r}"
  1551. done
  1552. find_things(){
  1553. thing=$1
  1554. pattern=$2
  1555. file=$source_path/$3
  1556. sed -n "s/^[^#]*$pattern.*([^,]*, *\([^,]*\)\(,.*\)*).*/\1_$thing/p" "$file"
  1557. }
  1558. ENCODER_LIST=$(find_things encoder ENC libavcodec/allcodecs.c)
  1559. DECODER_LIST=$(find_things decoder DEC libavcodec/allcodecs.c)
  1560. HWACCEL_LIST=$(find_things hwaccel HWACCEL libavcodec/allcodecs.c)
  1561. PARSER_LIST=$(find_things parser PARSER libavcodec/allcodecs.c)
  1562. BSF_LIST=$(find_things bsf BSF libavcodec/allcodecs.c)
  1563. MUXER_LIST=$(find_things muxer _MUX libavformat/allformats.c)
  1564. DEMUXER_LIST=$(find_things demuxer DEMUX libavformat/allformats.c)
  1565. OUTDEV_LIST=$(find_things outdev OUTDEV libavdevice/alldevices.c)
  1566. INDEV_LIST=$(find_things indev _IN libavdevice/alldevices.c)
  1567. PROTOCOL_LIST=$(find_things protocol PROTOCOL libavformat/allformats.c)
  1568. FILTER_LIST=$(find_things filter FILTER libavfilter/allfilters.c)
  1569. find_tests(){
  1570. map "echo ${2}\${v}_test" $(ls "$source_path"/tests/ref/$1 | grep -v '[^-a-z0-9_]')
  1571. }
  1572. ACODEC_TESTS=$(find_tests acodec)
  1573. VCODEC_TESTS=$(find_tests vsynth1)
  1574. LAVF_TESTS=$(find_tests lavf)
  1575. LAVFI_TESTS=$(find_tests lavfi)
  1576. SEEK_TESTS=$(find_tests seek seek_)
  1577. pcm_test_deps=$(map 'echo ${v%_*}_decoder $v' $(filter pcm_* $ENCODER_LIST))
  1578. for n in $COMPONENT_LIST; do
  1579. v=$(toupper ${n%s})_LIST
  1580. eval enable \$$v
  1581. eval ${n}_if_any="\$$v"
  1582. done
  1583. enable $ARCH_EXT_LIST $ACODEC_TESTS $VCODEC_TESTS $LAVF_TESTS $LAVFI_TESTS $SEEK_TESTS
  1584. die_unknown(){
  1585. echo "Unknown option \"$1\"."
  1586. echo "See $0 --help for available options."
  1587. exit 1
  1588. }
  1589. show_list() {
  1590. suffix=_$1
  1591. shift
  1592. echo $* | sed s/$suffix//g | tr ' ' '\n' | sort | pr -3 -t
  1593. exit 0
  1594. }
  1595. for opt do
  1596. optval="${opt#*=}"
  1597. case "$opt" in
  1598. --extra-ldflags=*) add_ldflags $optval
  1599. ;;
  1600. --extra-libs=*) add_extralibs $optval
  1601. ;;
  1602. --disable-devices) disable $INDEV_LIST $OUTDEV_LIST
  1603. ;;
  1604. --enable-debug=*) debuglevel="$optval"
  1605. ;;
  1606. --disable-everything)
  1607. map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
  1608. ;;
  1609. --enable-*=*|--disable-*=*)
  1610. eval $(echo "${opt%%=*}" | sed 's/--/action=/;s/-/ thing=/')
  1611. is_in "${thing}s" $COMPONENT_LIST || die_unknown "$opt"
  1612. eval list=\$$(toupper $thing)_LIST
  1613. name=$(echo "${optval}" | sed "s/,/_${thing}|/g")_${thing}
  1614. $action $(filter "$name" $list)
  1615. ;;
  1616. --enable-?*|--disable-?*)
  1617. eval $(echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g')
  1618. if is_in $option $COMPONENT_LIST; then
  1619. test $action = disable && action=unset
  1620. eval $action \$$(toupper ${option%s})_LIST
  1621. elif is_in $option $CMDLINE_SELECT; then
  1622. $action $option
  1623. else
  1624. die_unknown $opt
  1625. fi
  1626. ;;
  1627. --list-*)
  1628. NAME="${opt#--list-}"
  1629. is_in $NAME $COMPONENT_LIST || die_unknown $opt
  1630. NAME=${NAME%s}
  1631. eval show_list $NAME \$$(toupper $NAME)_LIST
  1632. ;;
  1633. --help|-h) show_help
  1634. ;;
  1635. *)
  1636. optname="${opt%%=*}"
  1637. optname="${optname#--}"
  1638. optname=$(echo "$optname" | sed 's/-/_/g')
  1639. if is_in $optname $CMDLINE_SET; then
  1640. eval $optname='$optval'
  1641. elif is_in $optname $CMDLINE_APPEND; then
  1642. append $optname "$optval"
  1643. else
  1644. die_unknown $opt
  1645. fi
  1646. ;;
  1647. esac
  1648. done
  1649. disabled logging && logfile=/dev/null
  1650. echo "# $0 $LIBAV_CONFIGURATION" > $logfile
  1651. set >> $logfile
  1652. test -n "$cross_prefix" && enable cross_compile
  1653. if enabled cross_compile; then
  1654. test -n "$arch" && test -n "$target_os" ||
  1655. die "Must specify target arch and OS when cross-compiling"
  1656. fi
  1657. set_default arch target_os
  1658. ar_default="${cross_prefix}${ar_default}"
  1659. cc_default="${cross_prefix}${cc_default}"
  1660. nm_default="${cross_prefix}${nm_default}"
  1661. pkg_config_default="${cross_prefix}${pkg_config_default}"
  1662. ranlib="${cross_prefix}${ranlib}"
  1663. sysinclude_default="${sysroot}/usr/include"
  1664. set_default cc nm pkg_config sysinclude
  1665. enabled cross_compile || host_cc_default=$cc
  1666. set_default host_cc
  1667. if ! $pkg_config --version >/dev/null 2>&1; then
  1668. warn "$pkg_config not found, library detection may fail."
  1669. pkg_config=false
  1670. fi
  1671. exesuf() {
  1672. case $1 in
  1673. mingw32*|cygwin*|*-dos|freedos|opendos|os/2*|symbian) echo .exe ;;
  1674. esac
  1675. }
  1676. EXESUF=$(exesuf $target_os)
  1677. HOSTEXESUF=$(exesuf $host_os)
  1678. # set temporary file name
  1679. : ${TMPDIR:=$TEMPDIR}
  1680. : ${TMPDIR:=$TMP}
  1681. : ${TMPDIR:=/tmp}
  1682. if ! check_cmd mktemp -u XXXXXX; then
  1683. # simple replacement for missing mktemp
  1684. # NOT SAFE FOR GENERAL USE
  1685. mktemp(){
  1686. echo "${2%%XXX*}.${HOSTNAME}.${UID}.$$"
  1687. }
  1688. fi
  1689. tmpfile(){
  1690. tmp=$(mktemp -u "${TMPDIR}/ffconf.XXXXXXXX")$2 &&
  1691. (set -C; exec > $tmp) 2>/dev/null ||
  1692. die "Unable to create temporary file in $TMPDIR."
  1693. append TMPFILES $tmp
  1694. eval $1=$tmp
  1695. }
  1696. trap 'rm -f -- $TMPFILES' EXIT
  1697. tmpfile TMPC .c
  1698. tmpfile TMPE $EXESUF
  1699. tmpfile TMPH .h
  1700. tmpfile TMPO .o
  1701. tmpfile TMPS .S
  1702. tmpfile TMPV .ver
  1703. tmpfile TMPSH .sh
  1704. tmpfile TMPASM .asm
  1705. unset -f mktemp
  1706. chmod +x $TMPE
  1707. # make sure we can execute files in $TMPDIR
  1708. cat > $TMPSH 2>> $logfile <<EOF
  1709. #! /bin/sh
  1710. EOF
  1711. chmod +x $TMPSH >> $logfile 2>&1
  1712. if ! $TMPSH >> $logfile 2>&1; then
  1713. cat <<EOF
  1714. Unable to create and execute files in $TMPDIR. Set the TMPDIR environment
  1715. variable to another directory and make sure that it is not mounted noexec.
  1716. EOF
  1717. die "Sanity test failed."
  1718. fi
  1719. filter_cflags=echo
  1720. filter_cppflags=echo
  1721. filter_asflags=echo
  1722. if $cc -v 2>&1 | grep -q '^gcc.*LLVM'; then
  1723. cc_type=llvm_gcc
  1724. cc_version=__VERSION__
  1725. gcc_extra_ver=$(expr "$($cc --version | head -n1)" : '.*\((.*)\)')
  1726. cc_ident="llvm-gcc $($cc -dumpversion) $gcc_extra_ver"
  1727. CC_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
  1728. AS_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
  1729. speed_cflags='-O3'
  1730. size_cflags='-Os'
  1731. elif $cc -v 2>&1 | grep -qi ^gcc; then
  1732. cc_type=gcc
  1733. cc_version=__VERSION__
  1734. gcc_version=$($cc --version | head -n1)
  1735. gcc_basever=$($cc -dumpversion)
  1736. gcc_pkg_ver=$(expr "$gcc_version" : '[^ ]* \(([^)]*)\)')
  1737. gcc_ext_ver=$(expr "$gcc_version" : ".*$gcc_pkg_ver $gcc_basever \\(.*\\)")
  1738. cc_ident=$(cleanws "gcc $gcc_basever $gcc_pkg_ver $gcc_ext_ver")
  1739. if ! $cc -dumpversion | grep -q '^2\.'; then
  1740. CC_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
  1741. AS_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
  1742. fi
  1743. speed_cflags='-O3'
  1744. size_cflags='-Os'
  1745. elif $cc --version 2>/dev/null | grep -q Intel; then
  1746. cc_type=icc
  1747. cc_version="AV_STRINGIFY(__INTEL_COMPILER)"
  1748. cc_ident=$($cc --version | head -n1)
  1749. icc_version=$($cc -dumpversion)
  1750. CC_DEPFLAGS='-MMD'
  1751. AS_DEPFLAGS='-MMD'
  1752. speed_cflags='-O3'
  1753. size_cflags='-Os'
  1754. noopt_cflags='-O1'
  1755. elif $cc -v 2>&1 | grep -q xlc; then
  1756. cc_type=xlc
  1757. cc_version="AV_STRINGIFY(__IBMC__)"
  1758. cc_ident=$($cc -qversion 2>/dev/null | head -n1)
  1759. speed_cflags='-O5'
  1760. size_cflags='-O5 -qcompact'
  1761. elif $cc -V 2>/dev/null | grep -q Compaq; then
  1762. cc_type=ccc
  1763. cc_version="AV_STRINGIFY(__DECC_VER)"
  1764. cc_ident=$($cc -V | head -n1 | cut -d' ' -f1-3)
  1765. DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -M'
  1766. debuglevel=3
  1767. add_ldflags -Wl,-z,now # calls to libots crash without this
  1768. speed_cflags='-fast'
  1769. size_cflags='-O1'
  1770. elif $cc --vsn 2>/dev/null | grep -q "ARM C/C++ Compiler"; then
  1771. test -d "$sysroot" || die "No valid sysroot specified."
  1772. cc_type=armcc
  1773. cc_version="AV_STRINGIFY(__ARMCC_VERSION)"
  1774. cc_ident=$($cc --vsn | head -n1)
  1775. armcc_conf="$PWD/armcc.conf"
  1776. $cc --arm_linux_configure \
  1777. --arm_linux_config_file="$armcc_conf" \
  1778. --configure_sysroot="$sysroot" \
  1779. --configure_cpp_headers="$sysinclude" >>$logfile 2>&1 ||
  1780. die "Error creating armcc configuration file."
  1781. $cc --vsn | grep -q RVCT && armcc_opt=rvct || armcc_opt=armcc
  1782. cc="$cc --arm_linux_config_file=$armcc_conf --translate_gcc"
  1783. as_default="${cross_prefix}gcc"
  1784. CC_DEPFLAGS='-MMD'
  1785. AS_DEPFLAGS='-MMD'
  1786. speed_cflags='-O3'
  1787. size_cflags='-Os'
  1788. filter_asflags="filter_out -W${armcc_opt}*"
  1789. elif $cc -version 2>/dev/null | grep -q TMS470; then
  1790. cc_type=tms470
  1791. cc_version="AV_STRINGIFY(__TI_COMPILER_VERSION__)"
  1792. cc_ident=$($cc -version | head -n1 | tr -s ' ')
  1793. cc="$cc --gcc --abi=eabi -eo=.o -mc -me"
  1794. CC_O='-fr=$(@D)'
  1795. as_default="${cross_prefix}gcc"
  1796. ld_default="${cross_prefix}gcc"
  1797. TMPO=$(basename $TMPC .c).o
  1798. append TMPFILES $TMPO
  1799. add_cflags -D__gnuc_va_list=va_list -D__USER_LABEL_PREFIX__=
  1800. CC_DEPFLAGS='-ppa -ppd=$(@:.o=.d)'
  1801. AS_DEPFLAGS='-MMD'
  1802. speed_cflags='-O3 -mf=5'
  1803. size_cflags='-O3 -mf=2'
  1804. filter_cflags=tms470_flags
  1805. tms470_flags(){
  1806. for flag; do
  1807. case $flag in
  1808. -march=*|-mcpu=*)
  1809. case "${flag#*=}" in
  1810. armv7-a|cortex-a*) echo -mv=7a8 ;;
  1811. armv7-r|cortex-r*) echo -mv=7r4 ;;
  1812. armv7-m|cortex-m*) echo -mv=7m3 ;;
  1813. armv6*|arm11*) echo -mv=6 ;;
  1814. armv5*e|arm[79]*e*|arm9[24]6*|arm96*|arm102[26])
  1815. echo -mv=5e ;;
  1816. armv4*|arm7*|arm9[24]*) echo -mv=4 ;;
  1817. esac
  1818. ;;
  1819. -mfpu=neon) echo --float_support=vfpv3 --neon ;;
  1820. -mfpu=vfp) echo --float_support=vfpv2 ;;
  1821. -mfpu=vfpv3) echo --float_support=vfpv3 ;;
  1822. -msoft-float) echo --float_support=vfplib ;;
  1823. -O[0-3]|-mf=*) echo $flag ;;
  1824. -g) echo -g -mn ;;
  1825. -pds=*) echo $flag ;;
  1826. esac
  1827. done
  1828. }
  1829. elif $cc -v 2>&1 | grep -q clang; then
  1830. cc_type=clang
  1831. $cc -dM -E $TMPC | grep -q __clang_version__ &&
  1832. cc_version=__clang_version__ || cc_version=__VERSION__
  1833. cc_ident=$($cc --version | head -n1)
  1834. CC_DEPFLAGS='-MMD'
  1835. AS_DEPFLAGS='-MMD'
  1836. speed_cflags='-O3'
  1837. size_cflags='-Os'
  1838. elif $cc -V 2>&1 | grep -q Sun; then
  1839. cc_type=suncc
  1840. cc_version="AV_STRINGIFY(__SUNPRO_C)"
  1841. cc_ident=$($cc -V 2>&1 | head -n1 | cut -d' ' -f 2-)
  1842. DEPEND_CMD='$(DEPCC) $(DEPFLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\," -e "1!s,^.*: , ," > $(@:.o=.d)'
  1843. DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -xM1'
  1844. add_ldflags -xc99
  1845. speed_cflags='-O5'
  1846. size_cflags='-O5 -xspace'
  1847. filter_cflags=suncc_flags
  1848. suncc_flags(){
  1849. for flag; do
  1850. case $flag in
  1851. -march=*|-mcpu=*)
  1852. case "${flag#*=}" in
  1853. native) echo -xtarget=native ;;
  1854. v9|niagara) echo -xarch=sparc ;;
  1855. ultrasparc) echo -xarch=sparcvis ;;
  1856. ultrasparc3|niagara2) echo -xarch=sparcvis2 ;;
  1857. i586|pentium) echo -xchip=pentium ;;
  1858. i686|pentiumpro|pentium2) echo -xtarget=pentium_pro ;;
  1859. pentium3*|c3-2) echo -xtarget=pentium3 ;;
  1860. pentium-m) echo -xarch=sse2 -xchip=pentium3 ;;
  1861. pentium4*) echo -xtarget=pentium4 ;;
  1862. prescott|nocona) echo -xarch=sse3 -xchip=pentium4 ;;
  1863. *-sse3) echo -xarch=sse3 ;;
  1864. core2) echo -xarch=ssse3 -xchip=core2 ;;
  1865. amdfam10|barcelona) echo -xarch=sse4_1 ;;
  1866. athlon-4|athlon-[mx]p) echo -xarch=ssea ;;
  1867. k8|opteron|athlon64|athlon-fx)
  1868. echo -xarch=sse2a ;;
  1869. athlon*) echo -xarch=pentium_proa ;;
  1870. esac
  1871. ;;
  1872. -std=c99) echo -xc99 ;;
  1873. -fomit-frame-pointer) echo -xregs=frameptr ;;
  1874. -fPIC) echo -KPIC -xcode=pic32 ;;
  1875. -W*,*) echo $flag ;;
  1876. -f*-*|-W*) ;;
  1877. *) echo $flag ;;
  1878. esac
  1879. done
  1880. }
  1881. elif $cc -v 2>&1 | grep -q 'PathScale\|Path64'; then
  1882. cc_type=pathscale
  1883. cc_version=__PATHSCALE__
  1884. cc_ident=$($cc -v 2>&1 | head -n1 | tr -d :)
  1885. CC_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
  1886. AS_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
  1887. speed_cflags='-O2'
  1888. size_cflags='-Os'
  1889. filter_cflags='filter_out -Wdisabled-optimization'
  1890. elif $cc -v 2>&1 | grep -q Open64; then
  1891. cc_type=open64
  1892. cc_version=__OPEN64__
  1893. cc_ident=$($cc -v 2>&1 | head -n1 | tr -d :)
  1894. CC_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
  1895. AS_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@'
  1896. speed_cflags='-O2'
  1897. size_cflags='-Os'
  1898. filter_cflags='filter_out -Wdisabled-optimization|-Wtype-limits|-fno-signed-zeros'
  1899. fi
  1900. test -n "$cc_type" && enable $cc_type ||
  1901. warn "Unknown C compiler $cc, unable to select optimal CFLAGS"
  1902. : ${as_default:=$cc}
  1903. : ${dep_cc_default:=$cc}
  1904. : ${ld_default:=$cc}
  1905. set_default ar as dep_cc ld
  1906. test -n "$CC_DEPFLAGS" || CCDEP=$DEPEND_CMD
  1907. test -n "$AS_DEPFLAGS" || ASDEP=$DEPEND_CMD
  1908. add_cflags $extra_cflags
  1909. add_asflags $extra_cflags
  1910. if test -n "$sysroot"; then
  1911. case "$cc_type" in
  1912. gcc|llvm_gcc|clang)
  1913. add_cppflags --sysroot="$sysroot"
  1914. add_ldflags --sysroot="$sysroot"
  1915. ;;
  1916. tms470)
  1917. add_cppflags -I"$sysinclude"
  1918. add_ldflags --sysroot="$sysroot"
  1919. ;;
  1920. esac
  1921. fi
  1922. if test "$cpu" = host; then
  1923. enabled cross_compile && die "--cpu=host makes no sense when cross-compiling."
  1924. case "$cc_type" in
  1925. gcc|llvm_gcc)
  1926. check_native(){
  1927. $cc $1=native -v -c -o $TMPO $TMPC >$TMPE 2>&1 || return
  1928. sed -n "/cc1.*$1=/{
  1929. s/.*$1=\\([^ ]*\\).*/\\1/
  1930. p
  1931. q
  1932. }" $TMPE
  1933. }
  1934. cpu=$(check_native -march || check_native -mcpu)
  1935. ;;
  1936. esac
  1937. test "${cpu:-host}" = host && die "--cpu=host not supported with compiler $cc"
  1938. fi
  1939. # Deal with common $arch aliases
  1940. case "$arch" in
  1941. arm*)
  1942. arch="arm"
  1943. ;;
  1944. mips|mipsel|IP*)
  1945. arch="mips"
  1946. ;;
  1947. mips64*)
  1948. arch="mips"
  1949. subarch="mips64"
  1950. ;;
  1951. parisc|hppa)
  1952. arch="parisc"
  1953. ;;
  1954. parisc64|hppa64)
  1955. arch="parisc"
  1956. subarch="parisc64"
  1957. ;;
  1958. "Power Macintosh"|ppc|powerpc)
  1959. arch="ppc"
  1960. ;;
  1961. ppc64|powerpc64)
  1962. arch="ppc"
  1963. subarch="ppc64"
  1964. ;;
  1965. s390|s390x)
  1966. arch="s390"
  1967. ;;
  1968. sh4|sh)
  1969. arch="sh4"
  1970. ;;
  1971. sun4u|sparc64)
  1972. arch="sparc"
  1973. subarch="sparc64"
  1974. ;;
  1975. i[3-6]86|i86pc|BePC|x86pc|x86_64|amd64)
  1976. arch="x86"
  1977. ;;
  1978. esac
  1979. is_in $arch $ARCH_LIST || warn "unknown architecture $arch"
  1980. enable $arch
  1981. # Add processor-specific flags
  1982. if test "$cpu" = generic; then
  1983. : do nothing
  1984. elif enabled ppc; then
  1985. case $(tolower $cpu) in
  1986. 601|ppc601|powerpc601)
  1987. cpuflags="-mcpu=601"
  1988. disable altivec
  1989. ;;
  1990. 603*|ppc603*|powerpc603*)
  1991. cpuflags="-mcpu=603"
  1992. disable altivec
  1993. ;;
  1994. 604*|ppc604*|powerpc604*)
  1995. cpuflags="-mcpu=604"
  1996. disable altivec
  1997. ;;
  1998. g3|75*|ppc75*|powerpc75*)
  1999. cpuflags="-mcpu=750 -mpowerpc-gfxopt"
  2000. disable altivec
  2001. ;;
  2002. g4|745*|ppc745*|powerpc745*)
  2003. cpuflags="-mcpu=7450 -mpowerpc-gfxopt"
  2004. ;;
  2005. 74*|ppc74*|powerpc74*)
  2006. cpuflags="-mcpu=7400 -mpowerpc-gfxopt"
  2007. ;;
  2008. g5|970|ppc970|powerpc970|power4*)
  2009. cpuflags="-mcpu=970 -mpowerpc-gfxopt -mpowerpc64"
  2010. ;;
  2011. cell)
  2012. cpuflags="-mcpu=cell"
  2013. enable ldbrx
  2014. ;;
  2015. e500v2)
  2016. cpuflags="-mcpu=8548 -mhard-float -mfloat-gprs=double"
  2017. disable altivec
  2018. ;;
  2019. e500)
  2020. cpuflags="-mcpu=8540 -mhard-float"
  2021. disable altivec
  2022. ;;
  2023. esac
  2024. elif enabled x86; then
  2025. case $cpu in
  2026. i[345]86|pentium)
  2027. cpuflags="-march=$cpu"
  2028. disable mmx
  2029. ;;
  2030. # targets that do NOT support conditional mov (cmov)
  2031. pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3)
  2032. cpuflags="-march=$cpu"
  2033. disable cmov
  2034. ;;
  2035. # targets that do support conditional mov (cmov)
  2036. i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64*|k8*|opteron*|athlon-fx|core2|amdfam10|barcelona|atom)
  2037. cpuflags="-march=$cpu"
  2038. enable cmov
  2039. enable fast_cmov
  2040. ;;
  2041. # targets that do support conditional mov but on which it's slow
  2042. pentium4|pentium4m|prescott|nocona)
  2043. cpuflags="-march=$cpu"
  2044. enable cmov
  2045. disable fast_cmov
  2046. ;;
  2047. esac
  2048. elif enabled sparc; then
  2049. case $cpu in
  2050. niagara)
  2051. cpuflags="-mcpu=$cpu"
  2052. disable vis
  2053. ;;
  2054. sparc64)
  2055. cpuflags="-mcpu=v9"
  2056. ;;
  2057. esac
  2058. elif enabled arm; then
  2059. case $cpu in
  2060. armv*)
  2061. cpuflags="-march=$cpu"
  2062. subarch=$(echo $cpu | sed 's/[^a-z0-9]//g')
  2063. ;;
  2064. *)
  2065. cpuflags="-mcpu=$cpu"
  2066. case $cpu in
  2067. cortex-a*) subarch=armv7a ;;
  2068. cortex-r*) subarch=armv7r ;;
  2069. cortex-m*) enable thumb; subarch=armv7m ;;
  2070. arm11*) subarch=armv6 ;;
  2071. arm[79]*e*|arm9[24]6*|arm96*|arm102[26]) subarch=armv5te ;;
  2072. armv4*|arm7*|arm9[24]*) subarch=armv4 ;;
  2073. esac
  2074. ;;
  2075. esac
  2076. elif enabled alpha; then
  2077. enabled ccc && cpuflags="-arch $cpu" || cpuflags="-mcpu=$cpu"
  2078. elif enabled bfin; then
  2079. cpuflags="-mcpu=$cpu"
  2080. elif enabled mips; then
  2081. cpuflags="-march=$cpu"
  2082. elif enabled avr32; then
  2083. case $cpu in
  2084. ap7[02]0[0-2])
  2085. subarch="avr32_ap"
  2086. cpuflags="-mpart=$cpu"
  2087. ;;
  2088. ap)
  2089. subarch="avr32_ap"
  2090. cpuflags="-march=$cpu"
  2091. ;;
  2092. uc3[ab]*)
  2093. subarch="avr32_uc"
  2094. cpuflags="-mcpu=$cpu"
  2095. ;;
  2096. uc)
  2097. subarch="avr32_uc"
  2098. cpuflags="-march=$cpu"
  2099. ;;
  2100. esac
  2101. fi
  2102. add_cflags $cpuflags
  2103. add_asflags $cpuflags
  2104. # compiler sanity check
  2105. check_exec <<EOF
  2106. int main(void){ return 0; }
  2107. EOF
  2108. if test "$?" != 0; then
  2109. echo "$cc is unable to create an executable file."
  2110. if test -z "$cross_prefix" && ! enabled cross_compile ; then
  2111. echo "If $cc is a cross-compiler, use the --enable-cross-compile option."
  2112. echo "Only do this if you know what cross compiling means."
  2113. fi
  2114. die "C compiler test failed."
  2115. fi
  2116. add_cppflags -D_ISOC99_SOURCE
  2117. check_cflags -std=c99
  2118. check_cc -D_FILE_OFFSET_BITS=64 <<EOF && add_cppflags -D_FILE_OFFSET_BITS=64
  2119. #include <stdlib.h>
  2120. EOF
  2121. check_cc -D_LARGEFILE_SOURCE <<EOF && add_cppflags -D_LARGEFILE_SOURCE
  2122. #include <stdlib.h>
  2123. EOF
  2124. check_host_cflags -std=c99
  2125. check_host_cflags -Wall
  2126. case "$arch" in
  2127. alpha|ia64|mips|parisc|sparc)
  2128. spic=$shared
  2129. ;;
  2130. x86)
  2131. subarch="x86_32"
  2132. check_cc <<EOF && subarch="x86_64"
  2133. int test[(int)sizeof(char*) - 7];
  2134. EOF
  2135. if test "$subarch" = "x86_64"; then
  2136. spic=$shared
  2137. fi
  2138. ;;
  2139. esac
  2140. enable $subarch
  2141. enabled spic && enable pic
  2142. # OS specific
  2143. case $target_os in
  2144. haiku)
  2145. prefix_default="/boot/common"
  2146. network_extralibs="-lnetwork"
  2147. host_libs=
  2148. ;;
  2149. sunos)
  2150. AVSERVERLDFLAGS=""
  2151. SHFLAGS='-shared -Wl,-h,$$(@F)'
  2152. enabled x86 && SHFLAGS="-mimpure-text $SHFLAGS"
  2153. network_extralibs="-lsocket -lnsl"
  2154. add_cppflags -D__EXTENSIONS__
  2155. # When using suncc to build, the Solaris linker will mark
  2156. # an executable with each instruction set encountered by
  2157. # the Solaris assembler. As our libraries contain their own
  2158. # guards for processor-specific code, instead suppress
  2159. # generation of the HWCAPS ELF section on Solaris x86 only.
  2160. enabled_all suncc x86 && echo "hwcap_1 = OVERRIDE;" > mapfile && add_ldflags -Wl,-M,mapfile
  2161. nm_opts='-P -g'
  2162. ;;
  2163. netbsd)
  2164. disable symver
  2165. oss_indev_extralibs="-lossaudio"
  2166. oss_outdev_extralibs="-lossaudio"
  2167. ;;
  2168. openbsd)
  2169. enable malloc_aligned
  2170. # On OpenBSD 4.5. the compiler does not use PIC unless
  2171. # explicitly using -fPIC. Libav builds fine without PIC,
  2172. # however the generated executable will not do anything
  2173. # (simply quits with exit-code 1, no crash, no output).
  2174. # Thus explicitly enable PIC here.
  2175. enable pic
  2176. disable symver
  2177. SHFLAGS='-shared'
  2178. oss_indev_extralibs="-lossaudio"
  2179. oss_outdev_extralibs="-lossaudio"
  2180. ;;
  2181. dragonfly)
  2182. enable malloc_aligned
  2183. disable symver
  2184. ;;
  2185. freebsd)
  2186. enable malloc_aligned
  2187. ;;
  2188. bsd/os)
  2189. add_extralibs -lpoll -lgnugetopt
  2190. ;;
  2191. darwin)
  2192. enable malloc_aligned
  2193. gas="gas-preprocessor.pl $cc"
  2194. enabled ppc && add_asflags -force_cpusubtype_ALL
  2195. SHFLAGS='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR)'
  2196. enabled x86_32 && append SHFLAGS -Wl,-read_only_relocs,suppress
  2197. add_ldflags -Wl,-dynamic,-search_paths_first
  2198. SLIBSUF=".dylib"
  2199. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)'
  2200. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)'
  2201. AVSERVERLDFLAGS=-Wl,-bind_at_load
  2202. objformat="macho"
  2203. enabled x86_64 && objformat="macho64"
  2204. enabled_any pic shared ||
  2205. { check_cflags -mdynamic-no-pic && add_asflags -mdynamic-no-pic; }
  2206. ;;
  2207. mingw32*)
  2208. if test $target_os = "mingw32ce"; then
  2209. disable network
  2210. else
  2211. target_os=mingw32
  2212. fi
  2213. LIBTARGET=i386
  2214. if enabled x86_64; then
  2215. enable malloc_aligned
  2216. LIBTARGET="i386:x86-64"
  2217. elif enabled arm; then
  2218. LIBTARGET=arm-wince
  2219. fi
  2220. shlibdir_default="$bindir_default"
  2221. SLIBPREF=""
  2222. SLIBSUF=".dll"
  2223. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  2224. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  2225. SLIB_EXTRA_CMD=-'$(DLLTOOL) -m $(LIBTARGET) -d $$(@:$(SLIBSUF)=.def) -l $(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib) -D $(SLIBNAME_WITH_MAJOR)'
  2226. SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
  2227. SLIB_INSTALL_LINKS=
  2228. SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
  2229. SLIB_INSTALL_EXTRA_LIB='lib$(SLIBNAME:$(SLIBSUF)=.dll.a) $(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
  2230. SHFLAGS='-shared -Wl,--output-def,$$(@:$(SLIBSUF)=.def) -Wl,--out-implib,$(SUBDIR)lib$(SLIBNAME:$(SLIBSUF)=.dll.a) -Wl,--enable-runtime-pseudo-reloc -Wl,--enable-auto-image-base'
  2231. objformat="win32"
  2232. dlltool="${cross_prefix}dlltool"
  2233. enable dos_paths
  2234. check_cflags -fno-common
  2235. check_cpp_condition _mingw.h "defined (__MINGW64_VERSION_MAJOR) || (__MINGW32_MAJOR_VERSION > 3) \
  2236. || (__MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION >= 15)" ||
  2237. die "ERROR: MinGW runtime version must be >= 3.15."
  2238. add_cppflags -U__STRICT_ANSI__
  2239. ;;
  2240. cygwin*)
  2241. target_os=cygwin
  2242. shlibdir_default="$bindir_default"
  2243. SLIBPREF="cyg"
  2244. SLIBSUF=".dll"
  2245. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  2246. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  2247. SHFLAGS='-shared -Wl,--enable-auto-image-base'
  2248. objformat="win32"
  2249. enable dos_paths
  2250. check_cflags -fno-common
  2251. add_cppflags -U__STRICT_ANSI__
  2252. ;;
  2253. *-dos|freedos|opendos)
  2254. network_extralibs="-lsocket"
  2255. objformat="coff"
  2256. enable dos_paths
  2257. add_cppflags -U__STRICT_ANSI__
  2258. ;;
  2259. linux)
  2260. add_cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
  2261. enable dv1394
  2262. ;;
  2263. irix*)
  2264. target_os=irix
  2265. ranlib="echo ignoring ranlib"
  2266. ;;
  2267. os/2*)
  2268. ln_s="cp -f"
  2269. objformat="aout"
  2270. add_cppflags -D_GNU_SOURCE
  2271. add_ldflags -Zomf -Zbin-files -Zargs-wild -Zmap
  2272. SHFLAGS='$(SUBDIR)$(NAME).def -Zdll -Zomf'
  2273. AVSERVERLDFLAGS=""
  2274. LIBSUF="_s.a"
  2275. SLIBPREF=""
  2276. SLIBSUF=".dll"
  2277. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
  2278. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(shell echo $(NAME) | cut -c1-6)$(LIBMAJOR)$(SLIBSUF)'
  2279. SLIB_CREATE_DEF_CMD='echo LIBRARY $(SLIBNAME_WITH_MAJOR) INITINSTANCE TERMINSTANCE > $(SUBDIR)$(NAME).def; \
  2280. echo PROTMODE >> $(SUBDIR)$(NAME).def; \
  2281. echo CODE PRELOAD MOVEABLE DISCARDABLE >> $(SUBDIR)$(NAME).def; \
  2282. echo DATA PRELOAD MOVEABLE MULTIPLE NONSHARED >> $(SUBDIR)$(NAME).def; \
  2283. echo EXPORTS >> $(SUBDIR)$(NAME).def; \
  2284. emxexp -o $(OBJS) >> $(SUBDIR)$(NAME).def'
  2285. SLIB_EXTRA_CMD='emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(NAME).def; \
  2286. emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib $(SUBDIR)$(NAME).def;'
  2287. SLIB_INSTALL_EXTRA_LIB='$(LIBPREF)$(NAME)_dll.a $(LIBPREF)$(NAME)_dll.lib'
  2288. enable dos_paths
  2289. ;;
  2290. gnu/kfreebsd)
  2291. add_cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600 -D_BSD_SOURCE
  2292. ;;
  2293. gnu)
  2294. add_cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
  2295. ;;
  2296. qnx)
  2297. add_cppflags -D_QNX_SOURCE
  2298. network_extralibs="-lsocket"
  2299. ;;
  2300. symbian)
  2301. SLIBSUF=".dll"
  2302. enable dos_paths
  2303. add_cflags --include=$sysinclude/gcce/gcce.h -fvisibility=default
  2304. add_cppflags -D__GCCE__ -D__SYMBIAN32__ -DSYMBIAN_OE_POSIX_SIGNALS
  2305. add_ldflags -Wl,--target1-abs,--no-undefined \
  2306. -Wl,-Ttext,0x80000,-Tdata,0x1000000 -shared \
  2307. -Wl,--entry=_E32Startup -Wl,-u,_E32Startup
  2308. add_extralibs -l:eexe.lib -l:usrt2_2.lib -l:dfpaeabi.dso \
  2309. -l:drtaeabi.dso -l:scppnwdl.dso -lsupc++ -lgcc \
  2310. -l:libc.dso -l:libm.dso -l:euser.dso -l:libcrt0.lib
  2311. ;;
  2312. none)
  2313. ;;
  2314. *)
  2315. die "Unknown OS '$target_os'."
  2316. ;;
  2317. esac
  2318. echo "config:$arch:$subarch:$cpu:$target_os:$cc_ident:$LIBAV_CONFIGURATION" >config.fate
  2319. check_cpp_condition stdlib.h "defined(__PIC__) || defined(__pic__) || defined(PIC)" && enable pic
  2320. set_default $PATHS_LIST
  2321. # we need to build at least one lib type
  2322. if ! enabled_any static shared; then
  2323. cat <<EOF
  2324. At least one library type must be built.
  2325. Specify --enable-static to build the static libraries or --enable-shared to
  2326. build the shared libraries as well. To only build the shared libraries specify
  2327. --disable-static in addition to --enable-shared.
  2328. EOF
  2329. exit 1;
  2330. fi
  2331. die_license_disabled() {
  2332. enabled $1 || { enabled $2 && die "$2 is $1 and --enable-$1 is not specified."; }
  2333. }
  2334. die_license_disabled gpl libcdio
  2335. die_license_disabled gpl libx264
  2336. die_license_disabled gpl libxavs
  2337. die_license_disabled gpl libxvid
  2338. die_license_disabled gpl x11grab
  2339. die_license_disabled nonfree libfaac
  2340. die_license_disabled version3 libopencore_amrnb
  2341. die_license_disabled version3 libopencore_amrwb
  2342. die_license_disabled version3 libvo_aacenc
  2343. die_license_disabled version3 libvo_amrwbenc
  2344. enabled version3 && { enabled gpl && enable gplv3 || enable lgplv3; }
  2345. disabled optimizations || check_cflags -fomit-frame-pointer
  2346. enable_pic() {
  2347. enable pic
  2348. add_cppflags -DPIC
  2349. add_cflags -fPIC
  2350. add_asflags -fPIC
  2351. }
  2352. enabled pic && enable_pic
  2353. check_cc <<EOF || die "Symbol mangling check failed."
  2354. int ff_extern;
  2355. EOF
  2356. sym=$($nm $nm_opts $TMPO | awk '/ff_extern/{ print substr($0, match($0, /[^ \t]*ff_extern/)) }')
  2357. extern_prefix=${sym%%ff_extern*}
  2358. check_cc <<EOF && enable inline_asm
  2359. void foo(void) { __asm__ volatile ("" ::); }
  2360. EOF
  2361. _restrict=
  2362. for restrict_keyword in restrict __restrict__ __restrict; do
  2363. check_cc <<EOF && _restrict=$restrict_keyword && break
  2364. void foo(char * $restrict_keyword p);
  2365. EOF
  2366. done
  2367. check_cc <<EOF && enable attribute_packed
  2368. struct { int x; } __attribute__((packed)) x;
  2369. EOF
  2370. check_cc <<EOF && enable attribute_may_alias
  2371. union { int x; } __attribute__((may_alias)) x;
  2372. EOF
  2373. check_cc <<EOF || die "endian test failed"
  2374. unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
  2375. EOF
  2376. od -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian
  2377. if enabled alpha; then
  2378. check_cflags -mieee
  2379. elif enabled arm; then
  2380. enabled thumb && check_cflags -mthumb || check_cflags -marm
  2381. nogas=die
  2382. if check_cpp_condition stddef.h "defined __ARM_PCS_VFP"; then
  2383. enable vfp_args
  2384. elif ! check_cpp_condition stddef.h "defined __ARM_PCS || defined __SOFTFP__"; then
  2385. case "${cross_prefix:-$cc}" in
  2386. *hardfloat*) enable vfp_args; fpabi=vfp ;;
  2387. *) check_ld <<EOF && enable vfp_args && fpabi=vfp || fpabi=soft ;;
  2388. __asm__ (".eabi_attribute 28, 1");
  2389. int main(void) { return 0; }
  2390. EOF
  2391. esac
  2392. warn "Compiler does not indicate floating-point ABI, guessing $fpabi."
  2393. fi
  2394. enabled armv5te && check_asm armv5te '"qadd r0, r0, r0"'
  2395. enabled armv6 && check_asm armv6 '"sadd16 r0, r0, r0"'
  2396. enabled armv6t2 && check_asm armv6t2 '"movt r0, #0"'
  2397. enabled armvfp && check_asm armvfp '"fadds s0, s0, s0"'
  2398. enabled iwmmxt && check_asm iwmmxt '"wunpckelub wr6, wr4"'
  2399. enabled neon && check_asm neon '"vadd.i16 q0, q0, q0"'
  2400. enabled vfpv3 && check_asm vfpv3 '"vmov.f32 s0, #1.0"'
  2401. check_asm asm_mod_y '"vmul.i32 d0, d0, %y0" :: "x"(0)'
  2402. enabled_all armv6t2 shared !pic && enable_pic
  2403. elif enabled mips; then
  2404. check_asm loongson '"dmult.g $1, $2, $3"'
  2405. enabled mmi && check_asm mmi '"lq $2, 0($2)"'
  2406. elif enabled ppc; then
  2407. enable local_aligned_8 local_aligned_16
  2408. check_asm dcbzl '"dcbzl 0, %0" :: "r"(0)'
  2409. check_asm ibm_asm '"add 0, 0, 0"'
  2410. check_asm ppc4xx '"maclhw r10, r11, r12"'
  2411. check_asm xform_asm '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)'
  2412. # AltiVec flags: The FSF version of GCC differs from the Apple version
  2413. if enabled altivec; then
  2414. nogas=warn
  2415. check_cflags -maltivec -mabi=altivec &&
  2416. { check_header altivec.h && inc_altivec_h="#include <altivec.h>" ; } ||
  2417. check_cflags -faltivec
  2418. # check if our compiler supports Motorola AltiVec C API
  2419. check_cc <<EOF || disable altivec
  2420. $inc_altivec_h
  2421. int main(void) {
  2422. vector signed int v1, v2, v3;
  2423. v1 = vec_add(v2,v3);
  2424. return 0;
  2425. }
  2426. EOF
  2427. # check if our compiler supports braces for vector declarations
  2428. check_cc <<EOF || die "You need a compiler that supports {} in AltiVec vector declarations."
  2429. $inc_altivec_h
  2430. int main (void) { (vector int) {1}; return 0; }
  2431. EOF
  2432. fi
  2433. elif enabled sparc; then
  2434. enabled vis && check_asm vis '"pdist %f0, %f0, %f0"' -mcpu=ultrasparc &&
  2435. add_cflags -mcpu=ultrasparc -mtune=ultrasparc
  2436. elif enabled x86; then
  2437. enable local_aligned_8 local_aligned_16
  2438. # check whether EBP is available on x86
  2439. # As 'i' is stored on the stack, this program will crash
  2440. # if the base pointer is used to access it because the
  2441. # base pointer is cleared in the inline assembly code.
  2442. check_exec_crash <<EOF && enable ebp_available
  2443. volatile int i=0;
  2444. __asm__ volatile (
  2445. "xorl %%ebp, %%ebp"
  2446. ::: "%ebp");
  2447. return i;
  2448. EOF
  2449. # check whether EBX is available on x86
  2450. check_asm ebx_available '""::"b"(0)' &&
  2451. check_asm ebx_available '"":::"%ebx"'
  2452. # check whether xmm clobbers are supported
  2453. check_asm xmm_clobbers '"":::"%xmm0"'
  2454. # check whether binutils is new enough to compile SSSE3/MMX2
  2455. enabled ssse3 && check_asm ssse3 '"pabsw %xmm0, %xmm0"'
  2456. enabled mmx2 && check_asm mmx2 '"pmaxub %mm0, %mm1"'
  2457. check_asm bswap '"bswap %%eax" ::: "%eax"'
  2458. if ! disabled_any asm mmx yasm; then
  2459. if check_cmd $yasmexe --version; then
  2460. enabled x86_64 && yasm_extra="-m amd64"
  2461. yasm_debug="-g dwarf2"
  2462. elif check_cmd nasm -v; then
  2463. yasmexe=nasm
  2464. yasm_debug="-g -F dwarf"
  2465. enabled x86_64 && test "$objformat" = elf && objformat=elf64
  2466. fi
  2467. YASMFLAGS="-f $objformat $yasm_extra"
  2468. enabled pic && append YASMFLAGS "-DPIC"
  2469. test -n "$extern_prefix" && append YASMFLAGS "-DPREFIX"
  2470. case "$objformat" in
  2471. elf*) enabled debug && append YASMFLAGS $yasm_debug ;;
  2472. esac
  2473. check_yasm "pextrd [eax], xmm0, 1" && enable yasm ||
  2474. die "yasm not found, use --disable-yasm for a crippled build"
  2475. check_yasm "vextractf128 xmm0, ymm0, 0" || disable avx
  2476. fi
  2477. case "$cpu" in
  2478. athlon*|opteron*|k8*|pentium|pentium-mmx|prescott|nocona|atom|geode)
  2479. disable fast_clz
  2480. ;;
  2481. esac
  2482. fi
  2483. if enabled asm; then
  2484. as=${gas:=$as}
  2485. check_asm gnu_as '".macro m n\n\\n:.int 0\n.endm\nm x"' ||
  2486. $nogas "GNU assembler not found, install gas-preprocessor"
  2487. fi
  2488. check_ldflags -Wl,--as-needed
  2489. if check_func dlopen; then
  2490. ldl=
  2491. elif check_func dlopen -ldl; then
  2492. ldl=-ldl
  2493. fi
  2494. if enabled network; then
  2495. check_type "sys/types.h sys/socket.h" socklen_t
  2496. check_type netdb.h "struct addrinfo"
  2497. check_type netinet/in.h "struct ipv6_mreq" -D_DARWIN_C_SOURCE
  2498. check_type netinet/in.h "struct sockaddr_in6"
  2499. check_type "sys/types.h sys/socket.h" "struct sockaddr_storage"
  2500. check_struct "sys/types.h sys/socket.h" "struct sockaddr" sa_len
  2501. # Prefer arpa/inet.h over winsock2
  2502. if check_header arpa/inet.h ; then
  2503. check_func closesocket
  2504. elif check_header winsock2.h ; then
  2505. check_func_headers winsock2.h closesocket -lws2 && \
  2506. network_extralibs="-lws2" || \
  2507. { check_func_headers winsock2.h closesocket -lws2_32 && \
  2508. network_extralibs="-lws2_32"; }
  2509. check_type ws2tcpip.h socklen_t
  2510. check_type ws2tcpip.h "struct addrinfo"
  2511. check_type ws2tcpip.h "struct ipv6_mreq"
  2512. check_type ws2tcpip.h "struct sockaddr_in6"
  2513. check_type ws2tcpip.h "struct sockaddr_storage"
  2514. check_struct winsock2.h "struct sockaddr" sa_len
  2515. else
  2516. disable network
  2517. fi
  2518. fi
  2519. # Solaris has nanosleep in -lrt, OpenSolaris no longer needs that
  2520. check_func nanosleep || { check_func nanosleep -lrt && add_extralibs -lrt; }
  2521. check_func fcntl
  2522. check_func fork
  2523. check_func getaddrinfo $network_extralibs
  2524. check_func gethrtime
  2525. check_func getrusage
  2526. check_struct "sys/time.h sys/resource.h" "struct rusage" ru_maxrss
  2527. check_func inet_aton $network_extralibs
  2528. check_func isatty
  2529. check_func localtime_r
  2530. check_func ${malloc_prefix}memalign && enable memalign
  2531. check_func mkstemp
  2532. check_func mmap
  2533. check_func ${malloc_prefix}posix_memalign && enable posix_memalign
  2534. check_func setrlimit
  2535. check_func strerror_r
  2536. check_func strptime
  2537. check_func strtok_r
  2538. check_func_headers io.h setmode
  2539. check_func_headers lzo/lzo1x.h lzo1x_999_compress
  2540. check_lib2 "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
  2541. check_func_headers windows.h GetProcessTimes
  2542. check_func_headers windows.h MapViewOfFile
  2543. check_func_headers windows.h VirtualAlloc
  2544. check_header dlfcn.h
  2545. check_header dxva2api.h
  2546. check_header malloc.h
  2547. check_header poll.h
  2548. check_header sys/mman.h
  2549. check_header sys/resource.h
  2550. check_header sys/select.h
  2551. check_header vdpau/vdpau.h
  2552. check_header vdpau/vdpau_x11.h
  2553. check_header X11/extensions/XvMClib.h
  2554. check_struct dxva2api.h DXVA_PictureParameters wDecodedPictureIndex
  2555. disabled zlib || check_lib zlib.h zlibVersion -lz || disable zlib
  2556. disabled bzlib || check_lib2 bzlib.h BZ2_bzlibVersion -lbz2 || disable bzlib
  2557. # check for some common methods of building with pthread support
  2558. # do this before the optional library checks as some of them require pthreads
  2559. if ! disabled pthreads && ! enabled w32threads; then
  2560. enable pthreads
  2561. if check_func pthread_create; then
  2562. :
  2563. elif check_func pthread_create -pthread; then
  2564. add_cflags -pthread
  2565. add_extralibs -pthread
  2566. elif check_func pthread_create -pthreads; then
  2567. add_cflags -pthreads
  2568. add_extralibs -pthreads
  2569. elif check_func pthread_create -lpthreadGC2; then
  2570. add_extralibs -lpthreadGC2
  2571. elif ! check_lib pthread.h pthread_create -lpthread; then
  2572. disable pthreads
  2573. fi
  2574. fi
  2575. for thread in $THREADS_LIST; do
  2576. if enabled $thread; then
  2577. test -n "$thread_type" &&
  2578. die "ERROR: Only one thread type must be selected." ||
  2579. thread_type="$thread"
  2580. fi
  2581. done
  2582. check_lib math.h sin -lm && LIBM="-lm"
  2583. enabled vaapi && require vaapi va/va.h vaInitialize -lva
  2584. check_mathfunc exp2
  2585. check_mathfunc exp2f
  2586. check_mathfunc llrint
  2587. check_mathfunc llrintf
  2588. check_mathfunc log2
  2589. check_mathfunc log2f
  2590. check_mathfunc lrint
  2591. check_mathfunc lrintf
  2592. check_mathfunc round
  2593. check_mathfunc roundf
  2594. check_mathfunc trunc
  2595. check_mathfunc truncf
  2596. # these are off by default, so fail if requested and not available
  2597. enabled avisynth && require2 vfw32 "windows.h vfw.h" AVIFileInit -lavifil32
  2598. enabled frei0r && { check_header frei0r.h || die "ERROR: frei0r.h header not found"; }
  2599. enabled libdirac && require_pkg_config dirac \
  2600. "libdirac_decoder/dirac_parser.h libdirac_encoder/dirac_encoder.h" \
  2601. "dirac_decoder_init dirac_encoder_init"
  2602. enabled libfaac && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaac
  2603. enabled libfreetype && require_pkg_config freetype2 "ft2build.h freetype/freetype.h" FT_Init_FreeType
  2604. enabled libgsm && require libgsm gsm/gsm.h gsm_create -lgsm
  2605. enabled libmp3lame && require "libmp3lame >= 3.98.3" lame/lame.h lame_set_VBR_quality -lmp3lame
  2606. enabled libnut && require libnut libnut.h nut_demuxer_init -lnut
  2607. enabled libopencore_amrnb && require libopencore_amrnb opencore-amrnb/interf_dec.h Decoder_Interface_init -lopencore-amrnb
  2608. enabled libopencore_amrwb && require libopencore_amrwb opencore-amrwb/dec_if.h D_IF_init -lopencore-amrwb
  2609. enabled libopencv && require_pkg_config opencv opencv/cv.h cvCreateImageHeader
  2610. enabled libopenjpeg && require libopenjpeg openjpeg.h opj_version -lopenjpeg
  2611. enabled librtmp && require_pkg_config librtmp librtmp/rtmp.h RTMP_Socket
  2612. enabled libschroedinger && require_pkg_config schroedinger-1.0 schroedinger/schro.h schro_init
  2613. enabled libspeex && require libspeex speex/speex.h speex_decoder_init -lspeex
  2614. enabled libtheora && require libtheora theora/theoraenc.h th_info_init -ltheoraenc -ltheoradec -logg
  2615. enabled libvo_aacenc && require libvo_aacenc vo-aacenc/voAAC.h voGetAACEncAPI -lvo-aacenc
  2616. enabled libvo_amrwbenc && require libvo_amrwbenc vo-amrwbenc/enc_if.h E_IF_init -lvo-amrwbenc
  2617. enabled libvorbis && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbisenc -lvorbis -logg
  2618. enabled libvpx && {
  2619. enabled libvpx_decoder && { check_lib2 "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_dec_init_ver -lvpx ||
  2620. die "ERROR: libvpx decoder version must be >=0.9.1"; }
  2621. enabled libvpx_encoder && { check_lib2 "vpx/vpx_encoder.h vpx/vp8cx.h" vpx_codec_enc_init_ver -lvpx ||
  2622. die "ERROR: libvpx encoder version must be >=0.9.1"; } }
  2623. enabled libx264 && require libx264 x264.h x264_encoder_encode -lx264 &&
  2624. { check_cpp_condition x264.h "X264_BUILD >= 118" ||
  2625. die "ERROR: libx264 version must be >= 0.118."; }
  2626. enabled libxavs && require libxavs xavs.h xavs_encoder_encode -lxavs
  2627. enabled libxvid && require libxvid xvid.h xvid_global -lxvidcore
  2628. enabled mlib && require mediaLib mlib_types.h mlib_VectorSub_S16_U8_Mod -lmlib
  2629. # libdc1394 check
  2630. if enabled libdc1394; then
  2631. { check_lib dc1394/dc1394.h dc1394_new -ldc1394 -lraw1394 &&
  2632. enable libdc1394_2; } ||
  2633. { check_lib libdc1394/dc1394_control.h dc1394_create_handle -ldc1394_control -lraw1394 &&
  2634. enable libdc1394_1; } ||
  2635. die "ERROR: No version of libdc1394 found "
  2636. fi
  2637. if check_pkg_config sdl SDL_version.h SDL_Linked_Version; then
  2638. check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
  2639. enable sdl &&
  2640. check_struct SDL.h SDL_VideoInfo current_w $sdl_cflags && enable sdl_video_size
  2641. fi
  2642. texi2html -version > /dev/null 2>&1 && enable texi2html || disable texi2html
  2643. check_header linux/fb.h
  2644. check_header linux/videodev.h
  2645. check_header linux/videodev2.h
  2646. check_header sys/videoio.h
  2647. check_func_headers "windows.h vfw.h" capCreateCaptureWindow "$vfwcap_indev_extralibs"
  2648. # check that WM_CAP_DRIVER_CONNECT is defined to the proper value
  2649. # w32api 3.12 had it defined wrong
  2650. check_cpp_condition vfw.h "WM_CAP_DRIVER_CONNECT > WM_USER" && enable vfwcap_defines
  2651. # check for ioctl_meteor.h, ioctl_bt848.h and alternatives
  2652. { check_header dev/bktr/ioctl_meteor.h &&
  2653. check_header dev/bktr/ioctl_bt848.h; } ||
  2654. { check_header machine/ioctl_meteor.h &&
  2655. check_header machine/ioctl_bt848.h; } ||
  2656. { check_header dev/video/meteor/ioctl_meteor.h &&
  2657. check_header dev/video/bktr/ioctl_bt848.h; } ||
  2658. check_header dev/ic/bt8xx.h
  2659. check_header sndio.h
  2660. check_header sys/soundcard.h
  2661. check_header soundcard.h
  2662. enabled_any alsa_indev alsa_outdev && check_lib2 alsa/asoundlib.h snd_pcm_htimestamp -lasound
  2663. enabled jack_indev && check_lib2 jack/jack.h jack_client_open -ljack
  2664. enabled_any sndio_indev sndio_outdev && check_lib2 sndio.h sio_open -lsndio
  2665. enabled libcdio &&
  2666. check_lib2 "cdio/cdda.h cdio/paranoia.h" cdio_cddap_open "-lcdio_paranoia -lcdio_cdda -lcdio"
  2667. enabled x11grab &&
  2668. check_header X11/Xlib.h &&
  2669. check_header X11/extensions/XShm.h &&
  2670. check_header X11/extensions/Xfixes.h &&
  2671. check_func XOpenDisplay -lX11 &&
  2672. check_func XShmCreateImage -lX11 -lXext &&
  2673. check_func XFixesGetCursorImage -lX11 -lXext -lXfixes
  2674. if ! disabled vdpau && enabled vdpau_vdpau_h; then
  2675. check_cpp_condition \
  2676. vdpau/vdpau.h "defined VDP_DECODER_PROFILE_MPEG4_PART2_ASP" ||
  2677. { echolog "Please upgrade to libvdpau >= 0.2 if you would like vdpau support." &&
  2678. disable vdpau; }
  2679. fi
  2680. enabled debug && add_cflags -g"$debuglevel" && add_asflags -g"$debuglevel"
  2681. # add some useful compiler flags if supported
  2682. check_cflags -Wdeclaration-after-statement
  2683. check_cflags -Wall
  2684. check_cflags -Wno-parentheses
  2685. check_cflags -Wno-switch
  2686. check_cflags -Wno-format-zero-length
  2687. check_cflags -Wdisabled-optimization
  2688. check_cflags -Wpointer-arith
  2689. check_cflags -Wredundant-decls
  2690. check_cflags -Wno-pointer-sign
  2691. check_cflags -Wcast-qual
  2692. check_cflags -Wwrite-strings
  2693. check_cflags -Wtype-limits
  2694. check_cflags -Wundef
  2695. check_cflags -Wmissing-prototypes
  2696. check_cflags -Wstrict-prototypes
  2697. enabled extra_warnings && check_cflags -Winline
  2698. # add some linker flags
  2699. check_ldflags -Wl,--warn-common
  2700. check_ldflags -Wl,-rpath-link=libpostproc:libswscale:libavfilter:libavdevice:libavformat:libavcodec:libavutil
  2701. test_ldflags -Wl,-Bsymbolic && append SHFLAGS -Wl,-Bsymbolic
  2702. echo "X{};" > $TMPV
  2703. if test_ldflags -Wl,--version-script,$TMPV; then
  2704. append SHFLAGS '-Wl,--version-script,\$(SUBDIR)lib\$(NAME).ver'
  2705. check_cc <<EOF && enable symver_asm_label
  2706. void ff_foo(void) __asm__ ("av_foo@VERSION");
  2707. void ff_foo(void) { ${inline_asm+__asm__($quotes);} }
  2708. EOF
  2709. check_cc <<EOF && enable symver_gnu_asm
  2710. __asm__(".symver ff_foo,av_foo@VERSION");
  2711. void ff_foo(void) {}
  2712. EOF
  2713. fi
  2714. if [ -n "$optflags" ]; then
  2715. add_cflags $optflags
  2716. elif enabled small; then
  2717. add_cflags $size_cflags
  2718. elif enabled optimizations; then
  2719. add_cflags $speed_cflags
  2720. else
  2721. add_cflags $noopt_cflags
  2722. fi
  2723. check_cflags -fno-math-errno
  2724. check_cflags -fno-signed-zeros
  2725. if enabled icc; then
  2726. # Just warnings, no remarks
  2727. check_cflags -w1
  2728. # -wd: Disable following warnings
  2729. # 144, 167, 556: -Wno-pointer-sign
  2730. # 1292: attribute "foo" ignored
  2731. # 10006: ignoring unknown option -fno-signed-zeros
  2732. # 10148: ignoring unknown option -Wno-parentheses
  2733. # 10156: ignoring option '-W'; no argument required
  2734. check_cflags -wd144,167,556,1292,10006,10148,10156
  2735. # 11030: Warning unknown option --as-needed
  2736. # 10156: ignoring option '-export'; no argument required
  2737. check_ldflags -wd10156,11030
  2738. # Allow to compile with optimizations
  2739. check_ldflags -march=$cpu
  2740. # icc 11.0 and 11.1 work with ebp_available, but don't pass the test
  2741. enable ebp_available
  2742. if enabled x86_32; then
  2743. test ${icc_version%%.*} -ge 11 && \
  2744. check_cflags -falign-stack=maintain-16-byte || \
  2745. disable aligned_stack
  2746. fi
  2747. elif enabled ccc; then
  2748. # disable some annoying warnings
  2749. add_cflags -msg_disable cvtu32to64
  2750. add_cflags -msg_disable embedcomment
  2751. add_cflags -msg_disable needconstext
  2752. add_cflags -msg_disable nomainieee
  2753. add_cflags -msg_disable ptrmismatch1
  2754. add_cflags -msg_disable unreachcode
  2755. elif enabled gcc; then
  2756. check_cflags -fno-tree-vectorize
  2757. check_cflags -Werror=implicit-function-declaration
  2758. check_cflags -Werror=missing-prototypes
  2759. elif enabled llvm_gcc; then
  2760. check_cflags -mllvm -stack-alignment=16
  2761. elif enabled clang; then
  2762. check_cflags -mllvm -stack-alignment=16
  2763. check_cflags -Qunused-arguments
  2764. elif enabled armcc; then
  2765. # 2523: use of inline assembler is deprecated
  2766. add_cflags -W${armcc_opt},--diag_suppress=2523
  2767. add_cflags -W${armcc_opt},--diag_suppress=1207
  2768. add_cflags -W${armcc_opt},--diag_suppress=1293 # assignment in condition
  2769. add_cflags -W${armcc_opt},--diag_suppress=3343 # hardfp compat
  2770. add_cflags -W${armcc_opt},--diag_suppress=167 # pointer sign
  2771. add_cflags -W${armcc_opt},--diag_suppress=513 # pointer sign
  2772. elif enabled tms470; then
  2773. add_cflags -pds=824 -pds=837
  2774. elif enabled pathscale; then
  2775. add_cflags -fstrict-overflow -OPT:wrap_around_unsafe_opt=OFF
  2776. fi
  2777. enabled_any $THREADS_LIST && enable threads
  2778. check_deps $CONFIG_LIST \
  2779. $CONFIG_EXTRA \
  2780. $HAVE_LIST \
  2781. $DECODER_LIST \
  2782. $ENCODER_LIST \
  2783. $HWACCEL_LIST \
  2784. $PARSER_LIST \
  2785. $BSF_LIST \
  2786. $DEMUXER_LIST \
  2787. $MUXER_LIST \
  2788. $FILTER_LIST \
  2789. $INDEV_LIST \
  2790. $OUTDEV_LIST \
  2791. $PROTOCOL_LIST \
  2792. $ACODEC_TESTS \
  2793. $VCODEC_TESTS \
  2794. $LAVF_TESTS \
  2795. $LAVFI_TESTS \
  2796. $SEEK_TESTS \
  2797. enabled asm || { arch=c; disable $ARCH_LIST $ARCH_EXT_LIST; }
  2798. ! enabled_any memalign posix_memalign malloc_aligned &&
  2799. enabled_any $need_memalign && enable memalign_hack
  2800. echo "install prefix $prefix"
  2801. echo "source path $source_path"
  2802. echo "C compiler $cc"
  2803. echo "ARCH $arch ($cpu)"
  2804. if test "$build_suffix" != ""; then
  2805. echo "build suffix $build_suffix"
  2806. fi
  2807. if test "$extra_version" != ""; then
  2808. echo "version string suffix $extra_version"
  2809. fi
  2810. echo "big-endian ${bigendian-no}"
  2811. echo "runtime cpu detection ${runtime_cpudetect-no}"
  2812. if enabled x86; then
  2813. echo "${yasmexe} ${yasm-no}"
  2814. echo "MMX enabled ${mmx-no}"
  2815. echo "MMX2 enabled ${mmx2-no}"
  2816. echo "3DNow! enabled ${amd3dnow-no}"
  2817. echo "3DNow! extended enabled ${amd3dnowext-no}"
  2818. echo "SSE enabled ${sse-no}"
  2819. echo "SSSE3 enabled ${ssse3-no}"
  2820. echo "AVX enabled ${avx-no}"
  2821. echo "CMOV enabled ${cmov-no}"
  2822. echo "CMOV is fast ${fast_cmov-no}"
  2823. echo "EBX available ${ebx_available-no}"
  2824. echo "EBP available ${ebp_available-no}"
  2825. fi
  2826. if enabled arm; then
  2827. echo "ARMv5TE enabled ${armv5te-no}"
  2828. echo "ARMv6 enabled ${armv6-no}"
  2829. echo "ARMv6T2 enabled ${armv6t2-no}"
  2830. echo "ARM VFP enabled ${armvfp-no}"
  2831. echo "IWMMXT enabled ${iwmmxt-no}"
  2832. echo "NEON enabled ${neon-no}"
  2833. fi
  2834. if enabled mips; then
  2835. echo "MMI enabled ${mmi-no}"
  2836. fi
  2837. if enabled ppc; then
  2838. echo "AltiVec enabled ${altivec-no}"
  2839. echo "PPC 4xx optimizations ${ppc4xx-no}"
  2840. echo "dcbzl available ${dcbzl-no}"
  2841. fi
  2842. if enabled sparc; then
  2843. echo "VIS enabled ${vis-no}"
  2844. fi
  2845. echo "debug symbols ${debug-no}"
  2846. echo "optimize for size ${small-no}"
  2847. echo "optimizations ${optimizations-no}"
  2848. echo "static ${static-no}"
  2849. echo "shared ${shared-no}"
  2850. echo "postprocessing support ${postproc-no}"
  2851. echo "new filter support ${avfilter-no}"
  2852. echo "network support ${network-no}"
  2853. echo "threading support ${thread_type-no}"
  2854. echo "SDL support ${sdl-no}"
  2855. echo "Sun medialib support ${mlib-no}"
  2856. echo "libdxva2 enabled ${dxva2-no}"
  2857. echo "libva enabled ${vaapi-no}"
  2858. echo "libvdpau enabled ${vdpau-no}"
  2859. echo "AVISynth enabled ${avisynth-no}"
  2860. echo "frei0r enabled ${frei0r-no}"
  2861. echo "libcdio support ${libcdio-no}"
  2862. echo "libdc1394 support ${libdc1394-no}"
  2863. echo "libdirac enabled ${libdirac-no}"
  2864. echo "libfaac enabled ${libfaac-no}"
  2865. echo "libgsm enabled ${libgsm-no}"
  2866. echo "libmp3lame enabled ${libmp3lame-no}"
  2867. echo "libnut enabled ${libnut-no}"
  2868. echo "libopencore-amrnb support ${libopencore_amrnb-no}"
  2869. echo "libopencore-amrwb support ${libopencore_amrwb-no}"
  2870. echo "libopencv support ${libopencv-no}"
  2871. echo "libopenjpeg enabled ${libopenjpeg-no}"
  2872. echo "librtmp enabled ${librtmp-no}"
  2873. echo "libschroedinger enabled ${libschroedinger-no}"
  2874. echo "libspeex enabled ${libspeex-no}"
  2875. echo "libtheora enabled ${libtheora-no}"
  2876. echo "libvo-aacenc support ${libvo_aacenc-no}"
  2877. echo "libvo-amrwbenc support ${libvo_amrwbenc-no}"
  2878. echo "libvorbis enabled ${libvorbis-no}"
  2879. echo "libvpx enabled ${libvpx-no}"
  2880. echo "libx264 enabled ${libx264-no}"
  2881. echo "libxavs enabled ${libxavs-no}"
  2882. echo "libxvid enabled ${libxvid-no}"
  2883. echo "zlib enabled ${zlib-no}"
  2884. echo "bzlib enabled ${bzlib-no}"
  2885. echo
  2886. for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do
  2887. echo "Enabled ${type}s:"
  2888. eval list=\$$(toupper $type)_LIST
  2889. print_enabled '_*' $list | sort | pr -r -3 -t
  2890. echo
  2891. done
  2892. license="LGPL version 2.1 or later"
  2893. if enabled nonfree; then
  2894. license="nonfree and unredistributable"
  2895. elif enabled gplv3; then
  2896. license="GPL version 3 or later"
  2897. elif enabled lgplv3; then
  2898. license="LGPL version 3 or later"
  2899. elif enabled gpl; then
  2900. license="GPL version 2 or later"
  2901. fi
  2902. echo "License: $license"
  2903. echo "Creating config.mak and config.h..."
  2904. test -e Makefile || $ln_s "$source_path/Makefile" .
  2905. config_files="$TMPH config.mak"
  2906. cat > config.mak <<EOF
  2907. # Automatically generated by configure - do not modify!
  2908. LIBAV_CONFIGURATION=$LIBAV_CONFIGURATION
  2909. prefix=$prefix
  2910. LIBDIR=\$(DESTDIR)$libdir
  2911. SHLIBDIR=\$(DESTDIR)$shlibdir
  2912. INCDIR=\$(DESTDIR)$incdir
  2913. BINDIR=\$(DESTDIR)$bindir
  2914. DATADIR=\$(DESTDIR)$datadir
  2915. MANDIR=\$(DESTDIR)$mandir
  2916. SRC_PATH=$source_path
  2917. CC_IDENT=$cc_ident
  2918. ARCH=$arch
  2919. CC=$cc
  2920. AS=$as
  2921. LD=$ld
  2922. DEPCC=$dep_cc
  2923. YASM=$yasmexe
  2924. YASMDEP=$yasmexe
  2925. AR=$ar
  2926. RANLIB=$ranlib
  2927. LN_S=$ln_s
  2928. CPPFLAGS=$CPPFLAGS
  2929. CFLAGS=$CFLAGS
  2930. ASFLAGS=$ASFLAGS
  2931. AS_O=$CC_O
  2932. CC_O=$CC_O
  2933. DLLTOOL=$dlltool
  2934. LDFLAGS=$LDFLAGS
  2935. AVSERVERLDFLAGS=$AVSERVERLDFLAGS
  2936. SHFLAGS=$SHFLAGS
  2937. YASMFLAGS=$YASMFLAGS
  2938. BUILDSUF=$build_suffix
  2939. FULLNAME=$FULLNAME
  2940. LIBPREF=$LIBPREF
  2941. LIBSUF=$LIBSUF
  2942. LIBNAME=$LIBNAME
  2943. SLIBPREF=$SLIBPREF
  2944. SLIBSUF=$SLIBSUF
  2945. EXESUF=$EXESUF
  2946. EXTRA_VERSION=$extra_version
  2947. DEPFLAGS=$DEPFLAGS
  2948. CCDEP=$CCDEP
  2949. ASDEP=$ASDEP
  2950. CC_DEPFLAGS=$CC_DEPFLAGS
  2951. AS_DEPFLAGS=$AS_DEPFLAGS
  2952. HOSTCC=$host_cc
  2953. HOSTCFLAGS=$host_cflags
  2954. HOSTEXESUF=$HOSTEXESUF
  2955. HOSTLDFLAGS=$host_ldflags
  2956. HOSTLIBS=$host_libs
  2957. TARGET_EXEC=$target_exec
  2958. TARGET_PATH=$target_path
  2959. SDL_LIBS=$sdl_libs
  2960. SDL_CFLAGS=$sdl_cflags
  2961. LIB_INSTALL_EXTRA_CMD=$LIB_INSTALL_EXTRA_CMD
  2962. EXTRALIBS=$extralibs
  2963. INSTALL=install
  2964. LIBTARGET=${LIBTARGET}
  2965. SLIBNAME=${SLIBNAME}
  2966. SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}
  2967. SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}
  2968. SLIB_CREATE_DEF_CMD=${SLIB_CREATE_DEF_CMD}
  2969. SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}
  2970. SLIB_INSTALL_NAME=${SLIB_INSTALL_NAME}
  2971. SLIB_INSTALL_LINKS=${SLIB_INSTALL_LINKS}
  2972. SLIB_INSTALL_EXTRA_LIB=${SLIB_INSTALL_EXTRA_LIB}
  2973. SLIB_INSTALL_EXTRA_SHLIB=${SLIB_INSTALL_EXTRA_SHLIB}
  2974. SAMPLES:=${samples:-\$(FATE_SAMPLES)}
  2975. EOF
  2976. get_version(){
  2977. name=$1
  2978. file=$source_path/$2
  2979. eval $(grep "#define ${name}_VERSION_M" "$file" | awk '{ print $2"="$3 }')
  2980. eval ${name}_VERSION=\$${name}_VERSION_MAJOR.\$${name}_VERSION_MINOR.\$${name}_VERSION_MICRO
  2981. lcname=$(tolower $name)
  2982. eval echo "${lcname}_VERSION=\$${name}_VERSION" >> config.mak
  2983. eval echo "${lcname}_VERSION_MAJOR=\$${name}_VERSION_MAJOR" >> config.mak
  2984. }
  2985. get_version LIBSWSCALE libswscale/swscale.h
  2986. get_version LIBPOSTPROC libpostproc/postprocess.h
  2987. get_version LIBAVCODEC libavcodec/version.h
  2988. get_version LIBAVDEVICE libavdevice/avdevice.h
  2989. get_version LIBAVFORMAT libavformat/version.h
  2990. get_version LIBAVUTIL libavutil/avutil.h
  2991. get_version LIBAVFILTER libavfilter/avfilter.h
  2992. cat > $TMPH <<EOF
  2993. /* Automatically generated by configure - do not modify! */
  2994. #ifndef LIBAV_CONFIG_H
  2995. #define LIBAV_CONFIG_H
  2996. #define LIBAV_CONFIGURATION "$(c_escape $LIBAV_CONFIGURATION)"
  2997. #define LIBAV_LICENSE "$(c_escape $license)"
  2998. #define AVCONV_DATADIR "$(eval c_escape $datadir)"
  2999. #define CC_TYPE "$cc_type"
  3000. #define CC_VERSION $cc_version
  3001. #define restrict $_restrict
  3002. #define EXTERN_PREFIX "${extern_prefix}"
  3003. #define EXTERN_ASM ${extern_prefix}
  3004. #define SLIBSUF "$SLIBSUF"
  3005. EOF
  3006. test -n "$malloc_prefix" &&
  3007. echo "#define MALLOC_PREFIX $malloc_prefix" >>$TMPH
  3008. if enabled small || disabled optimizations; then
  3009. echo "#undef av_always_inline" >> $TMPH
  3010. if enabled small; then
  3011. echo "#define av_always_inline inline" >> $TMPH
  3012. else
  3013. echo "#define av_always_inline av_unused" >> $TMPH
  3014. fi
  3015. fi
  3016. if enabled yasm; then
  3017. append config_files $TMPASM
  3018. printf '' >$TMPASM
  3019. fi
  3020. print_config ARCH_ "$config_files" $ARCH_LIST
  3021. print_config HAVE_ "$config_files" $HAVE_LIST
  3022. print_config CONFIG_ "$config_files" $CONFIG_LIST \
  3023. $CONFIG_EXTRA \
  3024. $DECODER_LIST \
  3025. $ENCODER_LIST \
  3026. $HWACCEL_LIST \
  3027. $PARSER_LIST \
  3028. $BSF_LIST \
  3029. $DEMUXER_LIST \
  3030. $MUXER_LIST \
  3031. $FILTER_LIST \
  3032. $PROTOCOL_LIST \
  3033. $INDEV_LIST \
  3034. $OUTDEV_LIST \
  3035. cat >>config.mak <<EOF
  3036. ACODEC_TESTS=$(print_enabled -n _test $ACODEC_TESTS)
  3037. VCODEC_TESTS=$(print_enabled -n _test $VCODEC_TESTS)
  3038. LAVF_TESTS=$(print_enabled -n _test $LAVF_TESTS)
  3039. LAVFI_TESTS=$(print_enabled -n _test $LAVFI_TESTS)
  3040. SEEK_TESTS=$(print_enabled -n _test $SEEK_TESTS)
  3041. EOF
  3042. echo "#endif /* LIBAV_CONFIG_H */" >> $TMPH
  3043. # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
  3044. cp_if_changed $TMPH config.h
  3045. touch .config
  3046. enabled yasm && cp_if_changed $TMPASM config.asm
  3047. cat > $TMPH <<EOF
  3048. /* Generated by ffconf */
  3049. #ifndef AVUTIL_AVCONFIG_H
  3050. #define AVUTIL_AVCONFIG_H
  3051. EOF
  3052. print_config AV_HAVE_ $TMPH $HAVE_LIST_PUB
  3053. echo "#endif /* AVUTIL_AVCONFIG_H */" >> $TMPH
  3054. cp_if_changed $TMPH libavutil/avconfig.h
  3055. test -n "$WARNINGS" && printf "\n$WARNINGS"
  3056. # build pkg-config files
  3057. pkgconfig_generate(){
  3058. name=$1
  3059. shortname=${name#lib}${build_suffix}
  3060. comment=$2
  3061. version=$3
  3062. libs=$4
  3063. requires=$5
  3064. enabled ${name#lib} || return 0
  3065. mkdir -p $name
  3066. cat <<EOF > $name/$name.pc
  3067. prefix=$prefix
  3068. exec_prefix=\${prefix}
  3069. libdir=$libdir
  3070. includedir=$incdir
  3071. Name: $name
  3072. Description: $comment
  3073. Version: $version
  3074. Requires: $(enabled shared || echo $requires)
  3075. Requires.private: $(enabled shared && echo $requires)
  3076. Conflicts:
  3077. Libs: -L\${libdir} -l${shortname} $(enabled shared || echo $libs)
  3078. Libs.private: $(enabled shared && echo $libs)
  3079. Cflags: -I\${includedir}
  3080. EOF
  3081. cat <<EOF > $name/$name-uninstalled.pc
  3082. prefix=
  3083. exec_prefix=
  3084. libdir=\${pcfiledir}
  3085. includedir=${source_path}
  3086. Name: $name
  3087. Description: $comment
  3088. Version: $version
  3089. Requires: $requires
  3090. Conflicts:
  3091. Libs: \${libdir}/${LIBPREF}${shortname}${LIBSUF} $libs
  3092. Cflags: -I\${includedir}
  3093. EOF
  3094. }
  3095. pkgconfig_generate libavutil "Libav utility library" "$LIBAVUTIL_VERSION" "$LIBM"
  3096. pkgconfig_generate libavcodec "Libav codec library" "$LIBAVCODEC_VERSION" "$extralibs" "libavutil = $LIBAVUTIL_VERSION"
  3097. pkgconfig_generate libavformat "Libav container format library" "$LIBAVFORMAT_VERSION" "$extralibs" "libavcodec = $LIBAVCODEC_VERSION"
  3098. pkgconfig_generate libavdevice "Libav device handling library" "$LIBAVDEVICE_VERSION" "$extralibs" "libavformat = $LIBAVFORMAT_VERSION"
  3099. pkgconfig_generate libavfilter "Libav video filtering library" "$LIBAVFILTER_VERSION" "$extralibs"
  3100. pkgconfig_generate libpostproc "Libav postprocessing library" "$LIBPOSTPROC_VERSION" "" "libavutil = $LIBAVUTIL_VERSION"
  3101. pkgconfig_generate libswscale "Libav image rescaling library" "$LIBSWSCALE_VERSION" "$LIBM" "libavutil = $LIBAVUTIL_VERSION"