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.

2241 lines
65KB

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