gcc3. While here, update to version 2.12 (previous version was erraneously named 2.1, when it should have been 2.10) which is the only distfile available on the ftp site. Changelog seems to say: - Fix bug on long-orfs.cc to avoid occasional array out-of-bounds error (detected on Mac OS X).
25 lines
549 B
Text
25 lines
549 B
Text
$NetBSD: patch-ab,v 1.1 2003/10/07 18:20:16 jschauma Exp $
|
|
|
|
--- delcher.h.orig 2003-10-07 14:07:00.000000000 -0400
|
|
+++ delcher.h 2003-10-07 14:07:35.000000000 -0400
|
|
@@ -18,9 +18,9 @@
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
-#include <iostream.h>
|
|
-#include <iomanip.h>
|
|
-#include <fstream.h>
|
|
+#include <iostream>
|
|
+#include <iomanip>
|
|
+#include <fstream>
|
|
#include <math.h>
|
|
#include <string.h>
|
|
#include <ctype.h>
|
|
@@ -31,6 +31,7 @@
|
|
#include <errno.h>
|
|
#include <unistd.h>
|
|
|
|
+using namespace std;
|
|
|
|
#define TRUE 1
|
|
#define FALSE 0
|