Remove uneeded patches.

The "Switch User" policy will be set by gsettings-desktop-schemas.
This commit is contained in:
ajacoutot 2012-04-07 12:19:40 +00:00
parent 2ecf172edb
commit 09041a7093
4 changed files with 2 additions and 46 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.115 2012/04/05 07:50:26 ajacoutot Exp $
# $OpenBSD: Makefile,v 1.116 2012/04/07 12:19:40 ajacoutot Exp $
SHARED_ONLY= Yes
@ -6,7 +6,7 @@ COMMENT= GNOME panel
GNOME_PROJECT= gnome-panel
GNOME_VERSION= 3.4.0
REVISION= 1
REVISION= 2
SHARED_LIBS= panel-applet-4 1.0 # 0.0

View File

@ -1,15 +0,0 @@
$OpenBSD: patch-applets_clock_calendar-client_c,v 1.3 2011/09/12 07:28:54 jasper Exp $
Pass UTC to evolution to prevent incorrect times from entering the database.
--- applets/clock/calendar-client.c.orig Tue Aug 11 20:51:51 2009
+++ applets/clock/calendar-client.c Sun Oct 11 19:57:31 2009
@@ -2123,7 +2123,7 @@ calendar_client_set_task_completed (CalendarClient *cl
{
struct icaltimetype completed_time;
- completed_time = icaltime_current_time_with_zone (client->priv->zone);
+ completed_time = icaltime_current_time_with_zone (icaltimezone_get_utc_timezone());
if (!prop)
{
icalcomponent_add_property (ical,

View File

@ -1,18 +0,0 @@
$OpenBSD: patch-gnome-panel_panel-menu-items_c,v 1.4 2012/03/29 06:53:15 ajacoutot Exp $
By default it is not possible to run >1 instance of X(7) under OpenBSD
at securelevel(7) 1, hence it is not possible to switch user.
--- gnome-panel/panel-menu-items.c.orig Thu Mar 15 09:56:50 2012
+++ gnome-panel/panel-menu-items.c Wed Mar 28 08:57:42 2012
@@ -487,8 +487,10 @@ panel_menu_items_create_switch_user (gboolean use_icon
item = gtk_image_menu_item_new ();
}
+#ifndef __OpenBSD__
setup_menu_item_with_icon (item, panel_menu_icon_get_size (),
NULL, NULL, NULL, _("Switch User"));
+#endif
g_signal_connect (item, "activate",
G_CALLBACK (panel_menu_item_activate_switch_user),

View File

@ -1,11 +0,0 @@
$OpenBSD: patch-gnome-panel_panel-util_c,v 1.3 2011/09/12 07:28:54 jasper Exp $
--- gnome-panel/panel-util.c.orig Sun Apr 19 19:45:09 2009
+++ gnome-panel/panel-util.c Sun Oct 11 19:57:31 2009
@@ -20,6 +20,7 @@
#include <errno.h>
#include <stdlib.h>
#include <string.h>
+#include <limits.h>
#include <unistd.h>
#include <sys/types.h>