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.

2546 lines
73KB

  1. #!/bin/sh
  2. #
  3. # FFmpeg 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 FFMPEG, 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 FFmpeg."
  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. echo "Usage: configure [options]"
  52. echo "Options: [defaults in brackets after descriptions]"
  53. echo
  54. echo "Standard options:"
  55. echo " --help print this message"
  56. echo " --logfile=FILE log tests and output to FILE [config.err]"
  57. echo " --disable-logging do not log configure debug information"
  58. echo " --prefix=PREFIX install in PREFIX [$prefix]"
  59. echo " --bindir=DIR install binaries in DIR [PREFIX/bin]"
  60. echo " --datadir=DIR install data files in DIR [PREFIX/share/ffmpeg]"
  61. echo " --libdir=DIR install libs in DIR [PREFIX/lib]"
  62. echo " --shlibdir=DIR install shared libs in DIR [PREFIX/lib]"
  63. echo " --incdir=DIR install includes in DIR [PREFIX/include]"
  64. echo " --mandir=DIR install man page in DIR [PREFIX/share/man]"
  65. echo
  66. echo "Configuration options:"
  67. echo " --disable-static do not build static libraries [no]"
  68. echo " --enable-shared build shared libraries [no]"
  69. echo " --enable-gpl allow use of GPL code, the resulting libs"
  70. echo " and binaries will be under GPL [no]"
  71. echo " --enable-nonfree allow use of nonfree code, the resulting libs"
  72. echo " and binaries will be unredistributable [no]"
  73. echo " --disable-ffmpeg disable ffmpeg build"
  74. echo " --disable-ffplay disable ffplay build"
  75. echo " --disable-ffserver disable ffserver build"
  76. echo " --enable-postproc enable GPLed postprocessing support [no]"
  77. echo " --enable-avfilter video filter support [no]"
  78. echo " --enable-avfilter-lavf video filters dependent on avformat [no]"
  79. echo " --enable-beosthreads use BeOS threads [no]"
  80. echo " --enable-os2threads use OS/2 threads [no]"
  81. echo " --enable-pthreads use pthreads [no]"
  82. echo " --enable-w32threads use Win32 threads [no]"
  83. echo " --enable-x11grab enable X11 grabbing [no]"
  84. echo " --enable-vdpau enable VDPAU support [no]"
  85. echo " --disable-network disable network support [no]"
  86. echo " --disable-ipv6 disable IPv6 support [no]"
  87. echo " --disable-mpegaudio-hp faster (but less accurate) MPEG audio decoding [no]"
  88. echo " --enable-gray enable full grayscale support (slower color)"
  89. echo " --enable-fastdiv enable table-based division"
  90. echo " --enable-small optimize for size instead of speed"
  91. echo " --disable-aandct disable AAN DCT code"
  92. echo " --disable-fft disable FFT code"
  93. echo " --disable-golomb disable Golomb code"
  94. echo " --disable-mdct disable MDCT code"
  95. echo " --disable-rdft disable RDFT code"
  96. echo " --enable-hardcoded-tables use hardcoded tables instead of runtime generation"
  97. echo " --enable-memalign-hack emulate memalign, interferes with memory debuggers"
  98. echo " --enable-beos-netserver enable BeOS netserver"
  99. echo " --disable-encoder=NAME disable encoder NAME"
  100. echo " --enable-encoder=NAME enable encoder NAME"
  101. echo " --disable-encoders disable all encoders"
  102. echo " --disable-decoder=NAME disable decoder NAME"
  103. echo " --enable-decoder=NAME enable decoder NAME"
  104. echo " --disable-decoders disable all decoders"
  105. echo " --disable-muxer=NAME disable muxer NAME"
  106. echo " --enable-muxer=NAME enable muxer NAME"
  107. echo " --disable-muxers disable all muxers"
  108. echo " --disable-demuxer=NAME disable demuxer NAME"
  109. echo " --enable-demuxer=NAME enable demuxer NAME"
  110. echo " --disable-demuxers disable all demuxers"
  111. echo " --enable-parser=NAME enable parser NAME"
  112. echo " --disable-parser=NAME disable parser NAME"
  113. echo " --disable-parsers disable all parsers"
  114. echo " --enable-bsf=NAME enable bitstream filter NAME"
  115. echo " --disable-bsf=NAME disable bitstream filter NAME"
  116. echo " --disable-bsfs disable all bitstream filters"
  117. echo " --enable-protocol=NAME enable protocol NAME"
  118. echo " --disable-protocol=NAME disable protocol NAME"
  119. echo " --disable-protocols disable all protocols"
  120. echo " --disable-indevs disable input devices"
  121. echo " --disable-outdevs disable output devices"
  122. echo " --disable-devices disable all devices"
  123. echo " --enable-filter=NAME enable filter NAME"
  124. echo " --disable-filter=NAME disable filter NAME"
  125. echo " --disable-filters disable all filters"
  126. echo " --list-decoders show all available decoders"
  127. echo " --list-encoders show all available encoders"
  128. echo " --list-muxers show all available muxers"
  129. echo " --list-demuxers show all available demuxers"
  130. echo " --list-parsers show all available parsers"
  131. echo " --list-protocols show all available protocols"
  132. echo " --list-bsfs show all available bitstream filters"
  133. echo " --list-indevs show all available input devices"
  134. echo " --list-outdevs show all available output devices"
  135. echo " --list-filters show all available filters"
  136. echo
  137. echo "External library support:"
  138. echo " --enable-avisynth enable reading of AVISynth script files [no]"
  139. echo " --enable-bzlib enable bzlib [autodetect]"
  140. echo " --enable-libamr-nb enable libamr-nb floating point audio codec [no]"
  141. echo " --enable-libamr-wb enable libamr-wb floating point audio codec [no]"
  142. echo " --enable-libdc1394 enable IIDC-1394 grabbing using libdc1394"
  143. echo " and libraw1394 [no]"
  144. echo " --enable-libdirac enable Dirac support via libdirac [no]"
  145. echo " --enable-libfaac enable FAAC support via libfaac [no]"
  146. echo " --enable-libfaad enable FAAD support via libfaad [no]"
  147. echo " --enable-libfaadbin open libfaad.so.0 at runtime [no]"
  148. echo " --enable-libgsm enable GSM support via libgsm [no]"
  149. echo " --enable-libmp3lame enable MP3 encoding via libmp3lame [no]"
  150. echo " --enable-libnut enable NUT (de)muxing via libnut,"
  151. echo " native (de)muxer exists [no]"
  152. echo " --enable-libopenjpeg enable JPEG 2000 decoding via OpenJPEG [no]"
  153. echo " --enable-libschroedinger enable Dirac support via libschroedinger [no]"
  154. echo " --enable-libspeex enable Speex decoding via libspeex [no]"
  155. echo " --enable-libtheora enable Theora encoding via libtheora [no]"
  156. echo " --enable-libvorbis enable Vorbis encoding via libvorbis,"
  157. echo " native implementation exists [no]"
  158. echo " --enable-libx264 enable H.264 encoding via x264 [no]"
  159. echo " --enable-libxvid enable Xvid encoding via xvidcore,"
  160. echo " native MPEG-4/Xvid encoder exists [no]"
  161. echo " --enable-mlib enable Sun medialib [no]"
  162. echo " --enable-zlib enable zlib [autodetect]"
  163. echo ""
  164. echo "Advanced options (experts only):"
  165. echo " --source-path=PATH path to source code [$source_path]"
  166. echo " --cross-prefix=PREFIX use PREFIX for compilation tools [$cross_prefix]"
  167. echo " --enable-cross-compile assume a cross-compiler is used"
  168. echo " --sysroot=PATH root of cross-build tree"
  169. echo " --sysinclude=PATH location of cross-build system headers"
  170. echo " --target-os=OS compiler targets OS [$target_os]"
  171. echo " --target-exec=CMD command to run executables on target"
  172. echo " --target-path=DIR path to view of build directory on target"
  173. echo " --nm=NM use nm tool"
  174. echo " --cc=CC use C compiler CC [$cc_default]"
  175. echo " --host-cc=HOSTCC use host C compiler HOSTCC"
  176. echo " --host-cflags=HCFLAGS use HCFLAGS when compiling for host"
  177. echo " --host-ldflags=HLDFLAGS use HLDFLAGS when linking for host"
  178. echo " --host-libs=HLIBS use libs HLIBS when linking for host"
  179. echo " --extra-cflags=ECFLAGS add ECFLAGS to CFLAGS [$CFLAGS]"
  180. echo " --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]"
  181. echo " --extra-libs=ELIBS add ELIBS [$ELIBS]"
  182. echo " --extra-version=STRING version string suffix []"
  183. echo " --build-suffix=SUFFIX library name suffix []"
  184. echo " --arch=ARCH select architecture [$arch]"
  185. echo " --cpu=CPU select the minimum required CPU (affects"
  186. echo " instruction selection, may crash on older CPUs)"
  187. echo " --enable-powerpc-perf enable performance report on PPC"
  188. echo " (requires enabling PMC)"
  189. echo " --disable-altivec disable AltiVec optimizations"
  190. echo " --disable-amd3dnow disable 3DNow! optimizations"
  191. echo " --disable-amd3dnowext disable 3DNow! extended optimizations"
  192. echo " --disable-mmx disable MMX optimizations"
  193. echo " --disable-mmx2 disable MMX2 optimizations"
  194. echo " --disable-sse disable SSE optimizations"
  195. echo " --disable-ssse3 disable SSSE3 optimizations"
  196. echo " --disable-armv5te disable armv5te optimizations"
  197. echo " --disable-armv6 disable armv6 optimizations"
  198. echo " --disable-armv6t2 disable armv6t2 optimizations"
  199. echo " --disable-armvfp disable ARM VFP optimizations"
  200. echo " --disable-iwmmxt disable iwmmxt optimizations"
  201. echo " --disable-mmi disable MMI optimizations"
  202. echo " --disable-neon disable neon optimizations"
  203. echo " --disable-vis disable VIS optimizations"
  204. echo " --disable-yasm disable use of yasm assembler"
  205. echo
  206. echo "Developer options (useful when working on FFmpeg itself):"
  207. echo " --disable-debug disable debugging symbols"
  208. echo " --enable-debug=LEVEL set the debug level [$debuglevel]"
  209. echo " --enable-gprof enable profiling with gprof [$gprof]"
  210. echo " --disable-optimizations disable compiler optimizations"
  211. echo " --enable-extra-warnings enable more compiler warnings"
  212. echo " --disable-stripping disable stripping of executables and shared libraries"
  213. echo ""
  214. echo "NOTE: Object files are built at the place where configure is launched."
  215. exit 0
  216. }
  217. log(){
  218. echo "$@" >> $logfile
  219. }
  220. log_file(){
  221. log BEGIN $1
  222. pr -n -t $1 >> $logfile
  223. log END $1
  224. }
  225. echolog(){
  226. log "$@"
  227. echo "$@"
  228. }
  229. die(){
  230. echolog "$@"
  231. cat <<EOF
  232. If you think configure made a mistake, make sure you are using the latest
  233. version from SVN. If the latest version fails, report the problem to the
  234. ffmpeg-user@mplayerhq.hu mailing list or IRC #ffmpeg on irc.freenode.net.
  235. EOF
  236. if disabled logging; then
  237. cat <<EOF
  238. Rerun configure with logging enabled (do not use --disable-logging), and
  239. include the log this produces with your report.
  240. EOF
  241. else
  242. cat <<EOF
  243. Include the log file "$logfile" produced by configure as this will help
  244. solving the problem.
  245. EOF
  246. fi
  247. exit 1
  248. }
  249. # Avoid locale weirdness, besides we really just want to translate ASCII.
  250. toupper(){
  251. echo "$@" | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ
  252. }
  253. tolower(){
  254. echo "$@" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
  255. }
  256. c_escape(){
  257. echo "$*" | sed 's/["\\]/\\\0/g'
  258. }
  259. set_all(){
  260. value=$1
  261. shift
  262. for var in $*; do
  263. eval $var=$value
  264. done
  265. }
  266. set_weak(){
  267. value=$1
  268. shift
  269. for var; do
  270. eval : \${$var:=$value}
  271. done
  272. }
  273. pushvar(){
  274. for var in $*; do
  275. eval level=\${${var}_level:=0}
  276. eval ${var}_${level}="\$$var"
  277. eval ${var}_level=$(($level+1))
  278. done
  279. }
  280. popvar(){
  281. for var in $*; do
  282. eval level=\${${var}_level:-0}
  283. test $level = 0 && continue
  284. eval level=$(($level-1))
  285. eval $var="\${${var}_${level}}"
  286. eval ${var}_level=$level
  287. eval unset ${var}_${level}
  288. done
  289. }
  290. enable(){
  291. set_all yes $*
  292. }
  293. disable(){
  294. set_all no $*
  295. }
  296. enable_weak(){
  297. set_weak yes $*
  298. }
  299. disable_weak(){
  300. set_weak no $*
  301. }
  302. enable_safe(){
  303. enable $(echo "$*" | sed 's/[^A-Za-z0-9_ ]/_/g')
  304. }
  305. disable_safe(){
  306. disable $(echo "$*" | sed 's/[^A-Za-z0-9_ ]/_/g')
  307. }
  308. do_enable_deep(){
  309. for var; do
  310. enabled $var && continue
  311. eval sel="\$${var}_select"
  312. eval sgs="\$${var}_suggest"
  313. pushvar var sgs
  314. enable_deep $sel
  315. popvar sgs
  316. enable_deep_weak $sgs
  317. popvar var
  318. done
  319. }
  320. enable_deep(){
  321. do_enable_deep $*
  322. enable $*
  323. }
  324. enable_deep_weak(){
  325. do_enable_deep $*
  326. enable_weak $*
  327. }
  328. enabled(){
  329. test "${1#!}" = "$1" && op== || op=!=
  330. eval test "x\$${1#!}" $op "xyes"
  331. }
  332. disabled(){
  333. test "${1#!}" = "$1" && op== || op=!=
  334. eval test "x\$${1#!}" $op "xno"
  335. }
  336. enabled_all(){
  337. for opt; do
  338. enabled $opt || return 1
  339. done
  340. }
  341. disabled_all(){
  342. for opt; do
  343. disabled $opt || return 1
  344. done
  345. }
  346. enabled_any(){
  347. for opt; do
  348. enabled $opt && return 0
  349. done
  350. }
  351. disabled_any(){
  352. for opt; do
  353. disabled $opt && return 0
  354. done
  355. return 1
  356. }
  357. set_default(){
  358. for opt; do
  359. eval : \${$opt:=\$${opt}_default}
  360. done
  361. }
  362. is_in(){
  363. value=$1
  364. shift
  365. for var in $*; do
  366. [ $var = $value ] && return 0
  367. done
  368. return 1
  369. }
  370. check_deps(){
  371. for cfg; do
  372. cfg="${cfg#!}"
  373. enabled ${cfg}_checking && die "Circular dependency for $cfg."
  374. disabled ${cfg}_checking && continue
  375. enable ${cfg}_checking
  376. eval dep_all="\$${cfg}_deps"
  377. eval dep_any="\$${cfg}_deps_any"
  378. eval dep_sel="\$${cfg}_select"
  379. eval dep_sgs="\$${cfg}_suggest"
  380. pushvar cfg dep_all dep_any dep_sel dep_sgs
  381. check_deps $dep_all $dep_any $dep_sel $dep_sgs
  382. popvar cfg dep_all dep_any dep_sel dep_sgs
  383. enabled_all $dep_all || disable $cfg
  384. enabled_any $dep_any || disable $cfg
  385. disabled_any $dep_sel && disable $cfg
  386. if enabled $cfg; then
  387. eval dep_extralibs="\$${cfg}_extralibs"
  388. test -n "$dep_extralibs" && add_extralibs $dep_extralibs
  389. enable_deep $dep_sel
  390. enable_deep_weak $dep_sgs
  391. fi
  392. disable ${cfg}_checking
  393. done
  394. }
  395. print_config(){
  396. pfx=$1
  397. header=$2
  398. makefile=$3
  399. shift 3
  400. for cfg; do
  401. ucname="`toupper $cfg`"
  402. if enabled $cfg; then
  403. echo "#define ${pfx}${ucname} 1" >> $header
  404. echo "${pfx}${ucname}=yes" >> $makefile
  405. else
  406. echo "#define ${pfx}${ucname} 0" >> $header
  407. fi
  408. done
  409. }
  410. flags_saved(){
  411. (: ${SAVE_CFLAGS?}) 2> /dev/null
  412. }
  413. save_flags(){
  414. flags_saved && return
  415. SAVE_CFLAGS="$CFLAGS"
  416. SAVE_LDFLAGS="$LDFLAGS"
  417. SAVE_extralibs="$extralibs"
  418. }
  419. restore_flags(){
  420. flags_saved || return
  421. CFLAGS="$SAVE_CFLAGS"
  422. LDFLAGS="$SAVE_LDFLAGS"
  423. extralibs="$SAVE_extralibs"
  424. unset SAVE_CFLAGS
  425. unset SAVE_LDFLAGS
  426. unset SAVE_extralibs
  427. }
  428. temp_cflags(){
  429. save_flags
  430. CFLAGS="$CFLAGS $*"
  431. }
  432. temp_ldflags(){
  433. save_flags
  434. LDFLAGS="$LDFLAGS $*"
  435. }
  436. temp_extralibs(){
  437. save_flags
  438. extralibs="$extralibs $*"
  439. }
  440. append(){
  441. var=$1
  442. shift
  443. flags_saved && eval "SAVE_$var=\"\$SAVE_$var $*\""
  444. eval "$var=\"\$$var $*\""
  445. }
  446. add_cflags(){
  447. append CFLAGS "$@"
  448. }
  449. add_ldflags(){
  450. append LDFLAGS "$@"
  451. }
  452. add_extralibs(){
  453. append extralibs "$@"
  454. }
  455. check_cmd(){
  456. log "$@"
  457. "$@" >> $logfile 2>&1
  458. }
  459. check_cc(){
  460. log check_cc "$@"
  461. cat > $TMPC
  462. log_file $TMPC
  463. check_cmd $cc $CFLAGS "$@" -c -o $TMPO $TMPC
  464. }
  465. check_cpp(){
  466. log check_cpp "$@"
  467. cat > $TMPC
  468. log_file $TMPC
  469. check_cmd $cc $CFLAGS "$@" -E -o $TMPO $TMPC
  470. }
  471. check_asm(){
  472. log check_asm "$@"
  473. name="$1"
  474. asm="$2"
  475. shift 2
  476. check_cc "$@" <<EOF && enable $name || disable $name
  477. void foo(void){ __asm__ volatile($asm); }
  478. EOF
  479. }
  480. check_yasm(){
  481. log check_yasm "$@"
  482. echo "$1" > $TMPS
  483. log_file $TMPS
  484. shift 1
  485. check_cmd $yasmexe $YASMFLAGS "$@" -o $TMPO $TMPS
  486. }
  487. check_ld(){
  488. log check_ld "$@"
  489. check_cc || return
  490. flags=''
  491. libs=''
  492. for f; do
  493. test "${f}" = "${f#-l}" && flags="$flags $f" || libs="$libs $f"
  494. done
  495. check_cmd $cc $LDFLAGS $flags -o $TMPE $TMPO $extralibs $libs
  496. }
  497. check_cflags(){
  498. log check_cflags "$@"
  499. check_cc "$@" <<EOF && add_cflags "$@"
  500. int x;
  501. EOF
  502. }
  503. check_ldflags(){
  504. log check_ldflags "$@"
  505. check_ld "$@" <<EOF && add_ldflags "$@"
  506. int main(void){ return 0; }
  507. EOF
  508. }
  509. check_header(){
  510. log check_header "$@"
  511. header=$1
  512. shift
  513. disable_safe $header
  514. check_cpp "$@" <<EOF && enable_safe $header
  515. #include <$header>
  516. int x;
  517. EOF
  518. }
  519. check_func(){
  520. log check_func "$@"
  521. func=$1
  522. shift
  523. disable $func
  524. check_ld "$@" <<EOF && enable $func
  525. extern int $func();
  526. int main(void){ $func(); }
  527. EOF
  528. }
  529. check_func_headers(){
  530. log check_func_headers "$@"
  531. headers=$1
  532. func=$2
  533. shift 2
  534. disable $func
  535. incs=""
  536. for hdr in $headers; do
  537. incs="$incs
  538. #include <$hdr>"
  539. done
  540. check_ld "$@" <<EOF && enable $func && enable_safe $headers
  541. $incs
  542. int main(int argc, char **argv){
  543. (void) $func;
  544. return 0;
  545. }
  546. EOF
  547. }
  548. check_cpp_condition(){
  549. log check_cpp_condition "$@"
  550. header=$1
  551. condition=$2
  552. check_cpp <<EOF
  553. #include <$header>
  554. #if !($condition)
  555. #error "unsatisfied condition: $condition"
  556. #endif
  557. EOF
  558. }
  559. check_lib(){
  560. log check_lib "$@"
  561. header="$1"
  562. func="$2"
  563. shift 2
  564. temp_extralibs "$@"
  565. check_header $header && check_func $func && add_extralibs "$@"
  566. err=$?
  567. restore_flags
  568. return $err
  569. }
  570. check_lib2(){
  571. log check_lib2 "$@"
  572. headers="$1"
  573. func="$2"
  574. shift 2
  575. temp_extralibs "$@"
  576. check_func_headers "$headers" $func && add_extralibs "$@"
  577. err=$?
  578. restore_flags
  579. return $err
  580. }
  581. check_exec(){
  582. check_ld "$@" && { enabled cross_compile || $TMPE >> $logfile 2>&1; }
  583. }
  584. check_exec_crash(){
  585. code=`cat`
  586. # exit() is not async signal safe. _Exit (C99) and _exit (POSIX)
  587. # are safe but may not be available everywhere. Thus we use
  588. # raise(SIGTERM) instead. The check is run in a subshell so we
  589. # can redirect the "Terminated" message from the shell. SIGBUS
  590. # is not defined by standard C so it is used conditionally.
  591. (check_exec "$@") >> $logfile 2>&1 <<EOF
  592. #include <signal.h>
  593. static void sighandler(int sig){
  594. raise(SIGTERM);
  595. }
  596. int main(void){
  597. signal(SIGILL, sighandler);
  598. signal(SIGFPE, sighandler);
  599. signal(SIGSEGV, sighandler);
  600. #ifdef SIGBUS
  601. signal(SIGBUS, sighandler);
  602. #endif
  603. { $code }
  604. }
  605. EOF
  606. }
  607. check_type(){
  608. log check_type "$@"
  609. headers=$1
  610. type=$2
  611. shift 2
  612. disable $type
  613. incs=""
  614. for hdr in $headers; do
  615. incs="$incs
  616. #include <$hdr>"
  617. done
  618. check_cc "$@" <<EOF && enable $type
  619. $incs
  620. $type v;
  621. EOF
  622. }
  623. require(){
  624. name="$1"
  625. header="$2"
  626. func="$3"
  627. shift 3
  628. check_lib $header $func "$@" || die "ERROR: $name not found"
  629. }
  630. require2(){
  631. name="$1"
  632. headers="$2"
  633. func="$3"
  634. shift 3
  635. check_lib2 "$headers" $func "$@" || die "ERROR: $name not found"
  636. }
  637. check_foo_config(){
  638. cfg=$1
  639. pkg=$2
  640. header=$3
  641. func=$4
  642. shift 4
  643. disable $cfg
  644. check_cmd ${pkg}-config --version
  645. err=$?
  646. if test "$err" = 0; then
  647. temp_cflags `${pkg}-config --cflags`
  648. temp_extralibs `${pkg}-config --libs`
  649. check_lib "$@" $header $func && enable $cfg
  650. fi
  651. return $err
  652. }
  653. apply(){
  654. file=$1
  655. shift
  656. "$@" < "$file" > "$file.tmp" && mv "$file.tmp" "$file" || rm "$file.tmp"
  657. }
  658. # CONFIG_LIST contains configurable options, while HAVE_LIST is for
  659. # system-dependent things.
  660. COMPONENT_LIST="
  661. bsfs
  662. decoders
  663. demuxers
  664. encoders
  665. filters
  666. indevs
  667. muxers
  668. outdevs
  669. parsers
  670. protocols
  671. "
  672. CONFIG_LIST="
  673. $COMPONENT_LIST
  674. aandct
  675. avfilter
  676. avfilter_lavf
  677. avisynth
  678. beos_netserver
  679. bzlib
  680. fastdiv
  681. ffmpeg
  682. ffplay
  683. ffserver
  684. fft
  685. golomb
  686. gpl
  687. gprof
  688. gray
  689. hardcoded_tables
  690. ipv6
  691. libamr_nb
  692. libamr_wb
  693. libdc1394
  694. libdirac
  695. libfaac
  696. libfaad
  697. libfaadbin
  698. libgsm
  699. libmp3lame
  700. libnut
  701. libopenjpeg
  702. libschroedinger
  703. libspeex
  704. libtheora
  705. libvorbis
  706. libx264
  707. libxvid
  708. mdct
  709. memalign_hack
  710. mlib
  711. mpegaudio_hp
  712. network
  713. nonfree
  714. postproc
  715. powerpc_perf
  716. rdft
  717. shared
  718. small
  719. static
  720. vdpau
  721. x11grab
  722. zlib
  723. "
  724. THREADS_LIST='
  725. beosthreads
  726. os2threads
  727. pthreads
  728. w32threads
  729. '
  730. ARCH_LIST='
  731. alpha
  732. arm
  733. bfin
  734. ia64
  735. m68k
  736. mips
  737. parisc
  738. ppc
  739. s390
  740. sh4
  741. sparc
  742. sparc64
  743. x86
  744. x86_32
  745. x86_64
  746. '
  747. ARCH_EXT_LIST='
  748. altivec
  749. amd3dnow
  750. amd3dnowext
  751. armv5te
  752. armv6
  753. armv6t2
  754. armvfp
  755. iwmmxt
  756. mmi
  757. mmx
  758. mmx2
  759. neon
  760. ppc4xx
  761. sse
  762. ssse3
  763. vis
  764. '
  765. HAVE_LIST="
  766. $ARCH_EXT_LIST
  767. $THREADS_LIST
  768. alsa_asoundlib_h
  769. altivec_h
  770. arpa_inet_h
  771. bswap
  772. closesocket
  773. cmov
  774. conio_h
  775. dcbzl
  776. dev_bktr_ioctl_bt848_h
  777. dev_bktr_ioctl_meteor_h
  778. dev_ic_bt8xx_h
  779. dev_video_meteor_ioctl_meteor_h
  780. dev_video_bktr_ioctl_bt848_h
  781. dlfcn_h
  782. dlopen
  783. dos_paths
  784. ebp_available
  785. ebx_available
  786. fast_64bit
  787. fast_cmov
  788. fast_unaligned
  789. fork
  790. gethrtime
  791. GetProcessTimes
  792. getrusage
  793. inet_aton
  794. inline_asm
  795. libdc1394_1
  796. libdc1394_2
  797. llrint
  798. lrint
  799. lrintf
  800. machine_ioctl_bt848_h
  801. machine_ioctl_meteor_h
  802. malloc_h
  803. memalign
  804. mkstemp
  805. pld
  806. posix_memalign
  807. ppc64
  808. round
  809. roundf
  810. sdl
  811. sdl_video_size
  812. setmode
  813. socklen_t
  814. soundcard_h
  815. poll_h
  816. sys_mman_h
  817. sys_resource_h
  818. sys_select_h
  819. sys_soundcard_h
  820. sys_videoio_h
  821. ten_operands
  822. termios_h
  823. threads
  824. truncf
  825. winsock2_h
  826. yasm
  827. "
  828. # options emitted with CONFIG_ prefix but not available on command line
  829. CONFIG_EXTRA="
  830. "
  831. CMDLINE_SELECT="
  832. $ARCH_EXT_LIST
  833. $CONFIG_LIST
  834. $THREADS_LIST
  835. cross_compile
  836. debug
  837. extra_warnings
  838. logging
  839. optimizations
  840. stripping
  841. swscale
  842. yasm
  843. "
  844. PATHS_LIST='
  845. bindir
  846. datadir
  847. incdir
  848. libdir
  849. mandir
  850. prefix
  851. shlibdir
  852. '
  853. CMDLINE_SET="
  854. $PATHS_LIST
  855. arch
  856. build_suffix
  857. cc
  858. cpu
  859. cross_prefix
  860. extra_version
  861. host_cc
  862. host_cflags
  863. host_ldflags
  864. host_libs
  865. logfile
  866. nm
  867. source_path
  868. sysinclude
  869. sysroot
  870. target_exec
  871. target_os
  872. target_path
  873. "
  874. # code dependency declarations
  875. # architecture extensions
  876. altivec_deps="ppc"
  877. amd3dnow_deps="mmx"
  878. amd3dnowext_deps="amd3dnow"
  879. armv5te_deps="arm"
  880. armv6_deps="arm"
  881. armv6t2_deps="arm"
  882. armvfp_deps="arm"
  883. iwmmxt_deps="arm"
  884. mmi_deps="mips"
  885. mmx_deps="x86"
  886. mmx2_deps="mmx"
  887. neon_deps="arm"
  888. ppc4xx_deps="ppc"
  889. sse_deps="mmx"
  890. ssse3_deps="sse"
  891. vis_deps="sparc"
  892. # decoders / encoders
  893. aac_decoder_select="fft mdct"
  894. ac3_decoder_deps="gpl"
  895. ac3_decoder_select="fft mdct"
  896. atrac3_decoder_select="fft mdct"
  897. cavs_decoder_select="golomb"
  898. cook_decoder_select="fft mdct"
  899. cscd_decoder_suggest="zlib"
  900. dca_decoder_select="fft mdct"
  901. dnxhd_encoder_select="aandct"
  902. dxa_decoder_select="zlib"
  903. eac3_decoder_deps="gpl"
  904. eac3_decoder_select="fft mdct"
  905. eatgq_decoder_select="aandct"
  906. eatqi_decoder_select="aandct"
  907. ffv1_decoder_select="golomb"
  908. flac_decoder_select="golomb"
  909. flac_encoder_select="golomb"
  910. flashsv_decoder_select="zlib"
  911. flashsv_encoder_select="zlib"
  912. flv_encoder_select="aandct"
  913. h261_encoder_select="aandct"
  914. h263_encoder_select="aandct"
  915. h263p_encoder_select="aandct"
  916. h264_decoder_select="golomb"
  917. h264_vdpau_decoder_deps="vdpau"
  918. imc_decoder_select="fft mdct"
  919. jpegls_decoder_select="golomb"
  920. jpegls_encoder_select="golomb"
  921. ljpeg_encoder_select="aandct"
  922. loco_decoder_select="golomb"
  923. mjpeg_encoder_select="aandct"
  924. mpeg1video_encoder_select="aandct"
  925. mpeg2video_encoder_select="aandct"
  926. mpeg4_encoder_select="aandct"
  927. mpeg_vdpau_decoder_deps="vdpau"
  928. mpeg1_vdpau_decoder_deps="vdpau"
  929. mpeg_xvmc_decoder_deps="X11_extensions_XvMClib_h"
  930. msmpeg4v1_encoder_select="aandct"
  931. msmpeg4v2_encoder_select="aandct"
  932. msmpeg4v3_encoder_select="aandct"
  933. nellymoser_decoder_select="fft mdct"
  934. nellymoser_encoder_select="fft mdct"
  935. png_decoder_select="zlib"
  936. png_encoder_select="zlib"
  937. qdm2_decoder_select="fft mdct rdft"
  938. rv10_encoder_select="aandct"
  939. rv20_encoder_select="aandct"
  940. rv30_decoder_select="golomb"
  941. rv40_decoder_select="golomb"
  942. shorten_decoder_select="golomb"
  943. sonic_decoder_select="golomb"
  944. sonic_encoder_select="golomb"
  945. sonic_ls_encoder_select="golomb"
  946. svq3_decoder_select="golomb"
  947. svq3_decoder_suggest="zlib"
  948. tiff_decoder_suggest="zlib"
  949. tiff_encoder_suggest="zlib"
  950. tscc_decoder_select="zlib"
  951. vc1_vdpau_decoder_deps="vdpau"
  952. vorbis_decoder_select="fft mdct"
  953. vorbis_encoder_select="fft mdct"
  954. wmav1_decoder_select="fft mdct"
  955. wmav1_encoder_select="fft mdct"
  956. wmav2_decoder_select="fft mdct"
  957. wmav2_encoder_select="fft mdct"
  958. wmv1_encoder_select="aandct"
  959. wmv2_encoder_select="aandct"
  960. wmv3_vdpau_decoder_deps="vdpau"
  961. zlib_decoder_select="zlib"
  962. zlib_encoder_select="zlib"
  963. zmbv_decoder_select="zlib"
  964. zmbv_encoder_select="zlib"
  965. # external libraries
  966. libamr_nb_decoder_deps="libamr_nb"
  967. libamr_nb_encoder_deps="libamr_nb"
  968. libamr_wb_decoder_deps="libamr_wb"
  969. libamr_wb_encoder_deps="libamr_wb"
  970. libdirac_decoder_deps="libdirac !libschroedinger"
  971. libdirac_encoder_deps="libdirac"
  972. libfaac_encoder_deps="libfaac"
  973. libfaad_decoder_deps="libfaad"
  974. libfaadbin_decoder_extralibs='$ldl'
  975. libgsm_decoder_deps="libgsm"
  976. libgsm_encoder_deps="libgsm"
  977. libgsm_ms_decoder_deps="libgsm"
  978. libgsm_ms_encoder_deps="libgsm"
  979. libmp3lame_encoder_deps="libmp3lame"
  980. libopenjpeg_decoder_deps="libopenjpeg"
  981. libschroedinger_decoder_deps="libschroedinger"
  982. libschroedinger_encoder_deps="libschroedinger"
  983. libspeex_decoder_deps="libspeex"
  984. libtheora_encoder_deps="libtheora"
  985. libvorbis_encoder_deps="libvorbis"
  986. libx264_encoder_deps="libx264"
  987. libxvid_encoder_deps="libxvid"
  988. vdpau_deps="vdpau_vdpau_h vdpau_vdpau_x11_h"
  989. # demuxers / muxers
  990. ac3_demuxer_deps="ac3_parser"
  991. alsa_demuxer_deps="alsa_asoundlib_h snd_pcm_htimestamp"
  992. alsa_demuxer_extralibs="-lasound"
  993. alsa_muxer_deps="alsa_asoundlib_h"
  994. alsa_muxer_extralibs="-lasound"
  995. audio_beos_demuxer_deps="audio_beos"
  996. audio_beos_demuxer_extralibs="-lmedia -lbe"
  997. audio_beos_muxer_deps="audio_beos"
  998. audio_beos_muxer_extralibs="-lmedia -lbe"
  999. avisynth_demuxer_deps="avisynth"
  1000. bktr_demuxer_deps_any="dev_bktr_ioctl_bt848_h machine_ioctl_bt848_h dev_video_bktr_ioctl_bt848_h dev_ic_bt8xx_h"
  1001. dirac_demuxer_deps="dirac_parser"
  1002. dv1394_demuxer_deps="dv1394 dv_demuxer"
  1003. libdc1394_demuxer_deps="libdc1394"
  1004. libnut_demuxer_deps="libnut"
  1005. libnut_muxer_deps="libnut"
  1006. matroska_demuxer_suggest="zlib bzlib"
  1007. mov_demuxer_suggest="zlib"
  1008. mp3_demuxer_deps="mpegaudio_parser"
  1009. oss_demuxer_deps_any="soundcard_h sys_soundcard_h"
  1010. oss_muxer_deps_any="soundcard_h sys_soundcard_h"
  1011. redir_demuxer_deps="network"
  1012. rtp_muxer_deps="network rtp_protocol"
  1013. rtsp_demuxer_deps="sdp_demuxer"
  1014. sdp_demuxer_deps="rtp_protocol mpegts_demuxer"
  1015. v4l_demuxer_deps="linux_videodev_h"
  1016. v4l2_demuxer_deps_any="linux_videodev2_h sys_videoio_h"
  1017. vfwcap_demuxer_deps="capCreateCaptureWindow"
  1018. vfwcap_demuxer_extralibs="-lvfw32"
  1019. x11_grab_device_demuxer_deps="x11grab XShmCreateImage"
  1020. x11_grab_device_demuxer_extralibs="-lX11 -lXext"
  1021. # protocols
  1022. gopher_protocol_deps="network"
  1023. http_protocol_deps="network"
  1024. rtp_protocol_deps="udp_protocol"
  1025. tcp_protocol_deps="network"
  1026. udp_protocol_deps="network"
  1027. # filters
  1028. movie_filter_deps="avfilter_lavf"
  1029. # programs
  1030. ffplay_deps="sdl"
  1031. ffserver_deps="ffm_muxer rtp_protocol rtsp_demuxer"
  1032. ffserver_extralibs='$ldl'
  1033. # default parameters
  1034. logfile="config.err"
  1035. # installation paths
  1036. prefix_default="/usr/local"
  1037. bindir_default='${prefix}/bin'
  1038. datadir_default='${prefix}/share/ffmpeg'
  1039. incdir_default='${prefix}/include'
  1040. libdir_default='${prefix}/lib'
  1041. mandir_default='${prefix}/share/man'
  1042. shlibdir_default="$libdir_default"
  1043. # toolchain
  1044. ar="ar"
  1045. cc_default="gcc"
  1046. host_cc_default="gcc"
  1047. ln_s="ln -sf"
  1048. nm_default="nm"
  1049. objformat="elf"
  1050. ranlib="ranlib"
  1051. strip="strip"
  1052. yasmexe="yasm"
  1053. # machine
  1054. arch=`uname -m`
  1055. cpu="generic"
  1056. # OS
  1057. target_os=$(tolower $(uname -s))
  1058. # configurable options
  1059. enable debug
  1060. enable ffmpeg
  1061. enable ffplay
  1062. enable ffserver
  1063. enable ipv6
  1064. enable mpegaudio_hp
  1065. enable network
  1066. enable optimizations
  1067. enable protocols
  1068. enable static
  1069. enable stripping
  1070. # build settings
  1071. add_cflags -D_ISOC99_SOURCE -D_POSIX_C_SOURCE=200112
  1072. SHFLAGS='-shared -Wl,-soname,$$(@F)'
  1073. FFSERVERLDFLAGS=-Wl,-E
  1074. LIBPREF="lib"
  1075. LIBSUF=".a"
  1076. FULLNAME='$(NAME)$(BUILDSUF)'
  1077. LIBNAME='$(LIBPREF)$(FULLNAME)$(LIBSUF)'
  1078. SLIBPREF="lib"
  1079. SLIBSUF=".so"
  1080. SLIBNAME='$(SLIBPREF)$(FULLNAME)$(SLIBSUF)'
  1081. SLIBNAME_WITH_VERSION='$(SLIBNAME).$(LIBVERSION)'
  1082. SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)'
  1083. LIB_INSTALL_EXTRA_CMD='$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
  1084. host_cflags='-O3 -g -Wall'
  1085. host_libs='-lm'
  1086. target_path='.'
  1087. # gcc stupidly only outputs the basename of targets with -MM, but we need the
  1088. # full relative path for objects in subdirectories for non-recursive Make.
  1089. DEPEND_CMD='$(CC) $(CFLAGS) -MM $< | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(*F)\\.o,$(@D)/$(*F).o,"'
  1090. # find source path
  1091. source_path="`dirname \"$0\"`"
  1092. enable source_path_used
  1093. if test -z "$source_path" -o "$source_path" = "." ; then
  1094. source_path="`pwd`"
  1095. disable source_path_used
  1096. else
  1097. source_path="`cd \"$source_path\"; pwd`"
  1098. echo "$source_path" | grep -q '[[:blank:]]' &&
  1099. die "Out of tree builds are impossible with whitespace in source path."
  1100. fi
  1101. FFMPEG_CONFIGURATION="$@"
  1102. find_things(){
  1103. thing=$1
  1104. pattern=$2
  1105. file=$source_path/$3
  1106. sed -n "s/^[^#]*$pattern.*([^,]*, *\([^,]*\)\(,.*\)*).*/\1_$thing/p" "$file"
  1107. }
  1108. ENCODER_LIST=$(find_things encoder ENC libavcodec/allcodecs.c)
  1109. DECODER_LIST=$(find_things decoder DEC libavcodec/allcodecs.c)
  1110. PARSER_LIST=$(find_things parser PARSER libavcodec/allcodecs.c)
  1111. BSF_LIST=$(find_things bsf BSF libavcodec/allcodecs.c)
  1112. MUXER_LIST=$(find_things muxer _MUX libavformat/allformats.c)
  1113. DEMUXER_LIST=$(find_things demuxer DEMUX libavformat/allformats.c)
  1114. OUTDEV_LIST=$(find_things muxer _MUX libavdevice/alldevices.c)
  1115. INDEV_LIST=$(find_things demuxer DEMUX libavdevice/alldevices.c)
  1116. PROTOCOL_LIST=$(find_things protocol PROTOCOL libavformat/allformats.c)
  1117. FILTER_LIST=$(find_things filter FILTER libavfilter/allfilters.c)
  1118. enable $ARCH_EXT_LIST \
  1119. $DECODER_LIST \
  1120. $ENCODER_LIST \
  1121. $PARSER_LIST \
  1122. $BSF_LIST \
  1123. $DEMUXER_LIST \
  1124. $MUXER_LIST \
  1125. $FILTER_LIST \
  1126. $PROTOCOL_LIST \
  1127. $INDEV_LIST \
  1128. $OUTDEV_LIST \
  1129. die_unknown(){
  1130. echo "Unknown option \"$1\"."
  1131. echo "See $0 --help for available options."
  1132. exit 1
  1133. }
  1134. show_list() {
  1135. suffix=_$1
  1136. shift
  1137. echo $* | sed s/$suffix//g | tr ' ' '\n' | sort
  1138. exit 0
  1139. }
  1140. for opt do
  1141. optval="${opt#*=}"
  1142. case "$opt" in
  1143. --extra-cflags=*) add_cflags $optval
  1144. ;;
  1145. --extra-ldflags=*) add_ldflags $optval
  1146. ;;
  1147. --extra-libs=*) add_extralibs $optval
  1148. ;;
  1149. --disable-devices) disable $INDEV_LIST $OUTDEV_LIST
  1150. ;;
  1151. --enable-debug=*) debuglevel="$optval"
  1152. ;;
  1153. --enable-*=*|--disable-*=*)
  1154. eval `echo "$opt" | sed 's/=/-/;s/--/action=/;s/-/ thing=/;s/-/ name=/'`
  1155. case "$thing" in
  1156. encoder|decoder|muxer|demuxer|parser|bsf|protocol|filter) $action ${optval}_${thing} ;;
  1157. *) die_unknown "$opt" ;;
  1158. esac
  1159. ;;
  1160. --enable-?*|--disable-?*)
  1161. eval `echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g'`
  1162. if is_in $option $COMPONENT_LIST; then
  1163. eval $action \$$(toupper ${option%s})_LIST
  1164. elif is_in $option $CMDLINE_SELECT; then
  1165. $action $option
  1166. else
  1167. die_unknown $opt
  1168. fi
  1169. ;;
  1170. --list-*)
  1171. NAME="${opt#--list-}"
  1172. is_in $NAME $COMPONENT_LIST || die_unknown $opt
  1173. NAME=${NAME%s}
  1174. eval show_list $NAME \$$(toupper $NAME)_LIST
  1175. ;;
  1176. --help|-h) show_help
  1177. ;;
  1178. *)
  1179. optname="${opt%%=*}"
  1180. optname="${optname#--}"
  1181. optname=$(echo "$optname" | sed 's/-/_/g')
  1182. is_in $optname $CMDLINE_SET || die_unknown $opt
  1183. eval $optname='$optval'
  1184. ;;
  1185. esac
  1186. done
  1187. disabled logging && logfile=/dev/null
  1188. echo "# $0 $@" > $logfile
  1189. set >> $logfile
  1190. test -n "$cross_prefix" && enable cross_compile
  1191. ar="${cross_prefix}${ar}"
  1192. cc_default="${cross_prefix}${cc_default}"
  1193. nm_default="${cross_prefix}${nm_default}"
  1194. ranlib="${cross_prefix}${ranlib}"
  1195. strip="${cross_prefix}${strip}"
  1196. sysinclude_default="${sysroot}/usr/include"
  1197. set_default cc nm sysinclude
  1198. enabled cross_compile || host_cc_default=$cc
  1199. set_default host_cc
  1200. case $target_os in
  1201. mingw32*|cygwin*|*-dos|freedos|opendos|os/2*) EXESUF=.exe ;;
  1202. esac
  1203. # set temporary file name
  1204. : ${TMPDIR:=$TEMPDIR}
  1205. : ${TMPDIR:=$TMP}
  1206. : ${TMPDIR:=/tmp}
  1207. if ! check_cmd type mktemp; then
  1208. # simple replacement for missing mktemp
  1209. # NOT SAFE FOR GENERAL USE
  1210. mktemp(){
  1211. echo "${2%XXX*}.${HOSTNAME}.${UID}.$$"
  1212. }
  1213. fi
  1214. tmpfile(){
  1215. tmp=$(mktemp -u "${TMPDIR}/ffconf.XXXXXXXX")$2 &&
  1216. (set -C; exec > $tmp) 2>/dev/null ||
  1217. die "Unable to create temoporary file in $TMPDIR."
  1218. append TMPFILES $tmp
  1219. eval $1=$tmp
  1220. }
  1221. trap 'rm -f -- $TMPFILES' EXIT
  1222. trap exit HUP INT TERM
  1223. tmpfile TMPC .c
  1224. tmpfile TMPE $EXESUF
  1225. tmpfile TMPH .h
  1226. tmpfile TMPO .o
  1227. tmpfile TMPS .S
  1228. tmpfile TMPSH .sh
  1229. unset -f mktemp
  1230. # make sure we can execute files in $TMPDIR
  1231. cat > $TMPSH 2>> $logfile <<EOF
  1232. #! /bin/sh
  1233. EOF
  1234. chmod +x $TMPSH >> $logfile 2>&1
  1235. if ! $TMPSH >> $logfile 2>&1; then
  1236. cat <<EOF
  1237. Unable to create and execute files in $TMPDIR. Set the TMPDIR environment
  1238. variable to another directory and make sure that it is not mounted noexec.
  1239. EOF
  1240. die "Sanity test failed."
  1241. fi
  1242. if $cc --version 2>/dev/null | grep -qi gcc; then
  1243. cc_type=gcc
  1244. elif $cc --version 2>/dev/null | grep -q Intel; then
  1245. cc_type=icc
  1246. elif $cc -v 2>&1 | grep -q xlc; then
  1247. cc_type=xlc
  1248. elif $cc -V 2>/dev/null | grep -q Compaq; then
  1249. cc_type=ccc
  1250. DEPEND_CMD='$(CC) $(CFLAGS) -M $< | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(*F)\\.o,$(@D)/$(*F).o,"'
  1251. debuglevel=3
  1252. add_ldflags -Wl,-z,now # calls to libots crash without this
  1253. fi
  1254. test -n "$cc_type" && enable $cc_type || echolog "Unknown C compiler $cc"
  1255. if test -n "$sysroot"; then
  1256. case "$cc_type" in
  1257. gcc)
  1258. add_cflags --sysroot="$sysroot"
  1259. add_ldflags --sysroot="$sysroot"
  1260. ;;
  1261. esac
  1262. fi
  1263. # compiler sanity check
  1264. check_exec <<EOF
  1265. int main(void){ return 0; }
  1266. EOF
  1267. if test "$?" != 0; then
  1268. echo "$cc is unable to create an executable file."
  1269. if test -z "$cross_prefix" && ! enabled cross_compile ; then
  1270. echo "If $cc is a cross-compiler, use the --enable-cross-compile option."
  1271. echo "Only do this if you know what cross compiling means."
  1272. fi
  1273. die "C compiler test failed."
  1274. fi
  1275. check_cflags -std=c99
  1276. check_cc -D_FILE_OFFSET_BITS=64 <<EOF && add_cflags -D_FILE_OFFSET_BITS=64
  1277. #include <stdlib.h>
  1278. EOF
  1279. check_cc -D_LARGEFILE_SOURCE <<EOF && add_cflags -D_LARGEFILE_SOURCE
  1280. #include <stdlib.h>
  1281. EOF
  1282. case "$arch" in
  1283. alpha)
  1284. arch="alpha"
  1285. enable fast_64bit
  1286. check_cflags -mieee
  1287. ;;
  1288. arm|armv[4567]*l)
  1289. arch="arm"
  1290. ;;
  1291. avr32)
  1292. ;;
  1293. bfin)
  1294. arch="bfin"
  1295. ;;
  1296. ia64)
  1297. arch="ia64"
  1298. enable fast_64bit
  1299. ;;
  1300. m68k)
  1301. arch="m68k"
  1302. ;;
  1303. mips|mipsel|IP*)
  1304. arch="mips"
  1305. ;;
  1306. mips64)
  1307. arch="mips"
  1308. enable fast_64bit
  1309. ;;
  1310. parisc|hppa)
  1311. arch="parisc"
  1312. ;;
  1313. parisc64|hppa64)
  1314. arch="parisc"
  1315. enable fast_64bit
  1316. ;;
  1317. "Power Macintosh"|ppc|powerpc)
  1318. arch="ppc"
  1319. enable fast_unaligned
  1320. ;;
  1321. ppc64)
  1322. arch="ppc"
  1323. enable fast_64bit
  1324. enable fast_unaligned
  1325. ;;
  1326. s390|s390x)
  1327. arch="s390"
  1328. ;;
  1329. sh4|sh)
  1330. arch="sh4"
  1331. ;;
  1332. sparc)
  1333. arch="sparc"
  1334. ;;
  1335. sun4u|sparc64)
  1336. arch="sparc"
  1337. subarch="sparc64"
  1338. enable fast_64bit
  1339. ;;
  1340. i386|i486|i586|i686|i86pc|BePC)
  1341. arch="x86"
  1342. subarch="x86_32"
  1343. enable fast_unaligned
  1344. ;;
  1345. x86_64|amd64)
  1346. arch="x86"
  1347. subarch="x86_32"
  1348. enable cmov
  1349. enable fast_cmov
  1350. enable fast_unaligned
  1351. check_cc <<EOF && enable fast_64bit && subarch="x86_64"
  1352. int test[sizeof(char*) - 7];
  1353. EOF
  1354. ;;
  1355. *)
  1356. arch="unknown"
  1357. ;;
  1358. esac
  1359. enable $arch $subarch
  1360. # OS specific
  1361. case $target_os in
  1362. beos|haiku|zeta)
  1363. prefix_default="$HOME/config"
  1364. # helps building libavcodec
  1365. add_cflags -DPIC -fomit-frame-pointer
  1366. # 3 gcc releases known for BeOS, each with ugly bugs
  1367. gcc_version="`$cc -v 2>&1 | grep version | cut -d ' ' -f3-`"
  1368. case "$gcc_version" in
  1369. 2.9-beos-991026*|2.9-beos-000224*) echo "R5/GG gcc"
  1370. disable mmx
  1371. ;;
  1372. *20010315*) echo "BeBits gcc"
  1373. add_cflags -fno-expensive-optimizations
  1374. ;;
  1375. esac
  1376. SHFLAGS=-nostart
  1377. # enable BeOS things
  1378. enable audio_beos
  1379. # no need for libm, but the inet stuff
  1380. # Check for BONE
  1381. # XXX: actually should check for NOT net_server
  1382. if echo $BEINCLUDES | grep -q 'headers/be/bone'; then
  1383. network_extralibs="-lbind -lsocket"
  1384. else
  1385. enable beos_netserver
  1386. network_extralibs="-lnet"
  1387. fi ;;
  1388. sunos)
  1389. FFSERVERLDFLAGS=""
  1390. SHFLAGS='-shared -Wl,-h,$$(@F)'
  1391. network_extralibs="-lsocket -lnsl"
  1392. add_cflags -D__EXTENSIONS__
  1393. ;;
  1394. netbsd)
  1395. oss_demuxer_extralibs="-lossaudio"
  1396. oss_muxer_extralibs="-lossaudio"
  1397. ;;
  1398. openbsd)
  1399. disable need_memalign
  1400. LIBOBJFLAGS='$(PIC)'
  1401. SHFLAGS='-shared'
  1402. oss_demuxer_extralibs="-lossaudio"
  1403. oss_muxer_extralibs="-lossaudio"
  1404. ;;
  1405. freebsd)
  1406. disable need_memalign
  1407. ;;
  1408. bsd/os)
  1409. osextralibs="-lpoll -lgnugetopt"
  1410. strip="strip -d"
  1411. ;;
  1412. darwin)
  1413. disable need_memalign
  1414. SHFLAGS='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR) -Wl,-read_only_relocs,suppress'
  1415. strip="strip -x"
  1416. FFLDFLAGS="-Wl,-dynamic,-search_paths_first"
  1417. SLIBSUF=".dylib"
  1418. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)'
  1419. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)'
  1420. FFSERVERLDFLAGS=-Wl,-bind_at_load
  1421. objformat="macho"
  1422. enabled x86_64 && objformat="macho64"
  1423. ;;
  1424. mingw32*)
  1425. target_os=mingw32
  1426. LIBTARGET=i386
  1427. if enabled x86_64; then
  1428. disable need_memalign
  1429. LIBTARGET=x64
  1430. fi
  1431. shlibdir_default="$bindir_default"
  1432. disable ffserver
  1433. SLIBPREF=""
  1434. SLIBSUF=".dll"
  1435. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  1436. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  1437. SLIB_EXTRA_CMD='-lib /machine:$(LIBTARGET) /def:$$(@:$(SLIBSUF)=.def) /out:$(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib)'
  1438. SLIB_INSTALL_EXTRA_CMD='-install -m 644 $(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib) "$(SHLIBDIR)/$(SLIBNAME:$(SLIBSUF)=.lib)"; \
  1439. install -m 644 $(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib) "$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib)"'
  1440. SLIB_UNINSTALL_EXTRA_CMD='rm -f "$(SHLIBDIR)/$(SLIBNAME:$(SLIBSUF)=.lib)"'
  1441. SHFLAGS='-shared -Wl,--output-def,$$(@:$(SLIBSUF)=.def) -Wl,--enable-runtime-pseudo-reloc -Wl,--enable-auto-image-base'
  1442. objformat="win32"
  1443. enable dos_paths
  1444. if ! enabled x86_64; then
  1445. check_cpp_condition _mingw.h "(__MINGW32_MAJOR_VERSION > 3) || (__MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION >= 15)" ||
  1446. die "ERROR: MinGW runtime version must be >= 3.15."
  1447. enabled_any avisynth vfwcap_demuxer &&
  1448. { check_cpp_condition w32api.h "(__W32API_MAJOR_VERSION > 3) || (__W32API_MAJOR_VERSION == 3 && __W32API_MINOR_VERSION >= 13)" ||
  1449. die "ERROR: avisynth and vfwcap_demuxer require w32api version 3.13 or later."; }
  1450. fi
  1451. ;;
  1452. cygwin*)
  1453. target_os=cygwin
  1454. shlibdir_default="$bindir_default"
  1455. SLIBPREF="cyg"
  1456. SLIBSUF=".dll"
  1457. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  1458. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  1459. SHFLAGS='-shared -Wl,--enable-auto-image-base'
  1460. objformat="win32"
  1461. enable dos_paths
  1462. ;;
  1463. *-dos|freedos|opendos)
  1464. disable ffplay ffserver
  1465. disable $INDEV_LIST $OUTDEV_LIST
  1466. network_extralibs="-lsocket"
  1467. objformat="coff"
  1468. enable dos_paths
  1469. ;;
  1470. linux)
  1471. enable dv1394
  1472. ;;
  1473. irix*)
  1474. target_os=irix
  1475. ranlib="echo ignoring ranlib"
  1476. ;;
  1477. os/2*)
  1478. strip="lxlite"
  1479. ln_s="cp -f"
  1480. FFLDFLAGS="-Zomf -Zbin-files -Zargs-wild -Zmap"
  1481. SHFLAGS='$(SUBDIR)$(NAME).def -Zdll -Zomf'
  1482. FFSERVERLDFLAGS=""
  1483. LIBSUF="_s.a"
  1484. SLIBPREF=""
  1485. SLIBSUF=".dll"
  1486. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
  1487. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(shell echo $(NAME) | cut -c1-6)$(LIBMAJOR)$(SLIBSUF)'
  1488. SLIB_CREATE_DEF_CMD='echo LIBRARY $(SLIBNAME_WITH_MAJOR) INITINSTANCE TERMINSTANCE > $(SUBDIR)$(NAME).def; \
  1489. echo PROTMODE >> $(SUBDIR)$(NAME).def; \
  1490. echo CODE PRELOAD MOVEABLE DISCARDABLE >> $(SUBDIR)$(NAME).def; \
  1491. echo DATA PRELOAD MOVEABLE MULTIPLE NONSHARED >> $(SUBDIR)$(NAME).def; \
  1492. echo EXPORTS >> $(SUBDIR)$(NAME).def; \
  1493. emxexp -o $(OBJS) >> $(SUBDIR)$(NAME).def'
  1494. SLIB_EXTRA_CMD='emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(NAME).def; \
  1495. emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib $(SUBDIR)$(NAME).def;'
  1496. SLIB_INSTALL_EXTRA_CMD='install -m 644 $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib "$(LIBDIR)"'
  1497. SLIB_UNINSTALL_EXTRA_CMD='rm -f "$(LIBDIR)"/$(LIBPREF)$(NAME)_dll.a "$(LIBDIR)"/$(LIBPREF)$(NAME)_dll.lib'
  1498. enable dos_paths
  1499. ;;
  1500. *)
  1501. die "Unknown OS '$target_os'."
  1502. ;;
  1503. esac
  1504. set_default $PATHS_LIST
  1505. add_extralibs $osextralibs
  1506. # Combine FFLDFLAGS and the LDFLAGS environment variable.
  1507. LDFLAGS="$FFLDFLAGS $LDFLAGS"
  1508. # we need to build at least one lib type
  1509. if ! enabled_any static shared; then
  1510. cat <<EOF
  1511. At least one library type must be built.
  1512. Specify --enable-static to build the static libraries or --enable-shared to
  1513. build the shared libraries as well. To only build the shared libraries specify
  1514. --disable-static in addition to --enable-shared.
  1515. EOF
  1516. exit 1;
  1517. fi
  1518. disabled static && LIBNAME=""
  1519. if enabled_any libfaad libfaadbin ; then
  1520. if check_header faad.h; then
  1521. check_cc <<EOF
  1522. #include <faad.h>
  1523. #ifndef FAAD2_VERSION
  1524. ok faad1
  1525. #endif
  1526. int main(void) { return 0; }
  1527. EOF
  1528. test $? = 0 && enable libfaad2
  1529. else
  1530. die "FAAD test failed."
  1531. fi
  1532. fi
  1533. if ! enabled gpl; then
  1534. die_gpl_disabled(){
  1535. name=$1
  1536. shift
  1537. enabled_any $@ && die "$name is under GPL and --enable-gpl is not specified."
  1538. }
  1539. die_gpl_disabled "The Postprocessing code" postproc
  1540. die_gpl_disabled "libx264" libx264
  1541. die_gpl_disabled "libxvidcore" libxvid
  1542. die_gpl_disabled "FAAD2" libfaad2
  1543. die_gpl_disabled "The X11 grabber" x11grab
  1544. fi
  1545. if ! enabled nonfree && enabled_any libamr_nb libamr_wb; then
  1546. die "libamr is nonfree and --enable-nonfree is not specified."
  1547. fi
  1548. check_deps $ARCH_EXT_LIST
  1549. test -z "$need_memalign" && need_memalign="$mmx"
  1550. #Darwin CC versions
  1551. if test $target_os = darwin; then
  1552. if enabled xlc; then
  1553. add_cflags -qpdf2 -qlanglvl=extc99 -qmaxmem=-1 -qarch=auto -qtune=auto
  1554. else
  1555. add_cflags -pipe
  1556. check_cflags -force_cpusubtype_ALL
  1557. check_cflags -Wno-sign-compare
  1558. enabled shared || check_cflags -mdynamic-no-pic
  1559. fi
  1560. fi
  1561. disabled optimizations || check_cflags -fomit-frame-pointer
  1562. # Add processor-specific flags
  1563. if test $cpu != "generic"; then
  1564. warn_altivec(){
  1565. $1 altivec && echo "WARNING: Tuning for $2 but AltiVec $1.";
  1566. }
  1567. case $cpu in
  1568. 601|ppc601|PowerPC601)
  1569. add_cflags -mcpu=601
  1570. warn_altivec enabled PPC601
  1571. ;;
  1572. 603*|ppc603*|PowerPC603*)
  1573. add_cflags -mcpu=603
  1574. warn_altivec enabled PPC603
  1575. ;;
  1576. 604*|ppc604*|PowerPC604*)
  1577. add_cflags -mcpu=604
  1578. warn_altivec enabled PPC604
  1579. ;;
  1580. G3|g3|75*|ppc75*|PowerPC75*)
  1581. add_cflags -mcpu=750 -mpowerpc-gfxopt
  1582. warn_altivec enabled PPC75x
  1583. ;;
  1584. G4|g4|745*|ppc745*|PowerPC745*)
  1585. add_cflags -mcpu=7450 -mpowerpc-gfxopt
  1586. warn_altivec disabled PPC745x
  1587. ;;
  1588. 74*|ppc74*|PowerPC74*)
  1589. add_cflags -mcpu=7400 -mpowerpc-gfxopt
  1590. warn_altivec disabled PPC74xx
  1591. ;;
  1592. G5|g5|970|ppc970|PowerPC970|power4*|Power4*)
  1593. add_cflags -mcpu=970 -mpowerpc-gfxopt -mpowerpc64
  1594. warn_altivec disabled PPC970
  1595. enable ppc64
  1596. ;;
  1597. Cell|CELL|cell)
  1598. add_cflags -mcpu=cell
  1599. warn_altivec disabled Cell
  1600. enable ppc64
  1601. ;;
  1602. # targets that do NOT support conditional mov (cmov)
  1603. i[345]86|pentium|pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3)
  1604. add_cflags -march=$cpu
  1605. disable cmov
  1606. ;;
  1607. # targets that do support conditional mov (cmov)
  1608. i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64|k8|opteron|athlon-fx|core2)
  1609. add_cflags -march=$cpu
  1610. enable cmov
  1611. enable fast_cmov
  1612. ;;
  1613. # targets that do support conditional mov but on which it's slow
  1614. pentium4|pentium4m|prescott|nocona)
  1615. add_cflags -march=$cpu
  1616. enable cmov
  1617. disable fast_cmov
  1618. ;;
  1619. sparc64)
  1620. add_cflags -mcpu=v9
  1621. ;;
  1622. arm11*|cortex*)
  1623. add_cflags -mcpu=$cpu
  1624. enable fast_unaligned
  1625. ;;
  1626. armv*)
  1627. add_cflags -march=$cpu
  1628. ;;
  1629. arm*)
  1630. add_cflags -mcpu=$cpu
  1631. ;;
  1632. ev4|ev45|ev5|ev56|pca56|ev6|ev67)
  1633. enabled ccc && add_cflags -arch $cpu || add_cflags -mcpu=$cpu
  1634. ;;
  1635. *)
  1636. echo "WARNING: Unknown CPU \"$cpu\", ignored."
  1637. ;;
  1638. esac
  1639. fi
  1640. check_cc <<EOF || die "Symbol mangling check failed."
  1641. int ff_extern;
  1642. EOF
  1643. sym=$($nm -P -g $TMPO | grep ff_extern)
  1644. extern_prefix=${sym%%ff_extern*}
  1645. check_asm inline_asm '""'
  1646. if enabled x86; then
  1647. # check whether EBP is available on x86
  1648. # As 'i' is stored on the stack, this program will crash
  1649. # if the base pointer is used to access it because the
  1650. # base pointer is cleared in the inline assembly code.
  1651. check_exec_crash <<EOF && enable ebp_available
  1652. volatile int i=0;
  1653. __asm__ volatile (
  1654. "xorl %%ebp, %%ebp"
  1655. ::: "%ebp");
  1656. return i;
  1657. EOF
  1658. # check wether EBX is available on x86
  1659. check_asm ebx_available '"":::"%ebx"'
  1660. # check whether more than 10 operands are supported
  1661. check_cc <<EOF && enable ten_operands
  1662. int main(void) {
  1663. int x=0;
  1664. __asm__ volatile(
  1665. ""
  1666. :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
  1667. );
  1668. return 0;
  1669. }
  1670. EOF
  1671. # check whether binutils is new enough to compile SSSE3/MMX2
  1672. enabled ssse3 && check_asm ssse3 '"pabsw %xmm0, %xmm0"'
  1673. enabled mmx2 && check_asm mmx2 '"movss %xmm0, %xmm0"'
  1674. check_asm bswap '"bswap %%eax" ::: "%eax"'
  1675. YASMFLAGS="-f $objformat -DARCH_$(toupper $subarch)"
  1676. enabled x86_64 && append YASMFLAGS "-m amd64"
  1677. enabled_all x86_64 shared && append YASMFLAGS "-DPIC"
  1678. case "$objformat" in
  1679. elf) enabled debug && append YASMFLAGS "-g dwarf2" ;;
  1680. macho64) append YASMFLAGS "-DPIC -DPREFIX" ;;
  1681. *) append YASMFLAGS "-DPREFIX" ;;
  1682. esac
  1683. disabled yasm || { check_yasm "pabsw xmm0, xmm0" && enable yasm; }
  1684. fi
  1685. # check for assembler specific support
  1686. enabled ppc && check_asm dcbzl '"dcbzl 0, 1"'
  1687. enabled ppc && check_asm ppc4xx '"maclhw r10, r11, r12"'
  1688. # check for SIMD availability
  1689. # AltiVec flags: The FSF version of GCC differs from the Apple version
  1690. if enabled altivec; then
  1691. check_cflags -maltivec -mabi=altivec &&
  1692. { check_header altivec.h && inc_altivec_h="#include <altivec.h>" ; } ||
  1693. check_cflags -faltivec
  1694. # check if our compiler supports Motorola AltiVec C API
  1695. check_cc <<EOF || disable altivec
  1696. $inc_altivec_h
  1697. int main(void) {
  1698. vector signed int v1, v2, v3;
  1699. v1 = vec_add(v2,v3);
  1700. return 0;
  1701. }
  1702. EOF
  1703. # check if our compiler supports braces for vector declarations
  1704. check_cc <<EOF || die "You need a compiler that supports {} in AltiVec vector declarations."
  1705. $inc_altivec_h
  1706. int main (void) { (vector int) {1}; return 0; }
  1707. EOF
  1708. fi
  1709. # We have to check if pld is a nop and disable it.
  1710. enabled arm && check_asm pld '"pld [r0]"'
  1711. enabled armv5te && check_asm armv5te '"qadd r0, r0, r0"'
  1712. enabled armv6 && check_asm armv6 '"sadd16 r0, r0, r0"'
  1713. enabled armv6t2 && check_asm armv6t2 '"movt r0, #0"'
  1714. enabled armvfp && check_asm armvfp '"fadds s0, s0, s0"'
  1715. enabled iwmmxt && check_asm iwmmxt '"wunpckelub wr6, wr4"'
  1716. enabled mmi && check_asm mmi '"lq $2, 0($2)"'
  1717. enabled neon && check_asm neon '"vadd.i16 q0, q0, q0"'
  1718. enabled vis && check_asm vis '"pdist %f0, %f0, %f0"' -mcpu=ultrasparc
  1719. enabled vis && add_cflags -mcpu=ultrasparc -mtune=ultrasparc
  1720. # ---
  1721. # big/little-endian test
  1722. check_cc <<EOF || die "endian test failed"
  1723. unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
  1724. EOF
  1725. od -A n -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian
  1726. # ---
  1727. # check availability of some header files
  1728. if check_func dlopen; then
  1729. ldl=
  1730. elif check_func dlopen -ldl; then
  1731. ldl=-ldl
  1732. fi
  1733. # Solaris has nanosleep in -lrt, OpenSolaris no longer needs that
  1734. check_func nanosleep || { check_func nanosleep -lrt && add_extralibs -lrt; }
  1735. check_func fork
  1736. check_func gethrtime
  1737. check_func getrusage
  1738. check_func inet_aton $network_extralibs
  1739. check_func memalign
  1740. check_func mkstemp
  1741. check_func posix_memalign
  1742. check_func_headers io.h setmode
  1743. check_func_headers windows.h GetProcessTimes
  1744. check_header conio.h
  1745. check_header dlfcn.h
  1746. check_header malloc.h
  1747. check_header poll.h
  1748. check_header sys/mman.h
  1749. check_header sys/resource.h
  1750. check_header sys/select.h
  1751. check_header termios.h
  1752. check_header vdpau/vdpau.h
  1753. check_header vdpau/vdpau_x11.h
  1754. check_header X11/extensions/XvMClib.h
  1755. if ! enabled_any memalign memalign_hack posix_memalign && enabled need_memalign ; then
  1756. die "Error, no aligned memory allocator but SSE enabled, disable it or use --enable-memalign-hack."
  1757. fi
  1758. disabled zlib || check_lib zlib.h zlibVersion -lz || disable zlib
  1759. disabled bzlib || check_lib2 bzlib.h BZ2_bzlibVersion -lbz2 || disable bzlib
  1760. # check for some common methods of building with pthread support
  1761. # do this before the optional library checks as some of them require pthreads
  1762. if enabled pthreads; then
  1763. if check_func pthread_create; then
  1764. :
  1765. elif check_func pthread_create -pthread; then
  1766. add_cflags -pthread
  1767. add_extralibs -pthread
  1768. elif check_func pthread_create -pthreads; then
  1769. add_cflags -pthreads
  1770. add_extralibs -pthreads
  1771. elif check_func pthread_create -lpthreadGC2; then
  1772. add_extralibs -lpthreadGC2
  1773. elif ! check_lib pthread.h pthread_create -lpthread; then
  1774. die "ERROR: can't find pthreads library"
  1775. fi
  1776. fi
  1777. for thread in $THREADS_LIST; do
  1778. if enabled $thread; then
  1779. test -n "$thread_type" &&
  1780. die "ERROR: Only one thread type must be selected." ||
  1781. thread_type="$thread"
  1782. fi
  1783. done
  1784. check_lib math.h sin -lm
  1785. # test for C99 functions in math.h
  1786. for func in llrint lrint lrintf round roundf truncf; do
  1787. check_exec <<EOF && enable $func || disable $func
  1788. #include <math.h>
  1789. int main(void) { return ($func(3.999f) > 0)?0:1; }
  1790. EOF
  1791. done
  1792. # these are off by default, so fail if requested and not available
  1793. enabled avisynth && require2 vfw32 "windows.h vfw.h" AVIFileInit -lvfw32
  1794. enabled libamr_nb && require libamrnb amrnb/interf_dec.h Speech_Decode_Frame_init -lamrnb -lm
  1795. enabled libamr_wb && require libamrwb amrwb/dec_if.h D_IF_init -lamrwb -lm
  1796. enabled libdirac && add_cflags $(pkg-config --cflags dirac) &&
  1797. require libdirac libdirac_decoder/dirac_parser.h dirac_decoder_init -ldirac_decoder &&
  1798. require libdirac libdirac_encoder/dirac_encoder.h dirac_encoder_init -ldirac_encoder
  1799. enabled libfaac && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaac
  1800. enabled libfaad && require2 libfaad faad.h faacDecOpen -lfaad
  1801. enabled libgsm && require libgsm gsm.h gsm_create -lgsm
  1802. enabled libmp3lame && require libmp3lame lame/lame.h lame_init -lmp3lame -lm
  1803. enabled libnut && require libnut libnut.h nut_demuxer_init -lnut
  1804. enabled libopenjpeg && require libopenjpeg openjpeg.h opj_version -lopenjpeg
  1805. enabled libschroedinger && add_cflags $(pkg-config --cflags schroedinger-1.0) &&
  1806. require libschroedinger schroedinger/schro.h schro_init $(pkg-config --libs schroedinger-1.0)
  1807. enabled libspeex && require libspeex speex/speex.h speex_decoder_init -lspeex
  1808. enabled libtheora && require libtheora theora/theora.h theora_info_init -ltheora -logg
  1809. enabled libvorbis && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbisenc -lvorbis -logg
  1810. enabled libx264 && require libx264 x264.h x264_encoder_open -lx264 -lm &&
  1811. { check_cpp_condition x264.h "X264_BUILD >= 65" ||
  1812. die "ERROR: libx264 version must be >= 0.65."; }
  1813. enabled libxvid && require libxvid xvid.h xvid_global -lxvidcore
  1814. enabled mlib && require mediaLib mlib_types.h mlib_VectorSub_S16_U8_Mod -lmlib
  1815. # libdc1394 check
  1816. if enabled libdc1394; then
  1817. { check_lib dc1394/dc1394.h dc1394_new -ldc1394 -lraw1394 &&
  1818. enable libdc1394_2; } ||
  1819. { check_lib libdc1394/dc1394_control.h dc1394_create_handle -ldc1394_control -lraw1394 &&
  1820. enable libdc1394_1; } ||
  1821. die "ERROR: No version of libdc1394 found "
  1822. fi
  1823. _restrict=
  1824. for restrict_keyword in restrict __restrict__ __restrict; do
  1825. check_cc <<EOF && _restrict=$restrict_keyword && break
  1826. void foo(char * $restrict_keyword p);
  1827. EOF
  1828. done
  1829. ##########################################
  1830. # SDL check
  1831. disable sdl_too_old
  1832. disable sdl
  1833. SDL_CONFIG="${cross_prefix}sdl-config"
  1834. if "${SDL_CONFIG}" --version > /dev/null 2>&1; then
  1835. sdl_cflags=`"${SDL_CONFIG}" --cflags`
  1836. temp_cflags $sdl_cflags
  1837. temp_extralibs `"${SDL_CONFIG}" --libs`
  1838. if check_lib2 SDL.h SDL_Init; then
  1839. _sdlversion=`"${SDL_CONFIG}" --version | sed 's/[^0-9]//g'`
  1840. if test "$_sdlversion" -lt 121 ; then
  1841. enable sdl_too_old
  1842. else
  1843. enable sdl
  1844. check_cc $sdl_cflags <<EOF && enable sdl_video_size
  1845. #include <SDL.h>
  1846. int main(int argc, char **argv){
  1847. const SDL_VideoInfo *vi = SDL_GetVideoInfo();
  1848. int w = vi->current_w;
  1849. return 0;
  1850. }
  1851. EOF
  1852. fi
  1853. fi
  1854. restore_flags
  1855. fi
  1856. texi2html -version > /dev/null 2>&1 && enable texi2html || disable texi2html
  1857. ##########################################
  1858. # Network check
  1859. if enabled network; then
  1860. check_type "sys/types.h sys/socket.h" socklen_t
  1861. # Prefer arpa/inet.h over winsock2
  1862. if check_header arpa/inet.h ; then
  1863. check_func closesocket
  1864. elif check_header winsock2.h ; then
  1865. network_extralibs="-lws2_32"
  1866. check_type ws2tcpip.h socklen_t
  1867. check_func_headers winsock2.h closesocket
  1868. fi
  1869. fi
  1870. ##########################################
  1871. # IPv6 check
  1872. enabled network && enabled ipv6 && check_ld <<EOF && enable ipv6 || disable ipv6
  1873. #include <sys/types.h>
  1874. #include <sys/socket.h>
  1875. #include <netinet/in.h>
  1876. #include <netdb.h>
  1877. int main(void) {
  1878. struct sockaddr_storage saddr;
  1879. struct ipv6_mreq mreq6;
  1880. getaddrinfo(0,0,0,0);
  1881. getnameinfo(0,0,0,0,0,0,0);
  1882. IN6_IS_ADDR_MULTICAST((const struct in6_addr *)0);
  1883. }
  1884. EOF
  1885. check_header linux/videodev.h
  1886. check_header linux/videodev2.h
  1887. check_header sys/videoio.h
  1888. check_func_headers "windows.h vfw.h" capCreateCaptureWindow -lvfw32
  1889. # check for ioctl_meteor.h, ioctl_bt848.h and alternatives
  1890. { check_header dev/bktr/ioctl_meteor.h &&
  1891. check_header dev/bktr/ioctl_bt848.h; } ||
  1892. { check_header machine/ioctl_meteor.h &&
  1893. check_header machine/ioctl_bt848.h; } ||
  1894. { check_header dev/video/meteor/ioctl_meteor.h &&
  1895. check_header dev/video/bktr/ioctl_bt848.h; } ||
  1896. check_header dev/ic/bt8xx.h
  1897. check_header sys/soundcard.h
  1898. check_header soundcard.h
  1899. check_lib2 alsa/asoundlib.h snd_pcm_htimestamp -lasound
  1900. # deal with the X11 frame grabber
  1901. enabled x11grab &&
  1902. check_header X11/Xlib.h &&
  1903. check_header X11/extensions/XShm.h &&
  1904. check_func XOpenDisplay -lX11 &&
  1905. check_func XShmCreateImage -lX11 -lXext
  1906. enabled debug && add_cflags -g"$debuglevel"
  1907. # add some useful compiler flags if supported
  1908. check_cflags -Wdeclaration-after-statement
  1909. check_cflags -Wall
  1910. check_cflags -Wno-switch
  1911. check_cflags -Wdisabled-optimization
  1912. check_cflags -Wpointer-arith
  1913. check_cflags -Wredundant-decls
  1914. check_cflags -Wno-pointer-sign
  1915. check_cflags -Wcast-qual
  1916. check_cflags -Wwrite-strings
  1917. check_cflags -Wtype-limits
  1918. check_cflags -Wundef
  1919. enabled extra_warnings && check_cflags -Winline
  1920. # add some linker flags
  1921. check_ldflags -Wl,--warn-common
  1922. check_ldflags -Wl,--as-needed
  1923. check_ldflags '-Wl,-rpath-link,\$(BUILD_ROOT)/libpostproc -Wl,-rpath-link,\$(BUILD_ROOT)/libswscale -Wl,-rpath-link,\$(BUILD_ROOT)/libavfilter -Wl,-rpath-link,\$(BUILD_ROOT)/libavdevice -Wl,-rpath-link,\$(BUILD_ROOT)/libavformat -Wl,-rpath-link,\$(BUILD_ROOT)/libavcodec -Wl,-rpath-link,\$(BUILD_ROOT)/libavutil'
  1924. check_ldflags -Wl,-Bsymbolic
  1925. if enabled small; then
  1926. check_cflags -Os # not all compilers support -Os
  1927. optimizations="small"
  1928. elif enabled optimizations; then
  1929. if enabled xlc; then
  1930. add_cflags -O5
  1931. add_ldflags -O5
  1932. elif enabled ccc; then
  1933. add_cflags -fast
  1934. else
  1935. add_cflags -O3
  1936. fi
  1937. fi
  1938. check_cflags -fno-math-errno
  1939. check_cflags -fno-signed-zeros
  1940. # add some flags for Intel C Compiler
  1941. if enabled icc; then
  1942. # Just warnings, no remarks
  1943. check_cflags -w1
  1944. # -wd: Disable following warnings
  1945. # 144, 167, 556: -Wno-pointer-sign
  1946. # 10006: ignoring unknown option -fno-signed-zeros
  1947. # 10156: ignoring option '-W'; no argument required
  1948. check_cflags -wd144,167,556,10006,10156
  1949. # 11030: Warning unknown option --as-needed
  1950. # 10156: ignoring option '-export'; no argument required
  1951. check_ldflags -wd10156,11030
  1952. # Allow to compile with optimizations
  1953. check_ldflags -march=$cpu
  1954. elif enabled ccc; then
  1955. # disable some annoying warnings
  1956. add_cflags -msg_disable cvtu32to64
  1957. add_cflags -msg_disable embedcomment
  1958. add_cflags -msg_disable needconstext
  1959. add_cflags -msg_disable nomainieee
  1960. add_cflags -msg_disable ptrmismatch1
  1961. add_cflags -msg_disable unreachcode
  1962. fi
  1963. # PIC flags for shared library objects where they are needed
  1964. if enabled shared; then
  1965. # LIBOBJFLAGS may have already been set in the OS configuration
  1966. if test -z "$LIBOBJFLAGS" ; then
  1967. case "${subarch-$arch}" in
  1968. x86_64|ia64|alpha|sparc*|power*|parisc*|mips*) LIBOBJFLAGS='$(PIC)' ;;
  1969. esac
  1970. fi
  1971. fi
  1972. if enabled gprof; then
  1973. add_cflags -p
  1974. add_ldflags -p
  1975. fi
  1976. # Find out if the .align argument is a power of two or not.
  1977. check_asm asmalign_pot '".align 3"'
  1978. enabled_any $DECODER_LIST && enable decoders
  1979. enabled_any $ENCODER_LIST && enable encoders
  1980. enabled_any $BSF_LIST && enable bsfs
  1981. enabled_any $DEMUXER_LIST && enable demuxers
  1982. enabled_any $MUXER_LIST && enable muxers
  1983. enabled_any $FILTER_LIST && enable filters
  1984. enabled_any $INDEV_LIST && enable demuxers
  1985. enabled_any $OUTDEV_LIST && enable muxers
  1986. enabled_any $PROTOCOL_LIST && enable protocols
  1987. enabled_any $THREADS_LIST && enable threads
  1988. check_deps $CONFIG_LIST \
  1989. $CONFIG_EXTRA \
  1990. $HAVE_LIST \
  1991. $DECODER_LIST \
  1992. $ENCODER_LIST \
  1993. $PARSER_LIST \
  1994. $BSF_LIST \
  1995. $DEMUXER_LIST \
  1996. $MUXER_LIST \
  1997. $FILTER_LIST \
  1998. $INDEV_LIST \
  1999. $OUTDEV_LIST \
  2000. $PROTOCOL_LIST \
  2001. echo "install prefix $prefix"
  2002. echo "source path $source_path"
  2003. echo "C compiler $cc"
  2004. echo ".align is power-of-two $asmalign_pot"
  2005. echo "ARCH $arch ($cpu)"
  2006. if test "$build_suffix" != ""; then
  2007. echo "build suffix $build_suffix"
  2008. fi
  2009. if test "$extra_version" != ""; then
  2010. echo "version string suffix $extra_version"
  2011. fi
  2012. echo "big-endian ${bigendian-no}"
  2013. if enabled x86; then
  2014. echo "yasm ${yasm-no}"
  2015. echo "MMX enabled ${mmx-no}"
  2016. echo "MMX2 enabled ${mmx2-no}"
  2017. echo "3DNow! enabled ${amd3dnow-no}"
  2018. echo "3DNow! extended enabled ${amd3dnowext-no}"
  2019. echo "SSE enabled ${sse-no}"
  2020. echo "SSSE3 enabled ${ssse3-no}"
  2021. echo "CMOV enabled ${cmov-no}"
  2022. echo "CMOV is fast ${fast_cmov-no}"
  2023. echo "EBX available ${ebx_available-no}"
  2024. echo "EBP available ${ebp_available-no}"
  2025. echo "10 operands supported ${ten_operands-no}"
  2026. fi
  2027. if enabled arm; then
  2028. echo "ARMv5TE enabled ${armv5te-no}"
  2029. echo "ARMv6 enabled ${armv6-no}"
  2030. echo "ARMv6T2 enabled ${armv6t2-no}"
  2031. echo "ARM VFP enabled ${armvfp-no}"
  2032. echo "IWMMXT enabled ${iwmmxt-no}"
  2033. echo "NEON enabled ${neon-no}"
  2034. fi
  2035. if enabled mips; then
  2036. echo "MMI enabled ${mmi-no}"
  2037. fi
  2038. if enabled ppc; then
  2039. echo "AltiVec enabled ${altivec-no}"
  2040. echo "PPC 4xx optimizations ${ppc4xx-no}"
  2041. echo "dcbzl available ${dcbzl-no}"
  2042. echo "performance report ${powerpc_perf-no}"
  2043. fi
  2044. if enabled sparc; then
  2045. echo "VIS enabled ${vis-no}"
  2046. fi
  2047. echo "gprof enabled ${gprof-no}"
  2048. echo "debug symbols ${debug-no}"
  2049. echo "strip symbols ${stripping-no}"
  2050. echo "optimizations ${optimizations-no}"
  2051. echo "static ${static-no}"
  2052. echo "shared ${shared-no}"
  2053. echo "postprocessing support ${postproc-no}"
  2054. echo "new filter support ${avfilter-no}"
  2055. echo "filters using lavformat ${avfilter_lavf-no}"
  2056. echo "network support ${network-no}"
  2057. if enabled network; then
  2058. echo "IPv6 support ${ipv6-no}"
  2059. fi
  2060. echo "threading support ${thread_type-no}"
  2061. echo "SDL support ${sdl-no}"
  2062. if enabled sdl_too_old; then
  2063. echo "-> Your SDL version is too old - please upgrade to have FFplay/SDL support."
  2064. fi
  2065. echo "Sun medialib support ${mlib-no}"
  2066. echo "AVISynth enabled ${avisynth-no}"
  2067. echo "libamr-nb support ${libamr_nb-no}"
  2068. echo "libamr-wb support ${libamr_wb-no}"
  2069. echo "libdc1394 support ${libdc1394-no}"
  2070. echo "libdirac enabled ${libdirac-no}"
  2071. echo "libfaac enabled ${libfaac-no}"
  2072. echo "libfaad enabled ${libfaad-no}"
  2073. echo "libfaad dlopened ${libfaadbin-no}"
  2074. echo "libgsm enabled ${libgsm-no}"
  2075. echo "libmp3lame enabled ${libmp3lame-no}"
  2076. echo "libnut enabled ${libnut-no}"
  2077. echo "libopenjpeg enabled ${libopenjpeg-no}"
  2078. echo "libschroedinger enabled ${libschroedinger-no}"
  2079. echo "libspeex enabled ${libspeex-no}"
  2080. echo "libtheora enabled ${libtheora-no}"
  2081. echo "libvorbis enabled ${libvorbis-no}"
  2082. echo "libx264 enabled ${libx264-no}"
  2083. echo "libxvid enabled ${libxvid-no}"
  2084. echo "vdpau enabled ${vdpau-no}"
  2085. echo "zlib enabled ${zlib-no}"
  2086. echo "bzlib enabled ${bzlib-no}"
  2087. echo
  2088. for type in decoder encoder parser demuxer muxer protocol filter bsf indev outdev; do
  2089. echo "Enabled ${type}s:"
  2090. eval list=\$$(toupper $type)_LIST
  2091. for part in $list; do
  2092. enabled $part && echo ${part%_*}
  2093. done | sort | pr -3 -t
  2094. echo
  2095. done
  2096. license="LGPL"
  2097. if enabled nonfree; then
  2098. license="unredistributable"
  2099. elif enabled gpl; then
  2100. license="GPL"
  2101. fi
  2102. echo "License: $license"
  2103. echo "Creating config.mak and config.h..."
  2104. echo "# Automatically generated by configure - do not modify!" > config.mak
  2105. echo "/* Automatically generated by configure - do not modify! */" > $TMPH
  2106. echo "#ifndef FFMPEG_CONFIG_H" >> $TMPH
  2107. echo "#define FFMPEG_CONFIG_H" >> $TMPH
  2108. echo "#define FFMPEG_CONFIGURATION \"$FFMPEG_CONFIGURATION\"" >> $TMPH
  2109. echo "#define FFMPEG_DATADIR \"$(eval c_escape $datadir)\"" >> $TMPH
  2110. echo "FFMPEG_CONFIGURATION=$FFMPEG_CONFIGURATION" >> config.mak
  2111. echo "prefix=$prefix" >> config.mak
  2112. echo "LIBDIR=\$(DESTDIR)$libdir" >> config.mak
  2113. echo "SHLIBDIR=\$(DESTDIR)$shlibdir" >> config.mak
  2114. echo "INCDIR=\$(DESTDIR)$incdir" >> config.mak
  2115. echo "BINDIR=\$(DESTDIR)$bindir" >> config.mak
  2116. echo "DATADIR=\$(DESTDIR)$datadir" >> config.mak
  2117. echo "MANDIR=\$(DESTDIR)$mandir" >> config.mak
  2118. echo "CC=$cc" >> config.mak
  2119. echo "YASM=$yasmexe" >> config.mak
  2120. echo "AR=$ar" >> config.mak
  2121. echo "RANLIB=$ranlib" >> config.mak
  2122. echo "LN_S=$ln_s" >> config.mak
  2123. enabled stripping &&
  2124. echo "STRIP=$strip" >> config.mak ||
  2125. echo "STRIP=echo ignoring strip" >> config.mak
  2126. echo "OPTFLAGS=$CFLAGS" >> config.mak
  2127. echo "LDFLAGS=$LDFLAGS" >> config.mak
  2128. echo "FFSERVERLDFLAGS=$FFSERVERLDFLAGS" >> config.mak
  2129. echo "SHFLAGS=$SHFLAGS" >> config.mak
  2130. echo "YASMFLAGS=$YASMFLAGS" >> config.mak
  2131. echo "LIBOBJFLAGS=$LIBOBJFLAGS" >> config.mak
  2132. echo "BUILD_STATIC=$static" >> config.mak
  2133. echo "BUILDSUF=$build_suffix" >> config.mak
  2134. echo "FULLNAME=$FULLNAME" >> config.mak
  2135. echo "LIBPREF=$LIBPREF" >> config.mak
  2136. echo "LIBSUF=$LIBSUF" >> config.mak
  2137. echo "LIBNAME=$LIBNAME" >> config.mak
  2138. echo "SLIBPREF=$SLIBPREF" >> config.mak
  2139. echo "SLIBSUF=$SLIBSUF" >> config.mak
  2140. echo "EXESUF=$EXESUF" >> config.mak
  2141. echo "EXTRA_VERSION=$extra_version" >> config.mak
  2142. echo "DEPEND_CMD=$DEPEND_CMD" >> config.mak
  2143. echo "HOSTCC=$host_cc" >> config.mak
  2144. echo "HOSTCFLAGS=$host_cflags" >> config.mak
  2145. echo "HOSTLDFLAGS=$host_ldflags" >> config.mak
  2146. echo "HOSTLIBS=$host_libs" >> config.mak
  2147. echo "TARGET_EXEC=$target_exec" >> config.mak
  2148. echo "TARGET_PATH=$target_path" >> config.mak
  2149. if enabled bigendian; then
  2150. echo "WORDS_BIGENDIAN=yes" >> config.mak
  2151. echo "#define WORDS_BIGENDIAN 1" >> $TMPH
  2152. fi
  2153. if enabled sdl; then
  2154. echo "SDL_LIBS=`"${SDL_CONFIG}" --libs`" >> config.mak
  2155. echo "SDL_CFLAGS=`"${SDL_CONFIG}" --cflags`" >> config.mak
  2156. fi
  2157. if enabled texi2html; then
  2158. echo "BUILD_DOC=yes" >> config.mak
  2159. fi
  2160. get_version(){
  2161. name=$1
  2162. file=$source_path/$2
  2163. eval $(grep "#define ${name}_VERSION_M" "$file" | awk '{ print $2"="$3 }')
  2164. eval ${name}_VERSION=\$${name}_VERSION_MAJOR.\$${name}_VERSION_MINOR.\$${name}_VERSION_MICRO
  2165. lcname=$(tolower $name)
  2166. eval echo "${lcname}_VERSION=\$${name}_VERSION" >> config.mak
  2167. eval echo "${lcname}_VERSION_MAJOR=\$${name}_VERSION_MAJOR" >> config.mak
  2168. }
  2169. get_version LIBSWSCALE libswscale/swscale.h
  2170. get_version LIBPOSTPROC libpostproc/postprocess.h
  2171. get_version LIBAVCODEC libavcodec/avcodec.h
  2172. get_version LIBAVDEVICE libavdevice/avdevice.h
  2173. get_version LIBAVFORMAT libavformat/avformat.h
  2174. get_version LIBAVUTIL libavutil/avutil.h
  2175. get_version LIBAVFILTER libavfilter/avfilter.h
  2176. if enabled shared; then
  2177. echo "BUILD_SHARED=yes" >> config.mak
  2178. echo "PIC=-fPIC -DPIC" >> config.mak
  2179. echo "LIBTARGET=${LIBTARGET}" >> config.mak
  2180. echo "SLIBNAME=${SLIBNAME}" >> config.mak
  2181. echo "SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}" >> config.mak
  2182. echo "SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}" >> config.mak
  2183. echo "SLIB_CREATE_DEF_CMD=${SLIB_CREATE_DEF_CMD}" >> config.mak
  2184. echo "SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}" >> config.mak
  2185. echo "SLIB_INSTALL_EXTRA_CMD=${SLIB_INSTALL_EXTRA_CMD}" >> config.mak
  2186. echo "SLIB_UNINSTALL_EXTRA_CMD=${SLIB_UNINSTALL_EXTRA_CMD}" >> config.mak
  2187. fi
  2188. echo "LIB_INSTALL_EXTRA_CMD=${LIB_INSTALL_EXTRA_CMD}" >> config.mak
  2189. echo "EXTRALIBS=$extralibs" >> config.mak
  2190. echo "ARCH=$arch" >> config.mak
  2191. print_config ARCH_ $TMPH config.mak $ARCH_LIST
  2192. print_config HAVE_ $TMPH config.mak $HAVE_LIST
  2193. print_config CONFIG_ $TMPH config.mak $CONFIG_LIST \
  2194. $CONFIG_EXTRA \
  2195. $DECODER_LIST \
  2196. $ENCODER_LIST \
  2197. $PARSER_LIST \
  2198. $BSF_LIST \
  2199. $DEMUXER_LIST \
  2200. $MUXER_LIST \
  2201. $FILTER_LIST \
  2202. $PROTOCOL_LIST \
  2203. $INDEV_LIST \
  2204. $OUTDEV_LIST \
  2205. echo "#define restrict $_restrict" >> $TMPH
  2206. if enabled small; then
  2207. echo "#define av_always_inline" >> $TMPH
  2208. fi
  2209. echo "SRC_PATH=\"$source_path\"" >> config.mak
  2210. echo "SRC_PATH_BARE=$source_path" >> config.mak
  2211. echo "BUILD_ROOT=\"$PWD\"" >> config.mak
  2212. # Apparently it's not possible to portably echo a backslash.
  2213. enabled asmalign_pot &&
  2214. printf '#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\\n\\t"\n' >> $TMPH ||
  2215. printf '#define ASMALIGN(ZEROBITS) ".align 1 << " #ZEROBITS "\\n\\t"\n' >> $TMPH
  2216. echo "#define EXTERN_PREFIX \"${extern_prefix}\"" >> $TMPH
  2217. echo "#endif /* FFMPEG_CONFIG_H */" >> $TMPH
  2218. # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
  2219. cmp -s $TMPH config.h &&
  2220. echo "config.h is unchanged" ||
  2221. mv -f $TMPH config.h
  2222. # build tree in object directory if source path is different from current one
  2223. if enabled source_path_used; then
  2224. DIRS="\
  2225. doc \
  2226. libavcodec \
  2227. libavcodec/alpha \
  2228. libavcodec/arm \
  2229. libavcodec/bfin \
  2230. libavcodec/mlib \
  2231. libavcodec/ppc \
  2232. libavcodec/sh4 \
  2233. libavcodec/sparc \
  2234. libavcodec/x86 \
  2235. libavdevice \
  2236. libavfilter \
  2237. libavformat \
  2238. libavutil \
  2239. libpostproc \
  2240. libswscale \
  2241. tests \
  2242. tools \
  2243. "
  2244. FILES="\
  2245. Makefile \
  2246. common.mak \
  2247. subdir.mak \
  2248. doc/texi2pod.pl \
  2249. libavcodec/Makefile \
  2250. libavdevice/Makefile \
  2251. libavfilter/Makefile \
  2252. libavformat/Makefile \
  2253. libavutil/Makefile \
  2254. libpostproc/Makefile \
  2255. libswscale/Makefile \
  2256. "
  2257. for dir in $DIRS ; do
  2258. mkdir -p $dir
  2259. done
  2260. for f in $FILES ; do
  2261. $ln_s "$source_path/$f" $f
  2262. done
  2263. fi
  2264. # build pkg-config files
  2265. pkgconfig_generate(){
  2266. name=$1
  2267. shortname=${name#lib}${build_suffix}
  2268. comment=$2
  2269. version=$3
  2270. libs=$4
  2271. requires=$5
  2272. cat <<EOF > $name/$name.pc
  2273. prefix=$prefix
  2274. exec_prefix=\${prefix}
  2275. libdir=$libdir
  2276. includedir=$incdir
  2277. Name: $name
  2278. Description: $comment
  2279. Version: $version
  2280. Requires: $(disabled shared && echo $requires)
  2281. Requires.private: $(enabled shared && echo $requires)
  2282. Conflicts:
  2283. Libs: -L\${libdir} -l${shortname} $(disabled shared && echo $libs)
  2284. Libs.private: $(enabled shared && echo $libs)
  2285. Cflags: -I\${includedir}
  2286. EOF
  2287. cat <<EOF > $name/$name-uninstalled.pc
  2288. prefix=
  2289. exec_prefix=
  2290. libdir=\${pcfiledir}
  2291. includedir=${source_path}
  2292. Name: $name
  2293. Description: $comment
  2294. Version: $version
  2295. Requires: $requires
  2296. Conflicts:
  2297. Libs: \${libdir}/${LIBPREF}${shortname}${LIBSUF} $libs
  2298. Cflags: -I\${includedir}
  2299. EOF
  2300. }
  2301. pkgconfig_generate libavutil "FFmpeg utility library" "$LIBAVUTIL_VERSION"
  2302. pkgconfig_generate libavcodec "FFmpeg codec library" "$LIBAVCODEC_VERSION" "$extralibs" "libavutil = $LIBAVUTIL_VERSION"
  2303. pkgconfig_generate libavformat "FFmpeg container format library" "$LIBAVFORMAT_VERSION" "$extralibs" "libavcodec = $LIBAVCODEC_VERSION"
  2304. pkgconfig_generate libavdevice "FFmpeg device handling library" "$LIBAVDEVICE_VERSION" "$extralibs" "libavformat = $LIBAVFORMAT_VERSION"
  2305. enabled avfilter &&
  2306. pkgconfig_generate libavfilter "FFmpeg video filtering library" "$LIBAVFILTER_VERSION" "$extralibs" "libavutil = $LIBAVUTIL_VERSION"
  2307. enabled postproc &&
  2308. pkgconfig_generate libpostproc "FFmpeg post processing library" "$LIBPOSTPROC_VERSION"
  2309. pkgconfig_generate libswscale "FFmpeg image rescaling library" "$LIBSWSCALE_VERSION" "" "libavutil = $LIBAVUTIL_VERSION"