Transcode compiles even if you do not have all additional libs
installed. You do not *need* to have a "yes" on every configure check.

You will need to have libavcodec (also known as ffmpeg libraries)
installed somewhere on your computer. Without libavcodec transcode
doesn't compile. The best way to accomplish this is to get FFmpeg from
cvs (www.ffmpeg.org), configure it with at least --enable-shared
and --enable-pthreads compile and install it. (Also see the notes below
about libpostproc if you plan to use filter_pp.) A package of some kind
that includes libavcodec.so and the headers will do as well. If the
files are installed in a non-default location (transcode assumes prefix:
/usr), then you will need to tell transcode where they live. Very
important: you _need_ both the header files _and_ libavcodec.so files.
The libavcodec.a file won't do!

It is recommended, that you have a recent nasm installed (>=0.98.35) if
you are on an x86 based platform. A recent version of lame is a good
thing to have installed, too. Depending on what you want to do with
transcode you may need additional packages installed.

If you obtained transcode using CVS, you will need to generate the
"configure" script yourself while in the snapshot tarballs it's
included. To do this you need _recent_ versions of autoconf (>= 2.59),
automake (>= 1.8) and libtool (>= 1.5) utilities. Now to make the
configure script, run "autoreconf -i -f". Do not use "autoreconf -if"
because this does not work on some distributions.

Now run

 ./configure --help

To get some idea of the many optional packages that can be incorporated.
Note the *--enable-$$$* and *--with-$$$* flags.

ONLY PACKAGES THAT ARE ENABLED EXPLICITLY USING CONFIGURE ARE ACTUALLY
USED TO BUILD MODULES.

If you have any optimisations your C compiler supports and you want to
use, put them in the environment ./configure is run in. It pays off to
study all the optimisation flags your C compiler offers. Some of these
may be useful, and some may cause problems, that is why transcode itself
does not use any optimization flags unless absolutely necessary. For
instance, if you are going to be running transcode on a Pentium4 system
and building with *gcc*, you can invoke configure like this:

 $ env CFLAGS="-O3 -march=pentium4" ./configure ...

to create an optimised build,

or 

 $ env CFLAGS="-g" ./configure ...

to build transcode for debugging.

Don't forget the relevant configure options, described below.

then:

  make
  make install

------------------------------------------------------------------------
*Configure options for transcode*

Configure will not test for a package unless support is enabled. For
example, configure will not look for SDL unless the option
'--enable-sdl' is used. If a package distributes pkg-config information,
or if a package distributes it's own -config script (like libquicktime's
lqt-config), configure will use information from pkg-config or the
package's script to find the package's headers and libraries.  Otherwise,
configure will look in the default prefix, /usr.  This means that by
default configure will look for the headers in /usr/include and the
libraries in /usr/lib.

The options dealing with file locations can be used to tell configure
to look in other locations for headers and libraries. The prefix to
search can be changed with the --with-$$$-prefix options. Specific
directories for libraries and headers can be given with --with-$$$-libs
and --with-$$$-includes, respectively. If the header and library
specific options are used, configure will use the paths given with
those options, and will not use paths from pkg-config or a package's
-config script. NOTE: the --with-$$$-prefix option does not override
pkg-config or -config information. configure will use the prefix to
search for a package's -config script.

If configure is unable to find support for a mandatory or optionally
enabled package, configure will exit with an error and display a message
about the error.

For the options described below, the default value is in parenthesis
after the option.

General options:

  --enable-statbuffer (enabled)
      enable internal static framebuffer support
  --enable-netstream (disabled)
      enable network streaming support
  --enable-xio (disabled)
      link to the xio library
  --enable-warnings-as-errors (disabled)
      treat warnings as errors
  --with-x (with)
      use the X Window System
  --with-default-xvid=<default xvid> (xvid4)
      Default xvid version.  Valid options: xvid2, xvid3, xvid4
  --with-mod-path (${prefix}/lib/transcode)
      directory where export/import modules are installed

Mandatory packages:

  libz
  libm
    (these generally come with any and all OSes)

  libavcodec from FFmpeg >= 0.9.1pre1  http://ffmpeg.sourceforge.net/
    related options:
      --with-libavcodec-prefix=PFX (/usr)
          prefix where libavcodec is installed
      --with-libavcodec-includes=DIR (/usr/include)
          directory where libavcodec headers [ffmpeg/avcodec.h] are installed
      --with-libavcodec-libs=DIR (/usr/lib)
          prefix where libavcodec libraries [libavcodec.so] are installed
      --enable-libavcodec-static (disabled)
          link binaries and modules statically to libavcodec
          WARNING: creates huge binaries
          WARNING: only tested on linux x86
          WARNING: not supported at all, don't complain

  libmpeg2 from mpeg2dec >= 0.4.0b  http://libmpeg2.sourceforge.net/
    related options:
      --with-libmpeg2-prefix=PFX (/usr)
          prefix where libmpeg2 is installed
      --with-libmpeg2-includes=DIR (/usr/include)
          directory where libmpeg2 headers [mpeg2dec/mpeg2.h] are installed
      --with-libmpeg2-libs=DIR (/usr/lib)
          prefix where libmpeg2 libraries [libmpeg2.so] are installed

OS dependent packages:

  v4l
    related options:
      --enable-v4l (disabled)
          if enabled, builds v4l and v4l2 modules, which imports video
          from video capture hardware on Linux using the Video4Linux(2)
          API.
            please note: use import_v4l2 if possible; v4l is deprecated.
    affected modules: import_v4l.so import_v4l2.so

  OSS
    related options:
      --enable-oss (disabled)
          if enabled, builds OSS import module, which imports audio
          from audio hardware on several platforms using the OSS API.
    affected modules: import_oss.so

  bktr
    related options:
      --enable-bktr (disabled)
          if enabled, builds bktr import module, which imports video
          from video capture hardware on *BSD using the bktr(4) API.
    affected modules: import_bktr.so

  sunau
    related options:
      --enable-sunau (disabled)
          if enabled, builds sunau import module, which imports raw PCM
          audio from hardware on *BSD using the audio(4) API.
    affected modules: import_sunau.so

Optional packages:

  libpostproc (part of FFmpeg) http://www.ffmpeg.org/
    related options:
      --enable-libpostproc (disabled)
          build with libpostproc support for video processing
      --with-libpostproc-prefix=PFX (/usr)
          prefix where libpostproc is installed
      --with-libpostproc-includes=DIR (/usr/include)
          directory where libpostproc header [postprocess.h] is installed
      --with-libpostproc-libs=DIR (/usr/lib)
          directory where libpostproc library [libpostproc.so] is installed
    affected modules: filter_pp.so
    NOTE: It is highly recommended to use a share libpostproc.  To
          build a shared libpostproc, build FFmpeg with
          '--enable-pp --enable-shared-pp'.

  FreeType2  http://freetype.sourceforge.net/
    related options:
      --enable-freetype2 (enabled)
          build with FreeType2 support for rendering text
      --with-freetype2-prefix=PFX (/usr)
          prefix where FreeType is installed
      --with-freetype2-includes=DIR (/usr/include)
          directory where FreeType headers [ft2build.h] are installed
      --with-freetype2-libs=DIR (/usr/lib)
          directory where FreeType libraries [libfreetype.so] are installed
    affected modules: filter_text.so, filter_subtitler.so

  liba52  http://liba52.sourceforge.net/
    related options:
      --enable-a52 (disabled)
          build with liba52 support for AC3/A52 audio decoding
      --with-a52-prefix=PFX (/usr)
          prefix where liba52 is installed
      --with-a52-includes=DIR (/usr/include)
          directory where liba52 headers are installed
      --with-a52-libs=DIR (/usr/lib)
          directory where liba52 libraries are installed
      --enable-a52-default-decoder (disabled)
          if enabled, and --enable-a52 is also enabled, uses liba52 as
          default A52/AC3 decoder, otherwise, the older libac3 that comes
          with transcode is used as the default A52/AC3 decoder
    affected modules: a52_decore.so

  mjpegtools  http://mjpeg.sourceforge.net/
    related options:
      --enable-mjpegtools (disabled)
          build with mjpegtools support for YUV4MPEG video streams
      --with-mjpegtools-prefix=PFX (/usr)
          prefix where mjpegtools is installed
      --with-mjpegtools-includes=DIR (/usr/include)
          directory where mjpegtools headers are installed
      --with-mjpegtools-libs=DIR (/usr/lib)
          directory where mjpegtools libraries are installed
    affected modules: export_yuv4mpeg.so, export_mpeg2enc.so,
      export_mp2enc.so

  SDL  http://www.libsdl.org/
    related options:
      --enable-sdl (disabled)
          build with SDL support for video display
      --with-sdl-prefix=PFX (/usr)
          prefix where SDL is installed
      --with-sdl-includes=DIR (/usr/include)
          directory where SDL headers are installed
      --with-sdl-libs=DIR (/usr/lib)
          directory where SDL libraries are installed
    affected modules: filter_preview.so

  libfame  http://fame.sourceforge.net/
    related options:
      --enable-libfame (disabled)
          builds with libfame support for mpeg video encoding
      --with-libfame-prefix=PFX (/usr)
          prefix where libfame is installed
      --with-libfame-includes=DIR (/usr/include)
          directory where libfame headers are installed
      --with-libfame-libs=DIR (/usr/lib)
          directory where libfame libraries are installed
    affected modules: export_fame.so

  lame  http://www.mp3dev.org/
    related options:
      --enable-lame (enabled)
          build with libmp3lame support for mpeg audio encoding
      --with-lame-prefix=PFX (/usr)
          prefix where lame is installed
      --with-lame-includes=DIR (/usr/include)
          directory where lame headers are installed
      --with-lame-libs=DIR (/usr/lib)
          directory where lame libraries are installed
    affected modules: export_af6.so, export_dv.so, export_raw.so,
      export_divx4.so, export_divx4raw.so, export_divx5.so,
      export_divx5raw.so, export_debugppm.so, export_ppm.so,
      export_ffmpeg.so, export_lame.so, export_pvn.so,
      export_yuv4mpeg.so, export_mpeg2enc.so, export_mp2enc.so,
      export_mjpeg.so, export_xvid2.so, export_xvid3.so,
      export_xvid4.so, import_mp3.so

  avifile  http://avifile.sourceforge.net/
    related options:
      --enable-avifile (disabled)
          build with avifile support for accessing win32 binary codecs
      --with-avifile-prefix=PFX (/usr)
          prefix where avifile is installed
      --with-avifile-includes=DIR (/usr/include)
          directory where avifile headers [avifile.h] are installed
      --with-avifile-libs=DIR (/usr/lib)
          directory where avifile libraries [libaviplay.so] are installed
    affected modules: export_af6.so, af6_decore.so

  ogg  http://www.xiph.org/ogg/
    related options:
      --enable-ogg (disabled)
          build with support for importing OGG audio
      --with-ogg-prefix=PFX (/usr)
          prefix where ogg is installed
      --with-ogg-includes=DIR (/usr/include)
          directory where ogg headers [ogg/ogg.h] are installed
      --with-ogg-libs=DIR (/usr/lib)
          directory where ogg libraries [libogg.so] are installed
    affect modules: none

  vorbis  http://www.xiph.org/ogg/vorbis/
    related options:
      --enable-vorbis (disabled)
          build with support for importing Vorbis audio
      --with-vorbis-prefix=PFX (/usr)
          prefix where vorbis is installed
      --with-vorbis-includes=DIR (/usr/include)
          directory where vorbis headers [vorbis/codec.h] are installed
      --with-vorbis-libs=DIR (/usr/lib)
          directory where vorbis libraries [libvorbis.so] are installed
      affected modules: none

  theora  http://www.theora.org/
    related options:
      --enable-theora (disabled)
          build with support for importing theora video
      --with-theora-prefix=PFX (/usr)
          prefix where theora is installed
      --with-theora-includes=DIR (/usr/include)
          directory where theora headers [theora/theora.h] are installed
      --with-theora-libs=DIR (/usr/lib)
          directory where theora libraries [libtheora.so] are installed
      affected modules: none

  libdvdread  http://www.dtek.chalmers.se/groups/dvd/
    related options:
      --enable-libdvdread (enabled)
          build with libdvdread support for reading DVDs
      --with-libdvdread-prefix=PFX (/usr)
          prefix where libdvdread is installed
      --with-libdvdread-includes=DIR (/usr/include)
          directory where libdvdread headers [dvd_reader.h] are installed
      --with-libdvdread-libs=DIR (/usr/lib)
          directory where libdvdread libraries [libdvdread.so] are installed
    affected modules: import_dvd.so

  libmpeg3  http://heroinewarrior.com/libmpeg3.php3
    related options:
      --enable-libmpeg3 (disabled)
          build with libmpeg3 support for accessing mpeg1/2/4 files
      --with-libmpeg3-prefix=PFX (/usr)
          prefix where libmpeg3 is installed
      --with-libmpeg3-includes=DIR (/usr/include)
          directory where libmpeg3 headers [libmpeg3.h] are installed
      --with-libmpeg3-libs=DIR (/usr/lib)
          directory where libmpeg3 libraries [libmpeg3.so] are installed
    affected modules: import_mpeg3.so

  PVM3  http://www.netlib.org/pvm3/
    related options:
      --enable-pvm3 (disabled)
          build with pvm3 support for parallelizing transcode
      --with-pvm3-prefix=PFX (/usr)
          prefix where pvm3 is installed
      --with-pvm3-includes=DIR (/usr/include)
          directory where pvm3 headers [pvm3.h] are installed
      --with-pvm3-libs=DIR (/usr/lib)
          directory where pvm3 libraries [libpvm3.so] are installed
    affected modules: export_pvm.so

  libdv  http://libdv.sourceforge.net/
    related options:
      --enable-libdv (disabled)
          build with libdv support for DV encoding and decoding
      --with-libdv-prefix=PFX (/usr)
          prefix where libdv is installed
      --with-libdv-includes=DIR (/usr/include)
          directory where libdv headers [libdv/dv.h] are installed
      --with-libdv-libs=DIR (/usr/lib)
          directory where libdv libraries [libdv.so] are installed
    affected modules: export_dvraw.so, export_dv.so, filter_preview.so

  libquicktime  http://libquicktime.sourceforge.net/
    related options:
      --enable-libquicktime (disabled)
          build with libquicktime support for reading and writing MOV files
      --with-libquicktime-prefix=PFX (/usr)
          prefix where libquicktime is installed
      --with-libquicktime-includes=DIR (/usr/include)
          directory where libquicktime headers [quicktime/lqt.h]  are installed
      --with-libquicktime-libs=DIR (/usr/lib)
          directory where libquicktime libraries [libquicktime.so] are installed
    affected modules: export_mov.so, import_mov.so

  lzo  http://www.oberhumer.com/opensource/lzo/
    related options:
      --enable-lzo (disabled)
          build with liblzo support for compressing raw AVIs
      --with-lzo-prefix=PFX (/usr)
          prefix where lzo is installed
      --with-lzo-includes=DIR (/usr/include)
          directory where lzo headers [lzo1x.h] are installed
      --with-lzo-libs=DIR (/usr/lib)
          directory where lzo libraries [liblzo.so] are installed
    affected modules: export_lzo.so, import_lzo.so

  libxml2  http://xmlsoft.org/
    related options:
      --enable-libxml2 (disabled)
          build with libxml2 support for accessing XML content
      --with-libxml2-prefix=PFX (/usr)
          directory where libxml2 is installed
      --with-libxml2-includes=DIR (/usr/include)
          directory where libxml2 headers [libxml/parser.h]  are installed
      --with-libxml2-libs=DIR (/usr/lib)
          directory where libxml2 libraries [libxml2.so] are installed
    affected modules: import_xml.so

  gtk  http://www.gtk.org/
    related options:
      --enable-gtk (disabled)
          build with gtk support for graphical display
      --with-gtk-prefix=PFX (/usr)
          directory where gtk is installed
      --with-gtk-includes=DIR (/usr/include)
          directory where gtk headers [gtk/gtk.h] are installed
      --with-gtk-libs=DIR (/usr/lib)
          directory where gtk libraries [libgtk.so] are installed
    affected modules: filter_preview.so

  ImageMagick  http://www.imagemagick.com/
    related options:
      --enable-imagemagick (disabled)
          build with ImageMagick support for accessing various image types
      --with-imagemagick-prefix=PFX (/usr)
          prefix where imagemagick is installed
      --with-imagemagick-includes=DIR (/usr/include)
          directory where imagemagick headers [magick/api.h] are installed
      --with-imagemagick-libs=DIR (/usr/lib)
          directory where imagemagick libraries [libMagick.so] are installed
    affected modules: export_im.so, import_im.so, import_imlist.so,
      filter_logo.so, filter_logoaway.so, filter_compare.so

  libjpeg  http://www.ijg.org/
    related options:
      --enable-libjpeg (enabled)
          build with libjpeg support for accessing JPEG files
      --with-libjpeg-prefix=PFX (/usr)
          prefix where libjpeg is installed
      --with-libjpeg-includes=DIR (/usr/include)
          directory where libjpeg headers [jpeglib.h] are installed
      --with-libjpeg-libs=DIR (/usr/lib)
          directory where libjpeg libraries [libjpeg.so] are installed
    affected modules: export_mjpeg.so, export_jpg.so

  LoRS/IBP  http://loci.cs.utk.edu/
    related options:
      --enable-ibp (disabled)
          build with ibp support for accessing files on depots
      --with-libfdr=DIR ()
          base directory for libfdr
      --with-libibp=DIR ()
          base directory for libibp
      --with-libexnode=DIR ()
          base directory for libexnode
      --with-liblbone=DIR ()
          base directory for liblbone
      --with-libend2end=DIR ()
          base directory for libend2end
      --with-liblors=DIR ()
          base directory for liblors
    affected modules: none?
