+Subject: command time not found when using shell
+
+ * scripts/common/check/check_make_unix.sh: use bash and remove exec usage
+
+Author: Olivier Sallou <olivier.sallou@irisa.fr>
+Last-Update: 2011-05-03
--- a/scripts/common/check/check_make_unix.sh
+++ b/scripts/common/check/check_make_unix.sh
@@ -503,8 +503,8 @@
---- a/src/corelib/ncbi_stack_linux.cpp
-+++ b/src/corelib/ncbi_stack_linux.cpp
-@@ -32,6 +32,7 @@
- #include <ncbi_pch.hpp>
- #include <execinfo.h>
- #if NCBI_COMPILER_VERSION >= 310
-+# include<stddef.h>
- # include <cxxabi.h>
- #endif
- #include <vector>
+Subject: GCC 4.6 compilation error due to missing def
+
+ * include/corelib/ncbistre.hpp: Add stddef definition required by gcc4.6
+
+Author: Olivier Sallou <olivier.sallou@irisa.fr>
+Last-Update: 2011-05-03
+--- a/include/corelib/ncbistre.hpp
++++ b/include/corelib/ncbistre.hpp
+@@ -116,6 +116,7 @@
+ #define SEEKOFF PUBSEEKOFF
+
+ #include <string>
++#include <stddef.h>
+
+
+ // (BEGIN_NCBI_SCOPE must be followed by END_NCBI_SCOPE later in this file)