From 926382e09698007dc3472481164045c6b0b9754a Mon Sep 17 00:00:00 2001
From: kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059>
Date: Wed, 12 May 2010 15:49:19 +0000
Subject: Post 2.30.1 commit clean up.

git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@14135 df743ca5-7f9a-e211-a948-0013205c9059
---
 devel/liboobs/files/patch-src_oobs-user.c | 45 -------------------------------
 1 file changed, 45 deletions(-)
 delete mode 100644 devel/liboobs/files/patch-src_oobs-user.c

(limited to 'devel/liboobs/files/patch-src_oobs-user.c')

diff --git a/devel/liboobs/files/patch-src_oobs-user.c b/devel/liboobs/files/patch-src_oobs-user.c
deleted file mode 100644
index a7215c4ef..000000000
--- a/devel/liboobs/files/patch-src_oobs-user.c
+++ /dev/null
@@ -1,45 +0,0 @@
---- oobs/oobs-user.c.orig	2010-01-31 17:36:52.000000000 +0000
-+++ oobs/oobs-user.c	2010-01-31 17:40:21.000000000 +0000
-@@ -19,13 +19,24 @@
-  *          Milan Bouchet-Valat <nalimilan@club.fr>.
-  */
- 
-+#ifdef __FreeBSD__
-+# include <sys/param.h>
-+# if __FreeBSD_version >= 900007
-+#  define HAVE_UTMPX_H
-+# endif
-+#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
-+#ifdef HAVE_UTMPX_H
- #include <utmpx.h>
-+#endif
- 
- #include "oobs-object-private.h"
- #include "oobs-usersconfig.h"
-@@ -1252,6 +1263,7 @@ oobs_user_set_locale (OobsUser *user, co
- gboolean
- oobs_user_get_active (OobsUser *user)
- {
-+#ifdef HAVE_UTMPX_H
-   struct utmpx *entry;
-   const gchar *login;
-   gboolean match = FALSE;
-@@ -1272,6 +1284,9 @@ oobs_user_get_active (OobsUser *user)
-   endutxent ();
- 
-   return match;
-+#else
-+  return FALSE;
-+#endif
- }
- 
- /**
-- 
cgit