config.h.in
author Myhailo Danylenko <isbear@ukrpost.net>
Wed, 20 Jan 2010 20:32:11 +0200
changeset 15 06f8bb3de689
parent 14 9a4d0f04c7d3
child 20 df9cedcdb3b2
permissions -rw-r--r--
Publish delayed data in non-split hooks case too


#ifndef LOCAL_CONFIG_H
#define LOCAL_CONFIG_H

#cmakedefine HAVE_LM_CONNECTION_UNREGISTER_REPLY_HANDLER

#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