gc: default is always nitgc
authorJean Privat <jean@pryen.org>
Fri, 15 Jun 2012 17:15:57 +0000 (13:15 -0400)
committerJean Privat <jean@pryen.org>
Fri, 15 Jun 2012 17:18:43 +0000 (13:18 -0400)
Signed-off-by: Jean Privat <jean@pryen.org>

clib/nit_main.c

index 239eb82..800a76b 100644 (file)
@@ -82,13 +82,8 @@ void exithandler(int s) {
 void initialize_gc_option(void) {
        /* GC default */
        char *def;
-#ifdef WITH_LIBGC
-       gc_option = boehm;
-       def = "boehm";
-#else
        gc_option = nitgc;
        def = "nitgc";
-#endif
 
        /* Process GC runtime selection */
        if (getenv("NIT_GC_OPTION") != NULL) {