aboutsummaryrefslogtreecommitdiffstats
path: root/configure
Commit message (Collapse)AuthorAgeFilesLines
* Add a Makefile variable for the old scaler that gets enabled when the newDiego Biurrun2008-11-171-0/+3
| | | | | | scaler is disabled to get rid of a Makefile ifdef. Originally committed as revision 15867 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing options to the help output.Diego Biurrun2008-11-171-0/+9
| | | | Originally committed as revision 15862 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Move some options to more sensible places within the help output.Diego Biurrun2008-11-171-4/+4
| | | | Originally committed as revision 15861 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move zlib/bzlib options to the external library section of the help output andDiego Biurrun2008-11-171-2/+2
| | | | | | mention the enable variant of the option since they are disabled by default. Originally committed as revision 15860 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling and wording cosmetics for the help outputDiego Biurrun2008-11-171-46/+46
| | | | Originally committed as revision 15859 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Take build_suffix into account in pkg-config files.Charles Yates2008-11-171-1/+1
| | | | | | patch by Charles Yates, charles.yates gmail com Originally committed as revision 15858 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print just [no] or [yes] in the help output instead of [default=no/yes].Diego Biurrun2008-11-171-36/+36
| | | | Originally committed as revision 15857 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the library names for the require checks more explicit.Stefano Sabatini2008-11-161-3/+3
| | | | Originally committed as revision 15845 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add checks on the _mingw.h and w32api.h versions.Stefano Sabatini2008-11-081-0/+5
| | | | | | Based on a patch by Ramiro. Originally committed as revision 15793 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable CMOV usage on x86_64 arch. All x86_64 CPUs have it.Dominik Mierzejewski2008-11-011-0/+2
| | | | Originally committed as revision 15763 to svn://svn.ffmpeg.org/ffmpeg/trunk
* svq3 decoder may need zlibBaptiste Coudurier2008-10-271-0/+1
| | | | Originally committed as revision 15722 to svn://svn.ffmpeg.org/ffmpeg/trunk
* enable zlib and bzlib only when usefulAurelien Jacobs2008-10-251-13/+17
| | | | Originally committed as revision 15710 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add CONFIG_GOLOMB and auto-select when neededMåns Rullgård2008-10-251-0/+14
| | | | Originally committed as revision 15706 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Auto-enable CONFIG_MDCT when neededMåns Rullgård2008-10-251-16/+17
| | | | Originally committed as revision 15705 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AC3 encoder doesn't need FFTMåns Rullgård2008-10-251-1/+0
| | | | Originally committed as revision 15704 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move declaration of mlp decoder dependency on mlp parser to the MakefileDiego Biurrun2008-10-251-1/+0
| | | | | | where all other such dependencies are declared. Originally committed as revision 15696 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Build MMX/SSE FFT only if CONFIG_FFT is setMåns Rullgård2008-10-241-0/+11
| | | | Originally committed as revision 15692 to svn://svn.ffmpeg.org/ffmpeg/trunk
* DCA decoder needs FFTMåns Rullgård2008-10-241-0/+1
| | | | Originally committed as revision 15691 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: add foo_suggest facilityMåns Rullgård2008-10-241-4/+9
| | | | | | | This is like foo_select, except the selected options being disabled does not disable foo. Originally committed as revision 15690 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: add enable_weak and disable_weakMåns Rullgård2008-10-241-0/+21
| | | | | | | These functions enable/disable their options if these are unset, leaving their old values otherwise. Originally committed as revision 15689 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: allow recursive foo_select optionsMåns Rullgård2008-10-241-1/+16
| | | | Originally committed as revision 15688 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Auto-enable CONFIG_FFT for codecs that need itMåns Rullgård2008-10-241-0/+17
| | | | Originally committed as revision 15686 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: cosmeticsMåns Rullgård2008-10-241-2/+2
| | | | Originally committed as revision 15685 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: add foo_select facilityMåns Rullgård2008-10-241-3/+6
| | | | | | | | If an option 'foo' is enabled, all options listed in foo_select are automatically enabled, unless explicitly disabled. In the latter case, foo is also disabled. Originally committed as revision 15684 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: fix disabled_any to return false for empty listMåns Rullgård2008-10-241-0/+1
| | | | Originally committed as revision 15683 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Speex decoding via libspeexDavid Conrad2008-10-241-0/+5
| | | | Originally committed as revision 15676 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Leave out quotes from libdirac pkg-config call for consistency.Diego Biurrun2008-10-221-1/+1
| | | | Originally committed as revision 15664 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: allow --cpu=armvN in configureMåns Rullgård2008-10-211-0/+3
| | | | Originally committed as revision 15659 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow target name on every line in dependency postprocessingMåns Rullgård2008-10-211-1/+1
| | | | | | | Some compilers output a new rule for each dependency. We must prefix each one with the directory name. Originally committed as revision 15658 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not add $cross_prefix to compiler name given with --cc optionMåns Rullgård2008-10-211-2/+4
| | | | Originally committed as revision 15657 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: fix handling of option arguments containing = signMåns Rullgård2008-10-211-1/+1
| | | | Originally committed as revision 15656 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix configure with libx264 disabledMåns Rullgård2008-10-191-2/+2
| | | | Originally committed as revision 15647 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the ugly and unnecessary require_cpp_condition() function.Stefano Sabatini2008-10-191-8/+0
| | | | Originally committed as revision 15646 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make more clear the error message for the libx264 version check.Stefano Sabatini2008-10-191-1/+2
| | | | Originally committed as revision 15645 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Save some backslashes.Diego Biurrun2008-10-181-7/+7
| | | | Originally committed as revision 15638 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove -fasm CFLAGS check, it is no longer needed.Diego Biurrun2008-10-161-1/+0
| | | | Originally committed as revision 15629 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update DEPEND_CMD comment to better explain why we postprocess gcc output.Diego Biurrun2008-10-161-1/+2
| | | | Originally committed as revision 15628 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Convert asm keyword into __asm__.Diego Pettenò2008-10-161-3/+3
| | | | | | | | | | | | | Neither the asm() nor the __asm__() keyword is part of the C99 standard, but while GCC accepts the former in C89 syntax, it is not accepted in C99 unless GNU extensions are turned on (with -fasm). The latter form is accepted in any syntax as an extension (without requiring further command-line options). Sun Studio C99 compiler also does not accept asm() while accepting __asm__(), albeit reporting warnings that it's not valid C99 syntax. Originally committed as revision 15627 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable FAST_UNALIGNED on ARM variants that support itMåns Rullgård2008-10-121-1/+5
| | | | Originally committed as revision 15609 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable FAST_UNALIGNED on PPCMåns Rullgård2008-10-121-0/+2
| | | | Originally committed as revision 15608 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert "Replace sed trickery in the gcc dependency generation command"Måns Rullgård2008-10-121-3/+2
| | | | | | | This made dependencies entirely non-functional, and also the syntax is not supported by gcc 2.95. Originally committed as revision 15607 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: simplify PPC dcbzl checkMåns Rullgård2008-10-121-8/+1
| | | | Originally committed as revision 15606 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Don't include byteswap.h anymore.Carl Eugen Hoyos2008-10-121-5/+0
| | | | Originally committed as revision 15603 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace sed trickery in the gcc dependency generation command by use ofDiego Biurrun2008-10-121-2/+3
| | | | | | the -MT option as suggested by Ramiro. Originally committed as revision 15601 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix inconsistent indent.Stefano Sabatini2008-10-121-1/+1
| | | | Originally committed as revision 15600 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert the merger of LC_ALL declaration and export.Diego Biurrun2008-10-121-1/+2
| | | | | | This part of the configure script might be run by non-POSIX shells. Originally committed as revision 15599 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check requirement for libx264 version in configure usingStefano Sabatini2008-10-121-1/+2
| | | | | | require_cpp_condition(). Originally committed as revision 15598 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement CPP condition check support in configure.Stefano Sabatini2008-10-121-0/+20
| | | | Originally committed as revision 15597 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only special-case absolute DOS paths on systems that support them.Ramiro Polla2008-10-101-0/+5
| | | | Originally committed as revision 15594 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make configure --help return 0.Stefano Sabatini2008-10-091-1/+1
| | | | Originally committed as revision 15593 to svn://svn.ffmpeg.org/ffmpeg/trunk