1 // $FreeBSD$ 2 //===-- Config.h -----------------------------------------------*- C++ -*-===// 3 // 4 // The LLVM Compiler Infrastructure 5 // 6 // This file is distributed under the University of Illinois Open Source 7 // License. See LICENSE.TXT for details. 8 // 9 //===----------------------------------------------------------------------===// 10 11 #ifndef LLDB_HOST_CONFIG_H 12 #define LLDB_HOST_CONFIG_H 13 14 #define LLDB_CONFIG_TERMIOS_SUPPORTED 15 16 /* #undef LLDB_DISABLE_POSIX */ 17 18 #define HAVE_SYS_EVENT_H 1 19 20 #define HAVE_PPOLL 1 21 22 #define HAVE_SIGACTION 1 23 24 #define HAVE_PROCESS_VM_READV 0 25 26 #define HAVE_NR_PROCESS_VM_READV 0 27 28 /* #undef HAVE_LIBCOMPRESSION */ 29 30 #endif // #ifndef LLDB_HOST_CONFIG_H 31