summaryrefslogtreecommitdiff
path: root/sys-fs/duperemove/files/duperemove-0.13-musl.patch
blob: 2fbf6782579fc833939462b11b37c67a9e9432d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
https://bugs.gentoo.org/916078
https://github.com/markfasheh/duperemove/issues/310
https://github.com/markfasheh/duperemove/commit/b275a365545a45f317280153a43bf02a55f89de6

From b275a365545a45f317280153a43bf02a55f89de6 Mon Sep 17 00:00:00 2001
From: psykose <alice@ayaya.dev>
Date: Thu, 12 Oct 2023 08:37:47 +0000
Subject: [PATCH] dbfile: include <sys/types.h> for dev_t

fixes build on musl

closes #310
--- a/dbfile.h
+++ b/dbfile.h
@@ -5,6 +5,7 @@
 #include <stdint.h>
 #include <sqlite3.h>
 #include <stdbool.h>
+#include <sys/types.h>
 #include "util.h"
 
 struct filerec;