summaryrefslogtreecommitdiff
path: root/configure
Commit message (Collapse)AuthorAge
* configure: fix tms470 flag mapping for soft-floatMåns Rullgård2009-09-23
| | | | Originally committed as revision 19998 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: improve armcc detectionMåns Rullgård2009-09-23
| | | | | | | Apparently some versions of armcc do not identify as RVCT. This changes the test to a string used by all versions. Originally committed as revision 19985 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for new x264 API.Jason Garrett-Glaser2009-09-23
| | | | Originally committed as revision 19977 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set compiler version string for supported non-gcc compilersMåns Rullgård2009-09-22
| | | | Originally committed as revision 19972 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve compiler information code to print to the console on program startup.Diego Biurrun2009-09-22
| | | | | | | Remove gcc-specific hacks and allow filling relevant information for non-gcc compilers in configure. Originally committed as revision 19963 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The W64 demuxer depends on the WAV demuxer.Diego Biurrun2009-09-22
| | | | Originally committed as revision 19960 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Deinterleave the generation of config.h and config.mak.Diego Biurrun2009-09-21
| | | | | | As a sideeffect this moves more interesting variables to the top of config.mak. Originally committed as revision 19950 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: remove some unnecessary backslashesMåns Rullgård2009-09-21
| | | | Originally committed as revision 19937 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make pkgconfig_generate() fill Libs with the required linking flagsStefano Sabatini2009-09-15
| | | | | | | | | | if the "shared" var has not been explicitely enabled, rather than if it has been explicitly disabled. This way is not necessary to explicitly disable shared libraries in order to have a pc file usable with only static libraries. Originally committed as revision 19868 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: add -g to ASFLAGS when debug is enabledMåns Rullgård2009-09-10
| | | | Originally committed as revision 19804 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typo in configure error message.Reimar Döffinger2009-09-09
| | | | Originally committed as revision 19803 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: fix check for x264Måns Rullgård2009-09-02
| | | | | | | | libx264 recently started mangling the name of x264_encoder_open() to prevent version mismatches, breaking our test. Checking for another function instead makes it work again. Originally committed as revision 19754 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: fix filter() function when matching multiple patternsMåns Rullgård2009-08-23
| | | | | | | This makes comma-separated patters to --disable-decoder and friends work correctly with POSIX-compliant shells. Originally committed as revision 19688 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add PIC flags early so tests they affect give correct resultsMåns Rullgård2009-08-23
| | | | | | This is mainly the checks for ebx on x86, but possibly others too. Originally committed as revision 19687 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: simplify directory creation for out of tree buildsMåns Rullgård2009-08-23
| | | | Originally committed as revision 19684 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: add --enable-pic flagMåns Rullgård2009-08-20
| | | | | | | | Using this flag enables position-independent code even when not strictly required. It is impossible to use --disable-pic to forcibly disable PIC when other properties mandate it. Originally committed as revision 19672 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: add AVR32 names for --cpu flagMåns Rullgård2009-08-17
| | | | | | | | Recognise AVR32 processor names as well as the generic "ap" and "uc" family names as values for --cpu. Also define two subtypes, avr32_ap and avr32_uc. Originally committed as revision 19663 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use pkg-config to generate the linker flags for libdirac.Diego Biurrun2009-08-15
| | | | | | | | We do the same for libschroedinger and already use pkg-config to generate the CFLAGS for libdirac anyway, so there is no new dependency. Thanks to Kovensky for reporting breakage on IRC. Originally committed as revision 19654 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix dependency generation with ccache/gccMåns Rullgård2009-08-10
| | | | | | | | | | | When running behind ccache, the output from -MMD is corrupted unless we also use the -MF and -MT flags. Since ccache is difficult to detect and gcc 2.x doesn't support the -MF and -MT flags, we always use the old dependency generation method when gcc 2.x is detected. Originally committed as revision 19620 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: fix gcc detection for v2.95Måns Rullgård2009-08-10
| | | | Originally committed as revision 19619 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix the EBX available configure check on Darwin/i386.Alexander Strange2009-08-10
| | | | | | | -mdynamic-no-pic is required for it, but it was only added to CFLAGS and the check only used ASFLAGS. Originally committed as revision 19614 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Generate dependencies while compiling if supported by compilerMåns Rullgård2009-08-08
| | | | Originally committed as revision 19609 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Generate dependencies when object files are builtMåns Rullgård2009-08-08
| | | | Originally committed as revision 19608 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: allow comma-separated list in --enable/disable-thing=nameMåns Rullgård2009-08-06
| | | | | | | The argument to these options is now a comma-separated list of shell patterns, e.g. --disable-decoder='indeo*,rv*' Originally committed as revision 19604 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: allow wildcards in --enable/disable-thing=nameMåns Rullgård2009-08-06
| | | | | | | The name can now be a standard shell pattern. For example, --disable-encoder=* disables all encoders. Originally committed as revision 19603 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: support --cpu=host to tune for the host systemMåns Rullgård2009-08-06
| | | | | | | This requires a gcc version with -march=native or -mcpu=native support, which is somewhat random for non-x86. Originally committed as revision 19602 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make WMV2 encoder depend on H.263 encoder in configure.Diego Biurrun2009-08-06
| | | | Originally committed as revision 19601 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make MPEG-4 encoder depend on H.263 encoder in configure.Diego Biurrun2009-08-06
| | | | Originally committed as revision 19600 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make WMV1 encoder depend on H.263 encoder in configure.Diego Biurrun2009-08-06
| | | | Originally committed as revision 19599 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make FLV encoder depend on H.263 encoder in configure.Diego Biurrun2009-08-05
| | | | Originally committed as revision 19597 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make H.263+ (H263P) encoder depend on H.263 encoder in configure.Diego Biurrun2009-08-05
| | | | Originally committed as revision 19595 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Declare the dependencies of the MSMPEG4v1/MSMPEG4v2/MSMPEG4v3 encoders on theDiego Biurrun2009-08-05
| | | | | | H.263 encoder in configure. Originally committed as revision 19594 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Declare the dependency of RV10/RV20 encoder on the H.263 encoder in configure.Diego Biurrun2009-08-05
| | | | Originally committed as revision 19592 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make XVMC mpegvideo decoder depend on mpegvideo decoder.Diego Biurrun2009-08-02
| | | | | | It makes no sense to enable the former without the latter. Originally committed as revision 19565 to svn://svn.ffmpeg.org/ffmpeg/trunk
* RTMP needs tcp_protocolMåns Rullgård2009-07-31
| | | | Originally committed as revision 19557 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make av_always_inline a no-op when --disable-optimizations is supplied toJeff Downs2009-07-30
| | | | | | configure Originally committed as revision 19555 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert addition of '#undef av_always_inline' to config.h in the small case.Diego Biurrun2009-07-30
| | | | | | | Instead, #include config.h at the top of common.h so that av_always_inline does not get doubly defined. Originally committed as revision 19553 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Undefine av_always_inline before setting it to an empty value.Jeff Downs2009-07-30
| | | | | | | This avoids a ton of redefinition warnings. patch by Jeff Downs, heydowns borg com Originally committed as revision 19548 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace BUILD_{SHARED,STATIC} with CONFIG_ counterpartsMåns Rullgård2009-07-28
| | | | Originally committed as revision 19527 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable PIC unconditionally on OpenBSDMåns Rullgård2009-07-28
| | | | Originally committed as revision 19526 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: always write PIC flags to config.makMåns Rullgård2009-07-28
| | | | Originally committed as revision 19525 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: enable PIC in per-arch section instead of separatelyMåns Rullgård2009-07-28
| | | | Originally committed as revision 19524 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typo in MinGWCE support in configure.Martin Storsjö2009-07-28
| | | | | | Patch by Martin Storsjö and Måns. Originally committed as revision 19523 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MinGWCE support in configure; networking is disabled for now.Martin Storsjö2009-07-27
| | | | | | patch by Martin Storsjö, martin martin st and Ismail Dönmez, ismail namtrac org Originally committed as revision 19521 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace WORDS_BIGENDIAN with HAVE_BIGENDIANMåns Rullgård2009-07-26
| | | | Originally committed as revision 19508 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix various compilation dependenciesAurelien Jacobs2009-07-24
| | | | Originally committed as revision 19507 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for the isatty function.Martin Storsjö2009-07-24
| | | | | | Patch by Martin Storsjö <martin at martin dot st> Originally committed as revision 19504 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: some small simplificationsMåns Rullgård2009-07-23
| | | | Originally committed as revision 19503 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: add some blank lines to improve readabilityMåns Rullgård2009-07-23
| | | | Originally committed as revision 19502 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move output redirection of deps generation from make rule to DEPEND_CMDMåns Rullgård2009-07-22
| | | | Originally committed as revision 19493 to svn://svn.ffmpeg.org/ffmpeg/trunk