The branch, master has been updated via 9415ad5 cmake: Bump required version to 3.10 via e660ca8 tests: Add missing include for stdint.h from 2270a7c Bump version to 1.1.16
https://git.samba.org/?p=nss_wrapper.git;a=shortlog;h=master - Log ----------------------------------------------------------------- commit 9415ad517c9785716225b7e2eea404548d5cbb9b Author: Andreas Schneider <a...@samba.org> Date: Thu Jul 24 11:54:00 2025 +0200 cmake: Bump required version to 3.10 Reviewed-by: Pavel Filipenský <pfilipen...@samba.org> commit e660ca85fbd23fa40272942e014bb90356175149 Author: Andreas Schneider <a...@samba.org> Date: Thu Jul 17 15:17:52 2025 +0200 tests: Add missing include for stdint.h Signed-off-by: Andreas Schneider <a...@samba.org> Reviewed-by: Pavel Filipenský <pfilipen...@samba.org> ----------------------------------------------------------------------- Summary of changes: CMakeLists.txt | 3 +-- tests/test_getaddrinfo.c | 1 + tests/test_gethostby_name_addr.c | 1 + tests/test_gethostent.c | 3 ++- tests/test_getpwuid_module.c | 1 + tests/test_initgroups.c | 1 + tests/test_nwrap_disabled.c | 1 + tests/testsuite.c | 1 + 8 files changed, 9 insertions(+), 3 deletions(-) Changeset truncated at 500 lines: diff --git a/CMakeLists.txt b/CMakeLists.txt index 348c491..3dc5881 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,5 @@ # Required cmake version -cmake_minimum_required(VERSION 3.5.0) -cmake_policy(SET CMP0048 NEW) +cmake_minimum_required(VERSION 3.10.0) # Specify search path for CMake modules to be loaded by include() # and find_package() diff --git a/tests/test_getaddrinfo.c b/tests/test_getaddrinfo.c index 6de0323..63dc21f 100644 --- a/tests/test_getaddrinfo.c +++ b/tests/test_getaddrinfo.c @@ -2,6 +2,7 @@ #include <stdarg.h> #include <stddef.h> +#include <stdint.h> #include <setjmp.h> #include <cmocka.h> diff --git a/tests/test_gethostby_name_addr.c b/tests/test_gethostby_name_addr.c index e8939f6..9aae9ae 100644 --- a/tests/test_gethostby_name_addr.c +++ b/tests/test_gethostby_name_addr.c @@ -4,6 +4,7 @@ #include <stdarg.h> #include <stddef.h> +#include <stdint.h> #include <setjmp.h> #include <cmocka.h> diff --git a/tests/test_gethostent.c b/tests/test_gethostent.c index aa61696..ad8a89c 100644 --- a/tests/test_gethostent.c +++ b/tests/test_gethostent.c @@ -2,6 +2,7 @@ #include <stdarg.h> #include <stddef.h> +#include <stdint.h> #include <setjmp.h> #include <cmocka.h> @@ -31,7 +32,7 @@ static void test_nwrap_gethostent(void **state) char buf[INET6_ADDRSTRLEN]; uint32_t j; const char *ip; - + ip = inet_ntop(he->h_addrtype, he->h_addr_list[i], buf, diff --git a/tests/test_getpwuid_module.c b/tests/test_getpwuid_module.c index a06a49d..3718ebb 100644 --- a/tests/test_getpwuid_module.c +++ b/tests/test_getpwuid_module.c @@ -2,6 +2,7 @@ #include <stdarg.h> #include <stddef.h> +#include <stdint.h> #include <setjmp.h> #include <cmocka.h> #include <unistd.h> diff --git a/tests/test_initgroups.c b/tests/test_initgroups.c index 1ec2220..f5ccba7 100644 --- a/tests/test_initgroups.c +++ b/tests/test_initgroups.c @@ -1,5 +1,6 @@ #include <stdarg.h> #include <stddef.h> +#include <stdint.h> #include <setjmp.h> #include <cmocka.h> #include <unistd.h> diff --git a/tests/test_nwrap_disabled.c b/tests/test_nwrap_disabled.c index f00294b..090377d 100644 --- a/tests/test_nwrap_disabled.c +++ b/tests/test_nwrap_disabled.c @@ -2,6 +2,7 @@ #include <stdarg.h> #include <stddef.h> +#include <stdint.h> #include <setjmp.h> #include <cmocka.h> diff --git a/tests/testsuite.c b/tests/testsuite.c index bf678fd..41082f9 100644 --- a/tests/testsuite.c +++ b/tests/testsuite.c @@ -2,6 +2,7 @@ #include <stdarg.h> #include <stddef.h> +#include <stdint.h> #include <setjmp.h> #include <cmocka.h> -- NSS Wrapper Repository