ofono with local patches/modifications
Go to file
Marcel Holtmann feb36e2d5b Fix stupid false positive warnings about uninitialized variables
The GCC check for uninitialized variables is so useful that dealing
with the false positives is just a minor inconvenience.

The following GCC trick helps to silence them:

	#define uninitialized_var(x) x = x

This way no code obfuscation is needed to compile smoothly and the
code stays readable. And the author has to actually think about it.
2009-07-14 06:06:46 +02:00
doc Add first draft of an overview document 2009-07-10 11:24:39 -07:00
drivers Fix unused variable warning 2009-07-13 22:33:48 -05:00
gatchat Fix case where CMGS returns an error before pdu 2009-07-07 14:34:00 -05:00
gdbus Make the parent path invalidateable 2009-05-11 11:50:45 -07:00
gisi gisi: malloc -> free 2009-07-07 13:25:15 +03:00
include Add call-history driver type 2009-06-17 18:20:20 -05:00
plugins Add call-history driver type 2009-06-17 18:20:20 -05:00
src Fix stupid false positive warnings about uninitialized variables 2009-07-14 06:06:46 +02:00
test Fix minor API issue 2009-06-22 13:22:13 -05:00
unit Fix signedness warning 2009-07-13 22:33:47 -05:00
.gitignore Fix problem with unit tests and distcheck 2009-05-12 20:35:25 -07:00
AUTHORS Mention Yang's contribution 2009-06-18 15:29:05 -05:00
COPYING Initial revision 2009-04-26 20:31:15 +02:00
ChangeLog Release 0.1 2009-07-10 11:36:02 -07:00
HACKING Add development/hacking documentation 2009-05-12 00:32:52 -07:00
INSTALL Initial revision 2009-04-26 20:31:15 +02:00
Makefile.am Rename ISI client and PhoNet netlink APIs 2009-06-15 11:27:16 +03:00
NEWS Initial revision 2009-04-26 20:31:15 +02:00
README Update project description 2009-05-05 21:21:26 -07:00
acinclude.m4 Initial revision 2009-04-26 20:31:15 +02:00
bootstrap Initial revision 2009-04-26 20:31:15 +02:00
bootstrap-configure Fix bootstrap-configure when building from subdir 2009-06-29 20:59:01 +03:00
configure.ac Release 0.1 2009-07-10 11:36:02 -07:00

README

oFono - Open Source Telephony
*****************************

Copyright (C) 2008-2009  Intel Corporation. All rights reserved.


Compilation and installation
============================

In order to compile telephony stack you need following software packages:
	- GCC compiler
	- GLib library
	- D-Bus library

To configure run:
	./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var

Configure automatically searches for all required components and packages.

To compile and install run:
	make && make install