FGCom (before 3.0): Difference between revisions

From FlightGear wiki
Jump to navigation Jump to search
Line 16: Line 16:


1.) fetch fgcom (a copy of a working iaxclient is inside)
1.) fetch fgcom (a copy of a working iaxclient is inside)
svn checkout svn://svn.dfn.de:/fgcom
 
'''svn checkout svn://svn.dfn.de:/fgcom'''


Optional: edit iaxclient/lib/Makefile
Optional: edit iaxclient/lib/Makefile
Line 44: Line 45:
2.) Compile iaxclient and fgcom. To do so, do the following:
2.) Compile iaxclient and fgcom. To do so, do the following:


cd fgcom/src && make
'''cd fgcom/src && make'''


3.) Install
3.) Install


make install
'''make install'''

Revision as of 14:55, 22 November 2007

FGCOM

FGCOM is an addon for Flightgear. With FGCOM (and the infrastructure behind) Flightgear gets a realtime voice communication system.


VERY IMPORTANT!!!

22. November 2007:

Due to heavy development at this time there may be some differences between the information on the web pages and the installation. Please follow the discussions on the FlightGear development list!


The Quick 3 Steps to get FGCOM running on a Linux system


1.) fetch fgcom (a copy of a working iaxclient is inside)

svn checkout svn://svn.dfn.de:/fgcom

Optional: edit iaxclient/lib/Makefile

To use oss emulation (recommended and the default for now)

USE_PA_OSS=1 USE_PA_ALSA=0 USE_PA_JACK=0 AUDIO_ALSA=0

To use native alsa (WARNING: PTT won't work)

USE_PA_OSS=0 USE_PA_ALSA=0 USE_PA_JACK=0 AUDIO_ALSA=1

To use portaudio alsa (WARNING: only if your card natively supports 8000Hz sample rate)

USE_PA_OSS=0 USE_PA_ALSA=1 USE_PA_JACK=0 AUDIO_ALSA=0

2.) Compile iaxclient and fgcom. To do so, do the following:

cd fgcom/src && make

3.) Install

make install