ports/security/zeek/files/patch-src_input_readers_raw_Raw.h
Craig Leres c356da8591 security/zeek: Update to 5.0.0 (latest LTS release)
https://github.com/zeek/zeek/releases/tag/v5.0.0

Changes incompatiable with 4.0.7:

 - The script-land ``union`` and ``timer`` types have been removed.
   They haven't had any actual semantics backing them for some time
   and shouldn't have functioned in any useable way. We opted to
   skip the deprecation cycle for these types for that reason.

 - Broker now uses a new network backend with a custom network
   protocol that is incompatible with the pre-5.0 backend. In
   practice, this means Zeek 4.x will not be able to exchange events
   with Zeek 5.x. Going forward, this new backend will allow us to
   keep the Broker protocol more stable and add new capabilities
   in a backwards compatible way.

While we're here add a comment explaining why we really need uname
-p instead of using ARCH (uname -m). Also solve a portlint nag.

Reported by:	Tim Wojtulewicz
2022-07-08 19:44:49 -07:00

10 lines
280 B
C++

--- src/input/readers/raw/Raw.h.orig 2022-07-05 21:28:35 UTC
+++ src/input/readers/raw/Raw.h
@@ -55,6 +55,7 @@ class Raw : public ReaderBackend (private)
bool firstrun;
time_t mtime;
ino_t ino;
+ dev_t dev;
// options set from the script-level.
std::string separator;