| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
The patch was applied to detect mempcpy(3) in /usr/include/string.h. It
is no longer necessary after ports snapshot d124846683 and did not
detect the function after src snapshot 0c47b9c211.
Approved by: mikael (maintainer)
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D46058
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
After src snapshot 0c47b9c211e, the build began failing with:
../../third_party/nasm/include/compiler.h:249:21: error: static
declaration of 'mempcpy' follows non-static declaration
249 | static inline void *mempcpy(void *dst, const void *src, size_t n)
| ^
/usr/include/string.h:71:8: note: previous declaration is here
71 | void *(mempcpy)(void * __restrict,
const void * __restrict, size_t);
Fix the build by restoring a default definition of HAVE_MEMPCPY since
we have had mempcpy() since 13.1.
Approved by: kevans, mikael (maintainer)
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D46053
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
Add missing CPU feature detection logic to bundled opus.
Approved by: portmgr (build fix blanket)
MFH: 2023Q4
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
Do not abort if documentation is missing as we don't need it.
error: missing documentation for an extern crate
--> curve25519-dalek-4f0aa6653c51598daa0a2f53b8ba54ce0eedfbdd/src/lib.rs:265:1
|
265 | pub extern crate digest;
| ^^^^^^^^^^^^^^^^^^^^^^^
PR: 272449
|
|
|
|
| |
Add missing patches.
|
|
|
|
|
| |
Changes:
https://github.com/signalapp/ringrtc/releases/tag/v2.27.0
|
|
|
|
|
| |
Changes:
https://github.com/signalapp/ringrtc/releases/tag/v2.25.1
|
|
|
|
|
|
| |
Changes:
https://github.com/signalapp/ringrtc/releases/tag/v2.23.1
https://github.com/signalapp/ringrtc/releases/tag/v2.24.0
|
|
|
|
|
| |
Changes:
https://github.com/signalapp/ringrtc/releases/tag/v2.23.0
|
|
|
|
|
|
|
|
|
|
|
| |
Changes:
https://github.com/signalapp/ringrtc/releases/tag/v2.21.0
https://github.com/signalapp/ringrtc/releases/tag/v2.21.1
https://github.com/signalapp/ringrtc/releases/tag/v2.21.2
https://github.com/signalapp/ringrtc/releases/tag/v2.21.3
https://github.com/signalapp/ringrtc/releases/tag/v2.21.4
https://github.com/signalapp/ringrtc/releases/tag/v2.21.5
https://github.com/signalapp/ringrtc/releases/tag/v2.22.0
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
In file included from ../../third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc:27:
/usr/include/sys/sysctl.h:1185:25: error: unknown type name 'u_int'
int sysctl(const int *, u_int, void *, size_t *, const void *, size_t);
^
../../third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc:89:10: error: unknown type name 'once_flag'
static once_flag init_timebase_frequency_once;
^
../../third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc:91:18: error: no member named 'LowLevelCallOnce' in namespace 'absl::base_internal'
base_internal::LowLevelCallOnce(&init_timebase_frequency_once, [&]() {
~~~~~~~~~~~~~~~^
|
|
RingRTC is a middleware library providing Signal Messenger applications
with video and voice calling services built on top of WebRTC.
WWW: https://github.com/signalapp/ringrtc
|