diff options
author | Justin Lecher <jlec@gentoo.org> | 2012-07-04 09:31:27 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2012-07-04 09:31:27 +0000 |
commit | 7c720ba0d5bd5344d0cfac17c621fdd9e913bd64 (patch) | |
tree | a8cb19e043355a3511129a7acf426e0bcd3fa13f /sci-biology/plink/files | |
parent | Forgot to remove commenting after testing. (diff) | |
download | gentoo-2-7c720ba0d5bd5344d0cfac17c621fdd9e913bd64.tar.gz gentoo-2-7c720ba0d5bd5344d0cfac17c621fdd9e913bd64.tar.bz2 gentoo-2-7c720ba0d5bd5344d0cfac17c621fdd9e913bd64.zip |
sci-biology/plink: Moved to EAPI=4, add fix for building with gcc-4.7, #424709
(Portage version: 2.2.0_alpha115/cvs/Linux x86_64)
Diffstat (limited to 'sci-biology/plink/files')
-rw-r--r-- | sci-biology/plink/files/plink-1.07-gcc47.patch | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/sci-biology/plink/files/plink-1.07-gcc47.patch b/sci-biology/plink/files/plink-1.07-gcc47.patch new file mode 100644 index 000000000000..6c289edae153 --- /dev/null +++ b/sci-biology/plink/files/plink-1.07-gcc47.patch @@ -0,0 +1,64 @@ + elf.cpp | 6 +++--- + idhelp.cpp | 8 ++++---- + sets.cpp | 8 ++++---- + 3 files changed, 11 insertions(+), 11 deletions(-) + +diff --git a/elf.cpp b/elf.cpp +index ec2ed3d..a57665f 100644 +--- a/elf.cpp ++++ b/elf.cpp +@@ -1175,10 +1175,10 @@ void Plink::elfBaseline() + << setw(8) << gcnt << " " + << setw(8) << (double)cnt / (double)gcnt << "\n"; + +- map<int,int>::iterator i = chr_cnt.begin(); +- while ( i != chr_cnt.end() ) ++ map<int,int>::iterator j = chr_cnt.begin(); ++ while ( j != chr_cnt.end() ) + { +- int c = i->first; ++ int c = j->first; + int x = chr_cnt.find( c )->second; + int y = chr_gcnt.find( c )->second; + +diff --git a/idhelp.cpp b/idhelp.cpp +index a9244fa..8882097 100644 +--- a/idhelp.cpp ++++ b/idhelp.cpp +@@ -772,12 +772,12 @@ void IDHelper::idHelp() + for (int j = 0 ; j < jointField.size(); j++ ) + { + set<IDField*> & jf = jointField[j]; +- set<IDField*>::iterator j = jf.begin(); ++ set<IDField*>::iterator k = jf.begin(); + PP->printLOG(" { "); +- while ( j != jf.end() ) ++ while ( k != jf.end() ) + { +- PP->printLOG( (*j)->name + " " ); +- ++j; ++ PP->printLOG( (*k)->name + " " ); ++ ++k; + } + PP->printLOG(" }"); + } +diff --git a/sets.cpp b/sets.cpp +index 3a8f92f..66787e8 100644 +--- a/sets.cpp ++++ b/sets.cpp +@@ -768,11 +768,11 @@ vector_t Set::profileTestScore() + ////////////////////////////////////////////// + // Reset original missing status + +- vector<Individual*>::iterator i = PP->sample.begin(); +- while ( i != PP->sample.end() ) ++ vector<Individual*>::iterator j = PP->sample.begin(); ++ while ( j != PP->sample.end() ) + { +- (*i)->missing = (*i)->flag; +- ++i; ++ (*j)->missing = (*j)->flag; ++ ++j; + } + + //////////////////////////////////////////////// |