The branch, master has been updated
via ad8ab69 cmake: Remove unneeded policy with cmake 3.10
via df1718b tests: Add missing stdint.h
from 0b33070 Bump version to 1.5.1
https://git.samba.org/?p=socket_wrapper.git;a=shortlog;h=master
- Log -----------------------------------------------------------------
commit ad8ab693d44a041232505de122c656290ce97b39
Author: Andreas Schneider <[email protected]>
Date: Thu Jul 24 11:06:35 2025 +0200
cmake: Remove unneeded policy with cmake 3.10
Signed-off-by: Andreas Schneider <[email protected]>
Reviewed-by: Pavel Filipenský <[email protected]>
commit df1718b0b155cee9ad58f8699f3335f879d710f2
Author: Andreas Schneider <[email protected]>
Date: Thu Jul 17 15:18:13 2025 +0200
tests: Add missing stdint.h
This is required by cmocka.
Signed-off-by: Andreas Schneider <[email protected]>
Reviewed-by: Pavel Filipenský <[email protected]>
-----------------------------------------------------------------------
Summary of changes:
CMakeLists.txt | 1 -
tests/test_ioctl.c | 1 +
tests/test_sendmsg_recvmsg_fd.c | 1 +
3 files changed, 2 insertions(+), 1 deletion(-)
Changeset truncated at 500 lines:
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1fdb660..cc3b88f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,6 +1,5 @@
# Required cmake version
cmake_minimum_required(VERSION 3.10.0)
-cmake_policy(SET CMP0048 NEW)
# Specify search path for CMake modules to be loaded by include()
# and find_package()
diff --git a/tests/test_ioctl.c b/tests/test_ioctl.c
index 25bec38..addcb36 100644
--- a/tests/test_ioctl.c
+++ b/tests/test_ioctl.c
@@ -1,5 +1,6 @@
#include <stdarg.h>
#include <stddef.h>
+#include <stdint.h>
#include <setjmp.h>
#include <cmocka.h>
diff --git a/tests/test_sendmsg_recvmsg_fd.c b/tests/test_sendmsg_recvmsg_fd.c
index 30c9861..1f8154d 100644
--- a/tests/test_sendmsg_recvmsg_fd.c
+++ b/tests/test_sendmsg_recvmsg_fd.c
@@ -1,5 +1,6 @@
#include <stdarg.h>
#include <stddef.h>
+#include <stdint.h>
#include <setjmp.h>
#include <cmocka.h>
--
Socket Wrapper Repository