diff options
author | 2012-12-25 13:29:06 +0000 | |
---|---|---|
committer | 2012-12-25 13:29:06 +0000 | |
commit | 599971d037183a8ca22c822cbafc50d3f5682ab9 (patch) | |
tree | 4715087acdbe22c440c1f8ee765084dbc16c69f4 /net-p2p/dctc/files | |
parent | Drop masked for removal package (diff) | |
download | historical-599971d037183a8ca22c822cbafc50d3f5682ab9.tar.gz historical-599971d037183a8ca22c822cbafc50d3f5682ab9.tar.bz2 historical-599971d037183a8ca22c822cbafc50d3f5682ab9.zip |
Drop masked for removal package
Diffstat (limited to 'net-p2p/dctc/files')
-rw-r--r-- | net-p2p/dctc/files/dctc-0.85.6-passive.patch | 25 | ||||
-rw-r--r-- | net-p2p/dctc/files/dctc-0.85.9-gcc41.patch | 29 | ||||
-rw-r--r-- | net-p2p/dctc/files/dctc-0.85.9-skip_db_ver_check.patch | 13 |
3 files changed, 0 insertions, 67 deletions
diff --git a/net-p2p/dctc/files/dctc-0.85.6-passive.patch b/net-p2p/dctc/files/dctc-0.85.6-passive.patch deleted file mode 100644 index 65775e2acf38..000000000000 --- a/net-p2p/dctc/files/dctc-0.85.6-passive.patch +++ /dev/null @@ -1,25 +0,0 @@ -diff -Naur dctc-0.86.6-orig/src/keyboard_master.c dctc-0.85.6/src/keyboard_master.c ---- dctc-0.86.6-orig/src/keyboard_master.c 2003-10-01 19:16:35.000000000 +0200 -+++ dctc-0.85.6/src/keyboard_master.c 2003-11-02 15:36:43.000000000 +0100 -@@ -238,12 +238,15 @@ - { /* we are behind a firewall */ - /* so, the remote side wont be able to contact us */ - /* let's ask a reverse connection */ -- if(!user_in_list(hub_user_list,fields[2])) /* if the user is not here and we are behind a firewall, we cannot do anything */ -- goto abrt; -- -- LOCK_READ(user_info); -- send_dc_line(sck,"$RevConnectToMe",nickname,fields[2],NULL); -- UNLOCK_READ(user_info); -+ if(user_in_list(hub_user_list,fields[2])) { -+ LOCK_READ(user_info); -+ send_dc_line(sck,"$RevConnectToMe",nickname,fields[2],NULL); -+ UNLOCK_READ(user_info); -+ } else { -+ /* try a conditionnal download on other client */ -+ send_dc_line_to_dctc_link(fields[2],sck,"$RevConnectToMe",nickname,fields[2],NULL); -+ } -+ - disp_msg(DEBUG_MSG,"","/XDL in $RevConnectToMe",NULL); - } - else diff --git a/net-p2p/dctc/files/dctc-0.85.9-gcc41.patch b/net-p2p/dctc/files/dctc-0.85.9-gcc41.patch deleted file mode 100644 index a8713fdcb5f8..000000000000 --- a/net-p2p/dctc/files/dctc-0.85.9-gcc41.patch +++ /dev/null @@ -1,29 +0,0 @@ -diff -Naur dctc-0.85.9-orig/configure.in dctc-0.85.9/configure.in ---- dctc-0.85.9-orig/configure.in 2006-03-18 14:46:18.000000000 -0600 -+++ dctc-0.85.9/configure.in 2006-03-18 14:46:46.000000000 -0600 -@@ -29,7 +29,7 @@ - AC_MSG_RESULT($cc_version, bad) - bad_cc="yes" - ;; -- 2.95.*|3.*) -+ 2.95.*|3.*|4.*) - AC_MSG_RESULT($cc_version, ok) - bad_cc="no" - ;; -diff -Naur dctc-0.85.9-orig/src/user_manage.h dctc-0.85.9/src/user_manage.h ---- dctc-0.85.9-orig/src/user_manage.h 2006-03-18 14:46:18.000000000 -0600 -+++ dctc-0.85.9/src/user_manage.h 2006-03-18 14:48:09.000000000 -0600 -@@ -27,11 +27,11 @@ - extern GPtrArray *hub_user_list; /* list of all users connected to the hub */ - extern GPtrArray *hub_op_list; /* list of all ops connected to the hub (ops are also in the user_list) */ - --extern GPtrArray *hub_user_xtra_info; /* array of extra data stored for each hub user */ -+static GPtrArray *hub_user_xtra_info; /* array of extra data stored for each hub user */ - /* the nth pointer of this array is for the nth user of the hub_user_list */ - /* a user having no extra info has a null pointer as extra info */ - --extern GPtrArray *hub_user_uinfo; /* it is the result of /UINFO command for each user */ -+static GPtrArray *hub_user_uinfo; /* it is the result of /UINFO command for each user */ - - typedef enum - { diff --git a/net-p2p/dctc/files/dctc-0.85.9-skip_db_ver_check.patch b/net-p2p/dctc/files/dctc-0.85.9-skip_db_ver_check.patch deleted file mode 100644 index 4d92c02b53b7..000000000000 --- a/net-p2p/dctc/files/dctc-0.85.9-skip_db_ver_check.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- configure.in -+++ configure.in -@@ -222,10 +222,6 @@ - CPPFLAGS="$CPPFLAGS -DBDB_V4" - fi - -- if test $db_major -ne 3 -a $db_major -ne 4; then -- AC_MSG_ERROR(no supported BerkeleyDB found (4.x or 3.x). Your version is $db_version) -- fi -- - AC_CHECK_LIB(db-$db_version,db_env_create,HAVE_DB=yes) - if test "x$HAVE_DB" = "xyes"; then - AC_SUBST(berkeleydb_libs) |