Revision: 26945 http://sourceforge.net/p/gar/code/26945 Author: dmichelsen Date: 2022-06-27 12:22:20 +0000 (Mon, 27 Jun 2022) Log Message: ----------- sudo/trunk: Update to 1.9.3p3
Modified Paths: -------------- csw/mgar/pkg/sudo/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/sudo/trunk/files/0001-Use-inttypes.h-instead-of-stdint.h-which-is-not-avai.patch Modified: csw/mgar/pkg/sudo/trunk/Makefile =================================================================== --- csw/mgar/pkg/sudo/trunk/Makefile 2022-06-27 12:00:25 UTC (rev 26944) +++ csw/mgar/pkg/sudo/trunk/Makefile 2022-06-27 12:22:20 UTC (rev 26945) @@ -23,6 +23,10 @@ DISTFILES += sudo.conf.CSW DISTFILES += map.sudo +# Use patch until this is fixed: +# https://bugzilla.sudo.ws/show_bug.cgi?id=1035 +PATCHFILES += 0001-Use-inttypes.h-instead-of-stdint.h-which-is-not-avai.patch + LICENSE = LICENSE.md VENDOR_URL = http://www.sudo.ws Added: csw/mgar/pkg/sudo/trunk/files/0001-Use-inttypes.h-instead-of-stdint.h-which-is-not-avai.patch =================================================================== --- csw/mgar/pkg/sudo/trunk/files/0001-Use-inttypes.h-instead-of-stdint.h-which-is-not-avai.patch (rev 0) +++ csw/mgar/pkg/sudo/trunk/files/0001-Use-inttypes.h-instead-of-stdint.h-which-is-not-avai.patch 2022-06-27 12:22:20 UTC (rev 26945) @@ -0,0 +1,26 @@ +From 22022c09726657b15145b7a7283a87d93e0a9387 Mon Sep 17 00:00:00 2001 +From: Dagobert Michelsen <d...@opencsw.org> +Date: Mon, 27 Jun 2022 14:14:09 +0200 +Subject: [PATCH] Use inttypes.h instead of stdint.h which is not available on + Solaris 9 + +--- + src/exec_ptrace.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/exec_ptrace.c b/src/exec_ptrace.c +index dc00dd8..c92048f 100644 +--- a/src/exec_ptrace.c ++++ b/src/exec_ptrace.c +@@ -30,7 +30,7 @@ + #include <limits.h> + #include <signal.h> + #include <stddef.h> +-#include <stdint.h> ++#include <inttypes.h> + #include <stdio.h> + #include <stdlib.h> + #include <string.h> +-- +2.4.0 + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.