diff options
| author | Yukihiro Matsumoto <[email protected]> | 2012-06-15 15:34:49 +0900 |
|---|---|---|
| committer | Yukihiro Matsumoto <[email protected]> | 2012-06-15 15:34:49 +0900 |
| commit | 76f7aecff326666543d9bac31fe13e0cab8e05f4 (patch) | |
| tree | e9bf296dc74535f334852e9cb5763005e2747ddb /src/init.c | |
| parent | 4aa9111f9a107b3b0c6f1c13d933cbcd39f2a787 (diff) | |
| download | mruby-76f7aecff326666543d9bac31fe13e0cab8e05f4.tar.gz mruby-76f7aecff326666543d9bac31fe13e0cab8e05f4.zip | |
use ENABLE/DISABLE instead of INCLUDE for configuration macro names
Diffstat (limited to 'src/init.c')
| -rw-r--r-- | src/init.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/init.c b/src/init.c index 351874b32..a515ee880 100644 --- a/src/init.c +++ b/src/init.c @@ -51,15 +51,15 @@ mrb_init_core(mrb_state *mrb) mrb_init_range(mrb); mrb_init_struct(mrb); mrb_init_gc(mrb); -#ifdef INCLUDE_REGEXP +#ifdef ENABLE_REGEXP mrb_init_regexp(mrb); #endif mrb_init_exception(mrb); mrb_init_print(mrb); -#ifdef INCLUDE_TIME +#ifdef ENABLE_TIME mrb_init_time(mrb); #endif -#ifdef INCLUDE_MATH +#ifdef ENABLE_MATH mrb_init_math(mrb); #endif |
