diff options
author | Eugene Grosbein <eugen@FreeBSD.org> | 2025-07-02 15:13:41 +0700 |
---|---|---|
committer | Eugene Grosbein <eugen@FreeBSD.org> | 2025-07-02 15:40:25 +0700 |
commit | 47f39553742ab470850e8b16c8c0de2f3a4030e2 (patch) | |
tree | 81239b619e9447ea542382adcd0ded19da02898e /databases/xtrabackup80/files/patch-sql_stream__cipher.h | |
parent | x11-drivers/xorgxrdp: rebuild against xrdp 0.10.4 (diff) |
databases/xtrabackup80: fix build with llvm-19
PORTREVISION not bumped as this fixes build.
PR: 287958
Reported by: Eugene M. Zheganin (maintainer)
Tested by: Eugene M. Zheganin (maintainer)
Diffstat (limited to 'databases/xtrabackup80/files/patch-sql_stream__cipher.h')
-rw-r--r-- | databases/xtrabackup80/files/patch-sql_stream__cipher.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/databases/xtrabackup80/files/patch-sql_stream__cipher.h b/databases/xtrabackup80/files/patch-sql_stream__cipher.h new file mode 100644 index 000000000000..dfef2c2b2246 --- /dev/null +++ b/databases/xtrabackup80/files/patch-sql_stream__cipher.h @@ -0,0 +1,20 @@ +--- sql/stream_cipher.h.orig 2023-11-24 10:33:10 UTC ++++ sql/stream_cipher.h +@@ -25,7 +25,7 @@ + + #include <openssl/evp.h> + #include <memory> +-#include <string> ++#include <vector> + + /** + @file stream_cipher.h +@@ -34,7 +34,7 @@ + binary log files. + */ + +-typedef std::basic_string<unsigned char> Key_string; ++typedef std::vector<unsigned char> Key_string; + + /** + @class Stream_cipher |