summaryrefslogtreecommitdiff
path: root/configure
Commit message (Collapse)AuthorAge
...
* 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
* Make Theora decoder depend on the VP3 decoder.Diego Biurrun2009-07-22
| | | | | | 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-22
| | | | 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-22
| | | | Originally committed as revision 19489 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: remove special flags for XLC on DarwinMåns Rullgård2009-07-22
| | | | | | | | 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-22
| | | | Originally committed as revision 19487 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: group all cpu-specific tests togetherMåns Rullgård2009-07-22
| | | | 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-21
| | | | | | 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-20
| | | | Originally committed as revision 19474 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: make --extra-cflags cumulative againMåns Rullgård2009-07-20
| | | | Originally committed as revision 19471 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make VP6A/VP6F decoders depend on the VP6 decoder.Diego Biurrun2009-07-20
| | | | | | 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-19
| | | | | | 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
* Support building with TI TMS470 compilerMåns Rullgård2009-07-19
| | | | Originally committed as revision 19465 to svn://svn.ffmpeg.org/ffmpeg/trunk
* If any input/output devices are enabled then indevs/outdevs shouldDiego Biurrun2009-07-19
| | | | | | get enabled, not demuxers/muxers. Originally committed as revision 19463 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace two occurrences of 'vfwcap_demuxer' with 'vfwcap_indev', IStefano Sabatini2009-07-18
| | | | | | | missed them in r19293. Re-enable version check on w32api.h if the vfwcap input device has been selected. Originally committed as revision 19461 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow enabling alsa and jack devices.Carl Eugen Hoyos2009-07-18
| | | | Originally committed as revision 19460 to svn://svn.ffmpeg.org/ffmpeg/trunk