build: Fix compile failure in backtrace_posix.cc

Fix compile failure in backtrace_posix.c on AIX

Fixes: https://github.com/nodejs/node/issues/7539
PR-URL: https://github.com/nodejs/node/pull/7544
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Brian White <mscdex@mscdex.net>
This commit is contained in:
Michael Dawson 2016-07-05 10:48:40 -04:00
parent cd4dbf3348
commit 95a3c8f94d

View File

@ -4,7 +4,7 @@
#include <features.h>
#endif
#if defined(__linux__) && !defined(__GLIBC__)
#if defined(__linux__) && !defined(__GLIBC__) || defined(_AIX)
#define HAVE_EXECINFO_H 0
#else
#define HAVE_EXECINFO_H 1