MDEV-8285 compile fails under Mac OS X 10.6.8 due to use of strnlen

#include <m_string.h> where strnlen() is used
This commit is contained in:
Sergei Golubchik 2015-06-14 15:51:34 +02:00
parent e2879ac526
commit 36bf482db1
2 changed files with 2 additions and 1 deletions

View File

@ -11,6 +11,7 @@
/* Include mariaDB header file. */ /* Include mariaDB header file. */
/***********************************************************************/ /***********************************************************************/
#include "my_global.h" #include "my_global.h"
#include "m_string.h"
/***********************************************************************/ /***********************************************************************/
/* Include required application header files */ /* Include required application header files */

View File

@ -26,7 +26,7 @@ SET(STRINGS_SOURCES bchange.c bmove_upp.c ctype-big5.c ctype-bin.c ctype-cp932.c
my_strchr.c strcont.c strappend.c) my_strchr.c strcont.c strappend.c)
IF(NOT HAVE_STRNLEN) IF(NOT HAVE_STRNLEN)
# OSX does not have strnlen # OSX below 10.7 did not have strnlen
SET(STRINGS_SOURCES ${STRINGS_SOURCES} strnlen.c) SET(STRINGS_SOURCES ${STRINGS_SOURCES} strnlen.c)
ENDIF() ENDIF()
# Avoid dependencies on perschema data defined in mysys # Avoid dependencies on perschema data defined in mysys