mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
COMP: Added missing include for malloc on QNX.
This commit is contained in:
@@ -138,6 +138,11 @@ Modify cmCommandArgumentParser.cxx:
|
||||
cmCommandArgumentError(yyscanner, x)
|
||||
#define yyGetParser (cmCommandArgument_yyget_extra(yyscanner))
|
||||
|
||||
/* Make sure malloc and free are available on QNX. */
|
||||
#ifdef __QNX__
|
||||
# include <malloc.h>
|
||||
#endif
|
||||
|
||||
/* Make sure the parser uses standard memory allocation. The default
|
||||
generated parser malloc/free declarations do not work on all
|
||||
platforms. */
|
||||
|
||||
@@ -38,6 +38,11 @@ Modify cmCommandArgumentParser.cxx:
|
||||
cmCommandArgumentError(yyscanner, x)
|
||||
#define yyGetParser (cmCommandArgument_yyget_extra(yyscanner))
|
||||
|
||||
/* Make sure malloc and free are available on QNX. */
|
||||
#ifdef __QNX__
|
||||
# include <malloc.h>
|
||||
#endif
|
||||
|
||||
/* Make sure the parser uses standard memory allocation. The default
|
||||
generated parser malloc/free declarations do not work on all
|
||||
platforms. */
|
||||
|
||||
Reference in New Issue
Block a user