Fix compilation issue for Android & IOS

This commit is contained in:
Sylvain Berfini 2012-02-02 12:27:14 +01:00
parent 2ed9ed7ce3
commit 43f97a44b5

View file

@ -24,13 +24,19 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "linphonecore.h"
extern SipSetup linphone_sip_login;
#if defined(ANDROID) || defined(IOS)
static SipSetup *all_sip_setups[]={
&linphone_sip_login,
NULL
};
#else
extern SipSetup linphone_sip_wizard;
static SipSetup *all_sip_setups[]={
&linphone_sip_login,
&linphone_sip_wizard,
NULL
};
#endif
static MSList *registered_sip_setups=NULL;