Added missing <stdarg.h> include (va_list) to Standard_CString.hxx.
Do not include <search.h> in delabella.cpp when using gcc 4.9 from Android NDK.
#include <assert.h>
#include <stdio.h>
-#include <search.h>
+
+// gcc 4.9 for Android doesn't have search.h
+#if !defined(__ANDROID__) || defined(__clang__)
+ #include <search.h>
+#endif
#if (defined(__APPLE__))
#include <malloc/malloc.h>
//! Functions working with plain C strings
#ifndef _Standard_CString_HeaderFile
-# define _Standard_CString_HeaderFile
+#define _Standard_CString_HeaderFile
#include <Standard_Macro.hxx>
-# include <string.h>
-# include <stdio.h>
+#include <stdarg.h>
+#include <stdio.h>
+#include <string.h>
# if defined(_MSC_VER) && ! defined(strcasecmp)
# define strcasecmp _stricmp