Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tor Browser
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
Applications
Tor Browser
Commits
685351aa
Verified
Commit
685351aa
authored
Mar 10, 2023
by
Marco Simonelli
Committed by
Pier Angelo Vendrame
May 8, 2023
Browse files
Options
Downloads
Patches
Plain Diff
Bug 41459: WebRTC fails to build under mingw (Part 3)
- fixes required to build third_party/sipcc
parent
acd25f00
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!636
Bug 41757: Rebased Tor Browser alpha to 102.11.0esr
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
third_party/sipcc/cpr_win_types.h
+10
-3
10 additions, 3 deletions
third_party/sipcc/cpr_win_types.h
third_party/sipcc/sdp_token.c
+4
-0
4 additions, 0 deletions
third_party/sipcc/sdp_token.c
with
14 additions
and
3 deletions
third_party/sipcc/cpr_win_types.h
+
10
−
3
View file @
685351aa
...
...
@@ -40,15 +40,22 @@ typedef uint8_t boolean;
* NOTE: size_t should already be declared by both the MinGW and Microsoft
* SDKs.
*/
#ifndef _SSIZE_T_
#if defined(_MSC_VER) && !defined(_SSIZE_T_)
#define _SSIZE_T_
typedef
int
ssize_t
;
#if !defined(_WIN64)
typedef
int32_t
ssize_t
;
#else
typedef
int64_t
ssize_t
;
#endif
#endif
/*
* Define pid_t
.
* Define pid_t
for MSVC builds
*/
#if defined(_WIN32) && defined (_MSC_VER)
typedef
int
pid_t
;
#endif
/*
* Define min/max
...
...
This diff is collapsed.
Click to expand it.
third_party/sipcc/sdp_token.c
+
4
−
0
View file @
685351aa
...
...
@@ -4,6 +4,10 @@
#include
<errno.h>
#if defined(SIP_OS_WINDOWS) && !defined(_MSC_VER)
#include
<minmax.h>
#endif
#include
"sdp_os_defs.h"
#include
"sipcc_sdp.h"
#include
"sdp_private.h"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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