summaryrefslogtreecommitdiff
path: root/configure
Commit message (Collapse)AuthorAge
...
* Check if PIC is somehow already enabled (e.g. a compiler that enables it by ↵Reimar Döffinger2009-11-10
| | | | | | | | | | | default). This in particular ensures that -DPIC is set appropriately for YASM, which avoids linking failures on x86_64 for compilers that have PIE enabled by default (e.g. hardened Gentoo). It also makes the macho64 special-case hack adding -DPIC to YASMFLAGS obsolete. Originally committed as revision 20497 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: whitespace cosmeticsMåns Rullgård2009-11-10
| | | | Originally committed as revision 20494 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Attempt to document the "enable pic" hackery for OpenBSD.Reimar Döffinger2009-11-09
| | | | Originally committed as revision 20491 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove some BeOS/haiku hacks: -fomit-frame-pointer is used anyway,Reimar Döffinger2009-11-09
| | | | | | | and -DPIC makes little sense without -fPIC or similar - if -fPIC is enabled by default, libavutil/internal.h defines PICi anyway. Originally committed as revision 20486 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set -DPREFIX for yasm simply whenever extern_prefix is set insteadReimar Döffinger2009-11-08
| | | | | | of hardcoding it based on the object format. Originally committed as revision 20478 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Always add -DPIC to YASM flags when pic is enabled.Reimar Döffinger2009-11-08
| | | | | | | | | This covers the previous case of x86_64 and shared, but also works with --enable-pic. For 32 bit x86 it currently makes no difference since x86inc.asm ignores -DPIC for non-x86_64. Originally committed as revision 20476 to svn://svn.ffmpeg.org/ffmpeg/trunk
* PPC: make inline asm xform address test work with Apple toolsMåns Rullgård2009-11-05
| | | | Originally committed as revision 20466 to svn://svn.ffmpeg.org/ffmpeg/trunk
* IA64: do not automatically enable hardcoded tables if explicitly disabledMåns Rullgård2009-11-05
| | | | Originally committed as revision 20465 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: fix 64-bit test with clangMåns Rullgård2009-11-01
| | | | Originally committed as revision 20431 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: remove extra backslashes from suncc DEPEND_CMDMichael Kostylev2009-10-31
| | | | | | 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 outputMåns Rullgård2009-10-31
| | | | Originally committed as revision 20427 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: use here-docs instead of echo for writing config.{h,mak}Måns Rullgård2009-10-31
| | | | Originally committed as revision 20426 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: simplify setting of SDL flags in config.makMåns Rullgård2009-10-31
| | | | Originally committed as revision 20425 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow disabling doc generation with --disable-docMåns Rullgård2009-10-31
| | | | Originally committed as revision 20424 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: simplify STRIP setting in config.makMåns Rullgård2009-10-31
| | | | Originally committed as revision 20423 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable hardcoded tables for ia64 shared builds.Reimar Döffinger2009-10-28
| | | | | | | | | At least for cross-compilation with Gentoo gcc 4.4.2 it fixes the build errors due 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 to PIC (shared builds with PIC disabled show the same issue). Originally committed as revision 20409 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: add C99 flags to HOSTCFLAGSMåns Rullgård2009-10-28
| | | | Originally committed as revision 20408 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Detect Sun Studio compiler and set appropriate variables.Michael Kostylev2009-10-28
| | | | | | | 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.Michael Kostylev2009-10-26
| | | | | | 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 ifReimar Döffinger2009-10-24
| | | | | | --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.Diego Biurrun2009-10-24
| | | | | | HTTP supports redirection just fine without it. Originally committed as revision 20361 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add clang to detected compilersDavid Conrad2009-10-22
| | | | Originally committed as revision 20350 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update libx264.c for x264 API changeJason Garrett-Glaser2009-10-19
| | | | | | Change 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 buildJustin Ruggles2009-10-18
| | | | | | problems 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 laterMåns Rullgård2009-10-11
| | | | Originally committed as revision 20207 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: enable PIC for shared libsMåns Rullgård2009-10-11
| | | | | | | | | Recent versions of gcc generate movw/movt pairs, and the linkers fail to handle the associated relocations properly. Those responsible at Codesourcery have refused to consider fixing this. Blame them for making shared libraries slower than they need to be. Originally committed as revision 20203 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: define extern symbol prefix without quotes for for asm filesMåns Rullgård2009-10-02
| | | | Originally committed as revision 20146 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not use -mdynamic-no-pic if PIC is enabledMåns Rullgård2009-10-02
| | | | Originally committed as revision 20145 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: add -marm flag since we do not support ThumbMåns Rullgård2009-10-02
| | | | Originally committed as revision 20144 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check whether 32-bit x86 is really 64-bitDavid Conrad2009-10-01
| | | | | | Fixes configure on OS X 10.6 Originally committed as revision 20134 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: break a long lineMåns Rullgård2009-09-30
| | | | Originally committed as revision 20108 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Re-add check for compilation failure with ebx clobber, and only setReimar Döffinger2009-09-30
| | | | | | | | | ebx_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 64 bit mode (-m64) which only fails for ebx/rbx clobbers but not "b" constraints - this is probably a compiler bug. Originally committed as revision 20107 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: return result of test from check_asmMåns Rullgård2009-09-30
| | | | | | 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.Reimar Döffinger2009-09-30
| | | | | | | The test using clobber incorrectly indicates ebx to be available with the default compilers on OpenBSD 4.5 and Haiku. Originally committed as revision 20101 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typo in comment.Reimar Döffinger2009-09-30
| | | | Originally committed as revision 20097 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: fix tms470 flag mapping for soft-floatMåns Rullgård2009-09-23
| | | | Originally committed as revision 19998 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: improve armcc detectionMåns Rullgård2009-09-23
| | | | | | | Apparently some versions of armcc do not identify as RVCT. This changes 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.Jason Garrett-Glaser2009-09-23
| | | | Originally committed as revision 19977 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set compiler version string for supported non-gcc compilersMåns Rullgård2009-09-22
| | | | Originally committed as revision 19972 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Improve compiler information code to print to the console on program startup.Diego Biurrun2009-09-22
| | | | | | | Remove gcc-specific hacks and allow filling relevant information for non-gcc compilers in configure. Originally committed as revision 19963 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The W64 demuxer depends on the WAV demuxer.Diego Biurrun2009-09-22
| | | | Originally committed as revision 19960 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Deinterleave the generation of config.h and config.mak.Diego Biurrun2009-09-21
| | | | | | 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 backslashesMåns Rullgård2009-09-21
| | | | Originally committed as revision 19937 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make pkgconfig_generate() fill Libs with the required linking flagsStefano Sabatini2009-09-15
| | | | | | | | | | if the "shared" var has not been explicitely enabled, rather than if it has been explicitly disabled. This way is not necessary to explicitly disable shared libraries in order to have a pc file usable with only static libraries. Originally committed as revision 19868 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: add -g to ASFLAGS when debug is enabledMåns Rullgård2009-09-10
| | | | Originally committed as revision 19804 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix typo in configure error message.Reimar Döffinger2009-09-09
| | | | Originally committed as revision 19803 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: fix check for x264Måns Rullgård2009-09-02
| | | | | | | | libx264 recently started mangling the name of x264_encoder_open() to prevent version mismatches, breaking our test. Checking for another function instead makes it work again. Originally committed as revision 19754 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: fix filter() function when matching multiple patternsMåns Rullgård2009-08-23
| | | | | | | This makes comma-separated patters to --disable-decoder and friends work 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 resultsMåns Rullgård2009-08-23
| | | | | | 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 buildsMåns Rullgård2009-08-23
| | | | Originally committed as revision 19684 to svn://svn.ffmpeg.org/ffmpeg/trunk