FreeBSD Bugzilla – Attachment 213897 Details for
Bug 246014
net/pjsip: fix build on !x86 !arm
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
patch
pjsip.patch (text/plain), 1.38 KB, created by
Piotr Kubaj
on 2020-04-28 23:03:25 UTC
(
hide
)
Description:
patch
Filename:
MIME Type:
Creator:
Piotr Kubaj
Created:
2020-04-28 23:03:25 UTC
Size:
1.38 KB
patch
obsolete
>Index: files/patch-third__party_webrtc_src_webrtc_typedefs.h >=================================================================== >--- files/patch-third__party_webrtc_src_webrtc_typedefs.h (nonexistent) >+++ files/patch-third__party_webrtc_src_webrtc_typedefs.h (working copy) >@@ -0,0 +1,23 @@ >+--- third_party/webrtc/src/webrtc/typedefs.h.orig 2017-01-07 23:05:15 UTC >++++ third_party/webrtc/src/webrtc/typedefs.h >+@@ -48,7 +48,19 @@ >+ #define WEBRTC_ARCH_32_BITS >+ #define WEBRTC_ARCH_LITTLE_ENDIAN >+ #else >+-#error Please add support for your architecture in typedefs.h >++/* instead of failing, use typical unix defines... */ >++#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ >++#define WEBRTC_ARCH_LITTLE_ENDIAN >++#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ >++#define WEBRTC_ARCH_BIG_ENDIAN >++#else >++#error __BYTE_ORDER__ is not defined >++#endif >++#if defined(__LP64__) >++#define WEBRTC_ARCH_64_BITS >++#else >++#define WEBRTC_ARCH_32_BITS >++#endif >+ #endif >+ >+ #if !(defined(WEBRTC_ARCH_LITTLE_ENDIAN) ^ defined(WEBRTC_ARCH_BIG_ENDIAN)) > >Property changes on: files/patch-third__party_webrtc_src_webrtc_typedefs.h >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 246014
: 213897
Working