config.h.in
author Myhailo Danylenko <isbear@ukrpost.net>
Wed, 20 Jan 2010 21:43:21 +0200
changeset 12 bc6d4169afdb
parent 11 fafc922963f5
permissions -rw-r--r--
Fix documentation installation path


#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