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.

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