On Thu, Oct 6, 2022 at 5:12 PM Albert Esteve <aesteve@redhat.com> wrote:
Add uuid to the listed prerequisites to
avoid the build error due to a missing include:

fatal error: uuid/uuid.h: No such file or directory
 #include <uuid/uuid.h>

Signed-off-by: Albert Esteve <aesteve@redhat.com>
---
 README.dev | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.dev b/README.dev
index 7f3df2c..aafbf34 100644
--- a/README.dev
+++ b/README.dev
@@ -3,11 +3,11 @@ Prerequisites

 For Fedora/CentOS install the following packages:

-   $ sudo yum install -y gcc make libaio-devel libblkid-devel
+   $ sudo yum install -y gcc make libaio-devel libblkid-devel libuuid libuuid-devel

Only libuuid-devel is needed:

$ dnf repoquery --requires libuuid-devel
...
/usr/bin/pkg-config
libuuid(x86-32) = 2.38-0.2.fc36
libuuid(x86-32) = 2.38-1.fc36
libuuid(x86-64) = 2.38-0.2.fc36
libuuid(x86-64) = 2.38-1.fc36
libuuid.so.1
libuuid.so.1()(64bit)
pkgconfig
 

 For Ubuntu/Debian install the following packages:

-   $ sudo apt install -y gcc make libaio-dev libblkid-dev
+   $ sudo apt install -y gcc make libaio-dev libblkid-dev uuid-dev

As you did here