config.h.in
author Myhailo Danylenko <isbear@ukrpost.net>
Tue, 26 Jan 2010 13:03:50 +0200
changeset 19 dca6d8e9d8c1
parent 14 9a4d0f04c7d3
child 20 df9cedcdb3b2
permissions -rw-r--r--
Fix non-split hook argument parsing


#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