FGCom (before 3.0): Difference between revisions

From FlightGear wiki
Jump to navigation Jump to search
Line 12: Line 12:
----
----


'''The Quick 3 Steps to get FGCOM running on a Linux system'''
'''The Quick 3 Steps to get FGCOM running on a 32 -bit Linux system'''
 


support for 64-bit machines will follow


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

Revision as of 16:09, 22 November 2007

FGCOM

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

The original documentation is at [1]


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 32 -bit Linux system

support for 64-bit machines will follow

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