mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-07 05:53:06 +00:00
Fix compilation issue for Android & IOS
This commit is contained in:
parent
2ed9ed7ce3
commit
43f97a44b5
1 changed files with 7 additions and 1 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue