Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
liblinphone
Commits
43f97a44
Commit
43f97a44
authored
13 years ago
by
Sylvain Berfini
Browse files
Options
Download
Patches
Plain Diff
Fix compilation issue for Android & IOS
parent
2ed9ed7c
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
coreapi/sipsetup.c
+7
-1
coreapi/sipsetup.c
with
7 additions
and
1 deletion
coreapi/sipsetup.c
+
7
−
1
View file @
43f97a44
...
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets