summaryrefslogtreecommitdiff
path: root/configure
Commit message (Collapse)AuthorAge
* Fix VDPAU check to avoid printing spurious messages to the console.Diego Biurrun2010-01-04
| | | | Originally committed as revision 21016 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not print libvdpau upgrade advice on platforms without vdpauJai Menon2010-01-04
| | | | | | headers installed. Originally committed as revision 21014 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The MLP decoder depends on the MLP parser.Diego Biurrun2009-12-29
| | | | Originally committed as revision 20966 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable the TrueHD decoder when the MLP decoder is enabled.Diego Biurrun2009-12-29
| | | | | | They share all code, there is no point in enabling one but not the other. Originally committed as revision 20965 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Declare AC-3 parser dependency of AC-3 decoder and EAC-3 demuxer in configure.Diego Biurrun2009-12-29
| | | | Originally committed as revision 20964 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Declare AAC parser dependencies in configure.Diego Biurrun2009-12-29
| | | | | | This affects the AAC decoder, S/PDIF muxer and ADTS to ASC bitstream filter. Originally committed as revision 20961 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Declare WMV1/WMV2/VC-1 decoder dependency on the H.263 decoder in configure.Diego Biurrun2009-12-29
| | | | Originally committed as revision 20959 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Declare dependencies of RV10/RV20 decoders on the H.263 decoder in configure.Diego Biurrun2009-12-28
| | | | Originally committed as revision 20953 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Declare dependencies for H.263 family decoders in configure.Diego Biurrun2009-12-28
| | | | Originally committed as revision 20952 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Declare the dependency of the H.263 decoder on the H.263 parser in configure.Diego Biurrun2009-12-28
| | | | Originally committed as revision 20951 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: Don't spawn a subshell when disabling vdpau.Alex Converse2009-12-14
| | | | Originally committed as revision 20867 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Disable vdpau support if the detected libvdpau does not support MPEG-4.Alex Converse2009-12-14
| | | | Originally committed as revision 20854 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check Xfixes.h header presence before enabling x11grab.Baptiste Coudurier2009-11-30
| | | | | | This fixes compilation when lib is present but not header. Originally committed as revision 20673 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Real cursor support in x11grab.Roxis2009-11-27
| | | | | | | Patch by Roxis /// roxis list dot ru Slight changes by me to update the patch to current svn. Originally committed as revision 20631 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add weightp support in API for libx264.Jason Garrett-Glaser2009-11-24
| | | | | | ffmpeg can encode baseline profile again. Originally committed as revision 20600 to svn://svn.ffmpeg.org/ffmpeg/trunk
* libtheora: using the 1.0 API requires linking to bothDavid Conrad2009-11-23
| | | | | | | | libtheoraenc and libtheoradec; libtheora is the pre-1.0 library. Documented at http://theora.org/doc/libtheora-1.0/ Fixes issue1564 Originally committed as revision 20588 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update libtheora wrapper to use the 1.0 APIDavid Conrad2009-11-22
| | | | Originally committed as revision 20580 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add functions to return library license and library configuration.Diego Biurrun2009-11-18
| | | | Originally committed as revision 20547 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add cflags filter for sunccMichael Kostylev2009-11-13
| | | | | | Patch by Michael Kostylev <gmail>. Originally committed as revision 20532 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add VDPAU hardware accelerated decoding for MPEG-4 ASP which can be usedNVIDIA Corporation2009-11-10
| | | | | | | | by video players. Original patch by NVIDIA corporation. Originally committed as revision 20502 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove code checking for __PIC__ or __pic__ and setting PIC from ↵Reimar Döffinger2009-11-10
| | | | | | | | libavutil/internal.h, configure is supposed to take care of that already. Originally committed as revision 20498 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check if PIC is somehow already enabled (e.g. a compiler that enables it by ↵Reimar Döffinger2009-11-10
| | | | | | | | | | | default). This in particular ensures that -DPIC is set appropriately for YASM, which avoids linking failures on x86_64 for compilers that have PIE enabled by default (e.g. hardened Gentoo). It also makes the macho64 special-case hack adding -DPIC to YASMFLAGS obsolete. Originally committed as revision 20497 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: whitespace cosmeticsMåns Rullgård2009-11-10
| | | | Originally committed as revision 20494 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Attempt to document the "enable pic" hackery for OpenBSD.Reimar Döffinger2009-11-09
| | | | Originally committed as revision 20491 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove some BeOS/haiku hacks: -fomit-frame-pointer is used anyway,Reimar Döffinger2009-11-09
| | | | | | | and -DPIC makes little sense without -fPIC or similar - if -fPIC is enabled by default, libavutil/internal.h defines PICi anyway. Originally committed as revision 20486 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set -DPREFIX for yasm simply whenever extern_prefix is set insteadReimar Döffinger2009-11-08
| | | | | | of hardcoding it based on the object format. Originally committed as revision 20478 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Always add -DPIC to YASM flags when pic is enabled.Reimar Döffinger2009-11-08
| | | | | | | | | This covers the previous case of x86_64 and shared, but also works with --enable-pic. For 32 bit x86 it currently makes no difference since x86inc.asm ignores -DPIC for non-x86_64. Originally committed as revision 20476 to svn://svn.ffmpeg.org/ffmpeg/trunk
* PPC: make inline asm xform address test work with Apple toolsMåns Rullgård2009-11-05
| | | | Originally committed as revision 20466 to svn://svn.ffmpeg.org/ffmpeg/trunk
* IA64: do not automatically enable hardcoded tables if explicitly disabledMåns Rullgård2009-11-05
| | | | Originally committed as revision 20465 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: fix 64-bit test with clangMåns Rullgård2009-11-01
| | | | Originally committed as revision 20431 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: remove extra backslashes from suncc DEPEND_CMDMichael Kostylev2009-10-31
| | | | | | Patch by Michael Kostylev <michael kostylev gmail> Originally committed as revision 20428 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: use here-doc for --help outputMåns Rullgård2009-10-31
| | | | Originally committed as revision 20427 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: use here-docs instead of echo for writing config.{h,mak}Måns Rullgård2009-10-31
| | | | Originally committed as revision 20426 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: simplify setting of SDL flags in config.makMåns Rullgård2009-10-31
| | | | Originally committed as revision 20425 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow disabling doc generation with --disable-docMåns Rullgård2009-10-31
| | | | Originally committed as revision 20424 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: simplify STRIP setting in config.makMåns Rullgård2009-10-31
| | | | Originally committed as revision 20423 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable hardcoded tables for ia64 shared builds.Reimar Döffinger2009-10-28
| | | | | | | | | At least for cross-compilation with Gentoo gcc 4.4.2 it fixes the build errors due to GPREL 22 being insufficient for the .bss size of > 4 MB without it. Why these errors do not appear with static builds is unclear, it is not due to PIC (shared builds with PIC disabled show the same issue). Originally committed as revision 20409 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: add C99 flags to HOSTCFLAGSMåns Rullgård2009-10-28
| | | | Originally committed as revision 20408 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Detect Sun Studio compiler and set appropriate variables.Michael Kostylev2009-10-28
| | | | | | | Add dependency generation commands compatible with Sun Studio. patch by Michael Kostylev, michael.kostylev gmail com Originally committed as revision 20397 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid "-z text" diversion on SunOS x86, needed to make FATE happy.Michael Kostylev2009-10-26
| | | | | | patch by Michael Kostylev, michael.kostylev gmail com Originally committed as revision 20373 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support amdfam10 for --cpu, also avoids a warning about unknown cpu ifReimar Döffinger2009-10-24
| | | | | | --cpu=host is used on AMD Phenom and newer at least. Originally committed as revision 20367 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove ancient redir demuxer.Diego Biurrun2009-10-24
| | | | | | HTTP supports redirection just fine without it. Originally committed as revision 20361 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add clang to detected compilersDavid Conrad2009-10-22
| | | | Originally committed as revision 20350 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update libx264.c for x264 API changeJason Garrett-Glaser2009-10-19
| | | | | | Change behavior of b-pyramid option. Originally committed as revision 20308 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add CONFIG_LPC to the build system for lpc dsputil functions. fixes buildJustin Ruggles2009-10-18
| | | | | | problems when lpc.c is not compiled. Originally committed as revision 20285 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: force PIC for shared libs only with ARMv6T2 and laterMåns Rullgård2009-10-11
| | | | Originally committed as revision 20207 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: enable PIC for shared libsMåns Rullgård2009-10-11
| | | | | | | | | Recent versions of gcc generate movw/movt pairs, and the linkers fail to handle the associated relocations properly. Those responsible at Codesourcery have refused to consider fixing this. Blame them for making shared libraries slower than they need to be. Originally committed as revision 20203 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: define extern symbol prefix without quotes for for asm filesMåns Rullgård2009-10-02
| | | | Originally committed as revision 20146 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not use -mdynamic-no-pic if PIC is enabledMåns Rullgård2009-10-02
| | | | Originally committed as revision 20145 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: add -marm flag since we do not support ThumbMåns Rullgård2009-10-02
| | | | Originally committed as revision 20144 to svn://svn.ffmpeg.org/ffmpeg/trunk