diff options
author | taca <taca@pkgsrc.org> | 2004-12-08 02:13:39 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2004-12-08 02:13:39 +0000 |
commit | 712d3af2d504a32c30473faa825d1aa49123519f (patch) | |
tree | e2200f3e9e1866f1d22cfc7f9e71622e38f79621 /x11/gnome-session | |
parent | 943885059285fd4270d88aab904d7d8fecbbc602 (diff) | |
download | pkgsrc-712d3af2d504a32c30473faa825d1aa49123519f.tar.gz |
Fix compile error on NetBSD 1.6.2, making it compile with gcc-2.95.
Diffstat (limited to 'x11/gnome-session')
-rw-r--r-- | x11/gnome-session/distinfo | 3 | ||||
-rw-r--r-- | x11/gnome-session/patches/patch-ae | 16 |
2 files changed, 18 insertions, 1 deletions
diff --git a/x11/gnome-session/distinfo b/x11/gnome-session/distinfo index f599cae4a5f..47899255057 100644 --- a/x11/gnome-session/distinfo +++ b/x11/gnome-session/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.15 2004/11/19 19:59:14 jmmv Exp $ +$NetBSD: distinfo,v 1.16 2004/12/08 02:13:39 taca Exp $ SHA1 (gnome-session-2.8.1.tar.bz2) = 0766a65f3b9de1b3266018da2c8f0fe0465e8f23 Size (gnome-session-2.8.1.tar.bz2) = 883921 bytes @@ -7,3 +7,4 @@ Size (gnome-splash-2.8.0.1.png) = 115672 bytes SHA1 (patch-aa) = 6cdba04e00c439858b428dd275fff1c0c263534f SHA1 (patch-ab) = cb6e685ec5f2aa34fd72b7106906b3c05f519761 SHA1 (patch-ac) = 45c0b5fcdef56b2286dbf84e73e924f5ad74bc6d +SHA1 (patch-ae) = 36c909fcd0da338c692a49bf3a95e8867efac197 diff --git a/x11/gnome-session/patches/patch-ae b/x11/gnome-session/patches/patch-ae new file mode 100644 index 00000000000..c8fd35e1321 --- /dev/null +++ b/x11/gnome-session/patches/patch-ae @@ -0,0 +1,16 @@ +$NetBSD: patch-ae,v 1.1 2004/12/08 02:13:39 taca Exp $ + +--- gnome-session/manager.c.orig Fri Oct 1 19:13:23 2004 ++++ gnome-session/manager.c +@@ -1042,9 +1042,10 @@ no_response_warning (gpointer data) + + if (interact_ping_replied) + { ++ IceConn ice_conn; + gsm_verbose ("have interact_list; sending ping with data to client %p\n", client); + print_client (client); +- IceConn ice_conn = SmsGetIceConnection (client->connection); ++ ice_conn = SmsGetIceConnection (client->connection); + interact_ping_replied = FALSE; + IcePing (ice_conn, interact_ping_reply, (IcePointer)client); + } |