# HG changeset patch # User adrian # Date 1028147201 0 # Node ID d90decf21e7195d61b946b8f906556a8a2fa4bb2 # Parent c891972d07fad302488b72ee21482ed028a591b3 [xemacs-hg @ 2002-07-31 20:26:40 by adrian] [A] [PATCH] xemacs-21.5: Add USE_KKCC to nt/xemacs.mak -------------------- ChangeLog entries follow: -------------------- nt/ChangeLog addition: 2002-07-31 Adrian Aichner * xemacs.mak (USE_KKCC): New. Default it to 1 to get it noticed. Add line to Installation file, when it's enabled. Add period to line add to Installation for USE_CRTDLL. diff -r c891972d07fa -r d90decf21e71 nt/ChangeLog --- a/nt/ChangeLog Wed Jul 31 15:27:24 2002 +0000 +++ b/nt/ChangeLog Wed Jul 31 20:26:41 2002 +0000 @@ -1,3 +1,9 @@ +2002-07-31 Adrian Aichner + + * xemacs.mak (USE_KKCC): New. Default it to 1 to get it noticed. + Add line to Installation file, when it's enabled. Add period to + line add to Installation for USE_CRTDLL. + 2002-07-27 Steve Youngs * XEmacs 21.5.8 "broccoli" is released. diff -r c891972d07fa -r d90decf21e71 nt/xemacs.mak --- a/nt/xemacs.mak Wed Jul 31 15:27:24 2002 +0000 +++ b/nt/xemacs.mak Wed Jul 31 20:26:41 2002 +0000 @@ -208,6 +208,9 @@ !if !defined(USE_MINITAR) USE_MINITAR=$(HAVE_ZLIB) !endif +!if !defined(USE_KKCC) +USE_KKCC=1 +!endif # A little bit of adhockery. Default to use system malloc and # DLL version of the C runtime library when using portable @@ -1531,7 +1534,7 @@ Using system malloc. !endif !if $(USE_CRTDLL) - Using DLL version of C runtime library + Using DLL version of C runtime library. !endif !if $(ERROR_CHECK_ALL) Compiling in extra internal error-checking. XEmacs will be slow! @@ -1545,6 +1548,9 @@ !if $(QUICK_BUILD) Disabling non-essential build actions. Use with care! !endif +!if $(USE_KKCC) + Using new experimental GC algorithms. +!endif <