1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-09 13:22:24 +03:00

0031799: Configuration - compilation errors with Android NDK r12

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.
This commit is contained in:
kgv
2020-09-27 19:51:56 +03:00
committed by abv
parent e2409d34b5
commit 42624fdc75
2 changed files with 9 additions and 4 deletions

View File

@@ -16,12 +16,13 @@
//! 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