d33ad03e75
Rebased patch 0002 due to upstream commit:d62917d3d7
Removed patch 0004-dcesrv_core-fix-build.patch, applied upstream:4d5fb7d279
Added patch to fix build error and added new answer to samba4-cache.txt. Release notes: https://www.samba.org/samba/history/samba-4.15.0.html https://www.samba.org/samba/history/samba-4.15.1.html https://www.samba.org/samba/history/samba-4.15.2.html https://www.samba.org/samba/history/samba-4.15.3.html Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
38 lines
1.1 KiB
Diff
38 lines
1.1 KiB
Diff
From d1732a79dbf30c41802245909d0250ebe2b9d92e Mon Sep 17 00:00:00 2001
|
||
From: Bernd Kuhls <bernd.kuhls@t-online.de>
|
||
Date: Sun, 12 Dec 2021 10:27:42 +0100
|
||
Subject: [PATCH] lib/util: Add signal.h include
|
||
MIME-Version: 1.0
|
||
Content-Type: text/plain; charset=UTF-8
|
||
Content-Transfer-Encoding: 8bit
|
||
|
||
Fixes build error with samba-4.15.3 and uClibc:
|
||
|
||
../../source3/printing/samba-bgqd.c: In function ‘main’:
|
||
../../source3/printing/samba-bgqd.c:340:21: error: ‘SIGPIPE’ undeclared (first use in this function); did you mean ‘EPIPE’?
|
||
../../source3/printing/samba-bgqd.c:384:14: error: ‘SIGTERM’ undeclared (first use in this function)
|
||
|
||
Patch sent upstream:
|
||
https://gitlab.com/samba-team/samba/-/merge_requests/2296
|
||
|
||
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
|
||
---
|
||
lib/util/signal.h | 1 +
|
||
1 file changed, 1 insertion(+)
|
||
|
||
diff --git a/lib/util/signal.h b/lib/util/signal.h
|
||
index 0663af6ab94..f662ee110d6 100644
|
||
--- a/lib/util/signal.h
|
||
+++ b/lib/util/signal.h
|
||
@@ -21,6 +21,7 @@
|
||
#ifndef _SAMBA_UTIL_SIGNAL_H_
|
||
#define _SAMBA_UTIL_SIGNAL_H_
|
||
|
||
+#include <signal.h>
|
||
#include <stdbool.h>
|
||
|
||
/**
|
||
--
|
||
2.30.2
|
||
|