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.

2117 lines
58KB

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