pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc Fix C99-isms to make this package compile with gcc 2.95.
details: https://anonhg.NetBSD.org/pkgsrc/rev/e7ee705e7ad3
branches: trunk
changeset: 495552:e7ee705e7ad3
user: kristerw <kristerw%pkgsrc.org@localhost>
date: Tue Jun 14 00:58:45 2005 +0000
description:
Fix C99-isms to make this package compile with gcc 2.95.
diffstat:
audio/mpc/distinfo | 3 ++-
audio/mpc/patches/patch-ab | 17 +++++++++++++++++
security/seahorse/distinfo | 3 ++-
security/seahorse/patches/patch-ae | 18 ++++++++++++++++++
4 files changed, 39 insertions(+), 2 deletions(-)
diffs (69 lines):
diff -r 90a98a37f1f3 -r e7ee705e7ad3 audio/mpc/distinfo
--- a/audio/mpc/distinfo Mon Jun 13 22:42:01 2005 +0000
+++ b/audio/mpc/distinfo Tue Jun 14 00:58:45 2005 +0000
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.5 2005/06/01 03:35:21 simonb Exp $
+$NetBSD: distinfo,v 1.6 2005/06/14 01:34:54 kristerw Exp $
SHA1 (mpc-0.11.2.tar.gz) = b318ffdf4d27c14f761070b83dec3a3433612586
RMD160 (mpc-0.11.2.tar.gz) = 823eca5e82fb4b2f4d219d70b176673575576a14
Size (mpc-0.11.2.tar.gz) = 103483 bytes
SHA1 (patch-aa) = c013d21aae786eb2aa2c562f29d9e5a84150995f
+SHA1 (patch-ab) = 9fd058c97c37fac4de1189efe3ba365a1a94ffba
diff -r 90a98a37f1f3 -r e7ee705e7ad3 audio/mpc/patches/patch-ab
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/mpc/patches/patch-ab Tue Jun 14 00:58:45 2005 +0000
@@ -0,0 +1,17 @@
+$NetBSD: patch-ab,v 1.4 2005/06/14 01:34:54 kristerw Exp $
+
+--- src/command.c.orig Tue Jun 14 03:30:30 2005
++++ src/command.c Tue Jun 14 03:32:26 2005
+@@ -183,10 +183,11 @@
+ int cmd_crop( int argc, char ** argv, mpd_Connection * conn )
+ {
+
++ int length;
+ mpd_Status *status;
+ status = getStatus( conn );
+
+- int length = ( status->playlistLength - 1 );
++ length = ( status->playlistLength - 1 );
+
+ if( status->playlistLength == 0 ) {
+
diff -r 90a98a37f1f3 -r e7ee705e7ad3 security/seahorse/distinfo
--- a/security/seahorse/distinfo Mon Jun 13 22:42:01 2005 +0000
+++ b/security/seahorse/distinfo Tue Jun 14 00:58:45 2005 +0000
@@ -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-ab) = 38d3f9ab9a46209f363d2b772d079cde1af83ed2
SHA1 (patch-ac) = a17c31e312b10d7ba781289b70060ed34a1c006b
SHA1 (patch-ad) = a7abc7a29a422ec229545f626f37ae173ba56db7
+SHA1 (patch-ae) = cb7e6555d94adc9d2d6a4e0250bd7717c8207f87
diff -r 90a98a37f1f3 -r e7ee705e7ad3 security/seahorse/patches/patch-ae
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/security/seahorse/patches/patch-ae Tue Jun 14 00:58:45 2005 +0000
@@ -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;
Home |
Main Index |
Thread Index |
Old Index