Installation
- To uncompress and extract the downloaded source code (This will create a directory svt-2.0 with source inside it)
% tar -xzf svt-2.0.tar.gz
OR% gunzip svt-2.0.tar.gz then % tar -xf svt-2.0.tar
- 2. Now create a directory where you want to build Vista, svt_build for example, at the same level as the compressed file
% mkdir svt_build
Move into new directory% cd svt_build
- SVT uses autoconf for building and installation. If you are familiar with Autoconf system you should have no trouble using it. ( view ./configure -help to find more options)
- Configure the source code in svt_build directory
% ../svt-2.0/configure
- if you have multiple processors:
add --enable-pthreads
- if you are compiling on 64 bit OS:
add --enable-64bit
- if your png libs are not in the default location:
add --enable-png=<path to lib and include directories>
- this will build Volserver which could set to be used on web portals:
add -with-volserver --enable-corba=<corba_dir>
- this will build vista:
% make
- if you have multiple processors:
- To check the build try to view the help page
% ./vista/vista -h
Note: If vista is not built correctly, yhe help page will not display.
- This step is optional and requires write permissions
This will install vista in the default installion directory(ie /usr/local/bin) or the path provided during configuration. This requires write privileges on /usr/local/bin or other directory, if specified.
To install vista type% make install

