7726714dff
r339999, resolve conflicts, and bump version numbers. PR: 230240,230355
39 lines
830 B
C++
39 lines
830 B
C++
// $FreeBSD$
|
|
//===-- Config.h -----------------------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLDB_HOST_CONFIG_H
|
|
#define LLDB_HOST_CONFIG_H
|
|
|
|
#define LLDB_CONFIG_TERMIOS_SUPPORTED
|
|
|
|
#define LLDB_EDITLINE_USE_WCHAR 0
|
|
|
|
#define LLDB_HAVE_EL_RFUNC_T 0
|
|
|
|
/* #undef LLDB_DISABLE_POSIX */
|
|
|
|
#define LLDB_LIBDIR_SUFFIX ""
|
|
|
|
#define HAVE_SYS_EVENT_H 1
|
|
|
|
#define HAVE_PPOLL 1
|
|
|
|
#define HAVE_SIGACTION 1
|
|
|
|
#define HAVE_PROCESS_VM_READV 0
|
|
|
|
#define HAVE_NR_PROCESS_VM_READV 0
|
|
|
|
#ifndef HAVE_LIBCOMPRESSION
|
|
/* #undef HAVE_LIBCOMPRESSION */
|
|
#endif
|
|
|
|
#endif // #ifndef LLDB_HOST_CONFIG_H
|