1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
README
libofetion is an open source library which implements
CHINA MOBILE's Fetion Protocol Version 4.
CONTACT
If you have problems, questions, ideas or suggestions, please contact me
by email to
levin108@gmail.com ,
or join the discussion in our mailling list:
ofetion@googlegroups.com
WEB SITE
Visit ofetion code site:
http://ofetion.googlecode.com
for the latest news and downloads,
also you can find useful information via the author's blog:
http://basiccoder.com/openfetion/
INSTALLATION
You need the following things pre-installed on your system:
a) pkg-config, the package config system;
b) cmake, the make system; and
c) required libraries: openssl, libxml2, sqlite3
In Ubuntu system, if you want to install them, you can execute the
following command:
sudo apt-get install pkg-config cmake libssl-dev libxml2-dev libsqlite3-dev
Then you can start to build from /path/to/your/libofetion, execute:
$ mkdir build
$ cd build/
$ cmake \
-DCMAKE_INSTALL_PREFIX=/path/to/dest \
-DCMAKE_BUILD_TYPE=release \
..
$ make
$ sudo make install
UNINSTALL
=========
To uninstall, run
# xargs rm < install_manifest.txt
|