1
1

hwloc: misc.h: Fix hwloc_strncasecmp() build under strict flags on BSD

strncasecmp() needs <strings.h>

Thanks to Pavan Balaji for reporting the failure.

(cherry picked from commit open-mpi/hwloc@37439c4801)
Signed-off-by: Jeff Squyres <jsquyres@cisco.com>
Этот коммит содержится в:
Brice Goglin 2014-09-04 17:02:37 +02:00 коммит произвёл Jeff Squyres
родитель 6b0011f138
Коммит 6764413aa3

Просмотреть файл

@ -15,6 +15,12 @@
#include <private/autogen/config.h>
#include <ctype.h>
#ifdef HWLOC_HAVE_DECL_STRNCASECMP
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif
#endif
/* Compile-time assertion */
#define HWLOC_BUILD_ASSERT(condition) ((void)sizeof(char[1 - 2*!(condition)]))