Stefano Sabatini
a85de417db
Add checks on the _mingw.h and w32api.h versions.
...
Based on a patch by Ramiro.
Originally committed as revision 15793 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Dominik Mierzejewski
34b37f86ec
Enable CMOV usage on x86_64 arch. All x86_64 CPUs have it.
...
Originally committed as revision 15763 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Baptiste Coudurier
bee2eac594
svq3 decoder may need zlib
...
Originally committed as revision 15722 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Aurelien Jacobs
2eef7c6259
enable zlib and bzlib only when useful
...
Originally committed as revision 15710 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
4f03499329
Add CONFIG_GOLOMB and auto-select when needed
...
Originally committed as revision 15706 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
47a158cb8b
Auto-enable CONFIG_MDCT when needed
...
Originally committed as revision 15705 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
1091c959b1
AC3 encoder doesn't need FFT
...
Originally committed as revision 15704 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
a79d1aed48
Move declaration of mlp decoder dependency on mlp parser to the Makefile
...
where all other such dependencies are declared.
Originally committed as revision 15696 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
b6bb00b07d
Build MMX/SSE FFT only if CONFIG_FFT is set
...
Originally committed as revision 15692 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
3c69e5d3de
DCA decoder needs FFT
...
Originally committed as revision 15691 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
c510c7b5d9
configure: add foo_suggest facility
...
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
16 years ago
Måns Rullgård
72a436687c
configure: add enable_weak and disable_weak
...
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
16 years ago
Måns Rullgård
f9d328da8f
configure: allow recursive foo_select options
...
Originally committed as revision 15688 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
1848f7d9f9
Auto-enable CONFIG_FFT for codecs that need it
...
Originally committed as revision 15686 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
6a702d4c7d
configure: cosmetics
...
Originally committed as revision 15685 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
7ef3425f0a
configure: add foo_select facility
...
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
16 years ago
Måns Rullgård
f7b230a761
configure: fix disabled_any to return false for empty list
...
Originally committed as revision 15683 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
David Conrad
ae14f311f8
Speex decoding via libspeex
...
Originally committed as revision 15676 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
e3cc7d6fef
cosmetics: Leave out quotes from libdirac pkg-config call for consistency.
...
Originally committed as revision 15664 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
0223bd6f52
ARM: allow --cpu=armvN in configure
...
Originally committed as revision 15659 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
ec0bd3b93a
Allow target name on every line in dependency postprocessing
...
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
16 years ago
Måns Rullgård
13c7df3dc0
Do not add $cross_prefix to compiler name given with --cc option
...
Originally committed as revision 15657 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
884a36a78b
configure: fix handling of option arguments containing = sign
...
Originally committed as revision 15656 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
57f0ec6eee
fix configure with libx264 disabled
...
Originally committed as revision 15647 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Stefano Sabatini
7c19b88f30
Remove the ugly and unnecessary require_cpp_condition() function.
...
Originally committed as revision 15646 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Stefano Sabatini
cc181b41d2
Make more clear the error message for the libx264 version check.
...
Originally committed as revision 15645 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
36718e51e9
cosmetics: Save some backslashes.
...
Originally committed as revision 15638 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
75083a884f
Remove -fasm CFLAGS check, it is no longer needed.
...
Originally committed as revision 15629 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
0d7dca3669
Update DEPEND_CMD comment to better explain why we postprocess gcc output.
...
Originally committed as revision 15628 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Pettenò
be449fca79
Convert asm keyword into __asm__.
...
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
16 years ago
Måns Rullgård
f2e49553de
Enable FAST_UNALIGNED on ARM variants that support it
...
Originally committed as revision 15609 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
aa8bc0f10f
Enable FAST_UNALIGNED on PPC
...
Originally committed as revision 15608 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
53bd9d923a
Revert "Replace sed trickery in the gcc dependency generation command"
...
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
16 years ago
Måns Rullgård
5eb39de901
configure: simplify PPC dcbzl check
...
Originally committed as revision 15606 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Carl Eugen Hoyos
89493e10ef
Don't include byteswap.h anymore.
...
Originally committed as revision 15603 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
3a2bcaed7c
Replace sed trickery in the gcc dependency generation command by use of
...
the -MT option as suggested by Ramiro.
Originally committed as revision 15601 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Stefano Sabatini
ca9acf9767
Fix inconsistent indent.
...
Originally committed as revision 15600 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
79ab96bafd
Revert the merger of LC_ALL declaration and export.
...
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
16 years ago
Stefano Sabatini
15fe16f4a4
Check requirement for libx264 version in configure using
...
require_cpp_condition().
Originally committed as revision 15598 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Stefano Sabatini
a5344cf7ec
Implement CPP condition check support in configure.
...
Originally committed as revision 15597 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Ramiro Polla
bc574408dc
Only special-case absolute DOS paths on systems that support them.
...
Originally committed as revision 15594 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Stefano Sabatini
60e8bc13a9
Make configure --help return 0.
...
Originally committed as revision 15593 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Stefano Sabatini
1865259fea
Document libavfilter filters options in configure -h.
...
Originally committed as revision 15592 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
d8d12c1594
Remove obsolete liba52 wrapper code.
...
Originally committed as revision 15571 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
460a4fb99d
Merge variable declaration and export.
...
Originally committed as revision 15554 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Pettenò
0c45cd0720
Stop Sun Studio from issuing a warning during configure when passed
...
the --version option.
patch by Diego 'Flameeyes' Pettenò, flameeyes gmail com
Originally committed as revision 15532 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
949906ea6d
Update copyright years.
...
Originally committed as revision 15512 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
31e647f8a2
Globally set LC_ALL=C to prevent locale issues from breaking tests.
...
Originally committed as revision 15511 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Pettenò
1d44d365ac
fix -uninstalled.pc includedir for out-of-tree builds
...
patch by Diego 'Flameeyes' Pettenò flameeyes _at_ gmail
Originally committed as revision 15458 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
ac63af34b5
Add support for passing a version string to configure that is appended to
...
FFmpeg's version string output. This can be used by distributions to mark
their packages as being modified versions without hacking the sources.
Originally committed as revision 15433 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago