config.h.in
author Myhailo Danylenko <isbear@ukrpost.net>
Wed, 20 Jan 2010 19:47:58 +0200
changeset 11 fafc922963f5
permissions -rw-r--r--
Use xmpp_is_online if available


#ifndef LOCAL_CONFIG_H
#define LOCAL_CONFIG_H

#cmakedefine HAVE_XMPP_IS_ONLINE

#ifndef HAVE_XMPP_IS_ONLINE
inline gboolean xmpp_is_online (void)
{
	if (lconnection && lm_connection_is_authenticated(lconnection))
		return TRUE;
	else
		return FALSE;
}
#endif

#endif