buildroot/package/lrzip/0001-missing-stdarg.patch
Sam Lancia d234c2d6cf package/lrzip: new package
lrzip is a compression utility that excels at compressing
large files (usually > 10-50 MB)

Signed-off-by: Sam Lancia <sam@gpsm.co.uk>
[Thomas: license is GPL-2.0+, not GPL-2.0]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2019-09-15 22:30:29 +02:00

27 lines
553 B
Diff

From 5ae1754025315d85fac11cb4eb2474789ee6475e Mon Sep 17 00:00:00 2001
From: Sam Lancia <sam@gpsm.co.uk>
Date: Sat, 7 Sep 2019 20:54:29 +0100
Subject: [PATCH] Lrzip.h: add missing header for va_list on some platforms
Signed-off-by: Sam Lancia <sam@gpsm.co.uk>
---
Lrzip.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/Lrzip.h b/Lrzip.h
index 29bc2a9..8934c59 100644
--- a/Lrzip.h
+++ b/Lrzip.h
@@ -20,6 +20,7 @@
#ifndef LIBLRZIP_H
#define LIBLRZIP_H
+#include <stdarg.h>
#include <stdbool.h>
#include <stdio.h>
#ifdef _WIN32
--
2.17.1