common.cpp: Don't always include cxxabi.h

cxxabi.h is not available with LLVM's libcxx
This commit is contained in:
Rosen Penev 2019-12-13 21:50:06 -08:00 committed by Mahmoud Al-Qudsi
parent e5e66ac6d7
commit 9936362599

View file

@ -1,8 +1,11 @@
// Various functions, mostly string utilities, that are used by most parts of fish.
#include "config.h"
#include <ctype.h>
#ifdef HAVE_BACKTRACE_SYMBOLS
#include <cxxabi.h>
#endif
#include <ctype.h>
#include <dlfcn.h>
#include <errno.h>
#include <fcntl.h>