Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-03-26Use common.mak in the top-level Makefile as well.Diego Biurrun
Originally committed as revision 12599 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-15rename LIBSRC to SRC_DIR, add quotes where SRC_DIR was usedMåns Rullgård
Originally committed as revision 12452 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-13Move dependency generation commands into configure.Diego Biurrun
This will allow specifying gcc-independent commands in the future. Originally committed as revision 12426 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-10Replace the awkward '1>' with the more natural '>'.Diego Biurrun
Originally committed as revision 12413 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-09Work around gcc stupidity: With -MM gcc outputs just the basename of files asDiego Biurrun
target name. This breaks when compiling targets in subdirectories, so prepend the subdirectory name to the target name. Originally committed as revision 12398 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-07simplify library version handlingMåns Rullgård
Originally committed as revision 12362 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-06consolidate CFLAGS, LDFLAGS, EXTRALIBS assignmentMåns Rullgård
Originally committed as revision 12354 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-06allow vpath search only for source filesMåns Rullgård
Originally committed as revision 12343 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-25Install headers in $prefix/include/$libnameMåns Rullgård
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
2008-01-28Move common test program infrastructure to common.mak.Diego Biurrun
Originally committed as revision 11645 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-06OS/2 support restored in cleaner form.Dave Yeo
patch by Dave Yeo, daveryeo telus net Originally committed as revision 11172 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-30Declare libpostproc prerequisites directly instead of using a layer ofDiego Biurrun
indirection. This moves build system workarounds closer to libpostproc where they are really needed. Originally committed as revision 10874 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-23Simplify install-libs prerequisite generation.Diego Biurrun
Originally committed as revision 10844 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-18Rename LIB to LIBNAME for consistency.Diego Biurrun
Originally committed as revision 10774 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-17Add SLIB_UNINSTALL_EXTRA_COMMAND to uninstall the things installed viaDave Yeo
SLIB_INSTALL_EXTRA_COMMAND. patch by Dave Yeo, daveryeo telus net Originally committed as revision 10767 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-15ln is not available on all platforms, so introduce a variable for itDave Yeo
that can be set to a suitable platform-specific command. patch by Dave Yeo, daveryeo telus net Originally committed as revision 10503 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-21cosmetics: Use uppercase names for installation directories in makefiles.Diego Biurrun
Originally committed as revision 9776 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-20Remove EXTRADEPS from common.mak since it is no longer usedRamiro Polla
Originally committed as revision 9766 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-17add "checkheaders" targetMåns Rullgård
Originally committed as revision 9346 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-11We do not create .d files, thus no need to remove them.Diego Biurrun
Originally committed as revision 9278 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-11Move libpostproc-specific uninstallation command to the libpostproc Makefile.Diego Biurrun
Originally committed as revision 9277 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-04readability cosmeticsDiego Biurrun
Originally committed as revision 9195 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-04-03Add CPP_OBJS-yes to CPP_OBJS, same as the other *_OBJS variables.Diego Biurrun
Originally committed as revision 8616 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-24Simplify .depend file inclusion.Diego Biurrun
Originally committed as revision 8104 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-01-25Remove installstrip in favor of explicit strip; better for cross-compilation.Ramiro Polla
patch by Ramiro Ribeiro Polla, ramiro lisha.ufsc br Originally committed as revision 7709 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-01-25Move conditional CFLAGS and OBJS setting to common place.Diego Biurrun
Originally committed as revision 7699 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-01-22Remove BeOS hack.Diego Biurrun
Originally committed as revision 7634 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-12-22Install generated .lib files in shlibdir on MinGW.Ramiro Polla
patch by Ramiro Polla, ramiro lisha.ufsc br Originally committed as revision 7356 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-11-25Remove redundant comment.Diego Biurrun
Originally committed as revision 7167 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-11-15Remove duplicate *.lib from rm command.Diego Biurrun
Originally committed as revision 7084 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-11-08allow spaces in source and build directory namesMåns Rullgård
out of tree builds from a source dir with spaces is impossible due to how make handles vpath Originally committed as revision 6938 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-15Revert putting EXTRALIBS in common.mak, linking fails on MinGW.Diego Biurrun
Originally committed as revision 6700 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-11Move CFLAGS handling to common.mak.Diego Biurrun
Originally committed as revision 6642 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-08Quote names individually, since otherwise the whole list was understoodVíctor Paesa
as a single long filename by the shell. patch by Víctor Paesa, wzrlpy arsystel com Originally committed as revision 6589 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-05Simplify test program build.Diego Biurrun
Originally committed as revision 6563 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-04Libraries are created in the build tree, not in the source tree.Diego Biurrun
Originally committed as revision 6555 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-04Replace .. by $(SRC_PATH), otherwise there might be problems withDiego Biurrun
out-of-tree builds. Originally committed as revision 6553 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-03Move EXTRALIBS handling to common.mak.Diego Biurrun
Originally committed as revision 6545 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-03depend and dep are really the same target.Diego Biurrun
Originally committed as revision 6539 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-03Mark all phony targets as such.Diego Biurrun
Originally committed as revision 6538 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-08-15Mac OS X requires running ranlib on static libraries after installation.Diego Biurrun
Originally committed as revision 6001 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-08-04Remove MinGW specialcasing and make shared library installation compatibleDiego Biurrun
with MinGW where ln is emulated by cp. Originally committed as revision 5930 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-08-04Add quotes where necessary.Diego Biurrun
Originally committed as revision 5929 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-08-04Shared libraries now go in $(shlibdir), not $(libdir).Diego Biurrun
Originally committed as revision 5927 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-08-03Move MinGW special casing for shared lib creation to configure.Diego Biurrun
Originally committed as revision 5921 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-08-01prettyprinting cosmeticsDiego Biurrun
Originally committed as revision 5875 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-08-01Create $(shlibdir), not $(libdir) for shared libs.Diego Biurrun
Originally committed as revision 5874 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-07-16Create infrastructure to install shared and static libs into different places.Diego Biurrun
based on patch by Víctor Paesa wzrlpy at arsystel com Originally committed as revision 5755 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-07-12Also remove versioned .so files on make clean.Diego Biurrun
Originally committed as revision 5719 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-07-12CONFIG_WIN32 implies MinGW and Cygwin and possibly more, so use justDiego Biurrun
CONFIG_MINGW or __MINGW32__ instead. Originally committed as revision 5718 to svn://svn.ffmpeg.org/ffmpeg/trunk