git: edbb30ff9f21 - main - comms/flrig: Forgot to remove patch
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 14 Oct 2023 23:49:37 UTC
The branch main has been updated by db: URL: https://cgit.FreeBSD.org/ports/commit/?id=edbb30ff9f2145e3edfc666b0af69e6bfc3663e1 commit edbb30ff9f2145e3edfc666b0af69e6bfc3663e1 Author: Diane Bruce <db@FreeBSD.org> AuthorDate: 2023-10-14 23:48:19 +0000 Commit: Diane Bruce <db@FreeBSD.org> CommitDate: 2023-10-14 23:48:19 +0000 comms/flrig: Forgot to remove patch - patch-src_main.cxx is no longer necessary. --- comms/flrig/files/patch-src_main.cxx | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/comms/flrig/files/patch-src_main.cxx b/comms/flrig/files/patch-src_main.cxx deleted file mode 100644 index ec83afcbd14c..000000000000 --- a/comms/flrig/files/patch-src_main.cxx +++ /dev/null @@ -1,23 +0,0 @@ -- fix build on 14 with clang-16 because std::ostringstream::streampos -- doesn't exist there. -- using the C++ standard std::streampos instead. - ---- src/main.cxx.orig 2023-07-16 15:55:45 UTC -+++ src/main.cxx -@@ -21,6 +21,7 @@ - #include "config.h" - - #include <stdlib.h> -+#include <ios> - #include <iostream> - #include <fstream> - #include <sstream> -@@ -313,7 +314,7 @@ void rotate_log(std::string filename) - { - const int n = 5; // rename existing log files to keep up to 5 old versions - ostringstream oldfn, newfn; -- ostringstream::streampos p; -+ streampos p; - - oldfn << filename << '.'; - newfn << filename << '.';