diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-06-06 14:11:25 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-06-06 14:11:25 +0000 |
commit | b4c59217e0201961fb8dc2814f81437f316b9b35 (patch) | |
tree | 3c9d683597daa84f36c93159898c8fed81449380 /games-fps/avp/files | |
parent | Missed a die line in perl-module.eclass, added new dies to perl-app.eclass (diff) | |
download | historical-b4c59217e0201961fb8dc2814f81437f316b9b35.tar.gz historical-b4c59217e0201961fb8dc2814f81437f316b9b35.tar.bz2 historical-b4c59217e0201961fb8dc2814f81437f316b9b35.zip |
Moved from games-fps/avp-cvs to games-fps/avp.
Diffstat (limited to 'games-fps/avp/files')
-rw-r--r-- | games-fps/avp/files/avp-20031110-gcc34.patch | 46 | ||||
-rw-r--r-- | games-fps/avp/files/digest-avp-20031110 | 3 |
2 files changed, 49 insertions, 0 deletions
diff --git a/games-fps/avp/files/avp-20031110-gcc34.patch b/games-fps/avp/files/avp-20031110-gcc34.patch new file mode 100644 index 000000000000..f8f2bd32cf44 --- /dev/null +++ b/games-fps/avp/files/avp-20031110-gcc34.patch @@ -0,0 +1,46 @@ +--- win95/hash_tem.hpp.original 2006-03-09 23:04:02.000000000 +0100 ++++ win95/hash_tem.hpp 2006-03-09 23:28:20.000000000 +0100 +@@ -432,24 +432,25 @@ + // remove the current entry pointed to, advancing to the next + void Remove() + { +- if (!nEntriesRemaining) ++ if (!ConstIterator::nEntriesRemaining) + { + HT_FAIL("HTT: Tried to Remove() via an iterator which was Done()"); + } +- Node * oldP = *nodePP; +- *nodePP = oldP->nextP; ++ Node * oldP = *ConstIterator::nodePP; ++ *ConstIterator::nodePP = oldP->nextP; + delete oldP; +- if (!*nodePP) ++ if (!*ConstIterator::nodePP) + { + do + { +- ++ chainPP; +- -- nChainsRemaining; ++ ++ ConstIterator::chainPP; ++ -- ConstIterator::nChainsRemaining; + } +- while (nChainsRemaining && !*chainPP); +- nodePP = chainPP; ++ while (ConstIterator::nChainsRemaining ++ && !*ConstIterator::chainPP); ++ ConstIterator::nodePP = ConstIterator::chainPP; + } +- -- nEntriesRemaining; ++ -- ConstIterator::nEntriesRemaining; + -- *tableNEntriesP; + } + +@@ -702,7 +703,7 @@ + + + // for(HashTable<TYPE>::ConstIterator it(ht); !it.Done(); it.Next() ) +- for (_base_HashTable::ConstIterator it(ht); !it.Done(); it.Next() ) ++ for (typename _base_HashTable::ConstIterator it(ht); !it.Done(); it.Next() ) + { + AddRegardless( it.Get() ); + } diff --git a/games-fps/avp/files/digest-avp-20031110 b/games-fps/avp/files/digest-avp-20031110 new file mode 100644 index 000000000000..71be5f882071 --- /dev/null +++ b/games-fps/avp/files/digest-avp-20031110 @@ -0,0 +1,3 @@ +MD5 b615009c05baf5ad53cc1a2ae7eb587c avp-20031110.tar.bz2 1502637 +RMD160 b8b90f6608d9a824eb88da83f6f0cf086f62fd40 avp-20031110.tar.bz2 1502637 +SHA256 d4f14eae1ea9e81fd170ecf05ae7e281b5b1fdc95ac9787eed03357c76dc77a7 avp-20031110.tar.bz2 1502637 |