summaryrefslogtreecommitdiffstats
path: root/configure
Commit message (Collapse)AuthorAgeFilesLines
* configure: fix check for x264Måns Rullgård2009-09-021-1/+1
| | | | | | | | 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-231-1/+1
| | | | | | | 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-231-4/+6
| | | | | | 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-231-13/+3
| | | | Originally committed as revision 19684 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: add --enable-pic flagMåns Rullgård2009-08-201-9/+12
| | | | | | | | 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-171-0/+19
| | | | | | | | 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-151-2/+2
| | | | | | | | 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-101-2/+4
| | | | | | | | | | | 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-101-1/+1
| | | | Originally committed as revision 19619 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix the EBX available configure check on Darwin/i386.Alexander Strange2009-08-101-1/+2
| | | | | | | -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-081-3/+15
| | | | Originally committed as revision 19609 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Generate dependencies when object files are builtMåns Rullgård2009-08-081-1/+1
| | | | 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-061-2/+3
| | | | | | | 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-061-4/+11
| | | | | | | 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-061-0/+16
| | | | | | | 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-061-1/+1
| | | | 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-061-1/+1
| | | | 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-061-1/+1
| | | | 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-051-1/+1
| | | | 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-051-1/+1
| | | | 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-051-3/+3
| | | | | | 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-051-2/+2
| | | | Originally committed as revision 19592 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make XVMC mpegvideo decoder depend on mpegvideo decoder.Diego Biurrun2009-08-021-0/+1
| | | | | | 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-311-0/+1
| | | | 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-301-1/+1
| | | | | | 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-301-1/+0
| | | | | | | 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-301-0/+1
| | | | | | | 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-281-2/+0
| | | | Originally committed as revision 19527 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable PIC unconditionally on OpenBSDMåns Rullgård2009-07-281-1/+1
| | | | Originally committed as revision 19526 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: always write PIC flags to config.makMåns Rullgård2009-07-281-1/+1
| | | | 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-281-10/+10
| | | | Originally committed as revision 19524 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typo in MinGWCE support in configure.Martin Storsjö2009-07-281-1/+1
| | | | | | 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-271-1/+5
| | | | | | 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-261-5/+0
| | | | Originally committed as revision 19508 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix various compilation dependenciesAurelien Jacobs2009-07-241-0/+2
| | | | Originally committed as revision 19507 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for the isatty function.Martin Storsjö2009-07-241-0/+2
| | | | | | 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-231-2/+2
| | | | Originally committed as revision 19503 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: add some blank lines to improve readabilityMåns Rullgård2009-07-231-0/+10
| | | | 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-221-1/+1
| | | | Originally committed as revision 19493 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make Theora decoder depend on the VP3 decoder.Diego Biurrun2009-07-221-0/+1
| | | | | | Practically all the code is shared. Originally committed as revision 19491 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: group tests for compiler characteristics togetherMåns Rullgård2009-07-221-17/+16
| | | | Originally committed as revision 19490 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: set -mdynamic-no-pic flag in main darwin sectionMåns Rullgård2009-07-221-5/+1
| | | | Originally committed as revision 19489 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: remove special flags for XLC on DarwinMåns Rullgård2009-07-221-4/+0
| | | | | | | | Rationale: - Current versions of XLC accept gcc flags - XLC can't compile FFmpeg Originally committed as revision 19488 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: remove some darwin-related cruftMåns Rullgård2009-07-221-3/+0
| | | | Originally committed as revision 19487 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: group all cpu-specific tests togetherMåns Rullgård2009-07-221-52/+49
| | | | Originally committed as revision 19485 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make E-AC-3 decoder depend on the AC-3 decoder.Diego Biurrun2009-07-211-1/+1
| | | | | | It is impossible to build E-AC-3 without AC-3. Originally committed as revision 19477 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: check for VFP register argumentsMåns Rullgård2009-07-201-0/+6
| | | | Originally committed as revision 19474 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: make --extra-cflags cumulative againMåns Rullgård2009-07-201-3/+11
| | | | Originally committed as revision 19471 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make VP6A/VP6F decoders depend on the VP6 decoder.Diego Biurrun2009-07-201-0/+2
| | | | | | They share so much code that enabling one without the other is pointless. Originally committed as revision 19468 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make WMV3 decoders depend on their VC-1 counterparts.Diego Biurrun2009-07-191-4/+3
| | | | | | They share so much code that enabling one without the other is pointless. Originally committed as revision 19466 to svn://svn.ffmpeg.org/ffmpeg/trunk
OpenPOWER on IntegriCloud