mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
GStreamer multimedia framework
53ca792d2f
Original commit message from CVS: * create a configure.base file, containing the contents of configure.{in,ac}, with those lines specific to one file prepended by "SUBSTFOR configure.in:" or "SUBSTFOR configure.ac:" appropriately. * Add lines to autogen.sh to generate configure.in and configure.ac automatically from this file. (Very simple sed scripts) * Remove configure.in and configure.ac This shouldn't cause any problems to anyone, and should make it easy to do work on configure scripts by just working on configure.base. |
||
---|---|---|
components | ||
debian | ||
docs | ||
editor | ||
examples | ||
gst | ||
gstplay | ||
include | ||
libs | ||
plugins/elements | ||
test | ||
tests | ||
testsuite | ||
tools | ||
.gitignore | ||
ABOUT-NLS | ||
acconfig.h | ||
acinclude.m4 | ||
AUTHORS | ||
autogen.sh | ||
ChangeLog | ||
configure.base | ||
configure.in.ac250 | ||
COPYING | ||
COPYING.LIB | ||
gstreamer-config.1 | ||
gstreamer-config.in | ||
gstreamer-uninstalled.pc.in | ||
gstreamer.m4 | ||
gstreamer.pc.in | ||
gstreamer.spec.in | ||
INSTALL | ||
install-sh | ||
LICENSE | ||
Makefile.am | ||
missing | ||
mkinstalldirs | ||
NEWS | ||
README | ||
REQUIREMENTS | ||
stamp.h.in |
This is gnome-streamer, a framework for streaming media in GNOME. The fundamental design comes from the video pipeline at Oregon Graduate Institute, as well as some ideas from DirectMedia. It's based on plug-ins that will provide the various codec and other functionality. The interface hopefully is generic enough for various companies (ahem, Apple) to release binary codecs for Linux, until such time as they get a clue and release the source. Developer note: When building from CVS sources, you will need to run autogen.sh to generate the build system files. Unfortunately, there is a bug in automake which causes it to use a large amount of memory when generating plugins/Makefile.in. The following patch, which you may wish to apply to automake (version 1.4), fixes this problem. Alternatively, ensure that you have at least 128Mb of memory on your system, and be prepared to wait a little while when running automake (or autogen.sh). @@ -2383,8 +2383,8 @@ # to all possible directories, and use it. If DIST_SUBDIRS is # defined, just use it. local ($dist_subdir_name); - if (&variable_conditions ('SUBDIRS') - || &variable_defined ('DIST_SUBDIRS')) + if (&variable_defined ('DIST_SUBDIRS') + || &variable_conditions ('SUBDIRS')) { $dist_subdir_name = 'DIST_SUBDIRS'; if (! &variable_defined ('DIST_SUBDIRS')) The automake developers have been notified of this problem, and supplied with an equivalent patch against CVS head.