summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorkristerw <kristerw>2005-06-14 00:58:45 +0000
committerkristerw <kristerw>2005-06-14 00:58:45 +0000
commit5f4d28e581474a27bdf85b19cbbc73033efe0a56 (patch)
tree8858d933340c56ec1affc9023acd5a53ab5b5632 /security
parent058928c31af48eb8204dc4af3c43e8e1572eff29 (diff)
downloadpkgsrc-5f4d28e581474a27bdf85b19cbbc73033efe0a56.tar.gz
Fix C99-isms to make this package compile with gcc 2.95.
Diffstat (limited to 'security')
-rw-r--r--security/seahorse/distinfo3
-rw-r--r--security/seahorse/patches/patch-ae18
2 files changed, 20 insertions, 1 deletions
diff --git a/security/seahorse/distinfo b/security/seahorse/distinfo
index 9a790fe2d53..3bcc2d321ff 100644
--- a/security/seahorse/distinfo
+++ b/security/seahorse/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.12 2005/05/19 21:14:11 jmmv Exp $
+$NetBSD: distinfo,v 1.13 2005/06/14 00:58:45 kristerw Exp $
SHA1 (seahorse-0.7.8.tar.bz2) = 0d4b870555aeed34662ae7edd1cd96bc2a4e7be9
RMD160 (seahorse-0.7.8.tar.bz2) = 5fb7711a5bac0848a4577bf74fc6e097828de5c7
@@ -7,3 +7,4 @@ SHA1 (patch-aa) = b7dbb53b1a012345b13426f50f76a523ff839536
SHA1 (patch-ab) = 38d3f9ab9a46209f363d2b772d079cde1af83ed2
SHA1 (patch-ac) = a17c31e312b10d7ba781289b70060ed34a1c006b
SHA1 (patch-ad) = a7abc7a29a422ec229545f626f37ae173ba56db7
+SHA1 (patch-ae) = cb7e6555d94adc9d2d6a4e0250bd7717c8207f87
diff --git a/security/seahorse/patches/patch-ae b/security/seahorse/patches/patch-ae
new file mode 100644
index 00000000000..d7c24206b3d
--- /dev/null
+++ b/security/seahorse/patches/patch-ae
@@ -0,0 +1,18 @@
+$NetBSD: patch-ae,v 1.1 2005/06/14 00:58:45 kristerw Exp $
+
+--- libseahorse/seahorse-server-source.c.orig Tue Jun 14 02:26:00 2005
++++ libseahorse/seahorse-server-source.c Tue Jun 14 02:26:25 2005
+@@ -519,11 +519,12 @@
+ seahorse_server_source_get_state (SeahorseKeySource *src)
+ {
+ SeahorseServerSource *ssrc;
++ guint state;
+
+ g_return_val_if_fail (SEAHORSE_IS_SERVER_SOURCE (src), 0);
+ ssrc = SEAHORSE_SERVER_SOURCE (src);
+
+- guint state = SEAHORSE_KEY_SOURCE_REMOTE;
++ state = SEAHORSE_KEY_SOURCE_REMOTE;
+ if (!seahorse_operation_is_done (ssrc->priv->operation))
+ state |= SEAHORSE_KEY_SOURCE_LOADING;
+ return state;