From ac0f8a75814721e3a7d503521c1b56828f8fa1a7 Mon Sep 17 00:00:00 2001 From: Leo Date: Wed, 30 Sep 2020 08:36:03 -0300 Subject: lib/rpmdb.c: include fcntl.h for O_* Fixes compilation on musl, otherwise it fails with undefined references to various O_* symbols as mentioned here: https://www.man7.org/linux/man-pages/man0/fcntl.h.0p.html (cherry picked from commit 9395bdc64459357631111842e7a28304b4d76301) --- lib/rpmdb.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/rpmdb.c b/lib/rpmdb.c index 4c101569f..73187630b 100644 --- a/lib/rpmdb.c +++ b/lib/rpmdb.c @@ -8,6 +8,7 @@ #include #include #include +#include #ifndef DYING /* XXX already in "system.h" */ #include -- cgit v1.2.1