diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-11-21 23:59:32 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-11-21 23:59:32 +0900 |
| commit | 049e749c8b12c79a7439ce0fdb402896807eb42b (patch) | |
| tree | f463c5ac01e1a32a6dea5b6868e2794f6b0479ef /mrbgems/mruby-bin-debugger/tools/mrdb/mrdbconf.h | |
| parent | 544784effd251656f7b406bc94880e1ef75af7b5 (diff) | |
| parent | 3d056d084aedd2a1a3a36e33b1cef4e90d282813 (diff) | |
| download | mruby-049e749c8b12c79a7439ce0fdb402896807eb42b.tar.gz mruby-049e749c8b12c79a7439ce0fdb402896807eb42b.zip | |
Merge pull request #5166 from shuujii/rename-MRB_ENABLE-DISABLE_-to-MRB_USE-NO_
Rename `MRB_{ENABLE,DISABLE}_` to `MRB_{USE,NO}_`; close #5163
Diffstat (limited to 'mrbgems/mruby-bin-debugger/tools/mrdb/mrdbconf.h')
| -rw-r--r-- | mrbgems/mruby-bin-debugger/tools/mrdb/mrdbconf.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mrbgems/mruby-bin-debugger/tools/mrdb/mrdbconf.h b/mrbgems/mruby-bin-debugger/tools/mrdb/mrdbconf.h index e2c4c7200..0cc36c8b7 100644 --- a/mrbgems/mruby-bin-debugger/tools/mrdb/mrdbconf.h +++ b/mrbgems/mruby-bin-debugger/tools/mrdb/mrdbconf.h @@ -6,12 +6,12 @@ #ifndef MRDBCONF_H #define MRDBCONF_H -#ifndef MRB_ENABLE_DEBUG_HOOK -# error mruby-bin-debugger need 'MRB_ENABLE_DEBUG_HOOK' in your build configuration +#ifndef MRB_USE_DEBUG_HOOK +# error mruby-bin-debugger need 'MRB_USE_DEBUG_HOOK' in your build configuration #endif -#ifdef MRB_DISABLE_STDIO -# error mruby-bin-debugger conflicts 'MRB_DISABLE_STDIO' in your build configuration +#ifdef MRB_NO_STDIO +# error mruby-bin-debugger conflicts 'MRB_NO_STDIO' in your build configuration #endif /* configuration options: */ |
