
README

OpenFetion a IM client based on GTK+2.0, using 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 .

WEB SITE

Visit the openfetion web site for the latest news and downloads:

http://basiccoder.com/openfetion

INSTALLATION

It requires these library : openssl , libxml2 , gtk+2.0

If there are no such libraries in your system You can install these library like this:

sudo apt-get install libgtk2-dev

sudo apt-get install libssl-dev

sudo apt-get install libxml2-dev

sudo apt-get install pkg-config

Then you can start installing openfetion like this:

autoreconf -fiv
./configure --prefix=/usr
or your can enable debug mode to trace the runing information with --enable-debug

make

sudo make install




If you prefer using cmake, then:

sudo apt-get install cmake

Then you can start installing openfetion like this:

mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=release ..

You may need to set -DCMAKE_BUILD_TYPE=debug to build in debug mode.
The following build switches you may need to adjust (default is TRUE)
-DWITH_LIBNOTIFY=TRUE
-DWITH_GSTREAMER=TRUE
-DWITH_LIBXSS=TRUE
-DWITH_NETWORKMANAGER=TRUE

make

sudo make install
