Browse Source
Reviewed by: bofh, brnrd, jbeich, nobutaka Approved by: portmgr (implicit) Differential Revision: https://reviews.freebsd.org/D48247overlay

12 changed files with 8 additions and 57 deletions
@ -1,19 +0,0 @@ |
|||
Drop after FreeBSD 13.3 EOL around 2025-07-01 |
|||
|
|||
../src/debug/Log.cpp:13:26: error: no member named 'native_handle' in 'std::ofstream' |
|||
13 | auto handle = logOfs.native_handle(); |
|||
| ~~~~~~ ^ |
|||
|
|||
--- src/debug/Log.cpp.orig 2024-08-18 21:21:59 UTC |
|||
+++ src/debug/Log.cpp |
|||
@@ -10,8 +10,10 @@ void Debug::init(const std::string& IS) { |
|||
void Debug::init(const std::string& IS) { |
|||
logFile = IS + (ISDEBUG ? "/hyprlandd.log" : "/hyprland.log"); |
|||
logOfs.open(logFile, std::ios::out | std::ios::app); |
|||
+#if !defined(_LIBCPP_VERSION) || _LIBCPP_VERSION >= 180100 |
|||
auto handle = logOfs.native_handle(); |
|||
fcntl(handle, F_SETFD, FD_CLOEXEC); |
|||
+#endif |
|||
} |
|||
|
|||
void Debug::close() { |
@ -1,7 +1,5 @@ |
|||
TIMESTAMP = 1730730436 |
|||
SHA256 (Alexays-Waybar-0.11.0_GH0.tar.gz) = 6a0e9f0f7f2eff503951958cbb16dc39041c0b67e86c35154e8507677c61be9d |
|||
SIZE (Alexays-Waybar-0.11.0_GH0.tar.gz) = 317607 |
|||
SHA256 (llvm-llvm-project-llvmorg-16.0.1_GH0.tar.gz) = b5a9ff1793b1e2d388a3819bf35797002b1d2e40bb35a10c65605e0ea1435271 |
|||
SIZE (llvm-llvm-project-llvmorg-16.0.1_GH0.tar.gz) = 179289803 |
|||
SHA256 (0d02f6877d88551ea2be0cd151c1e6354e208b1c.patch) = 7ca2c4be684ad2d51f5c278400d37f7179c4f242d84268de1b74d443568a83d5 |
|||
SIZE (0d02f6877d88551ea2be0cd151c1e6354e208b1c.patch) = 5550 |
|||
|
Loading…
Reference in new issue