summaryrefslogtreecommitdiff
path: root/configure
Commit message (Collapse)AuthorAge
* Install headers in $prefix/include/$libnameMåns Rullgård2008-02-25
| | | | | | | | | | Install each library's headers in $prefix/include/$libname. The installed headers use #include "lib*/*.h"; applications are expected to do the same. Specify only $prefix/include in .pc files. Originally committed as revision 12194 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add -lm to x264 check, it is needed on most systems.Diego Biurrun2008-02-22
| | | | | | taken from the DOS/DJGPP port by Michael Kostylev, mik niipt ru Originally committed as revision 12178 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clean up lib* version definitionsMåns Rullgård2008-02-19
| | | | | | Updating version numbers now requires changing only one place. Originally committed as revision 12154 to svn://svn.ffmpeg.org/ffmpeg/trunk
* prettify lib* version number extractionMåns Rullgård2008-02-17
| | | | Originally committed as revision 12128 to svn://svn.ffmpeg.org/ffmpeg/trunk
* prettify encoder/decoder/muxer/... list extractionMåns Rullgård2008-02-17
| | | | Originally committed as revision 12127 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The Blackfin toolchains will automatically select FDPIC according to theMike Frysinger2008-02-16
| | | | | | | | toolchain/tuple, so there is no need (and indeed this is unwanted) to force -mfdpic into the compile/linker flags. patch by Mike Frysinger, vapier.adi a gmail d com Originally committed as revision 12122 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not run ldconfig after installing shared librariesMåns Rullgård2008-02-16
| | | | Originally committed as revision 12121 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Include poll.h instead of sys/poll.hLuca Abeni2008-02-13
| | | | Originally committed as revision 11924 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not use ranges with tr, the results are locale-dependent.Diego Biurrun2008-02-11
| | | | | | Suggested by Rich Felker. Originally committed as revision 11914 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Warn if a comparison is always true or always false due to theMichael Niedermayer2008-02-03
| | | | | | | | | limited range of the data type. The only new warning this causes (if i didnt miss one) is: udp.c:272: warning: comparison of unsigned expression < 0 is always false which is a real bug Originally committed as revision 11839 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make string constants const. Why is this not default?Michael Niedermayer2008-02-03
| | | | Originally committed as revision 11835 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove -Werror= CFLAGS that do not have the desired effect.Diego Biurrun2008-02-02
| | | | Originally committed as revision 11811 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mixing declarations and statements is an error, so is any constructMichael Niedermayer2008-02-01
| | | | | | depending on sizeof(void) (like void_ptr++) Originally committed as revision 11798 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Warn about casts which remove const.Michael Niedermayer2008-02-01
| | | | | | Feel free to flame me if you disagree that such code is wrong. Originally committed as revision 11699 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Pass argc and argv to the main function of the SDL tests.Diego Biurrun2008-01-29
| | | | | | | This appears to be required on Windows and does no harm on Linux. closes issue 344, patch by jdm Originally committed as revision 11662 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add -pthread to extralibs and not to ldflags so that the dependency getsDiego Biurrun2008-01-26
| | | | | | | reflected in the pkg-config files. noticed by j .at. v2v .dot. cc Originally committed as revision 11618 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a --enable-nonfree command line parameter similar to --enable-gpl.Diego Biurrun2008-01-26
| | | | | | Required to enable nonfree libraries that make FFmpeg unredistributable. Originally committed as revision 11617 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not group libamr_nb and libamr_wb together as libamr.Diego Biurrun2008-01-26
| | | | | | Also fixes --enable-libamr being recognized as configure parameter. Originally committed as revision 11616 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add system-specific network link flags to inet_aton test. This should fixMichael Kostylev2008-01-18
| | | | | | | the check on platforms that require those flags. patch by Michael Kostylev, mik niipt ru Originally committed as revision 11553 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use check_lib2 instead of check_lib in SDL test. This is helpful inKO Myung-Hun2008-01-16
| | | | | | | | combination with different calling/naming conventions as used in the OS/2 port of SDL. patch by Myung-Hun, komh a chollian d net Originally committed as revision 11545 to svn://svn.ffmpeg.org/ffmpeg/trunk
* pentium4m is a valid CPU name, add it to the list.Igor Mozolevsky2008-01-16
| | | | | | patch by Igor Mozolevsky, igor hybrid-lab.co uk Originally committed as revision 11538 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move "Creating config.mak and config.h..." message down to the point whereDiego Biurrun2008-01-16
| | | | | | those two files are actually created. Originally committed as revision 11537 to svn://svn.ffmpeg.org/ffmpeg/trunk
* refer users to ffmpeg-user list in case of errorsMåns Rullgård2008-01-12
| | | | Originally committed as revision 11517 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Adding support for libdc1394 v.2, patch by Alessandro Sappia a dot sappia at ↵Alessandro Sappia2008-01-11
| | | | | | ngi dot it Originally committed as revision 11501 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move printing of the license status at the end of configure output, soRoberto Togni2008-01-07
| | | | | | that users won't miss it Originally committed as revision 11450 to svn://svn.ffmpeg.org/ffmpeg/trunk
* improve CRC APIAurelien Jacobs2008-01-04
| | | | | | | - don't export any global var - provide either generated or hardcoded tables Originally committed as revision 11409 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split the RTP demuxing functions out of rtp.c, to simplify the RTP muxer's ↵Luca Abeni2008-01-04
| | | | | | dependencies Originally committed as revision 11406 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rationalize some dependencies between rtsp and rtpLuca Abeni2008-01-03
| | | | Originally committed as revision 11385 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add portable way to check for the existence of definitions andDave Yeo2008-01-01
| | | | | | | apply it to socklen_t. patch by Dave Yeo, daveryeo telus net Originally committed as revision 11366 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for the presence of llrint(), lrint(), round() and roundf()Michael Kostylev2007-12-27
| | | | | | | and provide simple replacements if they are unavailable. patch by Michael Kostylev, mik niipt ru Originally committed as revision 11326 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for the presence of sys/select.h and conditionally #include it.Michael Kostylev2007-12-27
| | | | | | patch by Michael Kostylev, mik niipt ru Originally committed as revision 11324 to svn://svn.ffmpeg.org/ffmpeg/trunk
* djgpp port, first partMichael Kostylev2007-12-24
| | | | | | patch by Michael Kostylev, mik niipt ru Originally committed as revision 11313 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dv1394 depends on dv_demuxer, fixes linking with demuxers disabled.Diego Biurrun2007-12-17
| | | | | | patch by Aurel Originally committed as revision 11258 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnecessary system include path from pkg-config files.Diego Biurrun2007-12-17
| | | | Originally committed as revision 11247 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert r11202: do not create copy relocations when linking to shared libsMåns Rullgård2007-12-12
| | | | | | This caused more problems than it solved and is no longer required. Originally committed as revision 11210 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not create copy relocations when linking to shared libsMåns Rullgård2007-12-11
| | | | Originally committed as revision 11202 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add --list-indevs and --list-outdevs command line options.Diego Biurrun2007-12-06
| | | | Originally committed as revision 11179 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add --disable-devices to --help output.Diego Biurrun2007-12-06
| | | | Originally committed as revision 11178 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add input and output devices to configure output.Diego Biurrun2007-12-06
| | | | Originally committed as revision 11177 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnecessary quotes.Diego Biurrun2007-12-06
| | | | Originally committed as revision 11176 to svn://svn.ffmpeg.org/ffmpeg/trunk
* OS/2 support restored in cleaner form.Dave Yeo2007-12-05
| | | | | | patch by Dave Yeo, daveryeo telus net Originally committed as revision 11172 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use -Bsymbolic linker flag if supportedMåns Rullgård2007-12-04
| | | | Originally committed as revision 11164 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a --disable-devices flag which disables all muxers and demuxers ofPanagiotis Issaris2007-12-03
| | | | | | libavdevice at once. Originally committed as revision 11158 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix out of tree builds after introduction of libavdevice.Diego Biurrun2007-11-23
| | | | Originally committed as revision 11084 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Consistently indent with 4 spaces, break some long lists into singleDiego Biurrun2007-11-23
| | | | | | lines, align some columns. Originally committed as revision 11081 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix the creation of alldevices.c (create it without any rename).Luca Abeni2007-11-23
| | | | | | This also requires some changes to configure Originally committed as revision 11080 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Introduce libavdeviceLuca Abeni2007-11-22
| | | | Originally committed as revision 11077 to svn://svn.ffmpeg.org/ffmpeg/trunk
* main() --> main(void)Diego Biurrun2007-11-20
| | | | Originally committed as revision 11069 to svn://svn.ffmpeg.org/ffmpeg/trunk
* whitespace consistency cosmeticsDiego Biurrun2007-11-20
| | | | Originally committed as revision 11068 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove now useless libogg supportBaptiste Coudurier2007-11-12
| | | | Originally committed as revision 11004 to svn://svn.ffmpeg.org/ffmpeg/trunk