blob: 5e2bc64af3993063b99d29ce3f3abb6f452b8d7b [file] [log] [blame]
From 11ec10cdb5ab4b94c5999e018a9c854419997761 Mon Sep 17 00:00:00 2001
From: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Date: Wed, 10 Apr 2019 03:18:17 +0200
Subject: [PATCH] Fix compilation with musl
Fixes:
../hash_intmd5.c:58: undefined reference to `MIN'
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
---
Upstream-Status: Pending
hash_intmd5.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/hash_intmd5.c b/hash_intmd5.c
index 49da1cf..47efe4c 100644
--- a/hash_intmd5.c
+++ b/hash_intmd5.c
@@ -33,6 +33,8 @@
#include "md5.c"
+#include <sys/param.h>
+
static MD5_CTX ctx;
int
--
2.17.1