Måns Rullgård
566ae9fbc2
configure: simplify directory creation for out of tree builds
...
Originally committed as revision 19684 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
8a3c86277b
configure: add --enable-pic flag
...
Using this flag enables position-independent code even when not strictly
required. It is impossible to use --disable-pic to forcibly disable PIC
when other properties mandate it.
Originally committed as revision 19672 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
fdcd782dd9
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_ap
and avr32_uc.
Originally committed as revision 19663 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Diego Biurrun
2513b2b436
Use pkg-config to generate the linker flags for libdirac.
...
We do the same for libschroedinger and already use pkg-config to generate
the 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
15 years ago
Måns Rullgård
aef6bd1bdd
Fix dependency generation with ccache/gcc
...
When running behind ccache, the output from -MMD is corrupted unless
we 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
when gcc 2.x is detected.
Originally committed as revision 19620 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
8f0c157aaa
configure: fix gcc detection for v2.95
...
Originally committed as revision 19619 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Alexander Strange
2704bd1a09
Fix the EBX available configure check on Darwin/i386.
...
-mdynamic-no-pic is required for it, but it was only
added to CFLAGS and the check only used ASFLAGS.
Originally committed as revision 19614 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
07dec06e6a
Generate dependencies while compiling if supported by compiler
...
Originally committed as revision 19609 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
c1c3933a98
Generate dependencies when object files are built
...
Originally committed as revision 19608 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
8b93ddc340
configure: allow comma-separated list in --enable/disable-thing=name
...
The argument to these options is now a comma-separated list of shell
patterns, e.g. --disable-decoder='indeo*,rv*'
Originally committed as revision 19604 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Måns Rullgård
be8f2501dd
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
15 years ago
Måns Rullgård
d22c13a8df
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
15 years ago
Diego Biurrun
1746e2a936
Make WMV2 encoder depend on H.263 encoder in configure.
...
Originally committed as revision 19601 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Diego Biurrun
c37de5e194
Make MPEG-4 encoder depend on H.263 encoder in configure.
...
Originally committed as revision 19600 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Diego Biurrun
665507aac2
Make WMV1 encoder depend on H.263 encoder in configure.
...
Originally committed as revision 19599 to svn://svn.ffmpeg.org/ffmpeg/trunk
15 years ago
Diego Biurrun
4d4b4bd149
Make FLV encoder depend on H.263 encoder in configure.
...
Originally committed as revision 19597 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
fe629c2d2c
Make H.263+ (H263P) encoder depend on H.263 encoder in configure.
...
Originally committed as revision 19595 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
4e169d89f3
Declare the dependencies of the MSMPEG4v1/MSMPEG4v2/MSMPEG4v3 encoders on the
...
H.263 encoder in configure.
Originally committed as revision 19594 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
b2bf38b446
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
16 years ago
Diego Biurrun
4d8eecf475
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
16 years ago
Måns Rullgård
cbf298899d
RTMP needs tcp_protocol
...
Originally committed as revision 19557 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Jeff Downs
abbe30ad89
Make av_always_inline a no-op when --disable-optimizations is supplied to
...
configure
Originally committed as revision 19555 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
75af07495a
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_inline
does not get doubly defined.
Originally committed as revision 19553 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Jeff Downs
e12e2848a3
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
16 years ago
Måns Rullgård
bea81a52c9
Replace BUILD_{SHARED,STATIC} with CONFIG_ counterparts
...
Originally committed as revision 19527 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
cd78208bd6
Enable PIC unconditionally on OpenBSD
...
Originally committed as revision 19526 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
ac0bed5491
configure: always write PIC flags to config.mak
...
Originally committed as revision 19525 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
a15b0af815
configure: enable PIC in per-arch section instead of separately
...
Originally committed as revision 19524 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Martin Storsjö
9d3f4f5070
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
16 years ago
Martin Storsjö
1aa71e258d
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
16 years ago
Måns Rullgård
63613fe615
Replace WORDS_BIGENDIAN with HAVE_BIGENDIAN
...
Originally committed as revision 19508 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Aurelien Jacobs
84c04e2519
fix various compilation dependencies
...
Originally committed as revision 19507 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Martin Storsjö
abfc8d056e
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
16 years ago
Måns Rullgård
b6f3d925ca
configure: some small simplifications
...
Originally committed as revision 19503 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
e45391bb32
configure: add some blank lines to improve readability
...
Originally committed as revision 19502 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
adcb219081
Move output redirection of deps generation from make rule to DEPEND_CMD
...
Originally committed as revision 19493 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
4eef77c1a3
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
16 years ago
Måns Rullgård
df5e397839
configure: group tests for compiler characteristics together
...
Originally committed as revision 19490 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
a036c1b537
configure: set -mdynamic-no-pic flag in main darwin section
...
Originally committed as revision 19489 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
d90330dc20
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
16 years ago
Måns Rullgård
55b290c690
configure: remove some darwin-related cruft
...
Originally committed as revision 19487 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
fa0912fe50
configure: group all cpu-specific tests together
...
Originally committed as revision 19485 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
baf91bb9a3
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
16 years ago
Måns Rullgård
ce742de22c
ARM: check for VFP register arguments
...
Originally committed as revision 19474 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
89f2932baf
configure: make --extra-cflags cumulative again
...
Originally committed as revision 19471 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
e82dc4c91e
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
16 years ago
Diego Biurrun
015f8ee009
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
16 years ago
Måns Rullgård
6fec122af7
Support building with TI TMS470 compiler
...
Originally committed as revision 19465 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
63d72fdaf2
If any input/output devices are enabled then indevs/outdevs should
...
get enabled, not demuxers/muxers.
Originally committed as revision 19463 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Stefano Sabatini
8beb41783a
Replace two occurrences of 'vfwcap_demuxer' with 'vfwcap_indev', I
...
missed them in r19293. Re-enable version check on w32api.h if the
vfwcap input device has been selected.
Originally committed as revision 19461 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago