config.h.in
changeset 13 88315b883803
parent 12 bc6d4169afdb
child 14 706e77af2947
equal deleted inserted replaced
12:bc6d4169afdb 13:88315b883803
     1 
       
     2 #ifndef LOCAL_CONFIG_H
       
     3 #define LOCAL_CONFIG_H
       
     4 
       
     5 #cmakedefine HAVE_XMPP_IS_ONLINE
       
     6 
       
     7 #ifndef HAVE_XMPP_IS_ONLINE
       
     8 inline gboolean xmpp_is_online (void)
       
     9 {
       
    10 	if (lconnection && lm_connection_is_authenticated(lconnection))
       
    11 		return TRUE;
       
    12 	else
       
    13 		return FALSE;
       
    14 }
       
    15 #endif
       
    16 
       
    17 #endif
       
    18