Changeset 532


Ignore:
Timestamp:
02/04/09 23:04:23 (3 years ago)
Author:
mooneer
Message:

Made Boehm GC check stricter (you must explicitly pass --with-gc=no to disable garbage collection now). Kite's original reference count system is no longer recommended for normal use.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • interpreter/trunk/configure.ac

    r524 r532  
    4444   [AS_HELP_STRING([--with-gc@<:@=DIR|yes|no|check@:>@], 
    4545                   [enable Boehm garbage collection library 
    46                    @<:@default=check@:>@])], 
     46                   @<:@default=yes@:>@])], 
    4747   [], 
    48    [with_gc="check"]) 
     48   [with_gc="yes"]) 
    4949 
    5050AS_IF([test "x$with_gc" != "xno"], 
     
    6767   if test "x$with_gc" != "xcheck" 
    6868   then 
    69      AC_MSG_ERROR([Could not find gc/gc.h. Required for Boehm GC support.]) 
     69     AC_MSG_ERROR([Could not find gc/gc.h. Required for Boehm GC support. Pass --with-gc=no to disable. (not recommended)]) 
    7070   fi 
    7171 ]) 
Note: See TracChangeset for help on using the changeset viewer.