From 2429f5af05b590736308c32b54a485f76b449304 Mon Sep 17 00:00:00 2001
From: marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>
Date: Sat, 22 Aug 2009 06:00:05 +0000
Subject: Re-add the missing patches from the FreeBSD ports tree.

Reported by:	Yasuda Keisuke <kysd@po.harenet.ne.jp>


git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@12672 df743ca5-7f9a-e211-a948-0013205c9059
---
 devel/liboobs/files/patch-src_oobs-group.c | 25 +++++++++++++++++++++
 devel/liboobs/files/patch-src_oobs-user.c  | 35 ++++++++++++++++++++++++++++++
 2 files changed, 60 insertions(+)
 create mode 100644 devel/liboobs/files/patch-src_oobs-group.c
 create mode 100644 devel/liboobs/files/patch-src_oobs-user.c

(limited to 'devel')

diff --git a/devel/liboobs/files/patch-src_oobs-group.c b/devel/liboobs/files/patch-src_oobs-group.c
new file mode 100644
index 000000000..6abd8b711
--- /dev/null
+++ b/devel/liboobs/files/patch-src_oobs-group.c
@@ -0,0 +1,25 @@
+--- oobs/oobs-group.c.orig	Fri Sep 15 18:41:04 2006
++++ oobs/oobs-group.c	Tue Oct 31 23:12:40 2006
+@@ -18,7 +18,12 @@
+  * Authors: Carlos Garnacho Parro  <carlosg@gnome.org>
+  */
+ 
++#if defined(HAVE_CONFIG_H)
++#include <config.h>
++#endif
++
+ #include <glib-object.h>
++#include <unistd.h>
+ #include "oobs-session.h"
+ #include "oobs-group.h"
+ #include "oobs-user.h"
+@@ -27,7 +32,9 @@
+ #include "oobs-groupsconfig-private.h"
+ #include "oobs-defines.h"
+ #include "utils.h"
++#ifdef HAVE_CRYPT_H
+ #include <crypt.h>
++#endif
+ 
+ #define OOBS_GROUP_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), OOBS_TYPE_GROUP, OobsGroupPrivate))
+ 
diff --git a/devel/liboobs/files/patch-src_oobs-user.c b/devel/liboobs/files/patch-src_oobs-user.c
new file mode 100644
index 000000000..484b86f32
--- /dev/null
+++ b/devel/liboobs/files/patch-src_oobs-user.c
@@ -0,0 +1,35 @@
+--- oobs/oobs-user.c.orig	2007-10-30 09:16:53.406333206 -0400
++++ oobs/oobs-user.c	2007-10-30 09:40:02.560797530 -0400
+@@ -18,12 +18,18 @@
+  * Authors: Carlos Garnacho Parro  <carlosg@gnome.org>
+  */
+ 
++#if defined(HAVE_CONFIG_H)
++#include <config.h>
++#endif
++
+ #include <glib-object.h>
+ #include <sys/types.h>
+ #include <unistd.h>
+ #include <stdlib.h>
+ #include <string.h>
++#ifdef HAVE_CRYPT_H
+ #include <crypt.h>
++#endif
+ #include <utmp.h>
+ 
+ #include "oobs-usersconfig.h"
+@@ -852,6 +858,7 @@
+ 
+   login = oobs_user_get_login_name (user);
+ 
++#if 0 /* FreeBSD does not have ut_type in utmp */
+   while (!match && (entry = getutent ()) != NULL)
+     {
+       match = (entry->ut_type == USER_PROCESS &&
+@@ -862,4 +869,5 @@
+   endutent ();
+ 
+   return match;
++#endif
+ }
-- 
cgit v1.2.3