head 1.1; access; symbols; locks; strict; comment @ * @; 1.1 date 2026.04.14.10.58.10; author kikadf; state Exp; branches; next ; commitid m8Hsp2LhwToCRUBG; desc @@ 1.1 log @ basu: new package The sd-bus library, extracted from systemd. Some projects rely on the sd-bus library for DBus support. However not all systems have systemd or elogind installed. This library provides just sd-bus (and the busctl utility). @ text @$NetBSD$ * Use own ucred struct on NetBSD --- src/basic/socket-util.h.orig 2022-12-16 11:13:02.000000000 +0100 +++ src/basic/socket-util.h @@@@ -29,6 +29,12 @@@@ struct ucred { uint32_t uid; uint32_t gid; }; +#elif defined(__NetBSD__) +struct ucred { + pid_t pid; + uid_t uid; + gid_t gid; +}; #endif int fd_inc_sndbuf(int fd, size_t n); @