Automatically generate a patched automake if needed, and put instructions in the...
[platform/upstream/gstreamer.git] / README
1 This is gnome-streamer, a framework for streaming media in GNOME.  The
2 fundamental design comes from the video pipeline at Oregon Graduate
3 Institute, as well as some ideas from DirectMedia.  It's based on plug-ins
4 that will provide the various codec and other functionality.  The
5 interface hopefully is generic enough for various companies (ahem, Apple)
6 to release binary codecs for Linux, until such time as they get a clue and
7 release the source.
8
9
10 Developer note:  When building from CVS sources, you will need to run
11 autogen.sh to generate the build system files.
12
13 Unfortunately, there is a bug in automake which causes it to use a large
14 amount of memory when generating plugins/Makefile.in.  The following patch,
15 which you may wish to apply to automake (version 1.4), fixes this problem.
16 It is also fixed in versions of automake 1.4f and later.
17 Alternatively, ensure that you have at least 512Mb of memory on your system,
18 and be prepared to wait a little while when running automake (or autogen.sh).
19
20 The autogen.sh script will automatically detect an unpatched automake and give
21 a warning.  It will also generate a patched version of automake in the top
22 build directory, which you can use by putting it in a directory in your $PATH
23 ahead of the unpatched version of automake.
24
25 @@ -2383,8 +2383,8 @@
26         # to all possible directories, and use it.  If DIST_SUBDIRS is
27         # defined, just use it.
28         local ($dist_subdir_name);
29 -       if (&variable_conditions ('SUBDIRS')
30 -           || &variable_defined ('DIST_SUBDIRS'))
31 +       if (&variable_defined ('DIST_SUBDIRS')
32 +           || &variable_conditions ('SUBDIRS'))
33         {
34             $dist_subdir_name = 'DIST_SUBDIRS';
35             if (! &variable_defined ('DIST_SUBDIRS'))