History | View | Annotate | Download (79.5 KB)
configure: fix 64-bit test with clang
Originally committed as revision 20431 to svn://svn.ffmpeg.org/ffmpeg/trunk
configure: remove extra backslashes from suncc DEPEND_CMD
Patch by Michael Kostylev <michael kostylev gmail>
Originally committed as revision 20428 to svn://svn.ffmpeg.org/ffmpeg/trunk
configure: use here-doc for --help output
Originally committed as revision 20427 to svn://svn.ffmpeg.org/ffmpeg/trunk
configure: use here-docs instead of echo for writing config.{h,mak}
Originally committed as revision 20426 to svn://svn.ffmpeg.org/ffmpeg/trunk
configure: simplify setting of SDL flags in config.mak
Originally committed as revision 20425 to svn://svn.ffmpeg.org/ffmpeg/trunk
Allow disabling doc generation with --disable-doc
Originally committed as revision 20424 to svn://svn.ffmpeg.org/ffmpeg/trunk
configure: simplify STRIP setting in config.mak
Originally committed as revision 20423 to svn://svn.ffmpeg.org/ffmpeg/trunk
Enable hardcoded tables for ia64 shared builds.At least for cross-compilation with Gentoo gcc 4.4.2 it fixes the build errorsdue to GPREL 22 being insufficient for the .bss size of > 4 MB without it.Why these errors do not appear with static builds is unclear, it is not due...
configure: add C99 flags to HOSTCFLAGS
Originally committed as revision 20408 to svn://svn.ffmpeg.org/ffmpeg/trunk
Detect Sun Studio compiler and set appropriate variables.Add dependency generation commands compatible with Sun Studio.patch by Michael Kostylev, michael.kostylev gmail com
Originally committed as revision 20397 to svn://svn.ffmpeg.org/ffmpeg/trunk
Avoid "-z text" diversion on SunOS x86, needed to make FATE happy.patch by Michael Kostylev, michael.kostylev gmail com
Originally committed as revision 20373 to svn://svn.ffmpeg.org/ffmpeg/trunk
Support amdfam10 for --cpu, also avoids a warning about unknown cpu if--cpu=host is used on AMD Phenom and newer at least.
Originally committed as revision 20367 to svn://svn.ffmpeg.org/ffmpeg/trunk
Remove ancient redir demuxer.HTTP supports redirection just fine without it.
Originally committed as revision 20361 to svn://svn.ffmpeg.org/ffmpeg/trunk
Add clang to detected compilers
Originally committed as revision 20350 to svn://svn.ffmpeg.org/ffmpeg/trunk
Update libx264.c for x264 API changeChange behavior of b-pyramid option.
Originally committed as revision 20308 to svn://svn.ffmpeg.org/ffmpeg/trunk
add CONFIG_LPC to the build system for lpc dsputil functions. fixes buildproblems when lpc.c is not compiled.
Originally committed as revision 20285 to svn://svn.ffmpeg.org/ffmpeg/trunk
ARM: force PIC for shared libs only with ARMv6T2 and later
Originally committed as revision 20207 to svn://svn.ffmpeg.org/ffmpeg/trunk
ARM: enable PIC for shared libs
Recent versions of gcc generate movw/movt pairs, and the linkers failto handle the associated relocations properly. Those responsible atCodesourcery have refused to consider fixing this. Blame them formaking shared libraries slower than they need to be....
configure: define extern symbol prefix without quotes for for asm files
Originally committed as revision 20146 to svn://svn.ffmpeg.org/ffmpeg/trunk
Do not use -mdynamic-no-pic if PIC is enabled
Originally committed as revision 20145 to svn://svn.ffmpeg.org/ffmpeg/trunk
ARM: add -marm flag since we do not support Thumb
Originally committed as revision 20144 to svn://svn.ffmpeg.org/ffmpeg/trunk
Check whether 32-bit x86 is really 64-bitFixes configure on OS X 10.6
Originally committed as revision 20134 to svn://svn.ffmpeg.org/ffmpeg/trunk
configure: break a long line
Originally committed as revision 20108 to svn://svn.ffmpeg.org/ffmpeg/trunk
Re-add check for compilation failure with ebx clobber, and only setebx_available if both "b" constraint and exb clobber code compile.This is to fix compilation with Mac OSX 10.5.8's gcc 4.0.1 in 64bit mode (-m64) which only fails for ebx/rbx clobbers but not...
configure: return result of test from check_asm
This makes it possible to use check_asm in conditionals.
Originally committed as revision 20105 to svn://svn.ffmpeg.org/ffmpeg/trunk
Use a "b" constraint instead of ebx clobber to detect if EBX is available.The test using clobber incorrectly indicates ebx to be available with thedefault compilers on OpenBSD 4.5 and Haiku.
Originally committed as revision 20101 to svn://svn.ffmpeg.org/ffmpeg/trunk
Fix typo in comment.
Originally committed as revision 20097 to svn://svn.ffmpeg.org/ffmpeg/trunk
configure: fix tms470 flag mapping for soft-float
Originally committed as revision 19998 to svn://svn.ffmpeg.org/ffmpeg/trunk
ARM: improve armcc detection
Apparently some versions of armcc do not identify as RVCT. Thischanges 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.
Originally committed as revision 19977 to svn://svn.ffmpeg.org/ffmpeg/trunk
Set compiler version string for supported non-gcc compilers
Originally committed as revision 19972 to svn://svn.ffmpeg.org/ffmpeg/trunk
Improve compiler information code to print to the console on program startup.Remove gcc-specific hacks and allow filling relevant information for non-gcccompilers in configure.
Originally committed as revision 19963 to svn://svn.ffmpeg.org/ffmpeg/trunk
The W64 demuxer depends on the WAV demuxer.
Originally committed as revision 19960 to svn://svn.ffmpeg.org/ffmpeg/trunk
Deinterleave the generation of config.h and config.mak.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 backslashes
Originally committed as revision 19937 to svn://svn.ffmpeg.org/ffmpeg/trunk
Make pkgconfig_generate() fill Libs with the required linking flagsif the "shared" var has not been explicitely enabled, rather than ifit has been explicitly disabled.
This way is not necessary to explicitly disable shared libraries inorder to have a pc file usable with only static libraries....
configure: add -g to ASFLAGS when debug is enabled
Originally committed as revision 19804 to svn://svn.ffmpeg.org/ffmpeg/trunk
Fix typo in configure error message.
Originally committed as revision 19803 to svn://svn.ffmpeg.org/ffmpeg/trunk
configure: fix check for x264
libx264 recently started mangling the name of x264_encoder_open() toprevent version mismatches, breaking our test. Checking for anotherfunction instead makes it work again.
Originally committed as revision 19754 to svn://svn.ffmpeg.org/ffmpeg/trunk
configure: fix filter() function when matching multiple patterns
This makes comma-separated patters to --disable-decoder and friendswork 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 results
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 builds
Originally committed as revision 19684 to svn://svn.ffmpeg.org/ffmpeg/trunk
configure: add --enable-pic flag
Using this flag enables position-independent code even when not strictlyrequired. It is impossible to use --disable-pic to forcibly disable PICwhen other properties mandate it.
Originally committed as revision 19672 to svn://svn.ffmpeg.org/ffmpeg/trunk
configure: add AVR32 names for --cpu flag
Recognise AVR32 processor names as well as the generic "ap" and "uc" family names as values for --cpu. Also define two subtypes, avr32_apand avr32_uc.
Originally committed as revision 19663 to svn://svn.ffmpeg.org/ffmpeg/trunk
Use pkg-config to generate the linker flags for libdirac.We do the same for libschroedinger and already use pkg-config to generatethe 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/gcc
When running behind ccache, the output from -MMD is corrupted unlesswe 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...
configure: fix gcc detection for v2.95
Originally committed as revision 19619 to svn://svn.ffmpeg.org/ffmpeg/trunk
Fix the EBX available configure check on Darwin/i386.
-mdynamic-no-pic is required for it, but it was onlyadded 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 compiler
Originally committed as revision 19609 to svn://svn.ffmpeg.org/ffmpeg/trunk
Generate dependencies when object files are built
Originally committed as revision 19608 to svn://svn.ffmpeg.org/ffmpeg/trunk
configure: allow comma-separated list in --enable/disable-thing=name
The argument to these options is now a comma-separated list of shellpatterns, 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=name
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 system
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.
Originally committed as revision 19601 to svn://svn.ffmpeg.org/ffmpeg/trunk
Make MPEG-4 encoder depend on H.263 encoder in configure.
Originally committed as revision 19600 to svn://svn.ffmpeg.org/ffmpeg/trunk
Make WMV1 encoder depend on H.263 encoder in configure.
Originally committed as revision 19599 to svn://svn.ffmpeg.org/ffmpeg/trunk
Make FLV encoder depend on H.263 encoder in configure.
Originally committed as revision 19597 to svn://svn.ffmpeg.org/ffmpeg/trunk
Make H.263+ (H263P) encoder depend on H.263 encoder in configure.
Originally committed as revision 19595 to svn://svn.ffmpeg.org/ffmpeg/trunk
Declare the dependencies of the MSMPEG4v1/MSMPEG4v2/MSMPEG4v3 encoders on theH.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.
Originally committed as revision 19592 to svn://svn.ffmpeg.org/ffmpeg/trunk
Make XVMC mpegvideo decoder depend on mpegvideo decoder.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_protocol
Originally committed as revision 19557 to svn://svn.ffmpeg.org/ffmpeg/trunk
Make av_always_inline a no-op when --disable-optimizations is supplied toconfigure
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.Instead, #include config.h at the top of common.h so that av_always_inlinedoes 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.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_ counterparts
Originally committed as revision 19527 to svn://svn.ffmpeg.org/ffmpeg/trunk
Enable PIC unconditionally on OpenBSD
Originally committed as revision 19526 to svn://svn.ffmpeg.org/ffmpeg/trunk
configure: always write PIC flags to config.mak
Originally committed as revision 19525 to svn://svn.ffmpeg.org/ffmpeg/trunk
configure: enable PIC in per-arch section instead of separately
Originally committed as revision 19524 to svn://svn.ffmpeg.org/ffmpeg/trunk
Fix typo in MinGWCE support in configure.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.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_BIGENDIAN
Originally committed as revision 19508 to svn://svn.ffmpeg.org/ffmpeg/trunk
fix various compilation dependencies
Originally committed as revision 19507 to svn://svn.ffmpeg.org/ffmpeg/trunk
Check for the isatty function.Patch by Martin Storsjö <martin at martin dot st>
Originally committed as revision 19504 to svn://svn.ffmpeg.org/ffmpeg/trunk
configure: some small simplifications
Originally committed as revision 19503 to svn://svn.ffmpeg.org/ffmpeg/trunk
configure: add some blank lines to improve readability
Originally committed as revision 19502 to svn://svn.ffmpeg.org/ffmpeg/trunk
Move output redirection of deps generation from make rule to DEPEND_CMD
Originally committed as revision 19493 to svn://svn.ffmpeg.org/ffmpeg/trunk
Make Theora decoder depend on the VP3 decoder.Practically all the code is shared.
Originally committed as revision 19491 to svn://svn.ffmpeg.org/ffmpeg/trunk
configure: group tests for compiler characteristics together
Originally committed as revision 19490 to svn://svn.ffmpeg.org/ffmpeg/trunk
configure: set -mdynamic-no-pic flag in main darwin section
Originally committed as revision 19489 to svn://svn.ffmpeg.org/ffmpeg/trunk
configure: remove special flags for XLC on Darwin
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 cruft
Originally committed as revision 19487 to svn://svn.ffmpeg.org/ffmpeg/trunk
configure: group all cpu-specific tests together
Originally committed as revision 19485 to svn://svn.ffmpeg.org/ffmpeg/trunk
Make E-AC-3 decoder depend on the AC-3 decoder.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 arguments
Originally committed as revision 19474 to svn://svn.ffmpeg.org/ffmpeg/trunk
configure: make --extra-cflags cumulative again
Originally committed as revision 19471 to svn://svn.ffmpeg.org/ffmpeg/trunk
Make VP6A/VP6F decoders depend on the VP6 decoder.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.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 compiler
Originally committed as revision 19465 to svn://svn.ffmpeg.org/ffmpeg/trunk
If any input/output devices are enabled then indevs/outdevs shouldget 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', Imissed them in r19293. Re-enable version check on w32api.h if thevfwcap input device has been selected.
Originally committed as revision 19461 to svn://svn.ffmpeg.org/ffmpeg/trunk
Allow enabling alsa and jack devices.
Originally committed as revision 19460 to svn://svn.ffmpeg.org/ffmpeg/trunk
configure: improve detection of out-of-tree builds
Originally committed as revision 19456 to svn://svn.ffmpeg.org/ffmpeg/trunk
configure: remove some useless comments
Originally committed as revision 19455 to svn://svn.ffmpeg.org/ffmpeg/trunk
Check for attribute((packed)) support
Not all compilers claiming to be gcc support this attribute.
Originally committed as revision 19453 to svn://svn.ffmpeg.org/ffmpeg/trunk
configure: handle --cpu before running compiler
It is possible that the compiler requires flags set by the --cpuoption, so we should not attempt to run it before those flags havebeen added.
Originally committed as revision 19452 to svn://svn.ffmpeg.org/ffmpeg/trunk
configure: simplify --cpu handling slightly
Originally committed as revision 19451 to svn://svn.ffmpeg.org/ffmpeg/trunk
configure: do not warn about mismatching altivec/cpu selection
We do not issue similar warnings for other architectures, and wegenerally assume users know what they want.
Originally committed as revision 19445 to svn://svn.ffmpeg.org/ffmpeg/trunk
Fix check_func_headers. The reference to the function under test was beingoptimized out by gcc when the headers lied about the function existing,rendering the test useless in that situation.This new test throws a warning in mingw-w64, but that should not be a problem....
Disable gcc auto-vectorisation
The auto-vectoriser in gcc is enabled by default at -O3 since version4.3. However, it provides no speed benefit, but does produce incorrectcode on many targets. Disabling it for gcc should give more reliablebuilds.
If the adventurous want it back, they can edit the makefile themselves....