diff options
author | adam <adam@pkgsrc.org> | 2010-06-02 13:08:22 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2010-06-02 13:08:22 +0000 |
commit | e657ec82d440a1e7bfeaf856faccab2e57641ed1 (patch) | |
tree | 1116061474a1ee194935c646b4bf0407c18f1f28 /net/dc_gui2/patches | |
parent | 1dea107a044010ba6f3ea81e33d9077194ac1852 (diff) | |
download | pkgsrc-e657ec82d440a1e7bfeaf856faccab2e57641ed1.tar.gz |
Changes 0.80:
* deletion of unattached GDL added.
* Polish translation update by Emil.
* fix UADDR list redisplay problem.
* fix a crash of dc_gui2_stat when there is nothing to display.
* add upload stat to dc_gui2_stat (only DCTC v0.85.9 provides upload logs).
* fix a user display problem. If a user entering the hub is already created
(used by GDL, upload, share list, ...), he was not displayed in the user
clist.
* Fix incorrect global stat values occuring when multiple 'done' files are
loaded.
* Bittorrent tab is handled by an external program: dc_gui2_bt
* To ease development of future external program, most of the configuration is
* now store in gconf instead gnome_config.
* dc_gui2 command line parameters are back (dc_gui2 --help for the list).
* update .spec file to support fedora (based on Sammy Atmadja modification).
Diffstat (limited to 'net/dc_gui2/patches')
-rw-r--r-- | net/dc_gui2/patches/patch-aa | 6 | ||||
-rw-r--r-- | net/dc_gui2/patches/patch-ac | 18 | ||||
-rw-r--r-- | net/dc_gui2/patches/patch-ag | 18 |
3 files changed, 30 insertions, 12 deletions
diff --git a/net/dc_gui2/patches/patch-aa b/net/dc_gui2/patches/patch-aa index 3d4fa82c5d9..040418e6728 100644 --- a/net/dc_gui2/patches/patch-aa +++ b/net/dc_gui2/patches/patch-aa @@ -1,8 +1,8 @@ -$NetBSD: patch-aa,v 1.1.1.1 2003/06/10 13:21:52 wiz Exp $ +$NetBSD: patch-aa,v 1.2 2010/06/02 13:08:22 adam Exp $ ---- configure.orig Tue Jun 10 14:32:15 2003 +--- configure.orig 2004-01-24 06:41:45.000000000 +0000 +++ configure -@@ -10490,6 +10490,7 @@ +@@ -11042,6 +11042,7 @@ fi if test "x$HAVE_DB40" = "xyes"; then diff --git a/net/dc_gui2/patches/patch-ac b/net/dc_gui2/patches/patch-ac index eef57c036ca..4db7a96100b 100644 --- a/net/dc_gui2/patches/patch-ac +++ b/net/dc_gui2/patches/patch-ac @@ -1,8 +1,8 @@ -$NetBSD: patch-ac,v 1.1.1.1 2003/06/10 13:21:52 wiz Exp $ +$NetBSD: patch-ac,v 1.2 2010/06/02 13:08:22 adam Exp $ ---- src/callbacks.c.orig Sun Jun 1 10:02:59 2003 +--- src/callbacks.c.orig 2004-01-21 15:57:32.000000000 +0000 +++ src/callbacks.c -@@ -30,7 +30,13 @@ +@@ -30,7 +30,13 @@ $Id: callbacks.c,v 1.65 2004/01/21 15:57 #include <sys/socket.h> #include <sys/un.h> #include <math.h> @@ -16,14 +16,14 @@ $NetBSD: patch-ac,v 1.1.1.1 2003/06/10 13:21:52 wiz Exp $ #include <fcntl.h> #include <signal.h> #include <dirent.h> -@@ -71,6 +77,10 @@ - #include "gtk_helper.h" - #include "network.h" - #include "custom_hublist_tree.h" -+ +@@ -75,6 +81,10 @@ $Id: callbacks.c,v 1.65 2004/01/21 15:57 + #include "global_user.h" + #include "manage_chat.h" + +#ifndef MSG_NOSIGNAL +#define MSG_NOSIGNAL 0 +#endif - ++ static void build_start_dl_popup(int from_panel); void on_load_selected_share_lists_button_clicked (GtkButton *button, gpointer user_data); + diff --git a/net/dc_gui2/patches/patch-ag b/net/dc_gui2/patches/patch-ag new file mode 100644 index 00000000000..f7159ea6cf6 --- /dev/null +++ b/net/dc_gui2/patches/patch-ag @@ -0,0 +1,18 @@ +$NetBSD: patch-ag,v 1.1 2010/06/02 13:08:22 adam Exp $ + +--- dc_gui2_stat/src/init_fnc.c.orig Wed Jul 9 18:20:53 2003 ++++ dc_gui2_stat/src/init_fnc.c +@@ -35,7 +35,13 @@ + #include <sys/types.h> + #include <sys/stat.h> + #include <sys/wait.h> ++#ifdef __linux__ + #include <linux/sem.h> /* for the value of SEMVMX */ ++#else ++#ifndef SEMVMX ++#define SEMVMX 32767 /* semaphore maximum value */ ++#endif ++#endif + #include <dirent.h> + #include <string.h> + #include <errno.h> |