summaryrefslogtreecommitdiff
path: root/configure
Commit message (Collapse)AuthorAge
...
* build: Require yasm 0.8.0 or higherDerek Buitenhuis2013-10-09
| | | | | | | | | | | | | | This is in preparation for removing a .rodata kludge which was only required for older YASM versions. The movbe instruction was introduced in 0.8.0, which already had AVX, which was introduced in 0.7.0, and NASM introduced movbe in 2.0.3, which is the same version which introduced AVX support. Also, make the failure message more accurate. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* build: Strip spurious labelsLoren Merritt2013-10-07
| | | | | | | | | | | | | | The implementation of 25cb0c1a involves lots of spurious labels. The effect of keeping those labels around is making debugging harder. Those labels are meaningless, and complicate the disassembly. Also, gdb can't tell the difference between them and function entry points. This new strip command is irrelevant to any usage of Libav that would have used the old fully stripped version, because the old one was for non-debug use. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* configure: Enable -Qansi-alias for icl 14+Alex Smith2013-09-24
| | | | | | | Qansi-alias worked on 12.x, then caused miscompilation on 13.x, but now works again passing all FATE tests for icl version 14. Signed-off-by: Diego Biurrun <diego@biurrun.de>
* msvc/icl: Use __declspec(deprecated)Alex Smith2013-09-20
| | | | | | | | | | | Prior to this on msvc/icl there was no handling of deprecated functions and the deprecated warning was disabled. After enabling there are a number of warnings relating to the CRT and the use of the non-secure versions of several functions. Defining _CRT_SECURE_NO_WARNINGS silences these warnings. Signed-off-by: Martin Storsjö <martin@martin.st>
* build: Support cparserLuca Barbato2013-09-19
|
* Add a WebP decoderJustin Ruggles2013-09-18
| | | | | Container and lossy decoding by Aneesh Dogra <aneesh@sugarlabs.org> Lossless decoding by Justin Ruggles <justin.ruggles@gmail.com>
* Fix references to deleted avcodec_encode_video() functionVittorio Giovara2013-09-16
|
* configure: Mention that icl does not build both static and shared libsDiego Biurrun2013-09-12
|
* configure: Fix wrong reference to user support mailing listDiego Biurrun2013-09-11
|
* build: Report an error message when a pc file is not foundLuca Barbato2013-09-04
| | | | Ease tracking path problems.
* configure: Add docdir configuration optionVittorio Giovara2013-08-31
| | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* configure: x86: Fix handling of i686 and cpunop featuresDiego Biurrun2013-08-28
| | | | | | The i686 feature really is a CPU feature and should be handled as such. The cpunop dependency on i686 should be expressed with a standard _deps declaration instead of a manual test.
* Add a libfdk-aac decoderMartin Storsjö2013-08-20
| | | | | This can be useful for decoding AAC object types that are not supported by the native AAC decoder, e.g. AAC-LD and AAC-ELD.
* hlsenc: Add a proper dependency on the mpegts muxerMartin Storsjö2013-08-15
| | | | | | | | | The hls muxer itself doesn't have any direct (object file level) dependencies on mpegtsenc.o, and including that object file directly doesn't ensure that it is registered so that the muxer actually is accessible. Signed-off-by: Martin Storsjö <martin@martin.st>
* Voxware MetaSound decoderKostya Shishkov2013-08-08
|
* configure: Properly split dv1394 indev dependenciesDiego Biurrun2013-08-06
|
* configure: Properly set zlib dependencies for all componentsDiego Biurrun2013-08-06
|
* configure: The W64 demuxer should select the WAV demuxer, not depend on itDiego Biurrun2013-08-06
|
* configure: Properly split avserver component and system dependenciesDiego Biurrun2013-08-06
|
* riff: Move demuxing code to a separate file.Diego Biurrun2013-08-06
|
* riff: Move muxing code to a separate fileDiego Biurrun2013-08-06
|
* lavf: Support unix socketsLuca Barbato2013-08-05
|
* vdpau: remove old-style decodersRémi Denis-Courmont2013-08-05
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* configure: Check for GCC diagnostic pragma support inside of functionsDiego Biurrun2013-08-02
| | | | | The actual usage of the pragma is within functions and older versions of gcc only support the pragma outside of functions.
* build: Add _Pragma macro to disable deprecated declaration warningsDiego Biurrun2013-08-02
|
* configure: Detect AIX ar command instead of hardcoding it in the OS sectionDiego Biurrun2013-07-29
|
* AIX: add support for shared buildsMichael Kostylev2013-07-26
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* miscellaneous typo fixesDiego Biurrun2013-07-25
|
* configure: generate full msvc debug symbols when linking in debug modeHendrik Leppkes2013-07-21
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* avserver: Remove unused loadable module supportMartin Storsjö2013-07-18
| | | | | | | | | | There is no record of this ever being used at all, anywhere, since the feature was added in 2effd274466. This gets rid of extra linker tricks just to support a feature that isn't used, simplifying portability to other platforms. Signed-off-by: Martin Storsjö <martin@martin.st>
* configure: Check for support for labels in the inline assemblyMartin Storsjö2013-07-11
| | | | | | | Use this for enabling the ppc timer.h implementation only on assemblers that support labels in the inline assembly. Signed-off-by: Martin Storsjö <martin@martin.st>
* compat: wrap math.h to avoid AIX-specific clashesLuca Barbato2013-07-04
| | | | | AIX defines a class() function in its math.h header without any guard.
* configure: Do not omit frame pointers for msvc/icl debug buildsAlex Smith2013-06-24
| | | | | | | Because O1 or O2 are required to build libav with msvc/icl, this must be explicitly set instead of just omitting Oy. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* configure: Do not explicitly set Oy for msvc/iclAlex Smith2013-06-24
| | | | | | | It is implied by O1 or O2, both of which are required to build libav with msvc/icl. Silences warnings when targeting x64 with icl. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* configure: whitespace cosmeticsDiego Biurrun2013-06-23
|
* configure: Simplify an expression with enabled_all.Diego Biurrun2013-06-23
|
* configure: More msvc/icl combiningAlex Smith2013-06-22
| | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* configure: Remove unneeded icl inline compatibility definitionAlex Smith2013-06-19
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* lavc: add a libwavpack encoder wrapperAnton Khirnov2013-06-10
|
* configure: Don't add -fPIC on windows targetsMartin Storsjö2013-06-10
| | | | | | | | | | | This avoids warnings about this option not having any effect on this platform. We still want to enable the pic configure item for these platforms (if detected via the compiler builtin define __PIC__) to get proper inline assembly workarounds. Signed-off-by: Martin Storsjö <martin@martin.st>
* configure: Don't explicitly disable PIC for windows targetsMartin Storsjö2013-06-10
| | | | | | | | | | | | | | | | This reverts e08c946c6 and 05165c2f7a. The actual intention of e08c946c6 was to fix shared library builds for arm/win32, which can also be accomplished in other ways. Disabling pic on those platforms broke inline assembly on cygwin/64 (since some inline assembly requires knowing whether we are building as PIC or not), and might also break inline assembly on other compilers on windows. As a side-effect, this unfortunately brings back all the warnings about PIC not having any effect on that platform. Signed-off-by: Martin Storsjö <martin@martin.st>
* configure: arm: Don't try to enable pic for shared libraries on win32Martin Storsjö2013-06-10
| | | | | | | | The object file format doesn't support PIC loads in ARM assembly, there are no relocation types in PE/COFF that correspond to BFD_RELOC_32_PCREL (R_ARM_REL32 in ELF). Signed-off-by: Martin Storsjö <martin@martin.st>
* Go2Webinar decoderKostya Shishkov2013-06-03
|
* configure: icl: Merge -Qdiag-error parametersAlex Smith2013-05-31
| | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* configure: Separate commonalities in msvc and icl flagsAlex Smith2013-05-31
| | | | | | | | Allows for easier handling of flags that may be specific to icl or msvc. Furthermore, simplify the handling of warnings and remarks thanks to icl's support of -Wall on Windows. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* configure: Don't pass -mthumb or -march= to MSVCMartin Storsjö2013-05-29
| | | | | | | | | | | The modern MSVC for ARM always builds for thumb, and it can't be disabled. Also just use the default arch instead of trying to map the -march parameter to MSVC's -arch parameter (which only takes the values ARMv7VE and VFPv4). Signed-off-by: Martin Storsjö <martin@martin.st>
* configure: support gcc-4.8 instrumentationLuca Barbato2013-05-28
| | | | | | | Since version 4.8 gcc sports asan and tsan integration that can be leveraged when hunting bugs. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* fate: Add a --target-samples path parameterMartin Storsjö2013-05-28
| | | | | | | This allows having the samples accessible via different paths on the target and on the host. Signed-off-by: Martin Storsjö <martin@martin.st>
* configure: make jack depend on pthreadsAnton Khirnov2013-05-27
|
* msvc/icl: Intel Compiler support on WindowsAlex Smith2013-05-25
| | | | | | | | | | | | | | | Initial support for the ICL compiler on windows. Requires a new c99wrap with ICL support (1.0.2+). Currently not much different speed wise compared to msvc. In the future with a few changes it can be made to support the inline asm. This would be the primary reason for using it. Passed all fate tests, versions tested: 13.1.1.171 (2013 Update 3) x86 and x64 12.1.5.344 (2011 Update 11) x86 and x64 Signed-off-by: Luca Barbato <lu_zero@gentoo.org>