Commit 43f97a44 authored by Sylvain Berfini's avatar Sylvain Berfini :cow:
Browse files

Fix compilation issue for Android & IOS

parent 2ed9ed7c
No related merge requests found
Showing with 7 additions and 1 deletion
......@@ -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;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment