From: Marco Costalba Date: Mon, 3 Nov 2008 21:05:41 +0000 (+0100) Subject: Fix compile under Ubuntu 64bit X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=787d3585548ed7dac06597780a7d0adb64482d41;p=fairystockfish.git Fix compile under Ubuntu 64bit Some missing includes. Signed-off-by: Marco Costalba --- diff --git a/src/history.cpp b/src/history.cpp index d563298..52e3621 100644 --- a/src/history.cpp +++ b/src/history.cpp @@ -23,6 +23,7 @@ //// #include +#include #include "history.h" diff --git a/src/material.cpp b/src/material.cpp index 9f0fb9e..595eee2 100644 --- a/src/material.cpp +++ b/src/material.cpp @@ -23,6 +23,7 @@ //// #include +#include #include #include "material.h" diff --git a/src/pawns.cpp b/src/pawns.cpp index 0089c42..6fdd5c1 100644 --- a/src/pawns.cpp +++ b/src/pawns.cpp @@ -23,6 +23,7 @@ //// #include +#include #include "pawns.h" diff --git a/src/square.h b/src/square.h index ff31e86..ed0b289 100644 --- a/src/square.h +++ b/src/square.h @@ -25,6 +25,7 @@ //// Includes //// +#include // for abs() #include #include "color.h" diff --git a/src/tt.cpp b/src/tt.cpp index 4ac685d..97ca23d 100644 --- a/src/tt.cpp +++ b/src/tt.cpp @@ -24,6 +24,7 @@ #include #include +#include #include "tt.h"