summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2013-02-27 15:20:05 -0800
committerYukihiro "Matz" Matsumoto <[email protected]>2013-02-27 15:20:05 -0800
commit97287b7e3d47616952a0a39a3db88ca2d0bb6107 (patch)
treed9079af1f71bd05dc1e61851672595c54673c9f3 /include
parent204b8f787d47926a2727b0cbca81d1542855ae47 (diff)
parentf2d62c7c9f12caaf56e5bd8d20138e5ea7cec061 (diff)
downloadmruby-97287b7e3d47616952a0a39a3db88ca2d0bb6107.tar.gz
mruby-97287b7e3d47616952a0a39a3db88ca2d0bb6107.zip
Merge pull request #889 from mattn/pluggable_time
Pluggable Time class
Diffstat (limited to 'include')
-rw-r--r--include/mrbconf.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/mrbconf.h b/include/mrbconf.h
index 472bd12cf..092e02d11 100644
--- a/include/mrbconf.h
+++ b/include/mrbconf.h
@@ -46,7 +46,6 @@
/* -DDISABLE_XXXX to drop following features */
//#define DISABLE_SPRINTF /* Kernel.sprintf method */
//#define DISABLE_MATH /* Math functions */
-//#define DISABLE_TIME /* Time class */
//#define DISABLE_STRUCT /* Struct class */
//#define DISABLE_STDIO /* use of stdio */
@@ -83,18 +82,12 @@
typedef short mrb_sym;
/* define ENABLE_XXXX from DISABLE_XXX */
-#ifndef DISABLE_REGEXP
-#define ENABLE_REGEXP
-#endif
#ifndef DISABLE_SPRINTF
#define ENABLE_SPRINTF
#endif
#ifndef DISABLE_MATH
#define ENABLE_MATH
#endif
-#ifndef DISABLE_TIME
-#define ENABLE_TIME
-#endif
#ifndef DISABLE_STRUCT
#define ENABLE_STRUCT
#endif