From 5bc9f8eae01deffc0d8cc95dfae482b922bb773e Mon Sep 17 00:00:00 2001 From: Christian Schwarz Date: Mon, 2 Jan 2023 16:54:39 +0100 Subject: [PATCH] README: Fedora needs protobuf-devel Otherwise, common protobufs such as Google's empty.proto are missing, resulting in storage_broker build.rs failure. I encountered this on Fedora 36. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 30bde949a9..fa5c1626e4 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,8 @@ libssl-dev clang pkg-config libpq-dev cmake postgresql-client protobuf-compiler * On Fedora, these packages are needed: ```bash dnf install flex bison readline-devel zlib-devel openssl-devel \ - libseccomp-devel perl clang cmake postgresql postgresql-contrib protobuf-compiler + libseccomp-devel perl clang cmake postgresql postgresql-contrib protobuf-compiler \ + protobuf-devel ``` 2. [Install Rust](https://www.rust-lang.org/tools/install)