diff --git a/x11/gnome3/x11/gnome/keyring/Makefile b/x11/gnome3/x11/gnome/keyring/Makefile index 8edb5e9a55b..47fd03a716f 100644 --- a/x11/gnome3/x11/gnome/keyring/Makefile +++ b/x11/gnome3/x11/gnome/keyring/Makefile @@ -1,11 +1,11 @@ -# $OpenBSD: Makefile,v 1.7 2011/06/28 12:57:47 ajacoutot Exp $ +# $OpenBSD: Makefile,v 1.8 2011/07/03 16:55:04 ajacoutot Exp $ COMMENT= password agent for the GNOME project GNOME_PROJECT= gnome-keyring GNOME_VERSION= 3.0.3 -REVISION= 1 +REVISION= 2 SHARED_LIBS += gck 0.0 # 0.0 SHARED_LIBS += gcr-3 0.0 # 0.0 diff --git a/x11/gnome3/x11/gnome/keyring/patches/patch-pkcs11_secret-store_gkm-secret-binary_c b/x11/gnome3/x11/gnome/keyring/patches/patch-pkcs11_secret-store_gkm-secret-binary_c new file mode 100644 index 00000000000..9f19c1be2c5 --- /dev/null +++ b/x11/gnome3/x11/gnome/keyring/patches/patch-pkcs11_secret-store_gkm-secret-binary_c @@ -0,0 +1,27 @@ +$OpenBSD: patch-pkcs11_secret-store_gkm-secret-binary_c,v 1.1 2011/07/03 16:55:04 ajacoutot Exp $ + +warning: passing argument 4 of 'buffer_get_time' from incompatible pointer type +(https://bugzilla.gnome.org/show_bug.cgi?id=652565) + +--- pkcs11/secret-store/gkm-secret-binary.c.orig Tue May 24 10:06:56 2011 ++++ pkcs11/secret-store/gkm-secret-binary.c Sun Jul 3 17:45:29 2011 +@@ -71,8 +71,8 @@ typedef struct { + char *display_name; + const guchar *ptr_secret; + gsize n_secret; +- time_t ctime; +- time_t mtime; ++ long int ctime; ++ long int mtime; + GHashTable *attributes; + GList *acl; + } ItemInfo; +@@ -849,7 +849,7 @@ gkm_secret_binary_read (GkmSecretCollection *collectio + guchar major, minor, crypto, hash; + guint32 flags; + guint32 lock_timeout; +- time_t mtime, ctime; ++ long int mtime, ctime; + char *display_name; + guint32 tmp; + guint32 num_items;