Closed
Bug 782408
Opened 12 years ago
Closed 12 years ago
Make nrappkit compile use NSPR integral types
Categories
(Core :: WebRTC: Networking, defect)
Core
WebRTC: Networking
Tracking
()
RESOLVED
FIXED
mozilla18
People
(Reporter: ekr, Assigned: ekr)
Details
(Whiteboard: [WebRTC], [blocking-webrtc-] [qa-])
Attachments
(1 file, 1 obsolete file)
8.66 KB,
patch
|
jesup
:
review+
|
Details | Diff | Splinter Review |
Currently this defaults to some obvious integral types. This involves just modifying r_types.h and everyhting else should fall into line.
Assignee | ||
Updated•12 years ago
|
Assignee: nobody → ekr
Updated•12 years ago
|
Whiteboard: [WebRTC], [blocking-webrtc-]
Assignee | ||
Comment 1•12 years ago
|
||
Assignee | ||
Comment 2•12 years ago
|
||
Comment on attachment 668922 [details] [diff] [review]
Update nrappkit to use stddint types;
Review of attachment 668922 [details] [diff] [review]:
-----------------------------------------------------------------
https://tbpl.mozilla.org/?tree=Try&rev=f0aacdfbf824
Attachment #668922 -
Flags: review?(rjesup)
Comment 3•12 years ago
|
||
Comment on attachment 668922 [details] [diff] [review]
Update nrappkit to use stddint types;
Review of attachment 668922 [details] [diff] [review]:
-----------------------------------------------------------------
::: media/mtransport/objs.mk
@@ +49,5 @@
>
> +DEFINES += \
> + -DR_DEFINED_INT2=int16_t -DR_DEFINED_UINT2=uint16_t \
> + -DR_DEFINED_INT4=int32_t -DR_DEFINED_UINT4=uint32_t \
> + -DR_DEFINED_INT8=int64_t -DR_DEFINED_UINT8=uint64_t
Missing \ at the end
::: media/mtransport/third_party/nrappkit/src/util/libekr/r_types.h
@@ +83,5 @@
>
> #ifndef _r_types_h
> #define _r_types_h
>
> +#include <stdint.h>
Can't assume it exists. surround with #ifdef HAVE_STDINT_H, or see other examples in the tree like media/webrtc/signaling/src/sipcc/cpr/win32/cpr_win_types.h
Attachment #668922 -
Flags: review?(rjesup) → review-
Assignee | ||
Comment 4•12 years ago
|
||
Assignee | ||
Updated•12 years ago
|
Attachment #668922 -
Attachment is obsolete: true
Assignee | ||
Updated•12 years ago
|
Attachment #668927 -
Flags: review?(rjesup)
Assignee | ||
Comment 5•12 years ago
|
||
Updated•12 years ago
|
Attachment #668927 -
Flags: review?(rjesup) → review+
Assignee | ||
Updated•12 years ago
|
Attachment #668927 -
Flags: checkin?(rjesup)
Comment 6•12 years ago
|
||
Comment 7•12 years ago
|
||
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla18
Updated•12 years ago
|
Whiteboard: [WebRTC], [blocking-webrtc-] → [WebRTC], [blocking-webrtc-] [qa-]
Updated•12 years ago
|
Attachment #668927 -
Flags: checkin?(rjesup)
You need to log in
before you can comment on or make changes to this bug.
Description
•