1 // $FreeBSD$ 2 //===-- Config.h -----------------------------------------------*- C++ -*-===// 3 // 4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 5 // See https://llvm.org/LICENSE.txt for license information. 6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 // 8 //===----------------------------------------------------------------------===// 9 10 #ifndef LLDB_HOST_CONFIG_H 11 #define LLDB_HOST_CONFIG_H 12 13 #define LLDB_EDITLINE_USE_WCHAR 1 14 15 #define LLDB_HAVE_EL_RFUNC_T 1 16 17 #define HAVE_SYS_EVENT_H 1 18 19 #define HAVE_PPOLL 1 20 21 #define HAVE_PTSNAME_R 1 22 23 #define HAVE_PROCESS_VM_READV 0 24 25 #define HAVE_NR_PROCESS_VM_READV 0 26 27 #ifndef HAVE_LIBCOMPRESSION 28 /* #undef HAVE_LIBCOMPRESSION */ 29 #endif 30 31 #define LLDB_ENABLE_POSIX 1 32 33 #define LLDB_ENABLE_TERMIOS 1 34 35 #define LLDB_ENABLE_LZMA 1 36 37 #define LLDB_ENABLE_CURSES 1 38 39 #define CURSES_HAVE_NCURSES_CURSES_H 0 40 41 #define LLDB_ENABLE_LIBEDIT 1 42 43 #define LLDB_ENABLE_LIBXML2 0 44 45 #define LLDB_ENABLE_LUA 1 46 47 #define LLDB_ENABLE_PYTHON 0 48 49 #define LLDB_ENABLE_FBSDVMCORE 0 50 51 #define LLDB_EMBED_PYTHON_HOME 0 52 53 /* #undef LLDB_PYTHON_HOME */ 54 55 #define LLDB_LIBDIR_SUFFIX "" 56 57 #endif // #ifndef LLDB_HOST_CONFIG_H 58