12345678910111213141516171819202122 |
- $OpenBSD: patch-src_polkitbackend_polkitbackendjsauthority_c,v 1.11 2015/07/20 20:16:59 ajacoutot Exp $
- From 074df27827fd773f1c76545cd08da568440ca41f Mon Sep 17 00:00:00 2001
- From: Antoine Jacoutot <ajacoutot@gnome.org>
- Date: Sun, 19 Jul 2015 02:19:08 +0200
- Subject: Add support for OpenBSD
- --- src/polkitbackend/polkitbackendjsauthority.c.orig Fri Jun 19 22:39:58 2015
- +++ src/polkitbackend/polkitbackendjsauthority.c Fri Jul 3 07:31:00 2015
- @@ -24,7 +24,11 @@
- #include <errno.h>
- #include <pwd.h>
- #include <grp.h>
- +#ifdef HAVE_NETGROUP_H
- +#include <netgroup.h>
- +#else
- #include <netdb.h>
- +#endif
- #include <string.h>
- #include <glib/gstdio.h>
- #include <locale.h>
|