GStreamer multimedia framework
Find a file
Thomas Vander Stichele 99a6eca0c3 I think this fixes the libtool CC make issue
Original commit message from CVS:
I think this fixes the libtool CC make issue
2001-12-08 20:38:49 +00:00
components
debian
docs Added some ramblings about a messaging system idea.. 2001-12-05 21:01:43 +00:00
editor *sigh* 2001-12-08 18:02:36 +00:00
examples
gst more and more 2001-12-08 16:11:10 +00:00
gstplay Removed more obsolete CFLAGS 2001-12-07 20:32:30 +00:00
include
libs this can go on and on 2001-12-08 18:26:14 +00:00
plugins/elements added GST_CFLAGS to fix make distcheck 2001-12-08 13:41:52 +00:00
test
tests threads back in ? 2001-12-08 13:57:17 +00:00
testsuite threads back in ? 2001-12-08 13:57:17 +00:00
tools
.gitignore
ABOUT-NLS
acconfig.h Added the rtp define 2001-12-08 00:33:40 +00:00
acinclude.m4
AUTHORS
autogen.sh
ChangeLog
configure.base I think this fixes the libtool CC make issue 2001-12-08 20:38:49 +00:00
COPYING
COPYING.LIB
gstreamer-config.1
gstreamer-config.in
gstreamer-uninstalled.pc.in
gstreamer.m4
gstreamer.pc.in
gstreamer.spec.in added a few buildrequires more should follow; uraeus ? ;) 2001-12-08 19:22:11 +00:00
idiottest.mak
INSTALL
install-sh
LICENSE
LICENSE_readme
makeconfigure
Makefile.am
missing
mkinstalldirs
NEWS
README
REQUIREMENTS
stamp.h.in
TODO

This is GStreamer, a framework for streaming media.  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.
It is also fixed in versions of automake 1.4f and later.
Alternatively, ensure that you have at least 512Mb of memory on your system,
and be prepared to wait a little while when running automake (or autogen.sh).

The autogen.sh script will automatically detect an unpatched automake and give
a warning.  It will also generate a patched version of automake in the top
build directory, which you can use by putting it in a directory in your $PATH
ahead of the unpatched version of automake.

@@ -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'))