summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlin Năstac <mrness@gentoo.org>2005-06-12 16:35:50 +0000
committerAlin Năstac <mrness@gentoo.org>2005-06-12 16:35:50 +0000
commit76571b0e206b9069d2bc982d5c8d3d97e31b9aad (patch)
treece1814b00fa9d5efd3d9e9081836351cd016faa4 /net-misc/quagga/files
parentFix obtest segfault thanks to Andrew D. Keyser (aka Legoguy) <andrewdk@sbcglo... (diff)
downloadgentoo-2-76571b0e206b9069d2bc982d5c8d3d97e31b9aad.tar.gz
gentoo-2-76571b0e206b9069d2bc982d5c8d3d97e31b9aad.tar.bz2
gentoo-2-76571b0e206b9069d2bc982d5c8d3d97e31b9aad.zip
erase oldies
(Portage version: 2.0.51.19)
Diffstat (limited to 'net-misc/quagga/files')
-rw-r--r--net-misc/quagga/files/digest-quagga-0.96.4-r61
-rw-r--r--net-misc/quagga/files/digest-quagga-0.96.52
-rw-r--r--net-misc/quagga/files/digest-quagga-0.97.12
-rw-r--r--net-misc/quagga/files/digest-quagga-0.97.22
-rw-r--r--net-misc/quagga/files/patches-0.96.4/opaque-ready.patch56
-rw-r--r--net-misc/quagga/files/patches-0.96.4/ospf_refcount.patch34
-rw-r--r--net-misc/quagga/files/patches-0.97.1/01_all_unbreak-ospfapi.patch.bz2bin667 -> 0 bytes
-rw-r--r--net-misc/quagga/files/patches-0.97.1/02_all_unbreak-ospfapi.patch.bz2bin645 -> 0 bytes
8 files changed, 0 insertions, 97 deletions
diff --git a/net-misc/quagga/files/digest-quagga-0.96.4-r6 b/net-misc/quagga/files/digest-quagga-0.96.4-r6
deleted file mode 100644
index bde17a662186..000000000000
--- a/net-misc/quagga/files/digest-quagga-0.96.4-r6
+++ /dev/null
@@ -1 +0,0 @@
-MD5 55f5a307c453f90d7dfcc13f0dabb83d quagga-0.96.4.tar.gz 1401066
diff --git a/net-misc/quagga/files/digest-quagga-0.96.5 b/net-misc/quagga/files/digest-quagga-0.96.5
deleted file mode 100644
index 1c208a87005f..000000000000
--- a/net-misc/quagga/files/digest-quagga-0.96.5
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 cc84ef15cf4c2823a36097fe01775dc3 quagga-0.96.5.tar.gz 1558033
-MD5 5352f366e6c7d07101d9b1684e8c6710 ht-20040525-0.96.5-bgp-md5.patch 15395
diff --git a/net-misc/quagga/files/digest-quagga-0.97.1 b/net-misc/quagga/files/digest-quagga-0.97.1
deleted file mode 100644
index c54918cb5d72..000000000000
--- a/net-misc/quagga/files/digest-quagga-0.97.1
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 ddfa09a520e9245d1aeb9b3de695882b quagga-0.97.1.tar.gz 1813974
-MD5 5352f366e6c7d07101d9b1684e8c6710 ht-20040525-0.96.5-bgp-md5.patch 15395
diff --git a/net-misc/quagga/files/digest-quagga-0.97.2 b/net-misc/quagga/files/digest-quagga-0.97.2
deleted file mode 100644
index 240f39b46e43..000000000000
--- a/net-misc/quagga/files/digest-quagga-0.97.2
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 1609de2a1633935a1c7e8983e42acba8 quagga-0.97.2.tar.gz 1819209
-MD5 5352f366e6c7d07101d9b1684e8c6710 ht-20040525-0.96.5-bgp-md5.patch 15395
diff --git a/net-misc/quagga/files/patches-0.96.4/opaque-ready.patch b/net-misc/quagga/files/patches-0.96.4/opaque-ready.patch
deleted file mode 100644
index e2db1538c182..000000000000
--- a/net-misc/quagga/files/patches-0.96.4/opaque-ready.patch
+++ /dev/null
@@ -1,56 +0,0 @@
---- ospfd/ospf_opaque.c.orig 2003-04-04 04:44:32.000000000 +0200
-+++ ospfd/ospf_opaque.c 2004-02-02 23:58:48.171864248 +0100
-@@ -1385,10 +1385,15 @@
- {
- for (node = listhead (oi->opaque_lsa_self); node; nextnode (node))
- {
-+ /*
-+ * removed the test for
-+ * (! list_isempty (oipt->id_list)) * Handler is already active. *
-+ * because opaque cababilities ON -> OFF -> ON result in list_isempty (oipt->id_list)
-+ * not being empty.
-+ */
- if ((oipt = getdata (node)) == NULL /* Something wrong? */
- || oipt->t_opaque_lsa_self != NULL /* Waiting for a thread call. */
-- || oipt->status == PROC_SUSPEND /* Cannot originate now. */
-- || ! list_isempty (oipt->id_list)) /* Handler is already active. */
-+ || oipt->status == PROC_SUSPEND) /* Cannot originate now. */
- continue;
-
- ospf_opaque_lsa_reoriginate_schedule ((void *) oi,
-@@ -1401,10 +1406,15 @@
- {
- for (node = listhead (area->opaque_lsa_self); node; nextnode (node))
- {
-+ /*
-+ * removed the test for
-+ * (! list_isempty (oipt->id_list)) * Handler is already active. *
-+ * because opaque cababilities ON -> OFF -> ON result in list_isempty (oipt->id_list)
-+ * not being empty.
-+ */
- if ((oipt = getdata (node)) == NULL /* Something wrong? */
- || oipt->t_opaque_lsa_self != NULL /* Waiting for a thread call. */
-- || oipt->status == PROC_SUSPEND /* Cannot originate now. */
-- || ! list_isempty (oipt->id_list)) /* Handler is already active. */
-+ || oipt->status == PROC_SUSPEND) /* Cannot originate now. */
- continue;
-
- ospf_opaque_lsa_reoriginate_schedule ((void *) area,
-@@ -1417,10 +1427,15 @@
- {
- for (node = listhead (top->opaque_lsa_self); node; nextnode (node))
- {
-+ /*
-+ * removed the test for
-+ * (! list_isempty (oipt->id_list)) * Handler is already active. *
-+ * because opaque cababilities ON -> OFF -> ON result in list_isempty (oipt->id_list)
-+ * not being empty.
-+ */
- if ((oipt = getdata (node)) == NULL /* Something wrong? */
- || oipt->t_opaque_lsa_self != NULL /* Waiting for a thread call. */
-- || oipt->status == PROC_SUSPEND /* Cannot originate now. */
-- || ! list_isempty (oipt->id_list)) /* Handler is already active. */
-+ || oipt->status == PROC_SUSPEND) /* Cannot originate now. */
- continue;
-
- ospf_opaque_lsa_reoriginate_schedule ((void *) top,
diff --git a/net-misc/quagga/files/patches-0.96.4/ospf_refcount.patch b/net-misc/quagga/files/patches-0.96.4/ospf_refcount.patch
deleted file mode 100644
index 08718c1808b1..000000000000
--- a/net-misc/quagga/files/patches-0.96.4/ospf_refcount.patch
+++ /dev/null
@@ -1,34 +0,0 @@
---- ospfd/ospf_lsa.c.orig 2003-10-13 11:02:40.000000000 +0200
-+++ ospfd/ospf_lsa.c 2004-03-12 17:22:20.099902466 +0100
-@@ -288,6 +288,10 @@
- struct ospf_lsa *
- ospf_lsa_lock (struct ospf_lsa *lsa)
- {
-+#ifdef DEBUG_LSA_LOCKS
-+ zlog_info("LSA: lock(lsa = %p, lsa->data = %p, lsa->id = %s, lsa->lock = %d)", lsa, lsa->data, (lsa && (lsa->data))?inet_ntoa(lsa->data->id):"undef", lsa->lock);
-+#endif /* DEBUG_LSA_LOCKS */
-+
- lsa->lock++;
- return lsa;
- }
-@@ -300,6 +304,20 @@
- if (!lsa)
- return;
-
-+#ifdef DEBUG_LSA_LOCKS
-+ zlog_info("LSA: unlock(lsa = %p, lsa->data = %p, lsa->id = %s, lsa->lock = %d, lsa->discard = %s)", lsa, (lsa)?lsa->data:"undef", (lsa && (lsa->data))?inet_ntoa(lsa->data->id):"undef", lsa->lock, (CHECK_FLAG (lsa->flags, OSPF_LSA_DISCARD))?"true":"false");
-+#endif /* DEBUG_LSA_LOCKS */
-+
-+#ifndef ORGINAL_BEHAVIOR
-+ if (lsa->lock == 0)
-+ {
-+ int discard = (CHECK_FLAG (lsa->flags, OSPF_LSA_DISCARD));
-+
-+ zlog_info("LSA: unlock(lsa = %p, lsa->data = %p, lsa->id = %s, lsa->lock = %d, lsa->discard = %s): reference count error! unlocking not locked resource... ignoring!", lsa, lsa->data, (lsa->data)?inet_ntoa(lsa->data->id):"undef", lsa->lock, discard);
-+ return;
-+ }
-+#endif /* ! ORGINAL_BEHAVIOR */
-+
- lsa->lock--;
-
- assert (lsa->lock >= 0);
diff --git a/net-misc/quagga/files/patches-0.97.1/01_all_unbreak-ospfapi.patch.bz2 b/net-misc/quagga/files/patches-0.97.1/01_all_unbreak-ospfapi.patch.bz2
deleted file mode 100644
index 0f42e0e01c35..000000000000
--- a/net-misc/quagga/files/patches-0.97.1/01_all_unbreak-ospfapi.patch.bz2
+++ /dev/null
Binary files differ
diff --git a/net-misc/quagga/files/patches-0.97.1/02_all_unbreak-ospfapi.patch.bz2 b/net-misc/quagga/files/patches-0.97.1/02_all_unbreak-ospfapi.patch.bz2
deleted file mode 100644
index d55fa88f2a10..000000000000
--- a/net-misc/quagga/files/patches-0.97.1/02_all_unbreak-ospfapi.patch.bz2
+++ /dev/null
Binary files differ