bc52fc7426
- Drop patch (already in version) and so autoreconf - Update hash of COPYING (explicitly mention that the rpmio/ sub dir is under LGPL:d5c69756cf
) - sqlite is an optional dependency since07129b641b
- rpm can be built without berkeleydb since4c7323f69b
It should be noted that berkeleydb is deprecated sincefc0169eb03
- Update indentation in hash file (two spaces) https://rpm.org/wiki/Releases/4.16.0.html Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
32 lines
812 B
Diff
32 lines
812 B
Diff
From 8d446d33a705cb37420e1fda18379d7439ee841f Mon Sep 17 00:00:00 2001
|
|
From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
|
Date: Sun, 25 Oct 2020 15:04:56 +0100
|
|
Subject: [PATCH 2/2] lib/rpmrc.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
|
|
|
|
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
|
[Upstream status:
|
|
https://github.com/rpm-software-management/rpm/pull/1413]
|
|
---
|
|
lib/rpmrc.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/lib/rpmrc.c b/lib/rpmrc.c
|
|
index 78c4a6d42..8bfe7a0ab 100644
|
|
--- a/lib/rpmrc.c
|
|
+++ b/lib/rpmrc.c
|
|
@@ -1,5 +1,6 @@
|
|
#include "system.h"
|
|
|
|
+#include <fcntl.h>
|
|
#include <stdarg.h>
|
|
#include <pthread.h>
|
|
|
|
--
|
|
2.28.0
|
|
|