From 787d3585548ed7dac06597780a7d0adb64482d41 Mon Sep 17 00:00:00 2001 From: Marco Costalba Date: Mon, 3 Nov 2008 22:05:41 +0100 Subject: [PATCH] Fix compile under Ubuntu 64bit Some missing includes. Signed-off-by: Marco Costalba --- src/history.cpp | 1 + src/material.cpp | 1 + src/pawns.cpp | 1 + src/square.h | 1 + src/tt.cpp | 1 + 5 files changed, 5 insertions(+), 0 deletions(-) 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" -- 1.7.0.4