use autoconf/automake for configuration
[goodguy/history.git] / cinelerra-5.1 / README
1
2 == for configuration help:
3 ./autogen.sh
4 ./configure --help
5
6 == for static BUILD for $HOME/cin install:
7 ./autogen.sh
8 ./configure
9 make >& log
10 make install
11 cp -a bin $HOME/cin
12
13 == for shared BUILD for $HOME/cin install:
14 ./autogen.sh
15 ./configure --disable-static
16 ./configure
17 make >& log
18 make install
19 cp -a bin $HOME/cin
20
21 == to RUN from $HOME/cin install:
22 cd
23 ./cin/cinelerra
24
25 == Build notes:
26 Shared builds are not recommended, since system versions of thirdparty
27 libraries are not always known to be free of problems.  The build
28 will use known (perhaps patched) libraries if built statically.
29
30 The amount of time needed for the build is decreased by adding more
31 build jobs via --with-jobs=#, the default is 1.5*mach cpus + 2 jobs.
32 eg. --with-jobs=12
33
34 There are several packages which are "forced" either because they
35 vary widely between systems, or are buggy and have patches in the build.
36
37 Using disable-pkg means that the static build is not used, and a system
38 library will be used to replace it.  
39 eg. --disable-giflib
40
41 Using without-feature means that the feature is omitted from cinelerra.
42 eg. --without-firewire
43
44