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.

2565 lines
74KB

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