diff options
| author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-12-12 10:00:45 -0800 |
|---|---|---|
| committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-12-13 10:00:59 -0800 |
| commit | 3011d55f725e280fe29a49bd70a2e0157587b17a (patch) | |
| tree | 1a95b4a52cbc617a0cf5f84a2c35912366efa1a0 /lldb/source/Plugins/Process/Utility | |
| parent | 40d72134fd341c79397ec1a57cc6dfd11fd1acc5 (diff) | |
| download | bcm5719-llvm-3011d55f725e280fe29a49bd70a2e0157587b17a.tar.gz bcm5719-llvm-3011d55f725e280fe29a49bd70a2e0157587b17a.zip | |
[lldb/Host] Use cmakedefine01 for LLDB_ENABLE_POSIX
Rename LLDB_DISABLE_POSIX to LLDB_ENABLE_POSIX and use cmakedefine01 for
consistency.
Diffstat (limited to 'lldb/source/Plugins/Process/Utility')
| -rw-r--r-- | lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.cpp b/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.cpp index 2ccbeacc496..ee939b01d35 100644 --- a/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.cpp +++ b/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.cpp @@ -20,7 +20,7 @@ #include "lldb/Target/Target.h" #include "lldb/Target/ThreadPlanCallFunction.h" -#ifndef LLDB_DISABLE_POSIX +#if LLDB_ENABLE_POSIX #include <sys/mman.h> #else // define them |

