summaryrefslogtreecommitdiff
path: root/configure
Commit message (Collapse)AuthorAge
...
* fix configure with libx264 disabledMåns Rullgård2008-10-19
| | | | Originally committed as revision 15647 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the ugly and unnecessary require_cpp_condition() function.Stefano Sabatini2008-10-19
| | | | Originally committed as revision 15646 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make more clear the error message for the libx264 version check.Stefano Sabatini2008-10-19
| | | | Originally committed as revision 15645 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Save some backslashes.Diego Biurrun2008-10-18
| | | | Originally committed as revision 15638 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove -fasm CFLAGS check, it is no longer needed.Diego Biurrun2008-10-16
| | | | Originally committed as revision 15629 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update DEPEND_CMD comment to better explain why we postprocess gcc output.Diego Biurrun2008-10-16
| | | | Originally committed as revision 15628 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Convert asm keyword into __asm__.Diego Pettenò2008-10-16
| | | | | | | | | | | | | 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
* Enable FAST_UNALIGNED on ARM variants that support itMåns Rullgård2008-10-12
| | | | Originally committed as revision 15609 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable FAST_UNALIGNED on PPCMåns Rullgård2008-10-12
| | | | Originally committed as revision 15608 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert "Replace sed trickery in the gcc dependency generation command"Måns Rullgård2008-10-12
| | | | | | | 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
* configure: simplify PPC dcbzl checkMåns Rullgård2008-10-12
| | | | Originally committed as revision 15606 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Don't include byteswap.h anymore.Carl Eugen Hoyos2008-10-12
| | | | Originally committed as revision 15603 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace sed trickery in the gcc dependency generation command by use ofDiego Biurrun2008-10-12
| | | | | | the -MT option as suggested by Ramiro. Originally committed as revision 15601 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix inconsistent indent.Stefano Sabatini2008-10-12
| | | | Originally committed as revision 15600 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert the merger of LC_ALL declaration and export.Diego Biurrun2008-10-12
| | | | | | 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
* Check requirement for libx264 version in configure usingStefano Sabatini2008-10-12
| | | | | | require_cpp_condition(). Originally committed as revision 15598 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement CPP condition check support in configure.Stefano Sabatini2008-10-12
| | | | Originally committed as revision 15597 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only special-case absolute DOS paths on systems that support them.Ramiro Polla2008-10-10
| | | | Originally committed as revision 15594 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make configure --help return 0.Stefano Sabatini2008-10-09
| | | | Originally committed as revision 15593 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document libavfilter filters options in configure -h.Stefano Sabatini2008-10-09
| | | | Originally committed as revision 15592 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove obsolete liba52 wrapper code.Diego Biurrun2008-10-06
| | | | Originally committed as revision 15571 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge variable declaration and export.Diego Biurrun2008-10-04
| | | | Originally committed as revision 15554 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Stop Sun Studio from issuing a warning during configure when passedDiego Pettenò2008-10-03
| | | | | | | the --version option. patch by Diego 'Flameeyes' Pettenò, flameeyes gmail com Originally committed as revision 15532 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update copyright years.Diego Biurrun2008-10-02
| | | | Originally committed as revision 15512 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Globally set LC_ALL=C to prevent locale issues from breaking tests.Diego Biurrun2008-10-02
| | | | Originally committed as revision 15511 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix -uninstalled.pc includedir for out-of-tree buildsDiego Pettenò2008-09-28
| | | | | | patch by Diego 'Flameeyes' Pettenò flameeyes _at_ gmail Originally committed as revision 15458 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for passing a version string to configure that is appended toDiego Biurrun2008-09-26
| | | | | | | 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
* whitespace cosmeticsDiego Biurrun2008-09-26
| | | | Originally committed as revision 15429 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add MIPS to list of architectures requiring PIC flags.Diego Biurrun2008-09-23
| | | | | | | Prior to gcc version 4.3 PIC was the default, now it needs to be enabled explicitly. Passing the flag to older gcc versions does not hurt. Originally committed as revision 15392 to svn://svn.ffmpeg.org/ffmpeg/trunk
* V4L2 support for OpenBSD, patch by Brad, brad comstyle comBrad2008-09-21
| | | | Originally committed as revision 15376 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename check_func2 to check_func_headers.Diego Biurrun2008-09-20
| | | | Originally committed as revision 15372 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add a separate line in Makefile for E-AC-3 decoder and only compile it whenJustin Ruggles2008-09-02
| | | | | | GPL is enabled. fixes building without GPL or with liba52. Originally committed as revision 15151 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use correct asm object type and necessary -DPIC for yasm on 64-bit DarwinDavid Conrad2008-08-16
| | | | | | | Thread: [FFmpeg-devel] fft_mmx.asm yasm 64bit build broken Patch by 'D' (lessen42 gmail com) Originally committed as revision 14791 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add -fasm and -std=c99 when supported.Michael Niedermayer2008-08-14
| | | | Originally committed as revision 14769 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for sys/select.h and poll.h unconditionally, not just if ffserverDiego Biurrun2008-08-14
| | | | | | is enabled. The headers are used throughout the code. Originally committed as revision 14755 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add -D_POSIX_C_SOURCE=200112 to cflags.Michael Niedermayer2008-08-14
| | | | Originally committed as revision 14754 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unneeded whitespace and quotes from -D_ISOC99_SOURCE.Michael Niedermayer2008-08-14
| | | | Originally committed as revision 14745 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change _ISOC9X_SOURCE to _ISOC99_SOURCE.Michael Niedermayer2008-08-13
| | | | Originally committed as revision 14739 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move -D_ISOC9X_SOURCE to configure so its available to all tests.Michael Niedermayer2008-08-13
| | | | Originally committed as revision 14729 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Show result of yasm test.Carl Eugen Hoyos2008-08-13
| | | | Originally committed as revision 14726 to svn://svn.ffmpeg.org/ffmpeg/trunk
* yasm buildsystemLoren Merritt2008-08-11
| | | | Originally committed as revision 14696 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Explain the difference between HAVE_LIST and CONFIG_LIST in a short comment.Diego Biurrun2008-08-01
| | | | Originally committed as revision 14499 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only check for socklen_t if network support is enabled.Diego Biurrun2008-08-01
| | | | Originally committed as revision 14498 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove AltiVec vector declaration compiler compatibility macros.Diego Biurrun2008-07-24
| | | | | | | | | | The original problem was that FSF and Apple gcc used a different syntax for vector declarations, i.e. {} vs. (). Nowadays Apple gcc versions support the standard {} syntax and versions that support {} are available on all relevant Mac OS X versions. Thus the greater compatibility is no longer worth cluttering the code with macros. Originally committed as revision 14366 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make configure --help document the --enable-debug option.Stefano Sabatini2008-07-21
| | | | Originally committed as revision 14330 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move --disable-debug to a better place within configure help output.Diego Biurrun2008-07-21
| | | | Originally committed as revision 14327 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace LDLATEFLAGS hackery by proper LDFLAGS tests.Diego Biurrun2008-07-17
| | | | | | The original reasons for LDLATEFLAGS are lost in the mists of time. Originally committed as revision 14263 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: disable use of system byteswap.hMåns Rullgård2008-07-15
| | | | | | | Our bswap functions are better than those in glibc, which has no ARM-optimised versions. Originally committed as revision 14241 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add parisc* to the list of architectures requiring PIC flags for shared libs.Diego Biurrun2008-07-13
| | | | Originally committed as revision 14200 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: simplify negative dependenciesMåns Rullgård2008-07-12
| | | | Originally committed as revision 14195 to svn://svn.ffmpeg.org/ffmpeg/trunk