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.

2219 lines
63KB

  1. #!/bin/sh
  2. #
  3. # FFmpeg configure script
  4. #
  5. # Copyright (c) 2000, 2001, 2002 Fabrice Bellard
  6. # Copyright (c) 2005-2006 Diego Biurrun
  7. # Copyright (c) 2005-2006 Mans Rullgard
  8. #
  9. # make sure we are running under a compatible shell
  10. # try to make this part work with most shells
  11. try_exec(){
  12. echo "Trying shell $1"
  13. type "$1" >/dev/null 2>&1 && exec "$@"
  14. }
  15. unset foo
  16. (: ${foo%%bar}) 2>/dev/null
  17. E1="$?"
  18. (: ${foo?}) 2>/dev/null
  19. E2="$?"
  20. if test "$E1" != 0 || test "$E2" = 0; then
  21. echo "Broken shell detected. Trying alternatives."
  22. export FF_CONF_EXEC
  23. if test "0$FF_CONF_EXEC" -lt 1; then
  24. FF_CONF_EXEC=1
  25. try_exec bash "$0" "$@"
  26. fi
  27. if test "0$FF_CONF_EXEC" -lt 2; then
  28. FF_CONF_EXEC=2
  29. try_exec ksh "$0" "$@"
  30. fi
  31. if test "0$FF_CONF_EXEC" -lt 3; then
  32. FF_CONF_EXEC=3
  33. try_exec /usr/xpg4/bin/sh "$0" "$@"
  34. fi
  35. echo "No compatible shell script interpreter found."
  36. echo "This configure script requires a POSIX-compatible shell"
  37. echo "such as bash or ksh."
  38. echo "THIS IS NOT A BUG IN FFMPEG, DO NOT REPORT IT AS SUCH."
  39. echo "Instead, install a working POSIX-compatible shell."
  40. echo "Disabling this configure test will create a broken FFmpeg."
  41. if test "$BASH_VERSION" = '2.04.0(1)-release'; then
  42. echo "This bash version ($BASH_VERSION) is broken on your platform."
  43. echo "Upgrade to a later version if available."
  44. fi
  45. exit 1
  46. fi
  47. show_help(){
  48. echo "Usage: configure [options]"
  49. echo "Options: [defaults in brackets after descriptions]"
  50. echo
  51. echo "Standard options:"
  52. echo " --help print this message"
  53. echo " --logfile=FILE log tests and output to FILE [config.err]"
  54. echo " --disable-logging do not log configure debug information"
  55. echo " --prefix=PREFIX install in PREFIX [$PREFIX]"
  56. echo " --libdir=DIR install libs in DIR [PREFIX/lib]"
  57. echo " --shlibdir=DIR install shared libs in DIR [PREFIX/lib]"
  58. echo " --incdir=DIR install includes in DIR [PREFIX/include]"
  59. echo " --mandir=DIR install man page in DIR [PREFIX/share/man]"
  60. echo " --enable-static build static libraries [default=yes]"
  61. echo " --disable-static do not build static libraries [default=no]"
  62. echo " --enable-shared build shared libraries [default=no]"
  63. echo " --disable-shared do not build shared libraries [default=yes]"
  64. echo " --enable-gpl allow use of GPL code, the resulting libav*"
  65. echo " and ffmpeg will be under GPL [default=no]"
  66. echo " --enable-nonfree allow use of nonfree code, the resulting libav*"
  67. echo " and ffmpeg will be unredistributable [default=no]"
  68. echo " --enable-postproc enable GPLed postprocessing support [default=no]"
  69. echo " --enable-swscale software scaler support [default=no]"
  70. echo " --enable-avfilter video filter support (replaces vhook) [default=no]"
  71. echo " --enable-avfilter-lavf video filters dependant on avformat [default=no]"
  72. echo " --enable-beosthreads use BeOS threads [default=no]"
  73. echo " --enable-os2threads use OS/2 threads [default=no]"
  74. echo " --enable-pthreads use pthreads [default=no]"
  75. echo " --enable-w32threads use Win32 threads [default=no]"
  76. echo " --enable-x11grab enable X11 grabbing [default=no]"
  77. echo
  78. echo "External library support:"
  79. echo " --enable-sunmlib use Sun medialib [default=no]"
  80. echo " --enable-liba52 enable GPLed liba52 support [default=no]"
  81. echo " --enable-liba52bin open liba52.so.0 at runtime [default=no]"
  82. echo " --enable-avisynth allow reading AVISynth script files [default=no]"
  83. echo " --enable-libamr-nb enable libamr-nb floating point audio codec"
  84. echo " --enable-libamr-wb enable libamr-wb floating point audio codec"
  85. echo " --enable-libdc1394 enable IIDC-1394 grabbing using libdc1394"
  86. echo " and libraw1394 [default=no]"
  87. echo " --enable-libfaac enable FAAC support via libfaac [default=no]"
  88. echo " --enable-libfaad enable FAAD support via libfaad [default=no]"
  89. echo " --enable-libfaadbin open libfaad.so.0 at runtime [default=no]"
  90. echo " --enable-libgsm enable GSM support via libgsm [default=no]"
  91. echo " --enable-libmp3lame enable MP3 encoding via libmp3lame [default=no]"
  92. echo " --enable-libnut enable NUT (de)muxing via libnut,"
  93. echo " native demuxer exists [default=no]"
  94. echo " --enable-libtheora enable Theora encoding via libtheora [default=no]"
  95. echo " --enable-libvorbis enable Vorbis encoding via libvorbis,"
  96. echo " native implementation exists [default=no]"
  97. echo " --enable-libx264 enable H.264 encoding via x264 [default=no]"
  98. echo " --enable-libxvid enable Xvid encoding via xvidcore,"
  99. echo " native MPEG-4/Xvid encoder exists [default=no]"
  100. echo ""
  101. echo "Advanced options (experts only):"
  102. echo " --source-path=PATH path to source code [$source_path]"
  103. echo " --cross-prefix=PREFIX use PREFIX for compilation tools [$cross_prefix]"
  104. echo " --cross-compile assume a cross-compiler is used"
  105. echo " --target-os=OS compiler targets OS [$targetos]"
  106. echo " --cc=CC use C compiler CC [$cc]"
  107. echo " --make=MAKE use specified make [$make]"
  108. echo " --extra-cflags=ECFLAGS add ECFLAGS to CFLAGS [$CFLAGS]"
  109. echo " --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]"
  110. echo " --extra-libs=ELIBS add ELIBS [$ELIBS]"
  111. echo " --build-suffix=SUFFIX suffix for application specific build []"
  112. echo " --arch=ARCH select architecture [$arch]"
  113. echo " --cpu=CPU selects the minimum cpu required (affects"
  114. echo " instruction selection, may crash on older CPUs)"
  115. echo " --enable-powerpc-perf enable performance report on PPC"
  116. echo " (requires enabling PMC)"
  117. echo " --disable-mmx disable MMX usage"
  118. echo " --disable-mmx2 disable MMX2 usage"
  119. echo " --disable-ssse3 disable SSSE3 usage"
  120. echo " --disable-armv5te disable armv5te usage"
  121. echo " --disable-armv6 disable armv6 usage"
  122. echo " --disable-iwmmxt disable iwmmxt usage"
  123. echo " --disable-altivec disable AltiVec usage"
  124. echo " --disable-network disable network support [default=no]"
  125. echo " --disable-ipv6 disable ipv6 support [default=no]"
  126. echo " --disable-zlib disable zlib [default=no]"
  127. echo " --disable-vhook disable video hooking support"
  128. echo " --disable-debug disable debugging symbols"
  129. echo " --disable-mpegaudio-hp faster (but less accurate)"
  130. echo " MPEG audio decoding [default=no]"
  131. echo " --enable-gray enable full grayscale support (slower color)"
  132. echo " --disable-ffmpeg disable ffmpeg build"
  133. echo " --disable-ffserver disable ffserver build"
  134. echo " --disable-ffplay disable ffplay build"
  135. echo " --enable-small optimize for size instead of speed"
  136. echo " --enable-hardcoded-tables use hardcoded tables instead of runtime generation"
  137. echo " --enable-memalign-hack emulate memalign, interferes with memory debuggers"
  138. echo " --disable-encoder=NAME disables encoder NAME"
  139. echo " --enable-encoder=NAME enables encoder NAME"
  140. echo " --disable-decoder=NAME disables decoder NAME"
  141. echo " --enable-decoder=NAME enables decoder NAME"
  142. echo " --disable-encoders disables all encoders"
  143. echo " --disable-decoders disables all decoders"
  144. echo " --disable-muxer=NAME disables muxer NAME"
  145. echo " --enable-muxer=NAME enables muxer NAME"
  146. echo " --disable-muxers disables all muxers"
  147. echo " --disable-demuxer=NAME disables demuxer NAME"
  148. echo " --enable-demuxer=NAME enables demuxer NAME"
  149. echo " --disable-demuxers disables all demuxers"
  150. echo " --enable-parser=NAME enables parser NAME"
  151. echo " --disable-parser=NAME disables parser NAME"
  152. echo " --disable-parsers disables all parsers"
  153. echo " --enable-bsf=NAME enables bitstream filter NAME"
  154. echo " --disable-bsf=NAME disables bitstream filter NAME"
  155. echo " --disable-bsfs disables all bitstream filters"
  156. echo " --enable-protocol=NAME enables protocol NAME"
  157. echo " --disable-protocol=NAME disables protocol NAME"
  158. echo " --disable-protocols disables all protocols"
  159. echo " --disable-devices disables all devices"
  160. echo " --list-decoders show all available decoders"
  161. echo " --list-encoders show all available encoders"
  162. echo " --list-muxers show all available muxers"
  163. echo " --list-demuxers show all available demuxers"
  164. echo " --list-parsers show all available parsers"
  165. echo " --list-protocols show all available protocols"
  166. echo " --list-bsfs show all available bitstream filters"
  167. echo " --list-indevs show all available input devices"
  168. echo " --list-outdevs show all available output devices"
  169. echo
  170. echo "Developer options (useful when working on FFmpeg itself):"
  171. echo " --enable-gprof enable profiling with gprof [$gprof]"
  172. echo " --disable-optimizations disable compiler optimizations"
  173. echo " --enable-extra-warnings enable more compiler warnings"
  174. echo " --disable-strip disable stripping of executables and shared libraries"
  175. echo ""
  176. echo "NOTE: Object files are built at the place where configure is launched."
  177. exit 1
  178. }
  179. log(){
  180. echo "$@" >>$logfile
  181. }
  182. log_file(){
  183. log BEGIN $1
  184. pr -n -t $1 >>$logfile
  185. log END $1
  186. }
  187. echolog(){
  188. log "$@"
  189. echo "$@"
  190. }
  191. die(){
  192. echolog "$@"
  193. cat <<EOF
  194. If you think configure made a mistake, make sure you are using the latest
  195. version from SVN. If the latest version fails, report the problem to the
  196. ffmpeg-user@mplayerhq.hu mailing list or IRC #ffmpeg on irc.freenode.net.
  197. EOF
  198. if enabled logging; then
  199. cat <<EOF
  200. Include the log file "$logfile" produced by configure as this will help
  201. solving the problem.
  202. EOF
  203. else
  204. cat <<EOF
  205. Rerun configure with logging enabled (do not use --log=no), and include the
  206. log this produces with your report.
  207. EOF
  208. fi
  209. rm -f $TMPC $TMPO $TMPE $TMPS $TMPH
  210. exit 1
  211. }
  212. # Avoid locale weirdness, besides we really just want to translate ASCII.
  213. toupper(){
  214. echo "$@" | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ
  215. }
  216. tolower(){
  217. echo "$@" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
  218. }
  219. set_all(){
  220. value=$1
  221. shift
  222. for var in $*; do
  223. eval $var=$value
  224. done
  225. }
  226. pushvar(){
  227. for var in $*; do
  228. eval level=\${${var}_level:=0}
  229. eval ${var}_${level}="\$$var"
  230. eval ${var}_level=$(($level+1))
  231. done
  232. }
  233. popvar(){
  234. for var in $*; do
  235. eval level=\${${var}_level:-0}
  236. test $level = 0 && continue
  237. eval level=$(($level-1))
  238. eval $var="\${${var}_${level}}"
  239. eval ${var}_level=$level
  240. eval unset ${var}_${level}
  241. done
  242. }
  243. enable(){
  244. set_all yes $*
  245. }
  246. disable(){
  247. set_all no $*
  248. }
  249. enabled(){
  250. eval test "x\$$1" = "xyes"
  251. }
  252. disabled(){
  253. eval test "x\$$1" = "xno"
  254. }
  255. enabled_all(){
  256. for opt; do
  257. enabled $opt || return 1
  258. done
  259. }
  260. disabled_all(){
  261. for opt; do
  262. disabled $opt || return 1
  263. done
  264. }
  265. enabled_any(){
  266. for opt; do
  267. enabled $opt && return 0
  268. done
  269. }
  270. disabled_any(){
  271. for opt; do
  272. disabled $opt && return 0
  273. done
  274. }
  275. is_in(){
  276. value=$1
  277. shift
  278. for var in $*; do
  279. [ $var = $value ] && return 0
  280. done
  281. return 1
  282. }
  283. check_deps(){
  284. for cfg; do
  285. enabled ${cfg}_checking && die "Circular dependency for $cfg."
  286. disabled ${cfg}_checking && continue
  287. enable ${cfg}_checking
  288. eval dep_all="\$${cfg}_deps"
  289. eval dep_any="\$${cfg}_deps_any"
  290. pushvar cfg dep_all dep_any
  291. check_deps $dep_all $dep_any
  292. popvar cfg dep_all dep_any
  293. enabled_all $dep_all || disable $cfg
  294. enabled_any $dep_any || disable $cfg
  295. if enabled $cfg; then
  296. eval dep_extralibs="\$${cfg}_extralibs"
  297. test -n "$dep_extralibs" && add_extralibs $dep_extralibs
  298. fi
  299. disable ${cfg}_checking
  300. done
  301. }
  302. print_config(){
  303. pfx=$1
  304. header=$2
  305. makefile=$3
  306. shift 3
  307. for cfg; do
  308. ucname="`toupper $cfg`"
  309. if enabled $cfg; then
  310. echo "#define ${pfx}${ucname} 1" >> $header
  311. echo "#define ENABLE_${ucname} 1" >> $header
  312. echo "${pfx}${ucname}=yes" >> $makefile
  313. else
  314. echo "#define ENABLE_${ucname} 0" >> $header
  315. fi
  316. done
  317. }
  318. flags_saved(){
  319. (: ${SAVE_CFLAGS?}) 2>/dev/null
  320. }
  321. save_flags(){
  322. flags_saved && return
  323. SAVE_CFLAGS="$CFLAGS"
  324. SAVE_LDFLAGS="$LDFLAGS"
  325. SAVE_extralibs="$extralibs"
  326. }
  327. restore_flags(){
  328. flags_saved || return
  329. CFLAGS="$SAVE_CFLAGS"
  330. LDFLAGS="$SAVE_LDFLAGS"
  331. extralibs="$SAVE_extralibs"
  332. unset SAVE_CFLAGS
  333. unset SAVE_LDFLAGS
  334. unset SAVE_extralibs
  335. }
  336. temp_cflags(){
  337. save_flags
  338. CFLAGS="$CFLAGS $*"
  339. }
  340. temp_ldflags(){
  341. save_flags
  342. LDFLAGS="$LDFLAGS $*"
  343. }
  344. temp_extralibs(){
  345. save_flags
  346. extralibs="$extralibs $*"
  347. }
  348. append(){
  349. var=$1
  350. shift
  351. flags_saved && eval "SAVE_$var=\"\$SAVE_$var $*\""
  352. eval "$var=\"\$$var $*\""
  353. }
  354. add_cflags(){
  355. append CFLAGS "$@"
  356. }
  357. add_ldflags(){
  358. append LDFLAGS "$@"
  359. }
  360. add_extralibs(){
  361. append extralibs "$@"
  362. }
  363. check_cmd(){
  364. log "$@"
  365. "$@" >>$logfile 2>&1
  366. }
  367. check_cc(){
  368. log check_cc "$@"
  369. cat >$TMPC
  370. log_file $TMPC
  371. check_cmd $cc $CFLAGS "$@" -c -o $TMPO $TMPC
  372. }
  373. check_cpp(){
  374. log check_cpp "$@"
  375. cat >$TMPC
  376. log_file $TMPC
  377. check_cmd $cc $CFLAGS "$@" -E -o $TMPO $TMPC
  378. }
  379. check_asm(){
  380. log check_asm "$@"
  381. name="$1"
  382. asm="$2"
  383. shift 2
  384. check_cc "$@" <<EOF && enable $name || disable $name
  385. int foo(void){
  386. asm volatile($asm);
  387. }
  388. EOF
  389. }
  390. check_ld(){
  391. log check_ld "$@"
  392. check_cc || return
  393. flags=''
  394. libs=''
  395. for f; do
  396. test "${f}" = "${f#-l}" && flags="$flags $f" || libs="$libs $f"
  397. done
  398. check_cmd $cc $LDFLAGS $flags -o $TMPE $TMPO $extralibs $libs
  399. }
  400. check_cflags(){
  401. log check_cflags "$@"
  402. check_cc "$@" <<EOF && add_cflags "$@"
  403. int x;
  404. EOF
  405. }
  406. check_ldflags(){
  407. log check_ldflags "$@"
  408. check_ld "$@" <<EOF && add_ldflags "$@"
  409. int main(void){
  410. return 0;
  411. }
  412. EOF
  413. }
  414. check_header(){
  415. log check_header "$@"
  416. header=$1
  417. shift
  418. var=`echo $header | sed 's/[^A-Za-z0-9_]/_/g'`
  419. disable $var
  420. check_cpp "$@" <<EOF && enable $var
  421. #include <$header>
  422. int x;
  423. EOF
  424. }
  425. check_func(){
  426. log check_func "$@"
  427. func=$1
  428. shift
  429. disable $func
  430. check_ld "$@" <<EOF && enable $func
  431. extern int $func();
  432. int main(void){
  433. $func();
  434. }
  435. EOF
  436. }
  437. check_func2(){
  438. log check_func2 "$@"
  439. headers=$1
  440. func=$2
  441. shift 2
  442. disable $func
  443. incs=""
  444. for hdr in $headers; do
  445. incs="$incs
  446. #include <$hdr>"
  447. done
  448. check_ld "$@" <<EOF && enable $func
  449. $incs
  450. int main(int argc, char **argv){
  451. (void) $func;
  452. return 0;
  453. }
  454. EOF
  455. }
  456. check_lib(){
  457. log check_lib "$@"
  458. header="$1"
  459. func="$2"
  460. shift 2
  461. temp_extralibs "$@"
  462. check_header $header && check_func $func && add_extralibs "$@"
  463. err=$?
  464. restore_flags
  465. return $err
  466. }
  467. check_lib2(){
  468. log check_lib2 "$@"
  469. headers="$1"
  470. func="$2"
  471. shift 2
  472. temp_extralibs "$@"
  473. check_func2 "$headers" $func && add_extralibs "$@"
  474. err=$?
  475. restore_flags
  476. return $err
  477. }
  478. check_exec(){
  479. check_ld "$@" && { enabled cross_compile || $TMPE >>$logfile 2>&1; }
  480. }
  481. check_exec_crash(){
  482. code=`cat`
  483. # exit() is not async signal safe. _Exit (C99) and _exit (POSIX)
  484. # are safe but may not be available everywhere. Thus we use
  485. # raise(SIGTERM) instead. The check is run in a subshell so we
  486. # can redirect the "Terminated" message from the shell. SIGBUS
  487. # is not defined by standard C so it is used conditionally.
  488. (check_exec "$@") >>$logfile 2>&1 <<EOF
  489. #include <signal.h>
  490. static void sighandler(int sig){
  491. raise(SIGTERM);
  492. }
  493. int main(void){
  494. signal(SIGILL, sighandler);
  495. signal(SIGFPE, sighandler);
  496. signal(SIGSEGV, sighandler);
  497. #ifdef SIGBUS
  498. signal(SIGBUS, sighandler);
  499. #endif
  500. { $code }
  501. }
  502. EOF
  503. }
  504. check_type(){
  505. log check_type "$@"
  506. headers=$1
  507. type=$2
  508. shift 2
  509. disable $type
  510. incs=""
  511. for hdr in $headers; do
  512. incs="$incs
  513. #include <$hdr>"
  514. done
  515. check_cc "$@" <<EOF && enable $type
  516. $incs
  517. $type v;
  518. EOF
  519. }
  520. require(){
  521. name="$1"
  522. header="$2"
  523. func="$3"
  524. shift 3
  525. check_lib $header $func "$@" || die "ERROR: $name not found"
  526. }
  527. require2(){
  528. name="$1"
  529. headers="$2"
  530. func="$3"
  531. shift 3
  532. check_lib2 "$headers" $func "$@" || die "ERROR: $name not found"
  533. }
  534. check_foo_config(){
  535. cfg=$1
  536. pkg=$2
  537. header=$3
  538. func=$4
  539. shift 4
  540. disable $cfg
  541. check_cmd ${pkg}-config --version
  542. err=$?
  543. if test "$err" = 0; then
  544. temp_cflags `${pkg}-config --cflags`
  545. temp_extralibs `${pkg}-config --libs`
  546. check_lib "$@" $header $func && enable $cfg
  547. fi
  548. return $err
  549. }
  550. apply(){
  551. file=$1
  552. shift
  553. "$@" < "$file" > "$file.tmp" && mv "$file.tmp" "$file" || rm "$file.tmp"
  554. }
  555. COMPONENT_LIST="
  556. bsfs
  557. decoders
  558. demuxers
  559. encoders
  560. filters
  561. indevs
  562. muxers
  563. outdevs
  564. parsers
  565. protocols
  566. "
  567. CONFIG_LIST="
  568. $COMPONENT_LIST
  569. avfilter
  570. avfilter_lavf
  571. avisynth
  572. beos_netserver
  573. ffmpeg
  574. ffplay
  575. ffserver
  576. gpl
  577. gprof
  578. gray
  579. hardcoded_tables
  580. ipv6
  581. liba52
  582. liba52bin
  583. libamr_nb
  584. libamr_wb
  585. libdc1394
  586. libfaac
  587. libfaad
  588. libfaadbin
  589. libgsm
  590. libmp3lame
  591. libnut
  592. libtheora
  593. libvorbis
  594. libx264
  595. libxvid
  596. memalign_hack
  597. mpegaudio_hp
  598. network
  599. nonfree
  600. postproc
  601. powerpc_perf
  602. small
  603. swscale
  604. vhook
  605. x11grab
  606. zlib
  607. "
  608. THREADS_LIST='
  609. beosthreads
  610. os2threads
  611. pthreads
  612. w32threads
  613. '
  614. ARCH_LIST='
  615. alpha
  616. armv4l
  617. bfin
  618. ia64
  619. m68k
  620. mips
  621. parisc
  622. powerpc
  623. s390
  624. sh4
  625. sparc
  626. sparc64
  627. x86
  628. x86_32
  629. x86_64
  630. '
  631. ARCH_EXT_LIST='
  632. altivec
  633. armv5te
  634. armv6
  635. iwmmxt
  636. mmi
  637. mmx
  638. mmx2
  639. ssse3
  640. vis
  641. '
  642. HAVE_LIST="
  643. $ARCH_EXT_LIST
  644. $THREADS_LIST
  645. altivec_h
  646. arpa_inet_h
  647. bswap
  648. byteswap_h
  649. closesocket
  650. cmov
  651. conio_h
  652. dcbzl
  653. dev_bktr_ioctl_bt848_h
  654. dev_bktr_ioctl_meteor_h
  655. dev_ic_bt8xx_h
  656. dev_video_meteor_ioctl_meteor_h
  657. dev_video_bktr_ioctl_bt848_h
  658. dlfcn_h
  659. dlopen
  660. ebp_available
  661. ebx_available
  662. fast_64bit
  663. fast_cmov
  664. fast_unaligned
  665. fork
  666. freetype2
  667. gethrtime
  668. GetProcessTimes
  669. getrusage
  670. imlib2
  671. inet_aton
  672. inline_asm
  673. libdc1394_1
  674. libdc1394_2
  675. llrint
  676. lrint
  677. lrintf
  678. machine_ioctl_bt848_h
  679. machine_ioctl_meteor_h
  680. malloc_h
  681. memalign
  682. mkstemp
  683. mlib
  684. pld
  685. ppc64
  686. round
  687. roundf
  688. sdl
  689. sdl_video_size
  690. socklen_t
  691. soundcard_h
  692. poll_h
  693. sys_mman_h
  694. sys_select_h
  695. sys_soundcard_h
  696. termios_h
  697. threads
  698. winsock2_h
  699. "
  700. CMDLINE_SELECT="
  701. $ARCH_EXT_LIST
  702. $CONFIG_LIST
  703. $THREADS_LIST
  704. debug
  705. extra_warnings
  706. logging
  707. optimizations
  708. shared
  709. static
  710. "
  711. # code dependency declarations
  712. # architecture extensions
  713. altivec_deps="powerpc"
  714. armv5te_deps="armv4l"
  715. armv6_deps="armv4l"
  716. iwmmxt_deps="armv4l"
  717. mmi_deps="mips"
  718. mmx_deps="x86"
  719. mmx2_deps="x86"
  720. ssse3_deps="x86"
  721. vis_deps="sparc"
  722. # decoders / encoders
  723. ac3_decoder_deps="gpl"
  724. dxa_decoder_deps="zlib"
  725. flashsv_decoder_deps="zlib"
  726. flashsv_encoder_deps="zlib"
  727. mpeg_xvmc_decoder_deps="xvmc"
  728. png_decoder_deps="zlib"
  729. png_encoder_deps="zlib"
  730. zmbv_decoder_deps="zlib"
  731. zmbv_encoder_deps="zlib"
  732. # external libraries
  733. liba52_decoder_deps="liba52"
  734. liba52bin_decoder_extralibs='$ldl'
  735. libamr_nb_decoder_deps="libamr_nb"
  736. libamr_nb_encoder_deps="libamr_nb"
  737. libamr_wb_decoder_deps="libamr_wb"
  738. libamr_wb_encoder_deps="libamr_wb"
  739. libfaac_encoder_deps="libfaac"
  740. libfaad_decoder_deps="libfaad"
  741. libfaadbin_decoder_extralibs='$ldl'
  742. libgsm_decoder_deps="libgsm"
  743. libgsm_encoder_deps="libgsm"
  744. libgsm_ms_decoder_deps="libgsm"
  745. libgsm_ms_encoder_deps="libgsm"
  746. libmp3lame_encoder_deps="libmp3lame"
  747. libtheora_encoder_deps="libtheora"
  748. libvorbis_encoder_deps="libvorbis"
  749. libx264_encoder_deps="libx264"
  750. libxvid_encoder_deps="libxvid"
  751. mpeg4aac_decoder_deps="libfaad"
  752. # demuxers / muxers
  753. ac3_demuxer_deps="ac3_parser"
  754. audio_beos_demuxer_deps="audio_beos"
  755. audio_beos_demuxer_extralibs="-lmedia -lbe"
  756. audio_beos_muxer_deps="audio_beos"
  757. audio_beos_muxer_extralibs="-lmedia -lbe"
  758. avisynth_demuxer_deps="avisynth"
  759. bktr_demuxer_deps_any="dev_bktr_ioctl_bt848_h machine_ioctl_bt848_h dev_video_bktr_ioctl_bt848_h dev_ic_bt8xx_h"
  760. dv1394_demuxer_deps="dv1394 dv_demuxer"
  761. libdc1394_demuxer_deps="libdc1394"
  762. libnut_demuxer_deps="libnut"
  763. libnut_muxer_deps="libnut"
  764. mp3_demuxer_deps="mpegaudio_parser"
  765. oss_demuxer_deps_any="soundcard_h sys_soundcard_h"
  766. oss_muxer_deps_any="soundcard_h sys_soundcard_h"
  767. redir_demuxer_deps="network"
  768. rtp_muxer_deps="network rtp_protocol"
  769. rtsp_demuxer_deps="sdp_demuxer"
  770. sdp_demuxer_deps="rtp_protocol mpegts_demuxer"
  771. v4l2_demuxer_deps="linux_videodev2_h"
  772. v4l_demuxer_deps="linux_videodev_h"
  773. vfwcap_demuxer_deps="capCreateCaptureWindow"
  774. vfwcap_demuxer_extralibs="-lvfw32"
  775. x11_grab_device_demuxer_deps="x11grab XShmCreateImage"
  776. x11_grab_device_demuxer_extralibs="-lX11 -lXext"
  777. # protocols
  778. http_protocol_deps="network"
  779. rtp_protocol_deps="udp_protocol"
  780. tcp_protocol_deps="network"
  781. udp_protocol_deps="network"
  782. # filters
  783. movie_filter_deps="avfilter_lavf"
  784. # programs
  785. ffplay_deps="sdl"
  786. ffserver_deps="ffm_muxer rtp_protocol rtsp_demuxer"
  787. ffserver_extralibs='$ldl'
  788. vhook_extralibs='$ldl'
  789. # default parameters
  790. enable logging
  791. logfile="config.err"
  792. # installation paths
  793. PREFIX="/usr/local"
  794. libdir='$(PREFIX)/lib'
  795. shlibdir="$libdir"
  796. incdir='$(PREFIX)/include'
  797. mandir='$(PREFIX)/share/man'
  798. bindir='$(PREFIX)/bin'
  799. # toolchain
  800. cc="gcc"
  801. ar="ar"
  802. nm="nm"
  803. ranlib="ranlib"
  804. make="make"
  805. strip="strip"
  806. asmalign_pot="unknown"
  807. ln_s="ln -sf"
  808. # machine
  809. arch=`uname -m`
  810. cpu="generic"
  811. # OS
  812. targetos=$(tolower $(uname -s))
  813. # libraries
  814. enable zlib
  815. # configurable options
  816. enable debug
  817. enable dostrip
  818. enable ffmpeg
  819. enable ffplay
  820. enable ffserver
  821. enable ipv6
  822. enable static
  823. enable mpegaudio_hp
  824. enable network
  825. enable optimizations
  826. enable protocols
  827. vhook="default"
  828. # build settings
  829. SHFLAGS='-shared -Wl,-soname,$@'
  830. VHOOKSHFLAGS='$(SHFLAGS)'
  831. LDLATEFLAGS='-Wl,-rpath-link,\$(BUILD_ROOT)/libavcodec -Wl,-rpath-link,\$(BUILD_ROOT)/libavformat -Wl,-rpath-link,\$(BUILD_ROOT)/libavutil'
  832. FFSERVERLDFLAGS=-Wl,-E
  833. LIBPREF="lib"
  834. LIBSUF=".a"
  835. FULLNAME='$(NAME)$(BUILDSUF)'
  836. LIBNAME='$(LIBPREF)$(FULLNAME)$(LIBSUF)'
  837. SLIBPREF="lib"
  838. SLIBSUF=".so"
  839. SLIBNAME='$(SLIBPREF)$(FULLNAME)$(SLIBSUF)'
  840. SLIBNAME_WITH_VERSION='$(SLIBNAME).$(LIBVERSION)'
  841. SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)'
  842. LIB_INSTALL_EXTRA_CMD='$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
  843. # gcc stupidly only outputs the basename of targets with -MM
  844. DEPEND_CMD='$(CC) -MM $(CFLAGS) $(filter-out %.h,$^) | sed "s,[0-9a-z._-]*: \($(SRC_DIR)/\)*\([a-z0-9]*/\)[^/]* ,\\2&,"'
  845. VHOOK_DEPEND_CMD='$(CC) -MM $(VHOOKCFLAGS) $(filter-out %.h,$^) | sed "s,^\([a-z]\),vhook/\\1,"'
  846. # find source path
  847. source_path="`dirname \"$0\"`"
  848. enable source_path_used
  849. if test -z "$source_path" -o "$source_path" = "." ; then
  850. source_path="`pwd`"
  851. disable source_path_used
  852. else
  853. source_path="`cd \"$source_path\"; pwd`"
  854. echo "$source_path" | grep -q '[[:blank:]]' &&
  855. die "Out of tree builds are impossible with whitespace in source path."
  856. fi
  857. FFMPEG_CONFIGURATION="$@"
  858. find_things(){
  859. thing=$1
  860. pattern=$2
  861. file=$source_path/$3
  862. sed -n "s/^[^#]*$pattern.*([^,]*, *\([^,]*\)\(,.*\)*).*/\1_$thing/p" "$file"
  863. }
  864. ENCODER_LIST=$(find_things encoder ENC libavcodec/allcodecs.c)
  865. DECODER_LIST=$(find_things decoder DEC libavcodec/allcodecs.c)
  866. PARSER_LIST=$(find_things parser PARSER libavcodec/allcodecs.c)
  867. BSF_LIST=$(find_things bsf BSF libavcodec/allcodecs.c)
  868. MUXER_LIST=$(find_things muxer _MUX libavformat/allformats.c)
  869. DEMUXER_LIST=$(find_things demuxer DEMUX libavformat/allformats.c)
  870. OUTDEV_LIST=$(find_things muxer _MUX libavdevice/alldevices.c)
  871. INDEV_LIST=$(find_things demuxer DEMUX libavdevice/alldevices.c)
  872. PROTOCOL_LIST=$(find_things protocol PROTOCOL libavformat/allformats.c)
  873. FILTER_LIST=$(find_things filter FILTER libavfilter/allfilters.c)
  874. enable $ARCH_EXT_LIST \
  875. $DECODER_LIST \
  876. $ENCODER_LIST \
  877. $PARSER_LIST \
  878. $BSF_LIST \
  879. $DEMUXER_LIST \
  880. $MUXER_LIST \
  881. $FILTER_LIST \
  882. $PROTOCOL_LIST \
  883. $INDEV_LIST \
  884. $OUTDEV_LIST \
  885. die_unknown(){
  886. echo "Unknown option \"$1\"."
  887. echo "See $0 --help for available options."
  888. exit 1
  889. }
  890. show_list() {
  891. suffix=_$1
  892. shift
  893. echo $* | sed s/$suffix//g | tr ' ' '\n' | sort
  894. exit 0
  895. }
  896. for opt do
  897. optval="${opt#*=}"
  898. case "$opt" in
  899. --logfile=*) logfile="$optval"
  900. ;;
  901. --prefix=*) PREFIX="$optval"
  902. ;;
  903. --libdir=*) libdir="$optval"
  904. ;;
  905. --shlibdir=*) shlibdir="$optval"
  906. ;;
  907. --incdir=*) incdir="$optval"
  908. ;;
  909. --mandir=*) mandir="$optval"
  910. ;;
  911. --source-path=*) source_path="$optval"
  912. ;;
  913. --cross-prefix=*) cross_prefix="$optval"
  914. ;;
  915. --cross-compile) enable cross_compile
  916. ;;
  917. --target-os=*) targetos="$optval"
  918. ;;
  919. --cc=*) cc="$optval"
  920. ;;
  921. --make=*) make="$optval"
  922. ;;
  923. --extra-cflags=*) add_cflags "$optval"
  924. ;;
  925. --extra-ldflags=*) add_ldflags "$optval"
  926. ;;
  927. --extra-libs=*) add_extralibs "$optval"
  928. ;;
  929. --build-suffix=*) BUILDSUF="$optval"
  930. ;;
  931. --arch=*) arch="$optval"
  932. ;;
  933. --cpu=*) cpu="$optval"
  934. ;;
  935. --enable-sunmlib) enable mlib
  936. ;;
  937. --disable-strip) disable dostrip
  938. ;;
  939. --disable-devices) disable $INDEV_LIST $OUTDEV_LIST
  940. ;;
  941. --enable-debug=*) debuglevel="$optval"
  942. ;;
  943. --enable-*=*|--disable-*=*)
  944. eval `echo "$opt" | sed 's/=/-/;s/--/action=/;s/-/ thing=/;s/-/ name=/'`
  945. case "$thing" in
  946. encoder|decoder|muxer|demuxer|parser|bsf|protocol|filter) $action ${optval}_${thing} ;;
  947. *) die_unknown "$opt" ;;
  948. esac
  949. ;;
  950. --enable-?*|--disable-?*)
  951. eval `echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g'`
  952. if is_in $option $COMPONENT_LIST; then
  953. eval $action \$$(toupper ${option%s})_LIST
  954. elif is_in $option $CMDLINE_SELECT; then
  955. $action $option
  956. else
  957. die_unknown $opt
  958. fi
  959. ;;
  960. --list-*)
  961. NAME="${opt#--list-}"
  962. is_in $NAME $COMPONENT_LIST || die_unknown $opt
  963. NAME=${NAME%s}
  964. eval show_list $NAME \$$(toupper $NAME)_LIST
  965. ;;
  966. --help|-h) show_help
  967. ;;
  968. *)
  969. die_unknown $opt
  970. ;;
  971. esac
  972. done
  973. case "$arch" in
  974. i386|i486|i586|i686|i86pc|BePC)
  975. arch="x86_32"
  976. enable fast_unaligned
  977. ;;
  978. x86_64|amd64)
  979. arch="x86_32"
  980. enable fast_unaligned
  981. canon_arch="`$cc -dumpmachine | sed -e 's,\([^-]*\)-.*,\1,'`"
  982. if [ x"$canon_arch" = x"x86_64" -o x"$canon_arch" = x"amd64" ]; then
  983. if ! echo $CFLAGS | grep -q -- -m32; then
  984. arch="x86_64"
  985. enable fast_64bit
  986. fi
  987. fi
  988. ;;
  989. # armv4l is a subset of armv[567]*l
  990. arm|armv[4567]*l)
  991. arch="armv4l"
  992. ;;
  993. alpha)
  994. arch="alpha"
  995. enable fast_64bit
  996. ;;
  997. "Power Macintosh"|ppc|powerpc)
  998. arch="powerpc"
  999. ;;
  1000. ppc64)
  1001. arch="powerpc"
  1002. enable fast_64bit
  1003. ;;
  1004. mips|mipsel|IP*)
  1005. arch="mips"
  1006. ;;
  1007. sun4u|sparc64)
  1008. arch="sparc64"
  1009. enable fast_64bit
  1010. ;;
  1011. sparc)
  1012. arch="sparc"
  1013. ;;
  1014. sh4)
  1015. arch="sh4"
  1016. ;;
  1017. parisc)
  1018. arch="parisc"
  1019. ;;
  1020. parisc64)
  1021. arch="parisc"
  1022. enable fast_64bit
  1023. ;;
  1024. s390|s390x)
  1025. arch="s390"
  1026. ;;
  1027. m68k)
  1028. arch="m68k"
  1029. ;;
  1030. ia64)
  1031. arch="ia64"
  1032. enable fast_64bit
  1033. ;;
  1034. bfin)
  1035. arch="bfin"
  1036. ;;
  1037. *)
  1038. arch="unknown"
  1039. ;;
  1040. esac
  1041. enable $arch
  1042. enabled_any x86_32 x86_64 && enable x86
  1043. enabled sparc64 && enable sparc
  1044. # OS specific
  1045. case $targetos in
  1046. beos|haiku|zeta)
  1047. PREFIX="$HOME/config"
  1048. # helps building libavcodec
  1049. add_cflags "-DPIC -fomit-frame-pointer"
  1050. # 3 gcc releases known for BeOS, each with ugly bugs
  1051. gcc_version="`$cc -v 2>&1 | grep version | cut -d ' ' -f3-`"
  1052. case "$gcc_version" in
  1053. 2.9-beos-991026*|2.9-beos-000224*) echo "R5/GG gcc"
  1054. disable mmx
  1055. ;;
  1056. *20010315*) echo "BeBits gcc"
  1057. add_cflags "-fno-expensive-optimizations"
  1058. ;;
  1059. esac
  1060. SHFLAGS=-nostart
  1061. # enable BeOS things
  1062. enable audio_beos
  1063. # no need for libm, but the inet stuff
  1064. # Check for BONE
  1065. # XXX: actually should check for NOT net_server
  1066. if echo $BEINCLUDES | grep -q 'headers/be/bone'; then
  1067. network_extralibs="-lbind -lsocket"
  1068. else
  1069. enable beos_netserver
  1070. network_extralibs="-lnet"
  1071. fi ;;
  1072. sunos)
  1073. FFSERVERLDFLAGS=""
  1074. SHFLAGS='-shared -Wl,-h,$@'
  1075. network_extralibs="-lsocket -lnsl"
  1076. ;;
  1077. netbsd)
  1078. oss_demuxer_extralibs="-lossaudio"
  1079. oss_muxer_extralibs="-lossaudio"
  1080. ;;
  1081. openbsd)
  1082. disable need_memalign
  1083. LIBOBJFLAGS='$(PIC)'
  1084. SHFLAGS='-shared'
  1085. SLIBNAME='$(SLIBPREF)$(FULLNAME)$(SLIBSUF).$(LIBVERSION)'
  1086. SLIBNAME_WITH_VERSION='$(SLIBNAME)'
  1087. SLIBNAME_WITH_MAJOR='$(SLIBNAME)'
  1088. oss_demuxer_extralibs="-lossaudio"
  1089. oss_muxer_extralibs="-lossaudio"
  1090. ;;
  1091. freebsd)
  1092. disable need_memalign
  1093. ;;
  1094. bsd/os)
  1095. osextralibs="-lpoll -lgnugetopt"
  1096. strip="strip -d"
  1097. ;;
  1098. darwin)
  1099. disable need_memalign
  1100. SHFLAGS='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR) -Wl,-read_only_relocs,suppress'
  1101. VHOOKSHFLAGS='-dynamiclib -Wl,-single_module -flat_namespace -undefined suppress -Wl,-install_name,$(SHLIBDIR)/vhook/$@'
  1102. strip="strip -x"
  1103. FFLDFLAGS="-Wl,-dynamic,-search_paths_first"
  1104. SLIBSUF=".dylib"
  1105. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)'
  1106. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)'
  1107. FFSERVERLDFLAGS=-Wl,-bind_at_load
  1108. ;;
  1109. mingw32*)
  1110. targetos=mingw32
  1111. shlibdir="$bindir"
  1112. VHOOKSHFLAGS='-shared -L$(BUILD_ROOT)/libavformat -L$(BUILD_ROOT)/libavcodec -L$(BUILD_ROOT)/libavutil'
  1113. VHOOKLIBS='-lavformat$(BUILDSUF) -lavcodec$(BUILDSUF) -lavutil$(BUILDSUF) $(EXTRALIBS)'
  1114. if enabled swscale; then
  1115. VHOOKSHFLAGS="$VHOOKSHFLAGS -L\$(BUILD_ROOT)/libswscale"
  1116. VHOOKLIBS="$VHOOKLIBS -lswscale\$(BUILDSUF)"
  1117. fi
  1118. disable ffserver
  1119. SLIBPREF=""
  1120. SLIBSUF=".dll"
  1121. EXESUF=".exe"
  1122. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  1123. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  1124. SLIB_EXTRA_CMD='-lib /machine:i386 /def:$(@:$(SLIBSUF)=.def)'
  1125. SLIB_INSTALL_EXTRA_CMD='-install -m 644 $(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib) "$(SHLIBDIR)/$(SLIBNAME:$(SLIBSUF)=.lib)"'
  1126. SLIB_UNINSTALL_EXTRA_CMD='rm -f "$(SHLIBDIR)/$(SLIBNAME:$(SLIBSUF)=.lib)"'
  1127. SHFLAGS='-shared -Wl,--output-def,$(@:$(SLIBSUF)=.def) -Wl,--enable-runtime-pseudo-reloc -Wl,--enable-auto-image-base'
  1128. ;;
  1129. cygwin*)
  1130. targetos=cygwin
  1131. shlibdir="$bindir"
  1132. VHOOKSHFLAGS='-shared -L$(BUILD_ROOT)/libavformat -L$(BUILD_ROOT)/libavcodec -L$(BUILD_ROOT)/libavutil'
  1133. VHOOKLIBS='-lavformat$(BUILDSUF) -lavcodec$(BUILDSUF) -lavutil$(BUILDSUF) $(EXTRALIBS)'
  1134. if enabled swscale; then
  1135. VHOOKSHFLAGS="$VHOOKSHFLAGS -L\$(BUILD_ROOT)/libswscale"
  1136. VHOOKLIBS="$VHOOKLIBS -lswscale\$(BUILDSUF)"
  1137. fi
  1138. EXESUF=".exe"
  1139. SLIBPREF="cyg"
  1140. SLIBSUF=".dll"
  1141. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
  1142. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
  1143. SHFLAGS='-shared -Wl,--enable-auto-image-base'
  1144. ;;
  1145. *-dos|freedos|opendos)
  1146. disable ffplay ffserver vhook
  1147. disable $INDEV_LIST $OUTDEV_LIST
  1148. network_extralibs="-lsocket"
  1149. EXESUF=".exe"
  1150. ;;
  1151. linux)
  1152. LDLATEFLAGS="-Wl,--as-needed $LDLATEFLAGS"
  1153. enable dv1394
  1154. ;;
  1155. irix*)
  1156. targetos=irix
  1157. ranlib="echo ignoring ranlib"
  1158. ;;
  1159. os/2*)
  1160. strip="lxlite"
  1161. ln_s="cp -f"
  1162. EXESUF=".exe"
  1163. FFLDFLAGS="-Zomf -Zbin-files -Zargs-wild -Zmap"
  1164. SHFLAGS='$(NAME).def -Zdll -Zomf'
  1165. FFSERVERLDFLAGS=""
  1166. LIBSUF="_s.a"
  1167. SLIBPREF=""
  1168. SLIBSUF=".dll"
  1169. SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
  1170. SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(shell echo $(NAME) | cut -c1-6)$(LIBMAJOR)$(SLIBSUF)'
  1171. SLIB_CREATE_DEF_CMD='echo LIBRARY $(SLIBNAME_WITH_MAJOR) INITINSTANCE TERMINSTANCE > $(NAME).def; \
  1172. echo PROTMODE >> $(NAME).def; \
  1173. echo CODE PRELOAD MOVEABLE DISCARDABLE >> $(NAME).def; \
  1174. echo DATA PRELOAD MOVEABLE MULTIPLE NONSHARED >> $(NAME).def; \
  1175. echo EXPORTS >> $(NAME).def; \
  1176. emxexp -o $(OBJS) >> $(NAME).def'
  1177. SLIB_EXTRA_CMD='emximp -o $(LIBPREF)$(NAME)_dll.a $(NAME).def; \
  1178. emximp -o $(LIBPREF)$(NAME)_dll.lib $(NAME).def;'
  1179. SLIB_INSTALL_EXTRA_CMD='install -m 644 $(LIBPREF)$(NAME)_dll.a $(LIBPREF)$(NAME)_dll.lib "$(LIBDIR)"'
  1180. SLIB_UNINSTALL_EXTRA_CMD='rm -f "$(LIBDIR)"/$(LIBPREF)$(NAME)_dll.a "$(LIBDIR)"/$(LIBPREF)$(NAME)_dll.lib'
  1181. disable vhook
  1182. ;;
  1183. interix)
  1184. disable vhook
  1185. ;;
  1186. *)
  1187. targetos="${targetos}-UNKNOWN"
  1188. ;;
  1189. esac
  1190. # set temporary file name
  1191. if test ! -z "$TMPDIR" ; then
  1192. TMPDIR1="${TMPDIR}"
  1193. elif test ! -z "$TEMPDIR" ; then
  1194. TMPDIR1="${TEMPDIR}"
  1195. else
  1196. TMPDIR1="/tmp"
  1197. fi
  1198. TMPC="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.c"
  1199. TMPO="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.o"
  1200. TMPE="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}${EXESUF}"
  1201. TMPS="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.S"
  1202. TMPH="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.h"
  1203. add_extralibs $osextralibs
  1204. enabled logging || logfile=/dev/null
  1205. echo "# $0 $@" >$logfile
  1206. set >>$logfile
  1207. # Combine FFLDFLAGS and the LDFLAGS environment variable.
  1208. LDFLAGS="$FFLDFLAGS $LDFLAGS"
  1209. test -n "$cross_prefix" && enable cross_compile
  1210. cc="${cross_prefix}${cc}"
  1211. ar="${cross_prefix}${ar}"
  1212. nm="${cross_prefix}${nm}"
  1213. ranlib="${cross_prefix}${ranlib}"
  1214. strip="${cross_prefix}${strip}"
  1215. # we need to build at least one lib type
  1216. if ! enabled_any static shared; then
  1217. cat <<EOF
  1218. At least one library type must be built.
  1219. Specify --enable-static to build the static libraries or --enable-shared to
  1220. build the shared libraries as well. To only build the shared libraries specify
  1221. --disable-static in addition to --enable-shared.
  1222. EOF
  1223. exit 1;
  1224. fi
  1225. disabled static && LIBNAME=""
  1226. if enabled_any libfaad libfaadbin ; then
  1227. if check_header faad.h; then
  1228. check_cc << EOF
  1229. #include <faad.h>
  1230. #ifndef FAAD2_VERSION
  1231. ok faad1
  1232. #endif
  1233. int main(void) { return 0; }
  1234. EOF
  1235. test $? = 0 && enable libfaad2
  1236. else
  1237. die "FAAD test failed."
  1238. fi
  1239. fi
  1240. if ! enabled gpl; then
  1241. die_gpl_disabled(){
  1242. name=$1
  1243. shift
  1244. enabled_any $@ && die "$name is under GPL and --enable-gpl is not specified."
  1245. }
  1246. die_gpl_disabled "The Postprocessing code" postproc
  1247. die_gpl_disabled "liba52" liba52
  1248. die_gpl_disabled "libx264" libx264
  1249. die_gpl_disabled "libxvidcore" libxvid
  1250. die_gpl_disabled "FAAD2" libfaad2
  1251. die_gpl_disabled "The X11 grabber" x11grab
  1252. die_gpl_disabled "The software scaler" swscale
  1253. fi
  1254. if ! enabled nonfree && enabled_any libamr_nb libamr_wb; then
  1255. die "libamr is nonfree and --enable-nonfree is not specified."
  1256. fi
  1257. check_deps $ARCH_EXT_LIST
  1258. test -z "$need_memalign" && need_memalign="$mmx"
  1259. #Darwin CC versions
  1260. if test $targetos = darwin; then
  1261. if $cc -v 2>&1 | grep -q xlc; then
  1262. add_cflags "-qpdf2 -qlanglvl=extc99 -qmaxmem=-1 -qarch=auto -qtune=auto"
  1263. else
  1264. add_cflags "-pipe"
  1265. check_cflags "-force_cpusubtype_ALL"
  1266. check_cflags "-Wno-sign-compare"
  1267. enabled shared || add_cflags -mdynamic-no-pic
  1268. fi
  1269. fi
  1270. disabled optimizations || add_cflags -fomit-frame-pointer
  1271. # Add processor-specific flags
  1272. if test $cpu != "generic"; then
  1273. warn_altivec(){
  1274. $1 altivec && echo "WARNING: Tuning for $2 but AltiVec $1.";
  1275. }
  1276. case $cpu in
  1277. 601|ppc601|PowerPC601)
  1278. add_cflags "-mcpu=601"
  1279. warn_altivec enabled PPC601
  1280. ;;
  1281. 603*|ppc603*|PowerPC603*)
  1282. add_cflags "-mcpu=603"
  1283. warn_altivec enabled PPC603
  1284. ;;
  1285. 604*|ppc604*|PowerPC604*)
  1286. add_cflags "-mcpu=604"
  1287. warn_altivec enabled PPC604
  1288. ;;
  1289. G3|g3|75*|ppc75*|PowerPC75*)
  1290. add_cflags "-mcpu=750 -mpowerpc-gfxopt"
  1291. warn_altivec enabled PPC75x
  1292. ;;
  1293. G4|g4|745*|ppc745*|PowerPC745*)
  1294. add_cflags "-mcpu=7450 -mpowerpc-gfxopt"
  1295. warn_altivec disabled PPC745x
  1296. ;;
  1297. 74*|ppc74*|PowerPC74*)
  1298. add_cflags "-mcpu=7400 -mpowerpc-gfxopt"
  1299. warn_altivec disabled PPC74xx
  1300. ;;
  1301. G5|g5|970|ppc970|PowerPC970|power4*|Power4*)
  1302. add_cflags "-mcpu=970 -mpowerpc-gfxopt -mpowerpc64"
  1303. warn_altivec disabled PPC970
  1304. enable ppc64
  1305. ;;
  1306. Cell|CELL|cell)
  1307. add_cflags "-mcpu=cell"
  1308. warn_altivec disabled Cell
  1309. enable ppc64
  1310. ;;
  1311. # targets that do NOT support conditional mov (cmov)
  1312. i[345]86|pentium|pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3)
  1313. add_cflags "-march=$cpu"
  1314. disable cmov
  1315. ;;
  1316. # targets that do support conditional mov (cmov)
  1317. i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64|k8|opteron|athlon-fx|core2)
  1318. add_cflags "-march=$cpu"
  1319. enable cmov
  1320. enable fast_cmov
  1321. ;;
  1322. # targets that do support conditional mov but on which it's slow
  1323. pentium4|pentium4m|prescott|nocona)
  1324. add_cflags "-march=$cpu"
  1325. enable cmov
  1326. disable fast_cmov
  1327. ;;
  1328. sparc64)
  1329. add_cflags "-mcpu=v9"
  1330. ;;
  1331. arm*)
  1332. add_cflags "-mcpu=$cpu"
  1333. ;;
  1334. *)
  1335. echo "WARNING: Unknown CPU \"$cpu\", ignored."
  1336. ;;
  1337. esac
  1338. fi
  1339. gnu_make(){
  1340. $1 --version 2>&1 | grep -q GNU
  1341. }
  1342. if ! gnu_make $make; then
  1343. gnu_make gmake && make=gmake || die "GNU make not found."
  1344. fi
  1345. # make sure we can execute files in $TMPDIR
  1346. cat >$TMPE 2>>$logfile <<EOF
  1347. #! /bin/sh
  1348. EOF
  1349. chmod +x $TMPE >>$logfile 2>&1
  1350. if ! $TMPE >>$logfile 2>&1; then
  1351. cat <<EOF
  1352. Unable to create and execute files in $TMPDIR1. Set the TMPDIR environment
  1353. variable to another directory and make sure that $TMPDIR1 is not mounted
  1354. noexec.
  1355. EOF
  1356. die "Sanity test failed."
  1357. fi
  1358. rm $TMPE
  1359. # compiler sanity check
  1360. check_exec <<EOF
  1361. int main(void){
  1362. return 0;
  1363. }
  1364. EOF
  1365. if test "$?" != 0; then
  1366. echo "$cc is unable to create an executable file."
  1367. if test -z "$cross_prefix" && ! enabled cross_compile ; then
  1368. echo "If $cc is a cross-compiler, use the --cross-compile option."
  1369. echo "Only do this if you know what cross compiling means."
  1370. fi
  1371. die "C compiler test failed."
  1372. fi
  1373. check_cc <<EOF || die "Symbol mangling check failed."
  1374. int ff_extern;
  1375. EOF
  1376. sym=$($nm -P -g $TMPO)
  1377. extern_prefix=${sym%%ff_extern*}
  1378. check_asm inline_asm '""'
  1379. if enabled x86; then
  1380. # check whether EBP is available on x86
  1381. # As 'i' is stored on the stack, this program will crash
  1382. # if the base pointer is used to access it because the
  1383. # base pointer is cleared in the inline assembly code.
  1384. check_exec_crash <<EOF && enable ebp_available
  1385. volatile int i=0;
  1386. asm volatile (
  1387. "xorl %%ebp, %%ebp"
  1388. ::: "%ebp");
  1389. return i;
  1390. EOF
  1391. # check wether EBX is available on x86
  1392. check_asm ebx_available '"":::"%ebx"'
  1393. # check whether binutils is new enough to compile SSSE3/MMX2
  1394. enabled ssse3 && check_asm ssse3 '"pabsw %xmm0, %xmm0"'
  1395. enabled mmx2 && check_asm mmx2 '"movss %xmm0, %xmm0"'
  1396. check_asm bswap '"bswap %%eax" ::: "%eax"'
  1397. fi
  1398. # check for assembler specific support
  1399. if test $arch = "powerpc"; then
  1400. check_cc <<EOF && enable dcbzl
  1401. int main(void) {
  1402. register long zero = 0;
  1403. char data[1024];
  1404. asm volatile("dcbzl %0, %1" : : "b" (data), "r" (zero));
  1405. return 0;
  1406. }
  1407. EOF
  1408. fi
  1409. # check for SIMD availability
  1410. # AltiVec flags: The FSF version of GCC differs from the Apple version
  1411. if enabled altivec; then
  1412. check_cflags -maltivec -mabi=altivec &&
  1413. check_header altivec.h ||
  1414. check_cflags -faltivec
  1415. # check if our compiler supports Motorola AltiVec C API
  1416. enabled altivec_h &&
  1417. inc_altivec_h="#include <altivec.h>" ||
  1418. inc_altivec_h=
  1419. check_cc <<EOF || disable altivec
  1420. $inc_altivec_h
  1421. int main(void) {
  1422. vector signed int v1, v2, v3;
  1423. v1 = vec_add(v2,v3);
  1424. return 0;
  1425. }
  1426. EOF
  1427. fi
  1428. # We have to check if pld is a nop and disable it.
  1429. enabled armv4l && check_asm pld '"pld [r0]"'
  1430. enabled armv5te && check_asm armv5te '"qadd r0, r0, r0"'
  1431. enabled armv6 && check_asm armv6 '"sadd16 r0, r0, r0"'
  1432. enabled iwmmxt && check_asm iwmmxt '"wunpckelub wr6, wr4"'
  1433. enabled mmi && check_asm mmi '"lq $2, 0($2)"'
  1434. enabled vis && check_asm vis '"pdist %f0, %f0, %f0"' -mcpu=ultrasparc
  1435. enabled vis && add_cflags "-mcpu=ultrasparc -mtune=ultrasparc"
  1436. # ---
  1437. # big/little-endian test
  1438. check_cc <<EOF || die "endian test failed"
  1439. unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
  1440. EOF
  1441. od -A n -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian
  1442. # ---
  1443. # check availability of some header files
  1444. if check_func dlopen; then
  1445. ldl=
  1446. elif check_func dlopen -ldl; then
  1447. ldl=-ldl
  1448. fi
  1449. check_func fork
  1450. check_func gethrtime
  1451. check_func getrusage
  1452. check_func inet_aton $network_extralibs
  1453. check_func memalign
  1454. check_func mkstemp
  1455. check_func2 windows.h GetProcessTimes
  1456. check_header byteswap.h
  1457. check_header conio.h
  1458. check_header dlfcn.h
  1459. check_header malloc.h
  1460. check_header sys/mman.h
  1461. check_header termios.h
  1462. if ! enabled_any memalign memalign_hack && enabled need_memalign ; then
  1463. die "Error, no memalign() but SSE enabled, disable it or use --enable-memalign-hack."
  1464. fi
  1465. enabled zlib && check_lib zlib.h zlibVersion -lz || disable zlib
  1466. # ffserver uses poll(),
  1467. # if it's not found we can emulate it using select().
  1468. if enabled ffserver; then
  1469. check_header poll.h
  1470. check_header sys/select.h
  1471. fi
  1472. # check for some common methods of building with pthread support
  1473. # do this before the optional library checks as some of them require pthreads
  1474. if enabled pthreads; then
  1475. if check_func pthread_create; then
  1476. :
  1477. elif check_func pthread_create -pthread; then
  1478. add_cflags -pthread
  1479. add_extralibs -pthread
  1480. elif check_func pthread_create -pthreads; then
  1481. add_cflags -pthreads
  1482. add_extralibs -pthreads
  1483. elif ! check_lib pthread.h pthread_create -lpthread; then
  1484. die "ERROR: can't find pthreads library"
  1485. fi
  1486. fi
  1487. for thread in $THREADS_LIST; do
  1488. if enabled $thread; then
  1489. test -n "$thread_type" &&
  1490. die "ERROR: Only one thread type must be selected." ||
  1491. thread_type="$thread"
  1492. fi
  1493. done
  1494. check_lib math.h sin -lm
  1495. # test for C99 functions in math.h
  1496. for func in llrint lrint lrintf round roundf; do
  1497. check_exec <<EOF && enable $func || disable $func
  1498. #define _ISOC9X_SOURCE 1
  1499. #include <math.h>
  1500. int main(void) { return ($func(3.999f) > 0)?0:1; }
  1501. EOF
  1502. done
  1503. # these are off by default, so fail if requested and not available
  1504. enabled avisynth && require2 vfw32 "windows.h vfw.h" AVIFileInit -lvfw32
  1505. enabled liba52 && require liba52 a52dec/a52.h a52_init -la52
  1506. enabled libamr_nb && require libamrnb amrnb/interf_dec.h Speech_Decode_Frame_init -lamrnb -lm
  1507. enabled libamr_wb && require libamrwb amrwb/dec_if.h D_IF_init -lamrwb -lm
  1508. enabled libfaac && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaac
  1509. enabled libfaad && require2 libfaad faad.h faacDecOpen -lfaad
  1510. enabled libgsm && require libgsm gsm.h gsm_create -lgsm
  1511. enabled libmp3lame && require LAME lame/lame.h lame_init -lmp3lame -lm
  1512. enabled libnut && require libnut libnut.h nut_demuxer_init -lnut
  1513. enabled libtheora && require libtheora theora/theora.h theora_info_init -ltheora -logg
  1514. enabled libvorbis && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbisenc -lvorbis -logg
  1515. enabled libx264 && require x264 x264.h x264_encoder_open -lx264 -lm
  1516. enabled libxvid && require Xvid xvid.h xvid_global -lxvidcore
  1517. enabled mlib && require mediaLib mlib_types.h mlib_VectorSub_S16_U8_Mod -lmlib
  1518. # disable the native AC-3 decoder if liba52 is enabled
  1519. enabled liba52 && disable ac3_decoder
  1520. # libdc1394 check
  1521. if enabled libdc1394; then
  1522. { check_lib dc1394/dc1394.h dc1394_new -ldc1394 -lraw1394 &&
  1523. enable libdc1394_2; } ||
  1524. { check_lib libdc1394/dc1394_control.h dc1394_create_handle -ldc1394_control -lraw1394 &&
  1525. enable libdc1394_1; } ||
  1526. die "ERROR: No version of libdc1394 found "
  1527. fi
  1528. _restrict=
  1529. for restrict_keyword in restrict __restrict__ __restrict; do
  1530. check_cc <<EOF && _restrict=$restrict_keyword && break
  1531. void foo(char * $restrict_keyword p);
  1532. EOF
  1533. done
  1534. test "$vhook" = "default" && vhook="$dlopen"
  1535. if test "$targetos" = cygwin -o "$targetos" = mingw32 && enabled_all static vhook ; then
  1536. disable vhook
  1537. echo
  1538. echo "At the moment vhooks don't work on Cygwin or MinGW static builds."
  1539. echo "Patches welcome."
  1540. echo
  1541. fi
  1542. if enabled vhook; then
  1543. check_ldflags -rdynamic
  1544. check_ldflags -export-dynamic
  1545. fi
  1546. check_foo_config imlib2 imlib2 Imlib2.h imlib_load_font
  1547. check_foo_config freetype2 freetype ft2build.h FT_Init_FreeType
  1548. ##########################################
  1549. # SDL check
  1550. disable sdl_too_old
  1551. disable sdl
  1552. SDL_CONFIG="${cross_prefix}sdl-config"
  1553. if "${SDL_CONFIG}" --version >/dev/null 2>&1; then
  1554. sdl_cflags=`"${SDL_CONFIG}" --cflags`
  1555. temp_cflags $sdl_cflags
  1556. temp_extralibs `"${SDL_CONFIG}" --libs`
  1557. if check_lib2 SDL.h SDL_Init; then
  1558. _sdlversion=`"${SDL_CONFIG}" --version | sed 's/[^0-9]//g'`
  1559. if test "$_sdlversion" -lt 121 ; then
  1560. enable sdl_too_old
  1561. else
  1562. enable sdl
  1563. check_cc $sdl_cflags <<EOF && enable sdl_video_size
  1564. #include <SDL.h>
  1565. int main(int argc, char **argv){
  1566. const SDL_VideoInfo *vi = SDL_GetVideoInfo();
  1567. int w = vi->current_w;
  1568. return 0;
  1569. }
  1570. EOF
  1571. fi
  1572. fi
  1573. restore_flags
  1574. fi
  1575. texi2html -version >/dev/null 2>&1 && enable texi2html || disable texi2html
  1576. check_type sys/socket.h socklen_t
  1577. ##########################################
  1578. # Network check
  1579. if enabled network; then
  1580. # Prefer arpa/inet.h over winsock2
  1581. if check_header arpa/inet.h ; then
  1582. check_func closesocket
  1583. elif check_header winsock2.h ; then
  1584. network_extralibs="-lws2_32"
  1585. check_type ws2tcpip.h socklen_t
  1586. check_func2 winsock2.h closesocket
  1587. fi
  1588. fi
  1589. ##########################################
  1590. # IPv6 check
  1591. enabled network && enabled ipv6 && check_ld <<EOF && enable ipv6 || disable ipv6
  1592. #include <sys/types.h>
  1593. #include <sys/socket.h>
  1594. #include <netinet/in.h>
  1595. #include <netdb.h>
  1596. int main(void) {
  1597. struct sockaddr_storage saddr;
  1598. struct ipv6_mreq mreq6;
  1599. getaddrinfo(0,0,0,0);
  1600. getnameinfo(0,0,0,0,0,0,0);
  1601. IN6_IS_ADDR_MULTICAST((const struct in6_addr *)0);
  1602. }
  1603. EOF
  1604. check_header linux/videodev.h
  1605. check_header linux/videodev2.h
  1606. check_func2 "windows.h vfw.h" capCreateCaptureWindow -lvfw32
  1607. # check for ioctl_meteor.h, ioctl_bt848.h and alternatives
  1608. { check_header dev/bktr/ioctl_meteor.h &&
  1609. check_header dev/bktr/ioctl_bt848.h; } ||
  1610. { check_header machine/ioctl_meteor.h &&
  1611. check_header machine/ioctl_bt848.h; } ||
  1612. { check_header dev/video/meteor/ioctl_meteor.h &&
  1613. check_header dev/video/bktr/ioctl_bt848.h; } ||
  1614. check_header dev/ic/bt8xx.h
  1615. check_header sys/soundcard.h
  1616. check_header soundcard.h
  1617. # deal with the X11 frame grabber
  1618. enabled x11grab &&
  1619. check_header X11/Xlib.h &&
  1620. check_header X11/extensions/XShm.h &&
  1621. check_func XOpenDisplay -lX11 &&
  1622. check_func XShmCreateImage -lX11 -lXext
  1623. enabled debug && add_cflags -g"$debuglevel"
  1624. # add some useful compiler flags if supported
  1625. check_cflags -Wdeclaration-after-statement
  1626. check_cflags -Wall
  1627. check_cflags -Wno-switch
  1628. check_cflags -Wdisabled-optimization
  1629. check_cflags -Wpointer-arith
  1630. check_cflags -Wredundant-decls
  1631. check_cflags -Wno-pointer-sign
  1632. check_cflags -Wcast-qual
  1633. check_cflags -Wwrite-strings
  1634. check_cflags -Wtype-limits
  1635. enabled extra_warnings && check_cflags -Winline
  1636. # add some linker flags
  1637. check_ldflags -Wl,--warn-common
  1638. check_ldflags $LDLATEFLAGS
  1639. check_ldflags -Wl,-Bsymbolic
  1640. if enabled small; then
  1641. check_cflags -Os # not all compilers support -Os
  1642. optimizations="small"
  1643. elif enabled optimizations; then
  1644. if $cc -v 2>&1 | grep -q xlc; then
  1645. add_cflags "-O5"
  1646. add_ldflags "-O5"
  1647. else
  1648. add_cflags "-O3"
  1649. fi
  1650. fi
  1651. check_cflags -fno-math-errno
  1652. check_cflags -fno-signed-zeros
  1653. # PIC flags for shared library objects where they are needed
  1654. if enabled shared; then
  1655. # LIBOBJFLAGS may have already been set in the OS configuration
  1656. if test -z "$LIBOBJFLAGS" ; then
  1657. case "$arch" in
  1658. x86_64|ia64|alpha|sparc*|power*) LIBOBJFLAGS='$(PIC)' ;;
  1659. esac
  1660. fi
  1661. fi
  1662. if enabled gprof; then
  1663. add_cflags "-p"
  1664. add_ldflags "-p"
  1665. fi
  1666. VHOOKCFLAGS="-fPIC"
  1667. # Find out if the .align argument is a power of two or not.
  1668. if test $asmalign_pot = "unknown"; then
  1669. disable asmalign_pot
  1670. echo 'asm (".align 3");' | check_cc && enable asmalign_pot
  1671. fi
  1672. enabled_any $DECODER_LIST && enable decoders
  1673. enabled_any $ENCODER_LIST && enable encoders
  1674. enabled_any $BSF_LIST && enable bsfs
  1675. enabled_any $DEMUXER_LIST && enable demuxers
  1676. enabled_any $MUXER_LIST && enable muxers
  1677. enabled_any $FILTER_LIST && enable filters
  1678. enabled_any $INDEV_LIST && enable demuxers
  1679. enabled_any $OUTDEV_LIST && enable muxers
  1680. enabled_any $PROTOCOL_LIST && enable protocols
  1681. enabled_any $THREADS_LIST && enable threads
  1682. check_deps $CONFIG_LIST \
  1683. $HAVE_LIST \
  1684. $DECODER_LIST \
  1685. $ENCODER_LIST \
  1686. $PARSER_LIST \
  1687. $BSF_LIST \
  1688. $DEMUXER_LIST \
  1689. $MUXER_LIST \
  1690. $FILTER_LIST \
  1691. $INDEV_LIST \
  1692. $OUTDEV_LIST \
  1693. $PROTOCOL_LIST \
  1694. enabled libdc1394 && append pkg_requires "libraw1394"
  1695. enabled libtheora && append pkg_requires "theora"
  1696. enabled libvorbis && append pkg_requires "vorbisenc"
  1697. echo "install prefix $PREFIX"
  1698. echo "source path $source_path"
  1699. echo "C compiler $cc"
  1700. echo "make $make"
  1701. echo ".align is power-of-two $asmalign_pot"
  1702. echo "ARCH $arch ($cpu)"
  1703. if test "$BUILDSUF" != ""; then
  1704. echo "build suffix $BUILDSUF"
  1705. fi
  1706. echo "big-endian ${bigendian-no}"
  1707. if test $arch = "x86_32" -o $arch = "x86_64"; then
  1708. echo "MMX enabled ${mmx-no}"
  1709. echo "CMOV enabled ${cmov-no}"
  1710. echo "CMOV is fast ${fast_cmov-no}"
  1711. echo "EBX available ${ebx_available-no}"
  1712. echo "EBP available ${ebp_available-no}"
  1713. fi
  1714. if test $arch = "armv4l"; then
  1715. echo "ARMv5TE enabled ${armv5te-no}"
  1716. echo "ARMv6 enabled ${armv6-no}"
  1717. echo "IWMMXT enabled ${iwmmxt-no}"
  1718. fi
  1719. if test $arch = "mips"; then
  1720. echo "MMI enabled ${mmi-no}"
  1721. fi
  1722. if test $arch = "powerpc"; then
  1723. echo "AltiVec enabled ${altivec-no}"
  1724. echo "dcbzl available ${dcbzl-no}"
  1725. fi
  1726. echo "gprof enabled ${gprof-no}"
  1727. echo "debug symbols ${debug-no}"
  1728. echo "strip symbols ${dostrip-no}"
  1729. echo "optimizations ${optimizations-no}"
  1730. echo "static ${static-no}"
  1731. echo "shared ${shared-no}"
  1732. echo "postprocessing support ${postproc-no}"
  1733. echo "software scaler enabled ${swscale-no}"
  1734. echo "new filter support ${avfilter-no}"
  1735. echo "filters using lavformat ${avfilter_lavf-no}"
  1736. echo "video hooking ${vhook-no}"
  1737. if enabled vhook; then
  1738. echo "Imlib2 support ${imlib2-no}"
  1739. echo "FreeType support ${freetype2-no}"
  1740. fi
  1741. echo "network support ${network-no}"
  1742. if enabled network; then
  1743. echo "IPv6 support ${ipv6-no}"
  1744. fi
  1745. echo "threading support ${thread_type-no}"
  1746. echo "SDL support ${sdl-no}"
  1747. if enabled sdl_too_old; then
  1748. echo "-> Your SDL version is too old - please upgrade to have FFplay/SDL support."
  1749. fi
  1750. echo "Sun medialib support ${mlib-no}"
  1751. echo "AVISynth enabled ${avisynth-no}"
  1752. echo "liba52 support ${liba52-no}"
  1753. echo "liba52 dlopened ${liba52bin-no}"
  1754. echo "libamr-nb support ${libamr_nb-no}"
  1755. echo "libamr-wb support ${libamr_wb-no}"
  1756. echo "libdc1394 support ${libdc1394-no}"
  1757. echo "libfaac enabled ${libfaac-no}"
  1758. echo "libfaad enabled ${libfaad-no}"
  1759. echo "libfaad dlopened ${libfaadbin-no}"
  1760. echo "libgsm enabled ${libgsm-no}"
  1761. echo "libmp3lame enabled ${libmp3lame-no}"
  1762. echo "libnut enabled ${libnut-no}"
  1763. echo "libtheora enabled ${libtheora-no}"
  1764. echo "libvorbis enabled ${libvorbis-no}"
  1765. echo "x264 enabled ${libx264-no}"
  1766. echo "XviD enabled ${libxvid-no}"
  1767. echo "zlib enabled ${zlib-no}"
  1768. echo
  1769. for type in decoder encoder parser demuxer muxer protocol filter bsf indev outdev; do
  1770. echo "Enabled ${type}s:"
  1771. eval list=\$$(toupper $type)_LIST
  1772. for part in $list; do
  1773. enabled $part && echo ${part%_*}
  1774. done | sort | pr -3 -t
  1775. echo
  1776. done
  1777. enabled nonfree &&
  1778. echo "License: unredistributable" ||
  1779. (enabled gpl &&
  1780. echo "License: GPL" ||
  1781. echo "License: LGPL")
  1782. echo "Creating config.mak and config.h..."
  1783. echo "# Automatically generated by configure - do not modify!" > config.mak
  1784. echo "/* Automatically generated by configure - do not modify! */" > $TMPH
  1785. echo "#ifndef FFMPEG_CONFIG_H" >> $TMPH
  1786. echo "#define FFMPEG_CONFIG_H" >> $TMPH
  1787. echo "#define FFMPEG_CONFIGURATION \"$FFMPEG_CONFIGURATION\"" >> $TMPH
  1788. echo "PREFIX=$PREFIX" >> config.mak
  1789. echo "prefix=\$(DESTDIR)\$(PREFIX)" >> config.mak
  1790. echo "LIBDIR=\$(DESTDIR)$libdir" >> config.mak
  1791. echo "SHLIBDIR=\$(DESTDIR)$shlibdir" >> config.mak
  1792. echo "INCDIR=\$(DESTDIR)$incdir" >> config.mak
  1793. echo "BINDIR=\$(DESTDIR)$bindir" >> config.mak
  1794. echo "MANDIR=\$(DESTDIR)$mandir" >> config.mak
  1795. echo "MAKE=$make" >> config.mak
  1796. echo "CC=$cc" >> config.mak
  1797. echo "AR=$ar" >> config.mak
  1798. echo "RANLIB=$ranlib" >> config.mak
  1799. echo "LN_S=$ln_s" >> config.mak
  1800. enabled dostrip &&
  1801. echo "STRIP=$strip" >> config.mak ||
  1802. echo "STRIP=echo ignoring strip" >> config.mak
  1803. echo "OPTFLAGS=$CFLAGS" >> config.mak
  1804. echo "VHOOKCFLAGS=$VHOOKCFLAGS">>config.mak
  1805. echo "LDFLAGS=$LDFLAGS" >> config.mak
  1806. echo "FFSERVERLDFLAGS=$FFSERVERLDFLAGS" >> config.mak
  1807. echo "SHFLAGS=$SHFLAGS" >> config.mak
  1808. echo "VHOOKSHFLAGS=$VHOOKSHFLAGS" >> config.mak
  1809. echo "VHOOKLIBS=$VHOOKLIBS" >> config.mak
  1810. echo "LIBOBJFLAGS=$LIBOBJFLAGS" >> config.mak
  1811. echo "BUILD_STATIC=$static" >> config.mak
  1812. echo "BUILDSUF=$BUILDSUF" >> config.mak
  1813. echo "FULLNAME=$FULLNAME" >> config.mak
  1814. echo "LIBPREF=$LIBPREF" >> config.mak
  1815. echo "LIBSUF=$LIBSUF" >> config.mak
  1816. echo "LIBNAME=$LIBNAME" >> config.mak
  1817. echo "SLIBPREF=$SLIBPREF" >> config.mak
  1818. echo "SLIBSUF=$SLIBSUF" >> config.mak
  1819. echo "EXESUF=$EXESUF" >> config.mak
  1820. echo "DEPEND_CMD=$DEPEND_CMD" >> config.mak
  1821. echo "VHOOK_DEPEND_CMD=$VHOOK_DEPEND_CMD" >> config.mak
  1822. if enabled bigendian; then
  1823. echo "WORDS_BIGENDIAN=yes" >> config.mak
  1824. echo "#define WORDS_BIGENDIAN 1" >> $TMPH
  1825. fi
  1826. if enabled sdl; then
  1827. echo "SDL_LIBS=`"${SDL_CONFIG}" --libs`" >> config.mak
  1828. echo "SDL_CFLAGS=`"${SDL_CONFIG}" --cflags`" >> config.mak
  1829. fi
  1830. if enabled texi2html; then
  1831. echo "BUILD_DOC=yes" >> config.mak
  1832. fi
  1833. get_version(){
  1834. name=$1
  1835. file=$source_path/$2
  1836. eval $(grep "#define ${name}_VERSION_M" "$file" | awk '{ print $2"="$3 }')
  1837. eval ${name}_VERSION=\$${name}_VERSION_MAJOR.\$${name}_VERSION_MINOR.\$${name}_VERSION_MICRO
  1838. lcname=$(tolower $name)
  1839. eval echo "${lcname}_VERSION=\$${name}_VERSION" >> config.mak
  1840. eval echo "${lcname}_VERSION_MAJOR=\$${name}_VERSION_MAJOR" >> config.mak
  1841. }
  1842. get_version LIBSWSCALE libswscale/swscale.h
  1843. get_version LIBPOSTPROC libpostproc/postprocess.h
  1844. get_version LIBAVCODEC libavcodec/avcodec.h
  1845. get_version LIBAVDEVICE libavdevice/avdevice.h
  1846. get_version LIBAVFORMAT libavformat/avformat.h
  1847. get_version LIBAVUTIL libavutil/avutil.h
  1848. get_version LIBAVFILTER libavfilter/avfilter.h
  1849. if enabled shared; then
  1850. echo "BUILD_SHARED=yes" >> config.mak
  1851. echo "PIC=-fPIC -DPIC" >> config.mak
  1852. echo "SLIBNAME=${SLIBNAME}" >> config.mak
  1853. echo "SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}" >> config.mak
  1854. echo "SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}" >> config.mak
  1855. echo "SLIB_CREATE_DEF_CMD=${SLIB_CREATE_DEF_CMD}" >> config.mak
  1856. echo "SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}" >> config.mak
  1857. echo "SLIB_INSTALL_EXTRA_CMD=${SLIB_INSTALL_EXTRA_CMD}" >> config.mak
  1858. echo "SLIB_UNINSTALL_EXTRA_CMD=${SLIB_UNINSTALL_EXTRA_CMD}" >> config.mak
  1859. fi
  1860. echo "LIB_INSTALL_EXTRA_CMD=${LIB_INSTALL_EXTRA_CMD}" >> config.mak
  1861. echo "EXTRALIBS=$extralibs" >> config.mak
  1862. print_config ARCH_ $TMPH config.mak $ARCH_LIST
  1863. print_config HAVE_ $TMPH config.mak $HAVE_LIST
  1864. print_config CONFIG_ $TMPH config.mak $CONFIG_LIST \
  1865. $DECODER_LIST \
  1866. $ENCODER_LIST \
  1867. $PARSER_LIST \
  1868. $BSF_LIST \
  1869. $DEMUXER_LIST \
  1870. $MUXER_LIST \
  1871. $FILTER_LIST \
  1872. $PROTOCOL_LIST \
  1873. $INDEV_LIST \
  1874. $OUTDEV_LIST \
  1875. echo "#define restrict $_restrict" >> $TMPH
  1876. if enabled small; then
  1877. echo "#define av_always_inline" >> $TMPH
  1878. fi
  1879. echo "SRC_PATH=\"$source_path\"" >> config.mak
  1880. echo "SRC_PATH_BARE=$source_path" >> config.mak
  1881. echo "BUILD_ROOT=\"$PWD\"" >> config.mak
  1882. # Apparently it's not possible to portably echo a backslash.
  1883. enabled asmalign_pot &&
  1884. printf '#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\\n\\t"\n' >> $TMPH ||
  1885. printf '#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\\n\\t"\n' >> $TMPH
  1886. echo "#define EXTERN_PREFIX \"${extern_prefix}\"" >> $TMPH
  1887. echo "#endif /* FFMPEG_CONFIG_H */" >> $TMPH
  1888. # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
  1889. cmp -s $TMPH config.h &&
  1890. echo "config.h is unchanged" ||
  1891. mv -f $TMPH config.h
  1892. rm -f $TMPO $TMPC $TMPE $TMPS $TMPH
  1893. # build tree in object directory if source path is different from current one
  1894. if enabled source_path_used; then
  1895. DIRS="\
  1896. doc \
  1897. libavcodec \
  1898. libavcodec/alpha \
  1899. libavcodec/armv4l \
  1900. libavcodec/bfin \
  1901. libavcodec/i386 \
  1902. libavcodec/mlib \
  1903. libavcodec/ppc \
  1904. libavcodec/sh4 \
  1905. libavcodec/sparc \
  1906. libavdevice \
  1907. libavfilter \
  1908. libavformat \
  1909. libavutil \
  1910. libpostproc \
  1911. libswscale \
  1912. tests \
  1913. tools \
  1914. vhook \
  1915. "
  1916. FILES="\
  1917. Makefile \
  1918. common.mak \
  1919. doc/texi2pod.pl \
  1920. libavcodec/Makefile \
  1921. libavdevice/Makefile \
  1922. libavfilter/Makefile \
  1923. libavformat/Makefile \
  1924. libavutil/Makefile \
  1925. libpostproc/Makefile \
  1926. libswscale/Makefile \
  1927. "
  1928. for dir in $DIRS ; do
  1929. mkdir -p $dir
  1930. done
  1931. for f in $FILES ; do
  1932. $ln_s "$source_path/$f" $f
  1933. done
  1934. fi
  1935. # build pkg-config files
  1936. # FIXME: libdir and includedir are hardcoded and may differ from the real path.
  1937. pkgconfig_generate(){
  1938. name=$1
  1939. comment=$2
  1940. version=$3
  1941. libs=$4
  1942. requires=$5
  1943. cat <<EOF >$name.pc
  1944. prefix=$PREFIX
  1945. exec_prefix=\${prefix}
  1946. libdir=\${exec_prefix}/lib
  1947. includedir=\${prefix}/include
  1948. Name: $name
  1949. Description: $comment
  1950. Version: $version
  1951. Requires: $requires
  1952. Conflicts:
  1953. Libs: -L\${libdir} $libs
  1954. Cflags: -I\${includedir}
  1955. EOF
  1956. }
  1957. pkgconfig_generate_uninstalled(){
  1958. name=$1
  1959. shortname=${name#lib}
  1960. comment=$2
  1961. version=$3
  1962. libs=$4
  1963. requires=$5
  1964. cat <<EOF >$name-uninstalled.pc
  1965. prefix=
  1966. exec_prefix=
  1967. libdir=\${pcfiledir}/$name
  1968. includedir=\${pcfiledir}
  1969. Name: $name
  1970. Description: $comment
  1971. Version: $version
  1972. Requires: $requires
  1973. Conflicts:
  1974. Libs: \${libdir}/${LIBPREF}${shortname}${LIBSUF} $libs
  1975. Cflags: -I\${includedir}
  1976. EOF
  1977. }
  1978. pkgconfig_generate libavutil "FFmpeg utility library" "$LIBAVUTIL_VERSION" -lavutil ""
  1979. pkgconfig_generate_uninstalled libavutil "FFmpeg utility library" "$LIBAVUTIL_VERSION"
  1980. pkgconfig_generate libavcodec "FFmpeg codec library" "$LIBAVCODEC_VERSION" "-lavcodec $extralibs" "$pkg_requires libavutil = $LIBAVUTIL_VERSION"
  1981. pkgconfig_generate_uninstalled libavcodec "FFmpeg codec library" "$LIBAVCODEC_VERSION" "$extralibs" "$pkg_requires libavutil = $LIBAVUTIL_VERSION"
  1982. pkgconfig_generate libavformat "FFmpeg container format library" "$LIBAVFORMAT_VERSION" "-lavformat $extralibs" "$pkg_requires libavcodec = $LIBAVCODEC_VERSION"
  1983. pkgconfig_generate_uninstalled libavformat "FFmpeg container format library" "$LIBAVFORMAT_VERSION" "$extralibs" "$pkg_requires libavcodec = $LIBAVCODEC_VERSION"
  1984. pkgconfig_generate libavdevice "FFmpeg device handling library" "$LIBAVDEVICE_VERSION" "-lavdevice $extralibs" "$pkg_requires libavformat = $LIBAVFORMAT_VERSION"
  1985. pkgconfig_generate_uninstalled libavdevice "FFmpeg device handling library" "$LIBAVDEVICE_VERSION" "$extralibs" "$pkg_requires libavformat = $LIBAVFORMAT_VERSION"
  1986. if enabled postproc; then
  1987. pkgconfig_generate libpostproc "FFmpeg post processing library" "$LIBPOSTPROC_VERSION" -lpostproc ""
  1988. pkgconfig_generate_uninstalled libpostproc "FFmpeg post processing library" "$LIBPOSTPROC_VERSION"
  1989. fi
  1990. if enabled swscale; then
  1991. pkgconfig_generate libswscale "FFmpeg image rescaling library" "$LIBSWSCALE_VERSION" -lswscale "libavutil = $LIBAVUTIL_VERSION"
  1992. pkgconfig_generate_uninstalled libswscale "FFmpeg image rescaling library" "$LIBSWSCALE_VERSION" "" "libavutil = $LIBAVUTIL_VERSION"
  1993. else
  1994. pkgconfig_generate libswscale "FFmpeg image rescaling library" "$LIBSWSCALE_VERSION" "" "$pkg_requires libavcodec = $LIBAVCODEC_VERSION"
  1995. pkgconfig_generate_uninstalled libswscale "FFmpeg image rescaling library" "$LIBSWSCALE_VERSION" "" "$pkg_requires libavcodec = $LIBAVCODEC_VERSION"
  1996. apply libswscale.pc sed s/^Libs:.*$/Libs:/
  1997. apply libswscale-uninstalled.pc sed s/^Libs:.*$/Libs:/
  1998. fi
  1999. if enabled avfilter; then
  2000. pkgconfig_generate libavfilter "FFmpeg video filtering library" "$LIBAVFILTER_VERSION" "-lavfilter $extralibs" "$pkg_requires libavutil = $LIBAVUTIL_VERSION" ffmpeg
  2001. pkgconfig_generate_uninstalled libavfilter "FFmpeg video filtering library" "$LIBAVFILTER_VERSION" "$extralibs" "$pkg_requires libavutil = $LIBAVUTIL_VERSION"
  2002. fi