diff options
author | Rene Ladan <rene@FreeBSD.org> | 2018-06-07 00:34:18 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2018-06-07 00:34:18 +0000 |
commit | 7b4e2fac310c869ae726093c8477595ea2ba05f7 (patch) | |
tree | 22d4c67d5416102a354a83bb192b7cc40174dd2c /biology/ssaha/files/patch-SSAHAMain.cpp | |
parent | x11/deforaos-desktop: remove expired dependency on deforaos-mixer (diff) |
Remove expired ports:
2018-06-06 biology/ssaha: Broken for more than 6 months
2018-06-06 biology/crux: Broken for more than 6 months
2018-06-06 biology/ariadne: Broken for more than 6 months
2018-06-06 cad/sceptre: Broken for more than 6 months
2018-06-06 cad/cider: Broken for more than 6 months
2018-06-06 chinese/scim-array: Broken for more than 6 months
2018-06-06 chinese/xpdf: Broken for more than 6 months
2018-06-06 chinese/telnet: Broken for more than 6 months
2018-06-06 comms/java-commapi-freebsd: Depends on BROKEN and expiring comms/java-commapi
2018-06-06 comms/soundmodem: Broken for more than 6 months
2018-06-06 comms/jsdr: Broken for more than 6 months
2018-06-06 comms/java-commapi: Broken for more than 6 months
2018-06-06 converters/pdf2djvu: Broken for more than 6 months
2018-06-06 databases/rdb: Broken for more than 6 months
2018-06-06 databases/animenfo-client: Broken for more than 6 months
2018-06-06 databases/ruby-mysql: Broken for more than 6 months
2018-06-06 databases/riak: Broken for more than 6 months
2018-06-06 databases/animenfo-client-gtk: Broken for more than 6 months
2018-06-06 databases/rdfdb: Broken for more than 6 months
2018-06-06 databases/riak2: Broken for more than 6 months
2018-06-06 devel/subversion-static: Broken for more than 6 months
2018-06-06 japanese/xgate: Broken for more than 6 months
2018-06-06 textproc/opengrm-ngram: Broken for more than 6 months
2018-06-06 textproc/ocaml-tyxml: Depends on BROKEN and expiring www/ocaml-net
2018-06-06 www/ocaml-net: Broken for more than 6 months
2018-06-06 audio/linux-genpuid: Broken for more than 6 months
2018-06-06 x11/enventor: Broken for more than 6 months
2018-06-06 audio/xmms-timidity: Broken for more than 6 months
2018-06-06 audio/kaudiocreator: Broken for more than 6 months
2018-06-06 audio/jxm: Depends on BROKEN and expiring comms/java-commapi
2018-06-06 audio/deforaos-mixer: Broken for more than 6 months
2018-06-06 audio/gkrellmss2: Broken for more than 6 months
2018-06-06 audio/ogg2mp3: Broken for more than 6 months
2018-06-06 audio/abcmidi: Broken for more than 6 months
2018-06-06 benchmarks/netpipe: Broken for more than 6 months
2018-06-06 biology/plink: Broken for more than 6 months
Notes
Notes:
svn path=/head/; revision=471892
Diffstat (limited to 'biology/ssaha/files/patch-SSAHAMain.cpp')
-rw-r--r-- | biology/ssaha/files/patch-SSAHAMain.cpp | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/biology/ssaha/files/patch-SSAHAMain.cpp b/biology/ssaha/files/patch-SSAHAMain.cpp deleted file mode 100644 index e0e078386263..000000000000 --- a/biology/ssaha/files/patch-SSAHAMain.cpp +++ /dev/null @@ -1,57 +0,0 @@ ---- ./Global/SSAHAMain.cpp.orig 2004-03-01 14:12:38.000000000 -0300 -+++ ./Global/SSAHAMain.cpp 2008-06-12 15:39:31.000000000 -0300 -@@ -86,7 +86,8 @@ - Copyright (C) 2004 by Genome Research Limited\n\ - This software is released under the terms of version 2 of the GNU General\n\ - Public Licence, as published by the Free Software Foundation.\n\ --This is SSAHA Version 3.2, released 1st March 2004.\n\n"; -+This is SSAHA Version 3.2, released 1st March 2004,\n\ -+patched 26 January 2006.\n\n"; - - Timer timeStamp; - -@@ -623,7 +624,7 @@ - { - pHashTable = new HashTablePacked( cerr, queryParams.saveName ); - if ( ( queryParams.wordLength <= 0 ) -- || ( queryParams.wordLength*gBaseBits > ( 8*sizeof(Word)) -1 ) ) -+ || ( (size_t) queryParams.wordLength*gBaseBits > ( 8*sizeof(Word)) -1 ) ) - { - cerr << "Warning: word length (" << queryParams.wordLength - << ") outside valid range (0 to " -@@ -656,7 +657,7 @@ - } // ~if - - if ( ( queryParams.wordLength <= 0 ) -- || ( queryParams.wordLength*gResidueBits > ( 8*sizeof(Word)) -1 ) ) -+ || ( (size_t) queryParams.wordLength*gResidueBits > ( 8*sizeof(Word)) -1 ) ) - { - cerr << "Warning: word length (" << queryParams.wordLength - << ") outside valid range (0 to " -@@ -782,7 +783,7 @@ - cerr << "Info: would expect " << expectedNumHits - << " hits per word for a random database of this size." << endl; - -- queryParams.maxStore=1+(int)(expectedNumHits*queryParams.maxStore); -+ queryParams.maxStore=(int)(expectedNumHits*queryParams.maxStore); - - cerr << "Info: will ignore hits on words that occur more than " - << queryParams.maxStore << " times in the database." << endl; -@@ -964,7 +965,7 @@ delete pQueryMode; - - } // ~else - -- assert( pAligner!=false); -+ assert(pAligner!=NULL); - - // ownership of *pAligner passes to *pPrintTask - pPrintTask = new MatchTaskAlign( *pQuery, *pSubjectSource, pAligner, -@@ -1151,7 +1152,7 @@ - } // ~if - dirent* dirEntry; - string entryName; -- while( dirEntry = readdir(pDir) ) -+ while( 0 != ( dirEntry = readdir(pDir) ) ) - { - entryName = (string) dirEntry->d_name; - if ((entryName == ".")||(entryName=="..")) continue; |