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.

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