XMPP: Difference between revisions

From Wildsong
Jump to navigationJump to search
Brian Wilson (talk | contribs)
mNo edit summary
Brian Wilson (talk | contribs)
mNo edit summary
Line 17: Line 17:


..because I am interested in libpurple for Windows (and pidgin runs on Windows)
..because I am interested in libpurple for Windows (and pidgin runs on Windows)
Downloaded and unpacked source from pidgin site.


=== On Linux ===
=== On Linux ===


Downloaded and unpacked source from pidgin site.
It is easy on Ubuntu 12.04, once you install the build dependencies.


  apt-get build-dep pidgin
  apt-get build-dep pidgin
  cd pidgin
  cd pidgin
  ./configure  
  ./configure  
  build
  make
sudo make install
 
=== On Windows ===
 
Here are the official instructions for [http://developer.pidgin.im/wiki/BuildingWinPidgin Building Pidgin on Windows]

Revision as of 05:44, 21 May 2012

XMPP is the Jabber protocol. It is also used for GoogleTalk

See here for official documentation or here for the Wikipedia page.

I am interested in it for use with FoxtrotGPS and IncidentView.

I want to pass specific bits of data along from a server to a laptop in the field.

For FoxtrotGPS I want to be able to show the locations of "friends". Aka "presence information" http://en.wikipedia.org/wiki/Presence_information

In IncidentView I want to be able to pass along the information from a 911 dispatch center to a rig.

Building pidgin

..because I am interested in libpurple for Windows (and pidgin runs on Windows)

Downloaded and unpacked source from pidgin site.

On Linux

It is easy on Ubuntu 12.04, once you install the build dependencies.

apt-get build-dep pidgin
cd pidgin
./configure 
make
sudo make install

On Windows

Here are the official instructions for Building Pidgin on Windows