view nt/ChangeLog @ 2720:6fa9919a9a0b

[xemacs-hg @ 2005-04-08 23:10:01 by crestani] ChangeLog addition: 2005-04-01  Marcus Crestani  <crestani@xemacs.org>         The new allocator.         New configure flag: `MC_ALLOC':         * configure.ac (XE_COMPLEX_ARG_ENABLE): Add `--enable-mc-alloc' as         a new configure flag.         * configure.in (AC_INIT_PARSE_ARGS): Add `--mc-alloc' as a new         configure flag.         * configure.usage: Add description for `mc-alloc'.         DUMP_IN_EXEC:         * Makefile.in.in: Condition the installation of a separate dump         file on !DUMP_ON_EXEC.         * configure.ac (XE_COMPLEX_ARG_ENABLE): Add         `--enable-dump-in-exec' as a new configure flag.         * configure.ac: DUMP_IN_EXEC is define as default for PDUMP but         not default for MC_ALLOC.         * configure.in (AC_INIT_PARSE_ARGS): Add `--dump-in-exec' as a         new configure flag.         * configure.in: DUMP_IN_EXEC is define as default for PDUMP but         not default for MC_ALLOC.         * configure.usage: Add description for `dump-in-exec'. lib-src/ChangeLog addition: 2005-04-01  Marcus Crestani  <crestani@xemacs.org>         The new allocator.         DUMP_IN_EXEC:                  * Makefile.in.in: Only compile insert-data-in-exec if         DUMP_IN_EXEC is defined. lisp/ChangeLog addition: 2005-04-01  Marcus Crestani  <crestani@xemacs.org>         The new allocator.         MEMORY_USAGE_STATS         * diagnose.el: Add new lisp function to pretty print statistics         about the new allocator.         * diagnose.el (show-mc-alloc-memory-usage): New. modules/ChangeLog addition: 2005-04-01  Marcus Crestani  <crestani@xemacs.org>         The new allocator.         Remove Lcrecords:                  * postgresql/postgresql.c (allocate_pgconn): Allocate with new         allocator.         * postgresql/postgresql.c (allocate_pgresult): Allocate PGresult         with new allocator.           * postgresql/postgresql.h (struct Lisp_PGconn): Add         lrecord_header.         * postgresql/postgresql.h (struct Lisp_PGresult): Add         lrecord_header.         * ldap/eldap.c (allocate_ldap): Allocate with new allocator.         * ldap/eldap.h (struct Lisp_LDAP): Add lrecord_header. nt/ChangeLog addition: 2005-04-01  Marcus Crestani  <crestani@xemacs.org>         The new allocator.         New configure flag: `MC_ALLOC':         * config.inc.samp: Add new flag `MC_ALLOC'.         * xemacs.mak: Add flag and configuration output for `MC_ALLOC'.         New files:         * xemacs.dsp: Add source files mc-alloc.c and mc-alloc.h.         * xemacs.mak: Add new object file mc-alloc.obj to dependencies. src/ChangeLog addition: 2005-04-01  Marcus Crestani  <crestani@xemacs.org>         The new allocator.         New configure flag: `MC_ALLOC':         * config.h.in: Add new flag `MC_ALLOC'.         New files:         * Makefile.in.in: Add new object file mc-alloc.o.         * depend: Add new files to dependencies.         * mc-alloc.c: New.         * mc-alloc.h: New.         Running the new allocator from XEmacs:         * alloc.c (deadbeef_memory): Moved to mc-alloc.c.         * emacs.c (main_1): Initialize the new allocator and add         syms_of_mc_alloc.         * symsinit.h: Add syms_of_mc_alloc.         New lrecord allocation and free functions:         * alloc.c (alloc_lrecord): New. Allocates an lrecord, includes         type checking and initializing of the lrecord_header.         * alloc.c (noseeum_alloc_lrecord): Same as above, but increments         the NOSEEUM cons counter.         * alloc.c (free_lrecord): New. Calls the finalizer and frees the         lrecord.         * lrecord.h: Add lrecord allocation prototypes and comments.         Remove old lrecord FROB block allocation:                  * alloc.c (allocate_lisp_storage): Former function to expand         heap. Not needed anymore, remove.         * alloc.c: Completely remove `Fixed-size type macros'         * alloc.c (release_breathing_space): Remove.         * alloc.c (memory_full): Remove release_breathing_space.         * alloc.c (refill_memory_reserve): Remove.         * alloc.c (TYPE_ALLOC_SIZE): Remove.         * alloc.c (DECLARE_FIXED_TYPE_ALLOC): Remove.         * alloc.c (ALLOCATE_FIXED_TYPE_FROM_BLOCK): Remove.         * alloc.c (ALLOCATE_FIXED_TYPE_1): Remove.         * alloc.c (ALLOCATE_FIXED_TYPE): Remove.         * alloc.c (NOSEEUM_ALLOCATE_FIXED_TYPE): Remove.         * alloc.c (struct Lisp_Free): Remove.         * alloc.c (LRECORD_FREE_P): Remove.         * alloc.c (MARK_LRECORD_AS_FREE): Remove.         * alloc.c (MARK_LRECORD_AS_NOT_FREE): Remove.         * alloc.c (PUT_FIXED_TYPE_ON_FREE_LIST): Remove.         * alloc.c (FREE_FIXED_TYPE): Remove.         * alloc.c (FREE_FIXED_TYPE_WHEN_NOT_IN_GC): Remove.         Allocate old lrecords with new allocator:                  * alloc.c: DECLARE_FIXED_TYPE_ALLOC removed for all lrecords         defined in alloc.c.         * alloc.c (Fcons): Allocate with new allocator.         * alloc.c (noseeum_cons): Allocate with new allocator.         * alloc.c (make_float): Allocate with new allocator.         * alloc.c (make_bignum): Allocate with new allocator.         * alloc.c (make_bignum_bg): Allocate with new allocator.         * alloc.c (make_ratio): Allocate with new allocator.         * alloc.c (make_ratio_bg): Allocate with new allocator.         * alloc.c (make_ratio_rt): Allocate with new allocator.         * alloc.c (make_bigfloat): Allocate with new allocator.         * alloc.c (make_bigfloat_bf): Allocate with new allocator.         * alloc.c (make_compiled_function): Allocate with new allocator.         * alloc.c (Fmake_symbol): Allocate with new allocator.         * alloc.c (allocate_extent): Allocate with new allocator.         * alloc.c (allocate_event): Allocate with new allocator.         * alloc.c (make_key_data): Allocate with new allocator.         * alloc.c (make_button_data): Allocate with new allocator.         * alloc.c (make_motion_data): Allocate with new allocator.         * alloc.c (make_process_data): Allocate with new allocator.         * alloc.c (make_timeout_data): Allocate with new allocator.         * alloc.c (make_magic_data): Allocate with new allocator.         * alloc.c (make_magic_eval_data): Allocate with new allocator.         * alloc.c (make_eval_data): Allocate with new allocator.         * alloc.c (make_misc_user_data): Allocate with new allocator.         * alloc.c (Fmake_marker): Allocate with new allocator.         * alloc.c (noseeum_make_marker): Allocate with new allocator.         * alloc.c (make_uninit_string): Allocate with new allocator.         * alloc.c (resize_string): Allocate with new allocator.         * alloc.c (make_string_nocopy): Allocate with new allocator.         Garbage Collection:         * alloc.c (GC_CHECK_NOT_FREE): Remove obsolete assertions.         * alloc.c (SWEEP_FIXED_TYPE_BLOCK): Remove.         * alloc.c (SWEEP_FIXED_TYPE_BLOCK_1): Remove.         * alloc.c (sweep_conses): Remove.         * alloc.c (free_cons): Use new allocator to free.         * alloc.c (sweep_compiled_functions): Remove.         * alloc.c (sweep_floats): Remove.         * alloc.c (sweep_bignums): Remove.         * alloc.c (sweep_ratios): Remove.         * alloc.c (sweep_bigfloats): Remove.         * alloc.c (sweep_symbols): Remove.         * alloc.c (sweep_extents): Remove.         * alloc.c (sweep_events): Remove.         * alloc.c (sweep_key_data): Remove.         * alloc.c (free_key_data): Use new allocator to free.         * alloc.c (sweep_button_data): Remove.         * alloc.c (free_button_data): Use new allocator to free.         * alloc.c (sweep_motion_data): Remove.         * alloc.c (free_motion_data): Use new allocator to free.         * alloc.c (sweep_process_data): Remove.         * alloc.c (free_process_data): Use new allocator to free.         * alloc.c (sweep_timeout_data): Remove.         * alloc.c (free_timeout_data): Use new allocator to free.         * alloc.c (sweep_magic_data): Remove.         * alloc.c (free_magic_data): Use new allocator to free.         * alloc.c (sweep_magic_eval_data): Remove.         * alloc.c (free_magic_eval_data): Use new allocator to free.         * alloc.c (sweep_eval_data): Remove.         * alloc.c (free_eval_data): Use new allocator to free.         * alloc.c (sweep_misc_user_data): Remove.         * alloc.c (free_misc_user_data): Use new allocator to free.         * alloc.c (sweep_markers): Remove.         * alloc.c (free_marker): Use new allocator to free.         * alloc.c (garbage_collect_1): Remove release_breathing_space.         * alloc.c (gc_sweep): Remove all the old lcrecord and lrecord         related stuff. Sweeping now works like this: compact string         chars, finalize, sweep.         * alloc.c (common_init_alloc_early): Remove old lrecord         initializations, remove breathing_space.         * emacs.c (Fdump_emacs): Remove release_breathing_space.         * lisp.h: Remove prototype for release_breathing_space.         * lisp.h: Adjust the special cons mark makros.         Lrecord Finalizer:         * alloc.c: Add finalizer to lrecord definition.         * alloc.c (finalize_string): Add finalizer for string.         * bytecode.c: Add finalizer to lrecord definition.         * bytecode.c (finalize_compiled_function): Add finalizer for         compiled function.         * marker.c: Add finalizer to lrecord definition.         * marker.c (finalize_marker): Add finalizer for marker.         These changes build the interface to mc-alloc:         * lrecord.h (MC_ALLOC_CALL_FINALIZER): Tell mc-alloc how to         finalize lrecords.         * lrecord.h (MC_ALLOC_CALL_FINALIZER_FOR_DISKSAVE): Tell         mc-alloc how to finalize for disksave.         Unify lrecords and lcrecords:         * lisp.h (struct Lisp_String): Adjust string union hack to         new lrecord header.         * lrecord.h: Adjust comments.         * lrecord.h (struct lrecord_header): The new lrecord header         includes type, lisp-readonly, free, and uid.         * lrecord.h (set_lheader_implementation): Adjust to new         lrecord_header.         * lrecord.h (struct lrecord_implementation): The field basic_p         for indication of an old lrecord is not needed anymore, remove.         * lrecord.h (MAKE_LRECORD_IMPLEMENTATION): Remove basic_p.         * lrecord.h (MAKE_EXTERNAL_LRECORD_IMPLEMENTATION): Remove         basic_p.         * lrecord.h (copy_sized_lrecord): Remove distinction between         old lrecords and lcrecords.         * lrecord.h (copy_lrecord): Remove distinction between old         lrecords and lcrecords.         * lrecord.h (zero_sized_lrecord): Remove distinction between         old lrecords and lcrecords.         * lrecord.h (zero_lrecord): Remove distinction between old         lrecords and lcrecords.         Remove lcrecords and lcrecord lists:         * alloc.c (basic_alloc_lcrecord): Not needed anymore, remove.         * alloc.c (very_old_free_lcrecord): Not needed anymore, remove.         * alloc.c (copy_lisp_object): No more distinction between         lrecords and lcrecords.         * alloc.c (all_lcrecords): Not needed anymore, remove.         * alloc.c (make_vector_internal): Allocate as lrecord.         * alloc.c (make_bit_vector_internal): Allocate as lrecord.         * alloc.c: Completely remove `lcrecord lists'.         * alloc.c (free_description): Remove.         * alloc.c (lcrecord_list_description): Remove.         * alloc.c (mark_lcrecord_list): Remove.         * alloc.c (make_lcrecord_list): Remove.         * alloc.c (alloc_managed_lcrecord): Remove.         * alloc.c (free_managed_lcrecord): Remove.         * alloc.c (alloc_automanaged_lcrecord): Remove.         * alloc.c (free_lcrecord): Remove.         * alloc.c (lcrecord_stats): Remove.         * alloc.c (tick_lcrecord_stats): Remove.         * alloc.c (disksave_object_finalization_1): Add call to         mc_finalize_for_disksave. Remove the lcrecord way to visit all         objects.         * alloc.c (kkcc_marking): Remove XD_FLAG_FREE_LISP_OBJECT         * alloc.c (sweep_lcrecords_1): Remove.         * alloc.c (common_init_alloc_early): Remove everything related         to lcrecords, remove old lrecord initializations,         * alloc.c (init_lcrecord_lists): Not needed anymore, remove.         * alloc.c (reinit_alloc_early): Remove everything related to         lcrecords.         * alloc.c (init_alloc_once_early): Remove everything related to         lcrecords.         * buffer.c (allocate_buffer): Allocate as lrecord.         * buffer.c (nuke_all_buffer_slots): Use lrecord functions.         * buffer.c (common_init_complex_vars_of_buffer): Allocate as         lrecord.         * buffer.h (struct buffer): Add lrecord_header.         * casetab.c (allocate_case_table): Allocate as lrecord.         * casetab.h (struct Lisp_Case_Table): Add lrecord_header.         * charset.h (struct Lisp_Charset): Add lrecord_header.         * chartab.c (fill_char_table): Use lrecord functions.         * chartab.c (Fmake_char_table): Allocate as lrecord.         * chartab.c (make_char_table_entry): Allocate as lrecord.         * chartab.c (copy_char_table_entry): Allocate as lrecord.         * chartab.c (Fcopy_char_table): Allocate as lrecord.         * chartab.c (put_char_table): Use lrecord functions.         * chartab.h (struct Lisp_Char_Table_Entry): Add lrecord_header.         * chartab.h (struct Lisp_Char_Table): Add lrecord_header.         * console-impl.h (struct console): Add lrecord_header.         * console-msw-impl.h (struct Lisp_Devmode): Add lrecord_header.         * console-msw-impl.h (struct mswindows_dialog_id): Add         lrecord_header.         * console.c (allocate_console): Allocate as lrecord.         * console.c (nuke_all_console_slots): Use lrecord functions.         * console.c (common_init_complex_vars_of_console): Allocate as         lrecord.         * data.c (make_weak_list): Allocate as lrecord.         * data.c (make_weak_box): Allocate as lrecord.         * data.c (make_ephemeron): Allocate as lrecord.         * database.c (struct Lisp_Database): Add lrecord_header.         * database.c (allocate_database): Allocate as lrecord.         * device-impl.h (struct device): Add lrecord_header.         * device-msw.c (allocate_devmode): Allocate as lrecord.         * device.c (nuke_all_device_slots): Use lrecord functions.         * device.c (allocate_device): Allocate as lrecord.         * dialog-msw.c (handle_question_dialog_box): Allocate as lrecord.         * elhash.c (struct Lisp_Hash_Table): Add lrecord_header.         * elhash.c (make_general_lisp_hash_table): Allocate as lrecord.         * elhash.c (Fcopy_hash_table): Allocate as lrecord.         * event-stream.c: Lcrecord lists Vcommand_builder_free_list and         Vtimeout_free_list are no longer needed. Remove.         * event-stream.c (allocate_command_builder): Allocate as lrecord.         * event-stream.c (free_command_builder): Use lrecord functions.         * event-stream.c (event_stream_generate_wakeup): Allocate as         lrecord.         * event-stream.c (event_stream_resignal_wakeup): Use lrecord         functions.         * event-stream.c (event_stream_disable_wakeup): Use lrecord         functions.         * event-stream.c (reinit_vars_of_event_stream): Lcrecord lists         remove.         * events.h (struct Lisp_Timeout): Add lrecord_header.         * events.h (struct command_builder): Add lrecord_header.         * extents-impl.h (struct extent_auxiliary): Add lrecord_header.         * extents-impl.h (struct extent_info): Add lrecord_header.         * extents.c (allocate_extent_auxiliary): Allocate as lrecord.         * extents.c (allocate_extent_info): Allocate as lrecord.         * extents.c (copy_extent): Allocate as lrecord.         * faces.c (allocate_face): Allocate as lrecord.         * faces.h (struct Lisp_Face): Add lrecord_header.         * file-coding.c (allocate_coding_system): Allocate as lrecord.         * file-coding.c (Fcopy_coding_system): Allocate as lrecord.         * file-coding.h (struct Lisp_Coding_System): Add lrecord_header.         * fns.c (Ffillarray): Allocate as lrecord.         * frame-impl.h (struct frame): Add lrecord_header.         * frame.c (nuke_all_frame_slots): Use lrecord functions.         * frame.c (allocate_frame_core): Allocate as lrecord.         * glyphs.c (allocate_image_instance): Allocate as lrecord.         * glyphs.c (Fcolorize_image_instance): Allocate as lrecord.         * glyphs.c (allocate_glyph): Allocate as lrecord.         * glyphs.h (struct Lisp_Image_Instance): Add lrecord_header.         * glyphs.h (struct Lisp_Glyph): Add lrecord_header.         * gui.c (allocate_gui_item): Allocate as lrecord.         * gui.h (struct Lisp_Gui_Item): Add lrecord_header.         * keymap.c (struct Lisp_Keymap): Add lrecord_header.         * keymap.c (make_keymap): Allocate as lrecord.         * lisp.h (struct Lisp_Vector): Add lrecord_header.         * lisp.h (struct Lisp_Bit_Vector): Add lrecord_header.         * lisp.h (struct weak_box): Add lrecord_header.         * lisp.h (struct ephemeron): Add lrecord_header.         * lisp.h (struct weak_list): Add lrecord_header.         * lrecord.h (struct lcrecord_header): Not used, remove.         * lrecord.h (struct free_lcrecord_header): Not used, remove.         * lrecord.h (struct lcrecord_list): Not needed anymore, remove.         * lrecord.h (lcrecord_list): Not needed anymore, remove.         * lrecord.h: (enum data_description_entry_flags): Remove         XD_FLAG_FREE_LISP_OBJECT.         * lstream.c: Lrecord list Vlstream_free_list remove.         * lstream.c (Lstream_new): Allocate as lrecord.         * lstream.c (Lstream_delete): Use lrecod functions.         * lstream.c (reinit_vars_of_lstream): Vlstream_free_list         initialization remove.           * lstream.h (struct lstream): Add lrecord_header.         * emacs.c (main_1): Remove lstream initialization.         * mule-charset.c (make_charset): Allocate as lrecord.         * objects-impl.h (struct Lisp_Color_Instance): Add         lrecord_header.         * objects-impl.h (struct Lisp_Font_Instance): Add lrecord_header.         * objects.c (Fmake_color_instance): Allocate as lrecord.         * objects.c (Fmake_font_instance): Allocate as lrecord.         * objects.c (reinit_vars_of_objects): Allocate as lrecord.         * opaque.c: Lcreord list Vopaque_ptr_list remove.         * opaque.c (make_opaque): Allocate as lrecord.         * opaque.c (make_opaque_ptr): Allocate as lrecord.         * opaque.c (free_opaque_ptr): Use lrecord functions.         * opaque.c (reinit_opaque_early):         * opaque.c (init_opaque_once_early): Vopaque_ptr_list         initialization remove.         * opaque.h (Lisp_Opaque): Add lrecord_header.         * opaque.h (Lisp_Opaque_Ptr): Add lrecord_header.         * emacs.c (main_1): Remove opaque variable initialization.         * print.c (default_object_printer): Use new lrecord_header.         * print.c (print_internal): Use new lrecord_header.         * print.c (debug_p4): Use new lrecord_header.         * process.c (make_process_internal): Allocate as lrecord.         * procimpl.h (struct Lisp_Process): Add lrecord_header.         * rangetab.c (Fmake_range_table): Allocate as lrecord.         * rangetab.c (Fcopy_range_table): Allocate as lrecord.         * rangetab.h (struct Lisp_Range_Table): Add lrecord_header.         * scrollbar.c (create_scrollbar_instance): Allocate as lrecord.         * scrollbar.h (struct scrollbar_instance): Add lrecord_header.         * specifier.c (make_specifier_internal): Allocate as lrecord.         * specifier.h (struct Lisp_Specifier): Add lrecord_header.         * symbols.c:         * symbols.c (Fmake_variable_buffer_local): Allocate as lrecord.         * symbols.c (Fdontusethis_set_symbol_value_handler): Allocate         as lrecord.         * symbols.c (Fdefvaralias): Allocate as lrecord.         * symeval.h (struct symbol_value_magic): Add lrecord_header.         * toolbar.c (update_toolbar_button): Allocate as lrecord.         * toolbar.h (struct toolbar_button): Add lrecord_header.         * tooltalk.c (struct Lisp_Tooltalk_Message): Add lrecord_header.         * tooltalk.c (make_tooltalk_message): Allocate as lrecord.         * tooltalk.c (struct Lisp_Tooltalk_Pattern): Add lrecord_header.         * tooltalk.c (make_tooltalk_pattern): Allocate as lrecord.         * ui-gtk.c (allocate_ffi_data): Allocate as lrecord.         * ui-gtk.c (allocate_emacs_gtk_object_data): Allocate as lrecord.         * ui-gtk.c (allocate_emacs_gtk_boxed_data): Allocate as lrecord.         * ui-gtk.h (structs): Add lrecord_header.         * window-impl.h (struct window): Add lrecord_header.         * window-impl.h (struct window_mirror): Add lrecord_header.         * window.c (allocate_window): Allocate as lrecord.         * window.c (new_window_mirror): Allocate as lrecord.         * window.c (make_dummy_parent): Allocate as lrecord.         MEMORY_USAGE_STATS         * alloc.c (fixed_type_block_overhead): Not used anymore, remove.         * buffer.c (compute_buffer_usage): Get storage size from new         allocator.         * marker.c (compute_buffer_marker_usage): Get storage size from         new allocator.         * mule-charset.c (compute_charset_usage): Get storage size from         new allocator.         * scrollbar-gtk.c (gtk_compute_scrollbar_instance_usage): Get         storage size from new allocator.         * scrollbar-msw.c (mswindows_compute_scrollbar_instance_usage):         Get storage size from new allocator.         * scrollbar-x.c (x_compute_scrollbar_instance_usage): Get         storage size from new allocator.         * scrollbar.c (compute_scrollbar_instance_usage): Get storage         size from new allocator.         * unicode.c (compute_from_unicode_table_size_1): Get storage         size from new allocator.         * unicode.c (compute_to_unicode_table_size_1): Get storage size         from new allocator.         * window.c (compute_window_mirror_usage): Get storage size from         new allocator.         * window.c (compute_window_usage): Get storage size from new         allocator.         MC_ALLOC_TYPE_STATS:         * alloc.c (alloc_lrecord): Bump lrecord count.         * alloc.c (noseeum_alloc_lrecord): Bump lrecord count.         * alloc.c (struct lrecord_stats): Storage for counts.         * alloc.c (init_lrecord_stats): Zero statistics.         * alloc.c (inc_lrecord_stats): Increase the statistic.         * alloc.c (dec_lrecord_stats): Decrease the statistic.         * alloc.c (gc_plist_hack): Used to print the information.         * alloc.c (Fgarbage_collect): Return the collected information.         * mc-alloc.c (remove_cell): Decrease lrecord count.         * mc-alloc.h: Set flag MC_ALLOC_TYPE_STATS.         * emacs.c (main_1): Init lrecord statistics.         * lrecord.h: Add prototypes for *_lrecord_stats.         Strings:         * alloc.c (Fmake_string): Initialize ascii_begin to zero.         * alloc.c (gc_count_num_short_string_in_use): Remove.         * alloc.c (gc_count_string_total_size): Remove.         * alloc.c (gc_count_short_string_total_size): Remove.         * alloc.c (debug_string_purity): Remove.         * alloc.c (debug_string_purity_print): Remove.         * alloc.c (sweep_strings): Remove.                  Remove static C-readonly Lisp objects:         * alloc.c (c_readonly): Not needed anymore, remove.         * alloc.c (GC_CHECK_LHEADER_INVARIANTS): Remove some obsolete         lheader invariants assertions.         * buffer.c (DEFVAR_BUFFER_LOCAL_1): Allocate dynamically.         * console.c (DEFVAR_CONSOLE_LOCAL_1): Allocate dynamically.         * gpmevent.c: Indirection via MC_ALLOC_Freceive_gpm_event.         * gpmevent.c (Fgpm_enable): Allocate dynamically.         * gpmevent.c (syms_of_gpmevent): Allocate dynamically.         * lisp.h (C_READONLY): Not needed anymore, remove.         * lisp.h (DEFUN): Allocate dynamically.         * lrecord.h (C_READONLY_RECORD_HEADER_P): Not needed anymore,         remove.         * lrecord.h (SET_C_READONLY_RECORD_HEADER): Not needed anymore,         remove.         * symbols.c (guts_of_unbound_marker):         * symeval.h (defsubr): Allocate dynamically.         * symeval.h (DEFSUBR_MACRO): Allocate dynamically.         * symeval.h (DEFVAR_ SYMVAL_FWD): Allocate dynamically.         * tests.c (TESTS_DEFSUBR): Allocate dynamically.         Definition of mcpro:         * lisp.h: Add mcpro prototypes.         * alloc.c (common_init_alloc_early): Add initialization for         mcpros.         * alloc.c (mcpro_description_1): New.         * alloc.c (mcpro_description): New.         * alloc.c (mcpros_description_1): New.         * alloc.c (mcpros_description): New.         * alloc.c (mcpro_one_name_description_1): New.         * alloc.c (mcpro_one_name_description): New.         * alloc.c (mcpro_names_description_1): New.         * alloc.c (mcpro_names_description): New.         * alloc.c (mcpros): New.         * alloc.c (mcpro_names): New.         * alloc.c (mcpro_1): New.         * alloc.c (mc_pro): New.         * alloc.c (garbage_collect_1): Add mcpros to root set.         Usage of mcpro:         * alloc.c (make_string_nocopy): Add string to root set.         * symbols.c (init_symbols_once_early): Add Qunbound to root set.         Changes to the Portable Dumper:                  * alloc.c (FREE_OR_REALLOC_BEGIN): Since dumped objects can be         freed with the new allocator, remove assertion for !DUMPEDP.         * dumper.c: Adjust comments, increase PDUMP_HASHSIZE.         * dumper.c (pdump_make_hash): Shift address only 2 bytes, to         avoid collisions.         * dumper.c (pdump_objects_unmark): No more mark bits within         the object, remove.         * dumper.c (mc_addr_elt): New. Element data structure for mc         hash table.         * dumper.c (pdump_mc_hash): New hash table: `lookup table'.         * dumper.c (pdump_get_mc_addr): New. Lookup for hash table.         * dumper.c (pdump_get_indirect_mc_addr): New. Lookup for         convertibles.         * dumper.c (pdump_put_mc_addr): New. Putter for hash table.         * dumper.c (pdump_dump_mc_data): New. Writes the table for         relocation at load time to the dump file.         * dumper.c (pdump_scan_lisp_objects_by_alignment): New.         Visits all dumped Lisp objects.         * dumper.c (pdump_scan_non_lisp_objects_by_alignment): New.         Visits all other dumped objects.         * dumper.c (pdump_reloc_one_mc): New. Updates all pointers         of an object by using the hash table pdump_mc_hash.         * dumper.c (pdump_reloc_one): Replaced by pdump_reloc_one_mc.         * dumper.c (pdump): Change the structure of the dump file, add         the mc post dump relocation table to dump file.         * dumper.c (pdump_load_finish): Hand all dumped objects to the         new allocator and use the mc post dump relocation table for         relocating the dumped objects at dump file load time, free not         longer used data structures.         * dumper.c (pdump_load): Free the dump file.         * dumper.h: Remove pdump_objects_unmark.         * lrecord.h (DUMPEDP): Dumped objects can be freed, remove.              DUMP_IN_EXEC:         * Makefile.in.in: Linking for and with dump in executable only if         DUMP_IN_EXEC is defined.         * config.h.in: Add new flag `DUMP_IN_EXEC'         * emacs.c: Condition dump-data.h on DUMP_IN_EXEC.         * emacs.c (main_1): Flag `-si' only works if dump image is         written into executable.         Miscellanious         * lrecord.h (enum lrecord_type): Added numbers to all types,         very handy for debugging.         * xemacs.def.in.in: Add mc-alloc functions to make them visible         to the modules.
author crestani
date Fri, 08 Apr 2005 23:11:35 +0000
parents c86fcce8b14b
children ac63ab256048
line wrap: on
line source

2005-04-01  Marcus Crestani  <crestani@xemacs.org>

	The new allocator.

	New configure flag: `MC_ALLOC':

	* config.inc.samp: Add new flag `MC_ALLOC'.
	* xemacs.mak: Add flag and configuration output for `MC_ALLOC'.

	New files:

	* xemacs.dsp: Add source files mc-alloc.c and mc-alloc.h.
	* xemacs.mak: Add new object file mc-alloc.obj to dependencies.

2005-03-11  Stephen J. Turnbull  <stephen@xemacs.org>

	* XEmacs 21.5.20 "cilantro" is released.

2005-02-22  Adrian Aichner  <adrian@xemacs.org>

	* xemacs.mak (install): Don't copy BUGS, which has been removed.

2005-02-18  Stephen J. Turnbull  <stephen@xemacs.org>

	* XEmacs 21.5.19 "chives" is released.

2005-02-03  Ben Wing  <ben@xemacs.org>

	* config.inc.samp (COMPFACE_DIR):
	Change version to 1.5.1 in accordance with FTP site.

2005-01-31  Ben Wing  <ben@xemacs.org>

	* xemacs.mak (install):
	Also copy BUGS, README, COPYING and Installation.

2005-01-27  Ben Wing  <ben@xemacs.org>

	* xemacs.mak ({$(MANDIR)}.texi{$(INFODIR)}.info):
	Use filename only when calling makeinfo, or it chokes on index
	generation.
	
	* xemacs.mak (TEMACS_COMMON_LFLAGS):
	* xemacs.mak (  $(XEMACS_LFLAGS) -section):
	Generate separate .pdb and .map files for temacs/xemacs; may
	make profiling possible.

2005-01-24  Ben Wing  <ben@xemacs.org>

	* config.inc.samp:
	* config.inc.samp (PNG_DIR):
	Declare OPTIONAL_LIBRARY_DIR as root of library directories.
	Redo all graphics library defaults to mirror the versions and
	directories in the current binary aux distribution on xemacs
	web site.  Enable TIFF and COMPFACE by default since you can
	now compile with them and binary libs are provided.
	
	* xemacs.mak:
	* xemacs.mak (INCLUDES):
	Put our own directories first in case of conflict (e.g. config.h
	in compface).
	
	* xemacs.mak ($(BLDLIB_SRC)/minitar.exe):
	* xemacs.mak (LIB_SRC_TOOLS):
	Use MSVCRT to avoid link problems.

2004-11-07  Ben Wing  <ben@xemacs.org>

	* xemacs.mak (INTERNALS_SRCS):
	index.texi is deleted from internals/.

2004-10-22  Stephen J. Turnbull  <stephen@xemacs.org>

	* XEmacs 21.5.18 "chestnut" is released.

2004-09-13  Jerry James  <james@xemacs.org>

	* xemacs.dsp: Remove callproc.c as a source file.

2004-06-01  Adrian Aichner  <adrian@xemacs.org>

	* xemacs.mak: Don't echo DEL command.  Use COPYCMD everywhere.
	Remove /r switch from COPY and COPYDIR, as environment variable
	COPYCMD takes care of this.
	* xemacs.mak (COPYCMD): New.  Used to initialize environment
	variable by same name.
	* xemacs.mak (TEMACS_CPP_FLAGS_NO_CFLAGS): Handle
	xemacs_extra_name (CVS date stamp).

2004-03-22  Stephen J. Turnbull  <stephen@xemacs.org>

	* XEmacs 21.5.17 "chayote" is released.

2003-11-06  Adrian Aichner  <adrian@xemacs.org>

	* minitar.c (Usage): Change return type to void.
	* minitar.c (main): Fix inconsistent indentation, use return
	instead of exit to fix compiler warning.

2003-10-27  Jerry James  <james@xemacs.org>

	* README: Update library versions.  Delete irrelevant text.
	* config.inc.samp: Ditto.

2003-10-15  Jerry James  <james@xemacs.org>

	* xemacs.mak (TEMACS_OBJS): Add emodules.obj, which always has
	content now.

2003-09-26  Steve Youngs  <youngs@xemacs.org>

	* XEmacs 21.5.16 "celeriac" is released.

2003-09-13  Adrian Aichner  <adrian@xemacs.org>

	* xemacs.mak (TEMACS_BATCH_PACKAGES): Removed.
	* xemacs.mak (check-temacs): Reverting to run with -no-packages
	since it would cause package lisp to shadow core lisp (as happened
	with unicode.el).

2003-09-03  Steve Youngs  <youngs@xemacs.org>

	* XEmacs 21.5.15 "celery" is released.

2003-08-31  Adrian Aichner  <adrian@xemacs.org>

	* xemacs.mak (makeinfo-test): Moved after variable initialization
	to make test actually work.
	* xemacs.mak (TEMACS_BATCH_PACKAGES): New.
	* xemacs.mak (check-temacs): Use TEMACS_BATCH_PACKAGES to enable
	regression tests requiring packages.

2003-06-15  Adrian Aichner  <adrian@xemacs.org>

	* minitar.c (main): Handle 0 size files correctly.

2003-06-01  Steve Youngs  <youngs@xemacs.org>

	* XEmacs 21.5.14 "cassava" is released.

2003-05-10  Steve Youngs  <youngs@xemacs.org>

	* XEmacs 21.5.13 "cauliflower" is released.

2003-04-24  Steve Youngs  <youngs@xemacs.org>

	* XEmacs 21.5.12 "carrot" is released.

2003-03-30  Adrian Aichner  <adrian@xemacs.org>

	* xemacs.mak (install): PROBLEMS is actually in $(SRCROOT).

2003-03-26  Adrian Aichner  <adrian@xemacs.org>

	* xemacs.mak (install): Copy $(BLDLIB_SRC)\PROBLEMS, now that
	nt\PROBLEMS is gone (part of ..\PROBLEMS now).

2003-03-22  Adrian Aichner  <adrian@xemacs.org>

	* xemacs.mak (installation): Restore version convention in
	generated Installation file.

2003-03-09  Ben Wing  <ben@xemacs.org>

	* config.inc.samp (COMPFACE_DIR):
	Note that relative directories are a no-no in BUILD_DIR and
	SOURCE_DIR.  Use paths relative to $(MAKEROOT) instead.

2003-03-06  Ben Wing  <ben@xemacs.org>

	* xemacs.mak (INFO): New.
	* xemacs.mak (PATH_DEFINES):
	Add override for info/ as well when separate source/build dirs.
	
	* xemacs.mak (dump_temacs):
	* xemacs.mak (all):
	* xemacs.mak (TEMACS_DUMP_DEP):
	* xemacs.mak (update-elc): New.
	* xemacs.mak (docfile):
	* xemacs.mak (update-elc-2):
	* xemacs.mak (load-shadows):
	Order sections in main build process and add comments.  Add
	additional dependencies to try and prevent later steps from
	happening when failures in earlier steps have occurred.

2003-03-01  Ben Wing  <ben@xemacs.org>

	* PROBLEMS: Delete.

	* config.inc.samp (USE_FASTCALL):
	* config.inc.samp (HAVE_VC6): Removed.
	* config.inc.samp (DEBUG_XEMACS):
	* config.inc.samp (SUPPORT_EDIT_AND_CONTINUE): New.
	* xemacs.mak (DEBUG_XEMACS):
	* xemacs.mak (HAVE_VC6): Removed.
	* xemacs.mak (SUPPORT_EDIT_AND_CONTINUE): New.
	* xemacs.mak (CCV):
	* xemacs.mak (LIB_SRC_CFLAGS): New.
	* xemacs.mak (ETAGS_DEPS):
	* xemacs.mak (OS):
	* xemacs.mak (TEMACS_LFLAGS):
	Eliminate HAVE_VC6, use SUPPORT_EDIT_AND_CONTINUE in its place.
	No incremental linking unless SUPPORT_EDIT_AND_CONTINUE, since it
	can cause nasty crashes in pdump.  Put warnings about this in
	config.inc.samp.  Report the full compile flags used for src
	and lib-src in the Installation output.

2003-02-28  Ben Wing  <ben@xemacs.org>

	* README:
	* README (NOTE): Removed.
	* config.inc.samp (HAVE_MS_WINDOWS):
	* config.inc.samp (HAVE_X_WINDOWS): Removed.
	* config.inc.samp (X11_DIR): Removed.
	* config.inc.samp (COMPFACE_DIR):
	* xemacs.mak (XEMACS): Removed.
	* xemacs.mak (LISP): Removed.
	* xemacs.mak (LIB_SRC): Removed.
	* xemacs.mak (MODULES): Removed.
	* xemacs.mak (NT): Removed.
	* xemacs.mak (OUTDIR): Removed.
	* xemacs.mak (SRC): Removed.
	* xemacs.mak (LWLIB_SRCDIR): Removed.
	* xemacs.mak (MAKEDIRSTRING): Removed.
	* xemacs.mak (XEMACSDIRSTRING): Removed.
	* xemacs.mak (MAKEROOT): New.
	* xemacs.mak (COPYDIR):
	* xemacs.mak (INFODOCK_VERSION_STRING): Removed.
	* xemacs.mak (XEMACS_VERSION_STRING): Removed.
	* xemacs.mak (SEPARATE_BUILD): New.
	* xemacs.mak (SRCROOT): New.
	* xemacs.mak (BLDROOT): New.
	* xemacs.mak (PROGRAM_DEFINES): Removed.
	* xemacs.mak (INSTALL_DIR): Removed.
	* xemacs.mak (ETC): New.
	* xemacs.mak (BLDLIB_SRC): New.
	* xemacs.mak (BLDNT): New.
	* xemacs.mak (BLDSRC): New.
	* xemacs.mak (PACKAGE_PREFIX): Removed.
	* xemacs.mak (PACKAGE_PATH): Removed.
	* xemacs.mak (PATH_PACKAGEPATH): Removed.
	* xemacs.mak (HAVE_X_WINDOWS): Removed.
	* xemacs.mak (USE_CRTDLL):
	* xemacs.mak (CONFIG_ERROR):
	* xemacs.mak (OS): Removed.
	* xemacs.mak (EMACS_CONFIGURATION): Removed.
	* xemacs.mak (STACK_TRACE_EYE_CATCHER): Removed.
	* xemacs.mak (CCV): Removed.
	* xemacs.mak (DEBUG_FLAGS_COMPILE): Removed.
	* xemacs.mak (DEBUG_FLAGS_LINK): Removed.
	* xemacs.mak (DEBUG_DEFINES): Removed.
	* xemacs.mak (BROWSERFLAGS): Removed.
	* xemacs.mak (C_LIBFLAG): Removed.
	* xemacs.mak (LIBC_LIB): Removed.
	* xemacs.mak (OPTFLAGS_FASTCALL): Removed.
	* xemacs.mak (OPTFLAGS_CDECL): Removed.
	* xemacs.mak (PATH_PREFIX): New.
	* xemacs.mak (OPTFLAGS): Removed.
	* xemacs.mak (PROFILE_FLAGS): Removed.
	* xemacs.mak (PATH_DEFINES): New.
	* xemacs.mak (MSW_DEFINES):
	* xemacs.mak (TEMACS_MSW_OBJS): New.
	* xemacs.mak (CPLUSPLUS_COMPILE_FLAGS): Removed.
	* xemacs.mak (CFLAGS_NO_OPT): Removed.
	* xemacs.mak (CFLAGS_NO_LIB): Removed.
	* xemacs.mak (CFLAGS): Removed.
	* xemacs.mak (CFLAGS_CDECL_NO_LIB): Removed.
	* xemacs.mak (CFLAGS_CDECL): Removed.
	* xemacs.mak (X_DEFINES): Removed.
	* xemacs.mak (TEMACS_MULE_OBJS): New.
	* xemacs.mak (X_INCLUDES): Removed.
	* xemacs.mak (X_LIBS): Removed.
	* xemacs.mak (TEMACS_DEBUG_OBJS): New.
	* xemacs.mak (TEMACS_DUMP_OBJS): New.
	* xemacs.mak (TEMACS_ALLOC_OBJS): New.
	* xemacs.mak (XEMACS_INCLUDES): Removed.
	* xemacs.mak (LIB_SRC_DEFINES): Removed.
	* xemacs.mak (INCLUDES):
	* xemacs.mak (DEFINES):
	* xemacs.mak (CONFIG_VALUES): Removed.
	* xemacs.mak (TEMACS_CPP_FLAGS_NO_CFLAGS):
	* xemacs.mak (TEMACS_ENTRYPOINT): Removed.
	* xemacs.mak (TEMACS_DIR): Removed.
	* xemacs.mak (TEMACS): Removed.
	* xemacs.mak (TEMACS_BROWSE): Removed.
	* xemacs.mak (TEMACS_SRC): Removed.
	* xemacs.mak (TEMACS_CPP_CDECL_FLAGS):
	* xemacs.mak (TEMACS_LIBS): Removed.
	* xemacs.mak (TEMACS_OBJS):
	* xemacs.mak (TEMACS_LFLAGS): Removed.
	* xemacs.mak (LINK_DEPENDENCY_ARGS): Removed.
	* xemacs.mak (LINK_STANDARD_LIBRARY_ARGS): Removed.
	* xemacs.mak (ETAGS_DEPS): Removed.
	* xemacs.mak (TEMACS_X_OBJS): Removed.
	* xemacs.mak (LIB_SRC_TOOLS): Removed.
	* xemacs.mak (LASTFILE): Removed.
	* xemacs.mak (LASTFILE_SRC): Removed.
	* xemacs.mak (LASTFILE_FLAGS): Removed.
	* xemacs.mak (LASTFILE_OBJS): Removed.
	* xemacs.mak (LWLIB): Removed.
	* xemacs.mak (LWLIB_FLAGS): Removed.
	* xemacs.mak (LWLIB_OBJS): Removed.
	* xemacs.mak (.SUFFIXES):
	* xemacs.mak (create-list-file): Removed.
	* xemacs.mak (compile-list-file): Removed.
	* xemacs.mak (TEMACS_DUMP_ID_OBJ): Removed.
	* xemacs.mak (PROGNAME): Removed.
	* xemacs.mak (DO_TEMACS): Removed.
	* xemacs.mak (DO_XEMACS): Removed.
	* xemacs.mak (BATCH): Removed.
	* xemacs.mak (BATCH_PACKAGES): Removed.
	* xemacs.mak (TEMACS_BATCH): Removed.
	* xemacs.mak (XEMACS_BATCH): Removed.
	* xemacs.mak (XEMACS_BATCH_PACKAGES): Removed.
	* xemacs.mak (temacs_loadup_args): Removed.
	* xemacs.mak (dump_temacs_args): Removed.
	* xemacs.mak (run_temacs_args): Removed.
	* xemacs.mak (dump_temacs): Removed.
	* xemacs.mak (testdir): Removed.
	* xemacs.mak (batch_test_emacs): Removed.
	* xemacs.mak (check): Removed.
	* xemacs.mak (check-temacs): Removed.
	* xemacs.mak (MANDIR):
	* xemacs.mak (check-features): Removed.
	* xemacs.mak (tagslisp): Removed.
	* xemacs.mak (tags): Removed.
	* xemacs.mak (NEW_USERS_GUIDE_SRCS):
	* xemacs.mak (makeinfo-test):
	* xemacs.mak (installation): New.
	* xemacs.mak (RAW_EXE): New.
	* xemacs.mak (DUMP_TARGET): New.
	* xemacs.mak (all): New.
	* xemacs.mak (TEMACS_DUMP_DEP): New.
	* xemacs.mak (DOC):
	* xemacs.mak (docfile):
	* xemacs.mak (update-elc):
	* xemacs.mak (update-elc-2):
	* xemacs.mak (load-shadows):
	* xemacs.mak (temacs): Removed.
	* xemacs.mak (install):
	* xemacs.mak (versionclean): New.
	* xemacs.mak (distclean):
	* xemacs.mak (realclean):
	* xemacs.mak (extraclean):
	* xemacs.mak (depend):
	* xemacs.mak (unicode-encapsulate):
	-- Major reorganization and cleanup.
	-- Add support for separated build tree and source tree.
	-- Delete all support for X Windows building, since it's
	   totally bit-rotten and will never be fixed up.  Instruct
	   people to use Cygwin if they want such support.

	* make-build-dir:
	New script to create a skeleton build tree for use with
	separated build and source tree compilation.
	
2003-02-20  Ben Wing  <ben@xemacs.org>

	* xemacs.dsp (CFG):
	Add /k to default build.

2003-02-19  Ben Wing  <ben@xemacs.org>

	* xemacs.mak (DO_TEMACS): New.
	* xemacs.mak (DO_XEMACS): New.
	* xemacs.mak (TEMACS_BATCH):
	* xemacs.mak (temacs_loadup_args): New.
	* xemacs.mak (dump_temacs_args): New.
	* xemacs.mak (run_temacs_args): New.
	* xemacs.mak (dump_temacs):
	* xemacs.mak (blddir): Removed.
	* xemacs.mak (temacs_loadup): Removed.
	* xemacs.mak (run_temacs): Removed.
	* xemacs.mak (check):
	* xemacs.mak (check-temacs):
	* xemacs.mak (check-features): New.
	* xemacs.mak (makeinfo-test):
	* xemacs.mak (LOADPATH): Removed.
	* xemacs.mak (update-elc):
	* xemacs.mak (update-elc-2):
	* xemacs.mak (load-shadows): New.
	* xemacs.mak (all):
	* xemacs.mak (OS):
	Add macros DO_TEMACS, DO_XEMACS, and a few others; this macro
	section is now completely in sync with src/Makefile.in.in.  Copy
	check-features, load-shadows, and rebuilding finder-inf.el from
	src/Makefile.in.in.  The main build/dump/recompile process is now
	synchronized with src/Makefile.in.in.  Change `WARNING' to `NOTE'
	and `error checking' to `error-checking' TO avoid tripping
	faux warnings and errors in the VC++ IDE.
	

2003-02-16  Steve Youngs  <youngs@xemacs.org>

	* XEmacs 21.5.11 "cabbage" is released.

2003-02-15  Ben Wing  <ben@xemacs.org>

	* xemacs.mak:
	* xemacs.mak (PROGNAME):
	* xemacs.mak (docfile):
	* xemacs.mak (make-docargs): Removed.
	* xemacs.mak (update-elc):
	* xemacs.mak (update-elc-2): New.
	* xemacs.mak (OS):
	Delete old unused code that checks SATISFIED.
	Move update-elc-2 up to be near update-elc.
	Run update-elc-2 with -no-autoloads to avoid multiple
	autoload-loading problem.

	Don't compute make-docfile args ourselves.  Pass the raw objects
	to make-docfile.el, which does the computation (much faster than
	we could).  Don't delete the DOC file, split the invocation into
	two calls to make-docfile.exe (one direct, one through
	make-docfile.el), etc. In general, all we do is call make-docfile.
	Add proper dependencies for DOC-file rebuilding so it doesn't get
	done when not necessary.  Implement quick-building here: not
	building the DOC file unless it doesn't exist, as the quick-build
	docs say.

2003-02-05  Ben Wing  <ben@xemacs.org>

	* config.inc.samp (GTK_DIR):
	* config.inc.samp (XPM_DIR):
	* config.inc.samp (HAVE_GIF):
	* config.inc.samp (ZLIB_DIR):
	* config.inc.samp (TIFF_DIR):
	* config.inc.samp (JPEG_DIR):
	* config.inc.samp (COMPFACE_DIR):
	* config.inc.samp (USE_PORTABLE_DUMPER):
	* config.inc.samp (USE_KKCC):
	Various fixups.

2002-12-16  Ben Wing  <ben@xemacs.org>

	* README (NOTE):
	* config.inc.samp:
	* config.inc.samp (PACKAGE_PREFIX):
	* config.inc.samp (GTK_DIR):
	* config.inc.samp (COMPFACE_DIR):
	* config.inc.samp (USE_FASTCALL):
	* config.inc.samp (HAVE_VC6): New.
	* config.inc.samp (PROFILE_SUPPORT):
	* config.inc.samp (DEBUG_XEMACS):
	* config.inc.samp (USE_PORTABLE_DUMPER):
	* config.inc.samp (USE_KKCC): New.
	* config.inc.samp (USE_UNION_TYPE): New.
	* xemacs.dsp (CFG):
	* xemacs.mak (HAVE_VC6):
	* xemacs.mak (ERROR_CHECK_ALL): New.
	* xemacs.mak (CPLUSPLUS_COMPILE): New.
	* xemacs.mak (USE_KKCC): New.
	* xemacs.mak (USE_UNION_TYPE): New.
	* xemacs.mak (USE_PORTABLE_DUMPER):
	* xemacs.mak (PROFILE_FLAGS):
	* xemacs.mak (CPLUSPLUS_COMPILE_FLAGS): New.
	* xemacs.mak (DUMPER_DEFINES):
	* xemacs.mak (KKCC_DEFINES): New.
	* xemacs.mak (DEFINES):
	* xemacs.mak (LASTFILE_FLAGS):
	* xemacs.mak (TEMACS_CPP_FLAGS_NO_CFLAGS):
	* xemacs.mak (OS):

	Support C++ compilation, KKCC compilation.  See src/ChangeLog.
	Add stuff about the evilness of USE_UNION_TYPE.

2003-01-04  Steve Youngs  <youngs@xemacs.org>

	* XEmacs 21.5.10 "burdock" is released.

2002-11-27  Ben Wing  <ben@xemacs.org>

	* .cvsignore:
	Windows shit.
	
2002-10-13  Adrian Aichner  <adrian@xemacs.org>

	* xemacs.mak (OS): Remove obsolete quoting of double-quote in the
	Installation file to avoid unnecessary deviations from the UNIX
	version in `describe-installation' and `build-report'.

2002-09-13  Adrian Aichner  <adrian@xemacs.org>

	* xemacs.mak: Suppress confirmation for overwriting files.
	* xemacs.mak (installation): Add support for xemacs_extra_name.

2002-08-30  Steve Youngs  <youngs@xemacs.org>

	* XEmacs 21.5.9 "brussels sprouts" is released.

2002-07-31  Adrian Aichner  <adrian@xemacs.org>

	* 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  <youngs@xemacs.org>

	* XEmacs 21.5.8 "broccoli" is released.

2002-07-08  Stephen J. Turnbull  <stephen@xemacs.org>

	* README: Reference GNU Emacs 21.x.

2002-07-05  Jonathan Harris  <jonathan@xemacs.org>

	* README: Document Visual Studio .NET setup

2002-07-02  Stephen J. Turnbull  <stephen@xemacs.org>

	* XEmacs 21.5.7 "broccoflower" is released.

2002-06-25  Adrian Aichner  <adrian@xemacs.org>

	* xemacs.mak (DEBUG_DEFINES): Initialize to empty for
	DEBUG_XEMACS=0.

2002-06-20  Ben Wing  <ben@xemacs.org>

	* config.inc.samp (OPTIMIZED_BUILD):
	* config.inc.samp (USE_FASTCALL): New.
	* config.inc.samp (PROFILE_SUPPORT): New.
	* config.inc.samp (DEBUG_XEMACS):
	* config.inc.samp (HAVE_VC6): New.
	* config.inc.samp (USE_PORTABLE_DUMPER):
	Clean up, add args to control fastcall (not yet supported!  the
	changes needed are in another ws of mine), profile support, vc6
	support, union-type.
	
	* xemacs.dsp (CFG):
	* xemacs.mak (HAVE_DIALOGS):
	* xemacs.mak (HAVE_MSW_C_DIRED): Removed.
	* xemacs.mak (USE_FASTCALL): New.
	* xemacs.mak (PROFILE_SUPPORT): New.
	* xemacs.mak (HAVE_VC6): New.
	* xemacs.mak (QUICK_BUILD):
	* xemacs.mak (VERBOSECC): New.
	* xemacs.mak (DEPEND): New.
	* xemacs.mak (CONFIG_ERROR):
	* xemacs.mak (CCV):
	* xemacs.mak (DEBUGFLAGS): Removed.
	* xemacs.mak (OPTFLAGS): Removed.
	* xemacs.mak (DEBUG_FLAGS_COMPILE): New.
	* xemacs.mak (DEBUG_FLAGS_LINK): New.
	* xemacs.mak (DEBUG_DEFINES): New.
	* xemacs.mak (BROWSERFLAGS): New.
	* xemacs.mak (LIBC_LIB):
	* xemacs.mak (OPTFLAGS_FASTCALL): New.
	* xemacs.mak (OPTFLAGS_CDECL): New.
	* xemacs.mak (PROFILE_FLAGS): New.
	* xemacs.mak (CFLAGS_NO_OPT): New.
	* xemacs.mak (CFLAGS_CDECL_NO_LIB): New.
	* xemacs.mak (CFLAGS_CDECL): New.
	* xemacs.mak (MSW_LIBS):
	* xemacs.mak (MSW_DEFINES): Removed.
	* xemacs.mak (MSW_C_DIRED_OBJ): Removed.
	* xemacs.mak (MULE_DEFINES):
	* xemacs.mak (DEBUG_FLAGS): Removed.
	* xemacs.mak (LINK_DEPENDENCY_ARGS):
	* xemacs.mak (ETAGS_DEPS):
	* xemacs.mak (LIB_SRC_TOOLS):
	* xemacs.mak (TEMACS_LFLAGS):
	* xemacs.mak (TEMACS_CPP_FLAGS): Removed.
	* xemacs.mak (TEMACS_CPP_FLAGS_NO_CFLAGS): New.
	* xemacs.mak (TEMACS_CPP_CDECL_FLAGS): New.
	* xemacs.mak (TEMACS_MSW_OBJS):
	* xemacs.mak (TEMACS_OBJS):
	* xemacs.mak (.SUFFIXES):
	* xemacs.mak (create-list-file): New.
	* xemacs.mak (compile-list-file): New.
	* xemacs.mak (TEMACS_DUMP_ID_OBJ): New.
	* xemacs.mak (PROGNAME):
	* xemacs.mak (temacs_loadup):
	* xemacs.mak (check):
	* xemacs.mak (check-temacs):
	* xemacs.mak (make-docargs):
	* xemacs.mak (update-elc):
	* xemacs.mak (install):
	* xemacs.mak (mostlyclean):
	* xemacs.mak (versionclean):
	* xemacs.mak (OS):
	Semi-major overhaul.

	Fix bug where dump-id was always getting recomputed, forcing a
	redump even when nothing changed.

	Add support for fastcall.  Support edit-and-continue (on by
	default) with vc6.  Use incremental linking when doing a debug
	compilation.  Add support for profiling.

	Consolidate the various debug flags.

	Partial support for "batch-compiling" -- compiling many files on a
	single invocation of the compiler.  Doesn't seem to help that much
	for me, so it's not finished or enabled by default.

	Remove HAVE_MSW_C_DIRED, we always do.

	Correct some sloppy use of directories.
	
2002-03-29  Jonathan Harris  <jonathan@xemacs.org>

	* xemacs.mak: Define STACK_TRACE_EYE_CATCHER.

2002-05-28  Ben Wing  <ben@xemacs.org>

	* xemacs.mak (CFLAGS_NO_LIB):
	* xemacs.mak (X_DEFINES):
	Add -DSTRICT.

2002-05-23  Ben Wing  <ben@xemacs.org>

	* xemacs.mak (TEMACS_OBJS):
	Add alloca.o.

2002-05-14  Ben Wing  <ben@xemacs.org>

	* xemacs.mak (batch_test_emacs):
	* xemacs.mak (check):
	Run tests with the packages so we don't get errors about
	advice not present, etc.

2002-05-14  Ben Wing  <ben@xemacs.org>

	* xemacs.mak (CONFIG_VALUES):
	* xemacs.mak (LINK_DEPENDENCY_ARGS): New.
	* xemacs.mak (LINK_STANDARD_LIBRARY_ARGS): New.
	* xemacs.mak (ETAGS_DEPS):
	* xemacs.mak (LIB_SRC_TOOLS):
	Increase the stack of etags to 0x800000 (8 MB), same as for XEmacs
	and enough to prevent regex crashes with complex multiline
	regexps. (More specifically, we reach the built-in failure limit before
	crashing the stack.  etags complains, but keeps on processing.)

2002-05-06  Jonathan Harris  <jonathan@xemacs.org>

	* README:
	Remove references to obsolete MSVC5 and NT 3.51 configurations.
	
	* config.inc.samp (HAVE_TIFF): Update PNG version to 1.0.9.
	
	* xemacs.mak (HAVE_MENUBARS): New
	* xemacs.mak (HAVE_SCROLLBARS): New
	* xemacs.mak (MSW_DEFINES):
	* xemacs.mak (MSW_LIBS):
	* xemacs.mak (TEMACS_MSW_OBJS):
	* xemacs.mak (TEMACS_OBJS):
	Make HAVE_MENUBARS and HAVE_SCROLLBARS optional.
	
	* xemacs.mak (LIB_SRC_TOOLS):
	Generate correctly-named debug program databases for lib-src helpers.

	* xemacs-vc50.dsp: Removed.
	* xemacs-vc50.dsw: Removed.

2002-05-05  Ben Wing  <ben@xemacs.org>

	* xemacs.mak (CFLAGS_NO_LIB): New.
	* xemacs.mak (CFLAGS):
	* xemacs.mak (ETAGS_DEPS):
	* xemacs.mak (LIB_SRC_TOOLS):
	Split up CFLAGS into a version without flags specifying the C
	library.  The problem seems to be that minitar depends on zlib,
	which depends specifically on libc.lib, not on any of the other C
	libraries.  Unless you compile with libc.lib, you get errors --
	specifically, no _errno in the other libraries, which must make it
	something other than an int. (#### But this doesn't seem to obtain
	in XEmacs, which also uses zlib, and can be linked with any of the
	C libraries.  Maybe zlib is used differently and doesn't need
	errno, or maybe XEmacs provides an int errno; ... I don't
	understand.

2002-03-26  Vin Shelton  <acs@xemacs.org>

	* xemacs.mak: Added special rule to build winclient.exe.

2002-04-23  Jonathan Harris  <jonathan@xemacs.org>

	* README: Document build for latest versions of zlib & png
	* xpm.mak: Default to using MSVCRT as the C runtime

2002-04-14  Ben Wing  <ben@xemacs.org>

	* config.inc.samp (HAVE_MS_WINDOWS):
	* config.inc.samp (X11_DIR):
	* config.inc.samp (ZLIB_DIR):
	* config.inc.samp (MAKEINFO):
	* config.inc.samp (OPTIMIZED_BUILD): New.
	* config.inc.samp (DEPEND):
	* config.inc.samp (USE_MINIMAL_TAGBITS): Removed.
	* config.inc.samp (USE_INDEXED_LRECORD_IMPLEMENTATION): Removed.
	* config.inc.samp (GUNG_HO): Removed.
	* xemacs.mak (USE_MINITAR):
	* xemacs.mak (USE_MINIMAL_TAGBITS): Removed.
	* xemacs.mak (USE_INDEXED_LRECORD_IMPLEMENTATION): Removed.
	* xemacs.mak (GUNG_HO): Removed.
	* xemacs.mak (CONFIG_ERROR):
	* xemacs.mak (DEBUGFLAGS): New.
	* xemacs.mak (OPT): Removed.
	* xemacs.mak (OPTFLAGS): New.
	* xemacs.mak (CFLAGS):
	* xemacs.mak (QUICK_DEFINES):
	* xemacs.mak (TAGBITS_DEFINES): Removed.
	* xemacs.mak (ERROR_CHECK_DEFINES): New.
	* xemacs.mak (LRECORD_DEFINES): Removed.
	* xemacs.mak (DEFINES):
	* xemacs.mak (TEMACS_OBJS):
	* xemacs.mak (OS):
	Separate out debug and optimize flags.
	Remove all vestiges of USE_MINIMAL_TAGBITS,
	USE_INDEXED_LRECORD_IMPLEMENTATION, and GUNG_HO, since those
	ifdefs have long been removed.
	Make error-checking support actually work.
	Some rearrangement of config.inc.samp to make it more logical.
	Remove callproc.c and ntproc.c from xemacs.mak, no longer used.

	Make pdump the default.

2002-04-13  Jonathan Harris  <jonathan@xemacs.org>

	* README: Document MSVC6 required
	* minitar.c: Fix MSVC compiler warnings
	* minitar.mak: Removed
	* xemacs.mak: Build minitar directly from this makefile
	* xemacs.mak (check-temacs):
	* xemacs.mak (make-docargs):
	* xemacs.mak (update-elc):
	Remove obsolete references to EMACSBOOTSTRAPLOADPATH and
	EMACSBOOTSTRAPMODULEPATH environment variables.

2002-04-05  Stephen J. Turnbull  <stephen@xemacs.org>

	* XEmacs 21.5.6 "bok choi" is released.

2002-03-31  Ben Wing  <ben@xemacs.org>

	* config.inc.samp (DEBUG_XEMACS):
	* xemacs.mak (DEBUG_XEMACS):
	* xemacs.mak (ERROR_CHECK_ALL): New.
	Separate out and add new variable for controlling error-checking.

2002-03-29  Jonathan Harris  <jonathan@xemacs.org>

	* make-nt-depend:
	* xemacs.mak (DEPEND):
	* xemacs.mak (PERL_NEEDS_MORE_QUOTING):
	* config.inc.samp (PERL_NEEDS_MORE_QUOTING):
	Moved perl dependency script out into new make-nt-depend file to
	hopefully finally solve never-ending perl quoting problems.

	* xemacs.mak (TEMACS):
	* xemacs.mak (make-docargs):
	* .cvsignore:
	Generate intermediate files in obj subdirectory, not in nt dir.

2002-03-29  Jonathan Harris  <jonathan@xemacs.org>

	* xemacs.mak: Define STACK_TRACE_EYE_CATCHER.

2002-03-18  Ben Wing  <ben@xemacs.org>

	* config.inc.samp (DEPEND):
	* config.inc.samp (PERL_NEEDS_MORE_QUOTING):
	* xemacs.mak (DEPEND):
	* xemacs.mak (PERL_NEEDS_MORE_QUOTING):
	Deal with never-ending perl quoting problems.

2002-03-16  Ben Wing  <ben@xemacs.org>

	* .cvsignore:
	Those pesky *.tmp files.

2002-03-15  Ben Wing  <ben@xemacs.org>

	* xemacs.mak:
	* xemacs.mak (BATCH):
	* xemacs.mak (XEMACS_BATCH_PACKAGES):
	* xemacs.mak (batch_test_emacs):
	* xemacs.mak (MAKEINFO):
	* xemacs.mak (makeinfo-test):
	Use -no-packages to avoid problems with package files shadowing
	core files (e.g. unicode.el in mule-ucs).

2002-03-12  Ben Wing  <ben@xemacs.org>

	* The Great Mule Merge: placeholder.

2002-03-05  Stephen J. Turnbull  <stephen@xemacs.org>

	* XEmacs 21.5.5 "beets" is released.

2002-01-08  Stephen J. Turnbull  <stephen@xemacs.org>

	* XEmacs 21.5.4 "bamboo" is released.

2001-09-28  Adrian Aichner  <adrian@xemacs.org>

	* xemacs.mak (COPY): Use xcopy /r for NT 4.0 compatibility.
	* xemacs.mak (COPYDIR): Ditto

2001-09-07  Stephen J. Turnbull  <stephen@xemacs.org>

	* XEmacs 21.5.3 "asparagus" is released.

2001-06-24  Ben Wing  <ben@xemacs.org>

	* config.h:
	Turn sign-compare warnings back on.

2001-07-28  Stephen J. Turnbull  <stephen@xemacs.org>

	* XEmacs 21.5.2 "artichoke" is released.

2001-07-26  Stephen J. Turnbull  <stephen@xemacs.org>

	* xemacs.mak (configclean):
	New target.  Convenience for multiplatform builds (need to delete
	the native config.h since it's newer than config.h.in).
	(distclean): Use it.

	* xemacs.mak (DEL):
	Remove error-suppressing "-" from definition.  Use variable in
	shell structured commands.  Prefix "-" to existing uses.
	(DELS, DELSQ):
	Remove definitions, WinME can't hack the switches.
	(distclean):
	Clean subdirectories of $(LISP) explicitly.

	* xemacs.mak:
	Move HAVE_WIDGET and HAVE_TOOLBAR configuration together.

2001-06-12  Stephen J. Turnbull  <stephen@xemacs.org>

	* xemacs.mak (HAVE_ZLIB): New, defaults to HAVE_PNG.
	(USE_MINITAR): Default to HAVE_ZLIB.
	(MSW_LIBS): Add comctl32.lib if HAVE_WIDGETS.
	(mostlyclean, nicenclean, distclean, versionclean): Only one target
	per invocation of $(DEL); don't use unneeded switches (WinME support).

	(TEMACS_CPP_FLAGS): Add EMACS_PATCH_LEVEL.

2001-05-28  Nick V. Pakoulin  <npak@ispras.ru>

	* xemacs.mak (install): Replace calls to (x)copy commands with
	COPY and COPYDIR variables.
	(COPY): New
	(COPYDIR): New

2001-05-26  Ben Wing  <ben@xemacs.org>

	* xemacs.mak (DEPEND):
	* xemacs.mak (LASTFILE_OBJS):
	* xemacs.mak (LWLIB_OBJS):
	* xemacs.mak (TEMACS_OBJS):
	fix use of targets so that config.h doesn't end up being passed
	to the C compiler as an input file; that creates warnings.
	put back config.inc into depend-file targets; removed previously
	in a wrong attempt to fix this same problem.

2001-05-24  Ben Wing  <ben@xemacs.org>

	* xemacs.mak (DOC):
	* xemacs.mak (TEMACS_OBJS):
	add glyphs-shared.c.

2001-05-23  Ben Wing  <ben@xemacs.org>

	* xemacs.mak (installation):
	call `ver' to get the exact os version and put it in the
	installation; suggestion from adrian.

2001-05-21  Martin Buchholz  <martin@xemacs.org>

	* xemacs.mak: Remove references to lwlib-config.

2001-05-01  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>

	* xemacs.mak: Use link to make .rsrc writable, not editbin.

2001-05-10  Ben Wing  <ben@xemacs.org>

	* xemacs.mak (TEMACS_LIBS):
	need another lib (netapi32.lib) for user-name-all-completions.
	
	* xemacs.mak (all):
	* xemacs.mak (OS):
	remove autoload-building target.

2001-05-09  Ben Wing  <ben@xemacs.org>

	* xemacs.mak (OS):
	do not warn about gtk when we're not trying to compile with it.

2001-05-09  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.5.1 "anise" is released.

2001-05-01  Adrian Aichner  <adrian@xemacs.org>

	* xemacs.mak: Define EMACS_PATCH_LEVEL like configure.in does.
	* xemacs.mak (XEMACS_VERSION_STRING): Build this more like
	configure.in does.
	* xemacs.mak (docfile): Use del instead of $(DEL) in shell
	command.

2001-05-01  Ben Wing  <ben@xemacs.org>

	* config.inc.samp (MAKEINFO): point at more standard c: not f:.
	* minitar.c:
	* minitar.c (Usage):
	* minitar.c (octal):
	* minitar.c (makepath):
	* minitar.c (main):
	Fix more compiler warnings, clean up the style to conform
	more to standard XEmacs.

2001-05-01  Ben Wing  <ben@xemacs.org>

	* xemacs.mak (DEPEND):
	Don't add config.inc to the horked depend file.  It's not
	recognized by nmake and just results in warnings.
	* xemacs.mak (docfile):
	Don't use $(DEL) in the middle of a shell command, because it
	will try to call `-del' and fail.

2001-04-27  Adrian Aichner  <adrian@xemacs.org>

	* compface.mak (clean): New target.
	* xemacs.mak: Use $(DEL) everywhere, instead of some occurences of
	del and @$(DEL).  Add GTK supporting variables and document it as
	currently unsupported on MSWindows.
	* xemacs.mak (XEMACS_VERSION_STRING): Initialize according to
	emacs_is_beta.  Use emacs_beta_version as patch level for non-beta
	version.
	* xemacs.mak (HAVE_GTK): New.
	* xemacs.mak (GTK_DIR): New.

2001-04-20  Ben Wing  <ben@xemacs.org>

	* .cvsignore: Added stuff for Windows.

2001-04-18  Martin Buchholz  <martin@xemacs.org>

	* XEmacs 21.5.0 "alfalfa" is released.

2001-03-14  Craig Lanning  <CraigL@Knology.net>

	* minitar.c: Clean up some compiler warnings.

2001-03-21  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.46 "Urania" is released.

2001-03-06  Ben Wing  <ben@xemacs.org>

	* xemacs.mak (DEPEND):
	Correct line that runs perl to do correct quoting regardless of
	whether nmake is run from bash.

2001-03-02  Ben Wing  <ben@xemacs.org>

	* config.h: Sadly, we need to disable another warning (C4116,
	unnamed type definition in parentheses: A structure, union, or
	enumerated type with no name was defined in a parenthetical
	expression. The type definition is meaningless.), due to Martin's
	latest definition of ALIGNOF.

2001-02-23  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.45 "Thelxepeia" is released.

2001-02-09  Martin Buchholz  <martin@xemacs.org>

	* config.h (HAVE_UTIME): New.
	* config.h (HAVE_UTIME_H): Remove.
	* config.h (HAVE_STRUCT_UTIMBUF): Remove.

2001-02-08  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.44 "Thalia" is released.

2001-01-26  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.43 "Terspichore" is released.

2001-01-20  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.42 "Poseidon" is released.

2001-01-17  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.41 "Polyhymnia" is released.

2001-01-08  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.40 is released.

2000-12-31  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.39 is released.

2000-12-05  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.38 is released.

2000-11-14  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.37 is released.

2000-10-27  Martin Buchholz  <martin@xemacs.org>

	* config.h: Oops, _getpt ==> _getpty

2000-10-11  Martin Buchholz  <martin@xemacs.org>

	* config.h (HAVE_XFREE86): Remove.
	(HAVE_XREGISTERIMINSTANTIATECALLBACK): New.
	(XREGISTERIMINSTANTIATECALLBACK_NONSTANDARD_PROTOTYPE): New.

2000-10-10  Martin Buchholz  <martin@xemacs.org>

	* config.h:
	Sync with pty/signaling related changes to src/config.h.in

2000-10-07  Adrian Aichner  <aichner@ecf.teradyne.com>

	* xemacs.mak (default): Enforce runnig nmake from xemacs.mak's
	directory to avoid problems with relative paths.

2000-10-04  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.36 is released.

2000-09-30  Martin Buchholz  <martin@xemacs.org>

	* config.h (HAVE_STRCASECMP): Remove.

2000-09-07  Jonathan Harris  <jhar@tardis.ed.ac.uk>

	* xemacs.mak:
	Make src\depend parsing recognise "#if defined" instead of "#ifdef".
	Use matching single quotes to keep 4dos shell happy.

2000-08-07  Ben Wing  <ben@xemacs.org>

	* xemacs.mak: add getloadavg.c.

2000-07-30  Ben Wing  <ben@xemacs.org>

	* README (NOTE):
	Improve X documentation.
	Document nascent Mule support.
	Document current MS Windows contributors.

2000-07-15  Ben Wing  <ben@xemacs.org>

	* xemacs.mak:
	added new file win32.c.
	took out unused alloca.c.
	* xemacs.mak (update-elc-2): added new target for rebuilding the
	remaining .elcs after dumped.  its dependency is added for target
	all.
	* xemacs.mak (update-auto-and-custom):
	cleaned up ; now it byte-compiles custom-load.el.
	* xemacs.mak (mostlyclean):
	* xemacs.mak (clean):
	* xemacs.mak (nicenclean):
	* xemacs.mak (distclean):
	* xemacs.mak (realclean):
	* xemacs.mak (versionclean):
	Redid all the clean targets, to be similar to what's in the
	standard Makefile.

2000-07-18  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>

	* xemacs.mak ($(PROGNAME)): Do check error code from temacs during
	dumping.

2000-07-19  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.35 is released.

2000-07-14  IKEYAMA Tomonori  <tomonori@suiyokai.org>

	* config.h: Import C++ compilation stuff from src/config.h.

2000-07-05  Craig Lanning  <lanning@scra.org>

        * xemacs.rc: Uppercase the id's so that windres will work.

2000-07-05  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>

	* xemacs.mak (TEMACS_LIBS): Added comdlg32.lib

2000-06-12  Ben Wing  <ben@xemacs.org>

	* config.h (ENCAPSULATE_STAT):
	Always encapsulate stat/fstat.  Also suggested by Mike Alexander
	<mike.alexander@xemacs.org>.

2000-06-10  Ben Wing  <ben@xemacs.org>

	* config.h:
	* config.h (HAVE_GETPAGESIZE):
	* config.h (HAVE_GETTIMEOFDAY):
	corrections to go along with removed nt/inc.
	removed HAVE_FEP.
	
	* config.inc.samp:
	correct graphics lib paths to agree with binaries provided in
	ftp aux dir.
	
	* xemacs.mak (DEPEND):
	* xemacs.mak (DEFINES):
	* xemacs.mak (LIB_SRC_DEFINES):
	* xemacs.mak (minitar):
	* xemacs.mak (TEMACS_LFLAGS):
	* xemacs.mak (tags):
	* xemacs.mak (all):
	* xemacs.mak (install):
	WINDOWSNT -> WIN32_NATIVE.
	Don't build run*.exe.
	comments about required ^^.
	Added setargv.obj to the list of linked entities,
	  causing automatic wildcarding of filenames given on the
	  command line. (As usual, enclose in double quotes to avoid
	  this.)
	
2000-06-07  Ben Wing  <ben@xemacs.org>

	* runemacs.c: Removed.  No longer necessary.

	* Makefile.cygwin: Removed.

	* inc\*: Removed.  At long-fucking-last!

2000-05-28  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.34 is released.

2000-05-12  Craig Lanning  <CraigL@DyCon.com>

	* inc\sys\socket.h: Don't define timeval as ws_timeval for mingw32

2000-05-01  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.33 is released.

2000-04-27  Ben Wing  <ben@xemacs.org>

	* xemacs.mak: combine auto-autoloads.el and custom.el update into
	one call to xemacs.

2000-04-26  Ben Wing  <ben@xemacs.org>

	* xemacs.mak: put in support for QUICK_BUILD.

	* config.inc.samp: put in an entry for QUICK_BUILD.

2000-04-23  Ben Wing  <ben@xemacs.org>

	* xemacs.mak: Modified section that dumps .exe to not dump
	when nothing has changed.  It does this by relying on a flag
	set by update-elcs.

	Also in building of auto-autoloads.el, we no longer unconditionally
	remove the old one.  That was pointless and made the whole build
	procedure a lot longer -- the autoload code is smart enough to
	update itself automatically from an out-of-date autoload file.

2000-04-04  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>

	* xemacs.mak: Build the i utility and use it to pipe windowed
	[xt]emacs output to the build console.

2000-03-25  Didier Verna  <didier@xemacs.org>

	* config.h: handle the renaming of `foo_h_path' to `foo_h_file'.

2000-03-22  Mike Alexander  <mta@arbortext.com>

	* xemacs.mak (PROGRAM_DEFINES): Define EMACS_VERSION and
	EMACS_PROGNAME
	(DEPEND): Don't try to create $(OUTDIR) if it already exists
	($(SRC)\dump-id.c): Make it
	(DOC_SRC11): Add dumper.c if portable dumping
	(dump-xemacs): Make portable dumping work again and create
	dump-id.c and compile it whenever we do a portable dump.
	(depend): Change $(SRCDIR) to $(SRC)

2000-03-22  Jonathan Harris  <jhar@tardis.ed.ac.uk>

	* .cvsignore: New file, ignores user's config.inc and files
	containing the user's DevStudio workspace info.

	* config.h.samp: Added DEPEND option. Renamed HAVE_MSW and HAVE_X to
	HAVE_MS_WINDOWS and HAVE_X_WINDOWS.

	* README: Documented DEPEND option. Other small changes.

	* Todo: Removed - was hopelessly out of date.

	* config.h.samp:
	* xemacs.mak: Added DEPEND option to control use of dependency
	information generated by make-src-depend. Requires Perl. Defaults
	to disabled. Renamed HAVE_MSW and HAVE_X to HAVE_MS_WINDOWS and
	HAVE_X_WINDOWS as a side-effect.
	Handles '&' in XEmacs codenames by replacing with 'and'.

	* xemacs.dsp:
	Correct Output_Dir so that DevStudio finds the xemacs executable
	by default.

2000-03-20  Ben Wing  <ben@xemacs.org>

	* README: Substantial rewrite.
	* xemacs.mak: Pdump fix. (not working yet, though)

2000-03-20  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.32 is released.

2000-03-15  Mike Alexander <mta@arbortext.com>

	* xemacs.mak: Fix for generation of $(XEMACS)\Installation.

2000-03-14  Adrian Aichner  <adrian@xemacs.org>

	* xemacs.mak (LIB_SRC_TOOLS): LIB_SRC_TOOLS depend on
	XEMACS_INCLUDES when we USE_PORTABLE_DUMPER.

2000-03-13  Ben Wing  <ben@xemacs.org>

	* xemacs.mak (TEMACS_ENTRYPOINT):
	Fix for portable dumper.

2000-03-12  Ben Wing  <ben@xemacs.org>

        * xemacs.mak (*):
        * config.inc: New.

        a) Added a file called config.inc which makes it easier to set
        build options for MS Windows. (Previously, the only way to do this
        was through command line options to nmake.)

        b) Cleaned the file up a bit.

        c) Changed xemacs to be a windows application and not a console
        application, now that runemacs.exe is no longer necessary.

        d) Added support for building the tags file.

        * xemacs.dsw: New.
        * xemacs.dsp: New.
        For compiling, editing, and debugging XEmacs using the VC++ 5.0
        GUI.  They may well work under other versions of VC++, but I don't
        have access to them to test them.

2000-03-11  Andy Piper  <andy@xemacs.org>

	* PROBLEMS: Doc fix from Reini Urban <rurban@x-ray.at>.

2000-02-27  Mike Alexander  <mta@arbortext.com>

	* xemacs.rc: Include the portable dump data if INCLUDE_DUMP is defined

	* xemacs.mak: Add the portable dump data to the EXE as a resource

2000-03-07  Jonathan Harris  <jhar@tardis.ed.ac.uk>

	* xemacs.mak (TEMACS_LIBS): Add ole32.lib and uuid.lib.
	(installation): Always regenerate installation report.

2000-02-25  Craig Lanning  <CraigL@DyCon.com>

	* inc\sys\time.h: MinGW defines struct timeval in <winsock.h>.

2000-02-24  Martin Buchholz  <martin@xemacs.org>

	* config.h (INLINE_HEADER): Define properly (?) for Windows.

2000-02-23  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.31 is released.

2000-02-22  Martin Buchholz  <martin@xemacs.org>

	* config.h (gc_checking_assert): New.

2000-02-21  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.30 is released.

2000-02-21  Jonathan Harris  <jhar@tardis.ed.ac.uk>

	* README: Tidy up.
	Document need for makeinfo program or texinfo package.

	* Xmd.patch: New file, previously in README.

2000-02-17  Martin Buchholz  <martin@xemacs.org>

	* config.h: Delete unused HAVE_LINUX_VERSION_H.

2000-02-16  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.29 is released.

2000-02-06  Mike Alexander  <mta@arbortext.com>

	* xemacs.mak (install): Copy xemacs.dmp if using the portable
	dumper.

2000-02-07  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.28 is released.

2000-02-03  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>

	* Xpm.def: New file, required to build Xpm.dll.

	* Xpm.mak: Use DEBUG instead of DEBUG_XEMACS - this library is not
	xemacs-specific. Initialize to DEBUG_XEMACS if specified for
	compatibility.
	Build DLL instead of static LIB when USE_CRTDLL=1 is given to
	make.

	* xemacs.mak: Introduced USE_SYSTEM_MALLOC and USE_CRTDLL.
	Do not build lastfile.lib when neither unexec not gmalloc are
	used.

	* config.h: Deleted GNU_MALLOC and SYSTEM_MALLOC, as they are set
	in makefile.

2000-01-26  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>

	* xemacs.mak (DOC_SRC9): Added tests.c ...
	(TEMACS_DEBUG_OBJS): ... and tests.obj
	($(DOC)): Tweaked a bit, for `nmake docfile' unconditionally
	rebuild the docfile.

2000-01-22  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>

	* xemacs.mak (docfile): Added shortcut target.

2000-01-19  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>

	* xemacs.mak (TEMACS_LIBS): Added winspool.lib

2000-01-20  Martin Buchholz  <martin@xemacs.org>

	* xemacs.mak (dump-xemacs): Remove redundant EMACSBOOTSTRAPMODULEPATH.

2000-01-18  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>

	* xemacs.mak: Patch of 01/13 got in corrupted, fixed.

2000-01-18  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.27 is released.

2000-01-18  Martin Buchholz  <martin@xemacs.org>

	* minitar.c: Errno.h --> errno.h.  Remove errno declaration.

2000-01-13  Kirill 'Big K' Katsnelson  <kkm@dtmx.com>

	* xemacs.mak: Added USE_PORTABLE_DUMPER make command line macro.
	(temacs:) Added dependency for lastfile.lib so that 'make temacs'
	builds it first.

1999-12-28  Scott Blachowicz  <Scott.Blachowicz@seaslug.org>

	* minitar.mak: Add vars to allow building from main xemacs.mak.

	* xemacs.mak: Add rules to build & install minitar.

2000-01-03  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>

	* config.h: Fix stuff related to mail locking.

1999-12-31  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.26 is released.

1999-12-24  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.25 is released.

1999-12-15  Scott Blachowicz  <Scott.Blachowicz@seaslug.org>

	* minitar.c (main): Add explicit exit(0) to get successful return
	code.

1999-12-14  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.24 is released.

1999-11-28  Adrian Aichner  <adrian@xemacs.org>

	* xemacs.mak (depend): Only update `depend' if there were changes.
	Use "perl ./make-src-depend" instead of "mkdepend".

1999-12-07  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.23 is released.

1999-11-27  Adrian Aichner  <adrian@xemacs.org>

	* xemacs.mak (SRCDIR): Make path to xemacs absolute to
	facilitate building info in man subdirs.  Echo all cd commands,
	not just some of them.

	(makeinfo-test): Test for availability of `texinfo' package to
	build info.  Recommend use of external `makeinfo' program for
	building info docs faster.

	(info): cd into man subdirs to support use of external `makeinfo'
	program.

1999-11-17  Martin Buchholz  <martin@xemacs.org>

	* xemacs.mak: Remove references to index.unperm, index.perm.
	Fix dependencies.
	Shouldn't .obj and .info be in SUFFIXES?
	Remove extra `\'.

1999-11-29  XEmacs Build Bot <builds@cvs.xemacs.org>

	* XEmacs 21.2.22 is released

1999-11-28  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.21 is released.

1999-11-10  XEmacs Build Bot <builds@cvs.xemacs.org>

	* XEmacs 21.2.20 is released

1999-10-07  Norbert Koch  <n.koch@eai-delta.de>

	* xemacs.mak: Ignore return code of 'del' calls. Use a make
	variable for 'del'.

1999-09-26  Adrian Aichner  <adrian@xemacs.org>

	* xemacs.mak (all): Update $(LISP)/auto-autoloads.elc? and
 	$(LISP)/custom-load.el using XEmacs itself, like xemacs-packages
 	do.
	($(LISP)\auto-autoloads.el): Add new rule.
	($(LISP)\custom-load.el): Ditto.

1999-08-04  Andy Piper  <andy@xemacs.org>

	* xemacs.mak (HAVE_WIDGETS): add define to appropriate places.

1999-07-26  Adrian Aichner  <adrian@xemacs.org>

	* xemacs.mak ($(MANDIR)\lispref\lispref.texi): Replace bad
	dependency.

1999-07-30  XEmacs Build Bot <builds@cvs.xemacs.org>

	* XEmacs 21.2.19 is released

1999-07-10  Adrian Aichner  <adrian@xemacs.org>

	* xemacs.mak (.SUFFIXES): Add .texi.
	(check): Improve automated test section.
	(info): Generate info files using XEmacs (no makeinfo.exe needed).

1999-07-19  Andy Piper  <andy@xemacs.org>

	* xemacs.mak (DOC_SRC3): add gutter.c
	(TEMACS_OBJS): add gutter.obj.

1999-07-13  XEmacs Build Bot <builds@cvs.xemacs.org>

	* XEmacs 21.2.18 is released

1999-06-22  XEmacs Build Bot <builds@cvs.xemacs.org>

	* XEmacs 21.2.17 is released

1999-06-13  Adrian Aichner  <adrian@xemacs.org>

	* xemacs.mak (DOC_SRC8): Remove mule-coding.c.
	(TEMACS_MULE_OBJS): Remove mule-coding.obj
	(check): Implement according to src/Makefile.
	(check-temacs): ditto.

1999-06-05  Norbert Koch <n.koch@delta-ii.de>

	* xemacs.mak (mule): remove dependencies from mule-coding.c

1999-06-11  XEmacs Build Bot <builds@cvs.xemacs.org>

	* XEmacs 21.2.16 is released

1999-05-14  Adrian Aichner  <adrian@xemacs.org>

	* xemacs.mak (GUNG_HO): Explicitly default to 0.
	Fix some comment typos.
	($(XEMACS)\Installation): Create it in the toplevel-directory,
 	where it is expected by loadup.el

1999-06-04  XEmacs Build Bot <builds@cvs.xemacs.org>

	* XEmacs 21.2.15 is released

1999-05-31  Andy Piper  <andy@xemacs.org>

	* xemacs.mak: add select & select-x targets.

1999-05-14  XEmacs Build Bot <builds@cvs.xemacs.org>

	* XEmacs 21.2.14 is released

1999-05-12  SL Baur  <steve@gneiss.etl.go.jp>

	* xemacs.mak: please document me
	From Norbert Koch <n.koch@delta-ii.de>

1999-05-03  Hrvoje Niksic  <hniksic@srce.hr>

	* xemacs.mak ($(LISP)\Installation.el): Don't use
 	`replace-in-string'.

1999-03-17  Adrian Aichner  <adrian@xemacs.org>

	* xemacs.mak: Remove ESC macro -- no longer needed.
	Remove small configuration report.  Remove simplified version of
	Installation and Installation.el
	(Installation.el): Create it depending on "Installation" file.
	Replace \r characters by use of `replace-in-string' in lisp-land.
	(all): Make it depend on "Installation" file.
	(Installation): Create a complete "Installation" file, looking
	much like what is generated by "configure" on UNIX systems.
	Insert WARNING where appropriate (currently when building without
	HAVE_XPM, HAVE_PNG, and HAVE_MSW_C_DIRED).
	Type "Installation" to STDOUT much like the "small configuration
	report" did.

1999-04-29  Andy Piper  <andy@xemacs.org>

	* sys/file.h: conditionalise definition of X_OK.

1999-03-12  XEmacs Build Bot <builds@cvs.xemacs.org>

	* XEmacs 21.2.13 is released

1999-03-07  Jonathan Harris  <jhar@tardis.ed.ac.uk>

	* xemacs.mak:
	  Don't link lib-src programs incrementally.
	  Don't include debug info in release builds.
	  Put intermediate files in the appropriate directories.
	  Make "distclean" target delete all intermediate files.

1999-03-07  Jonathan Harris  <jhar@tardis.ed.ac.uk>

	* xemacs.mak:
	  Fix building on Windows 95/98 by conditionalising escape
	  character '^'.
	  Only put mule-packages in package path on MULE builds.
	  Only build source browser files on debug builds.
	  Build source browser database before link so that it's
	  available even if link fails.

1999-03-05  XEmacs Build Bot <builds@cvs.xemacs.org>

	* XEmacs 21.2.12 is released

1999-03-03  Gleb Arshinov  <gleb@cs.stanford.edu>

	* xemacs.mak (HAVE_XFACE): fix for building without X-Face support
	provided by Brent B. Powers <bpowers@ms.com>.

	* xemacs.mak (CONFIG_ERROR): Misc error detection for build with
	X-Face.

1999-02-01  Gleb Arshinov  <gleb@cs.stanford.edu>

	* README: Document the X-Face build option.

	* compface.mak: New file
	  Makefile for building compface library under MSVC.  Build
	  library only, not executables.  Should be extended to build
	  executables and propagated upstream, if possible.

	* xemacs.mak: Link in X-Face/Compface for NT native build.

1999-03-01  XEmacs Build Bot <builds@cvs.xemacs.org>

	* XEmacs 21.2.11 is released

1999-02-05  XEmacs Build Bot <builds@cvs.xemacs.org>

	* XEmacs 21.2.10 is released

1999-02-02  XEmacs Build Bot <builds@cvs.xemacs.org>

	* XEmacs 21.2.9 is released

1999-01-14  Adrian Aichner  <adrian@xemacs.org>

	* xemacs.mak (MODULES): Adding variable.
	(update-elc): Setting EMACSBOOTSTRAPMODULEPATH.

1998-12-17  Charles G. Waldman <cgw@pgt.com>

	* minitar.c:  New file
	* minitar.mak: New file

1998-12-29  Jonathan Harris  <jhar@tardis.ed.ac.uk>

	* xemacs.mak:
	  Changed x86 EMACS_CONFIGURATION to i586-pc-win32 since we
	  build optimised for Pentium.
	  Created CFLAGS variable, used in building all objects and in
	  constructing config.values.
	  Added glyphs-widget.c and gui-msw.c to list of sources.
	  Added PACKAGE_PATH to EMACSBOOTSTRAPLOADPATH for mule builds.

1998-12-28  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.8 is released.

1998-12-24  Martin Buchholz <martin@xemacs.org>

	* XEmacs 21.2.7 is released.

1998-12-13  Jonathan Harris  <jhar@tardis.ed.ac.uk>

	* xemacs.mak:
	  Replaced PACKAGEPATH variable with PACKAGE_PREFIX.
	  configure-package-path is initialised to contain
	  subdirectories of PACKAGE_PREFIX. The install target makes
	  a skeleton package tree under PACKAGE_PREFIX.

	* README, PROBLEMS:
	  Documented the package path changes.
	  Corrected the advice on a suitable minimal set of packages.

1998-12-17  Andy Piper  <andy@xemacs.org>

	* xemacs.mak ($(LIB_SRC)/movemail.exe): adapt make rule to build
 	with pop support.

	* xemacs.mak: add gui-msw.c and glyphs-widget.c object lists.

1998-12-16  Andy Piper  <andy@xemacs.org>

	* XEmacs 21.2.6 is released

1998-12-11  Adrian Aichner  <adrian@xemacs.org>

	* xemacs.mak (DOC_SRC2): CLASH_DETECTION is not supported under
 	native Windows NT.  Therefore src\filelock.c is not to be
 	compiled.
	(TEMACS_OBJS): Consequently, don't link in $(OUTDIR)\filelock.obj.

1998-12-10  Jonathan Harris  <jhar@tardis.ed.ac.uk>

	* xemacs.mak ($(OUTDIR)\alloc.obj): add a dependency on
 	puresize-adjust.h to avoid infinite recursion.

1998-12-09  Andy Piper  <andy@xemacs.org>

	* config.h: remove clash detection stuff.

1998-12-07  Martin Buchholz  <martin@xemacs.org>

	* xemacs.mak (TEMACS_OBJS):
	(DOC_SRC4):
	- Remove pure.c, pure.obj

1998-11-04  Adrian Aichner  <adrian@xemacs.org>

	* xemacs.mak: Creating minimal versions of Installation,
 	Installation.el, and config.values to make
	(describe-installation) and (config-value ...) work in Windows NT
 	native builds.  Incorporating rule for movemail.exe courtesy of
 	Andy Piper.

1998-12-05  XEmacs Build Bot <builds@cvs.xemacs.org>

	* XEmacs 21.2.5 is released

1998-11-28  SL Baur  <steve@altair.xemacs.org>

	* XEmacs 21.2-beta4 is released.

1998-10-29  Andy Piper  <andyp@parallax.co.uk>

	* xemacs.mak ($(LIB_SRC)/movemail.exe): add etags dependencies to
	pull in getopt and friends.

1998-10-15  SL Baur  <steve@altair.xemacs.org>

	* XEmacs 21.2-beta3 is released.

1998-09-29  SL Baur  <steve@altair.xemacs.org>

	* XEmacs 21.2-beta2 is released.

1998-09-19  Adrian Aichner  <adrian@xemacs.org>

	* tiff.mak: New file provided by Charles Wilson
	  <cwilson@ee.gatech.edu>

	* README: Update provided by Charles Wilson
	  <cwilson@ee.gatech.edu>.  Documenting use of the newly
	  introduced tiff.mak.  Renumbering subsequent build instruction
	  items.

1998-09-20  Jonathan Harris  <jhar@tardis.ed.ac.uk>

	* PROBLEMS: New file.

	* xemacs.mak: Install the PROBLEMS file in the root directory of
	  the XEmacs installation.

1998-08-31  Jonathan Harris  <jhar@tardis.ed.ac.uk>

	* xemacs.mak: Detect failure to supply PNG_DIR or XLIB_DIR
	  when building with PNG support.

1998-08-31  Jonathan Harris  <jhar@tardis.ed.ac.uk>

	* README: Document the PNG, ZLIB, JPEG, TIFF and GIF build
	  options.

1998-08-12  Jeff Sparkes  <jsparkes@internetivity.com>

	* xemacs.mak: Link in GIF, fix HAVE_JPEG default.

1998-08-09  Jonathan Harris  <jhar@tardis.ed.ac.uk>

	* xemacs.mak (install): Win95 fixes:
	  DOS mkdir doesn't create intermediate directories. xcopy does
	  so use it to create the install and lock directories.
	  Removed trailing backslashes from copy commands since DOS
	  copy doesn't like them.

1998-08-05  Charles G. Waldman <cgw@pgt.com>

	* xemacs.mak: change "copy" to "xcopy" in install target

1998-08-04  Jeff Sparkes  <jsparkes@internetivity.com>

	* xemacs.mak: Link in PNG, TIFF and JPEG in native build.

1998-08-04  Jonathan Harris  <jhar@tardis.ed.ac.uk>

	* README: XEmacs has been successfully built with MSVC 4.0.
	  Mention the vcvars32.bat file installed with the MSVC tools.

1998-07-19  SL Baur  <steve@altair.xemacs.org>

	* XEmacs 21.2-beta1 is released.

1998-07-13  Jonathan Harris  <jhar@tardis.ed.ac.uk>

	* xemacs.mak:
	  Add path to xemacs.res dependency.

1998-07-12  SL Baur  <steve@altair.xemacs.org>

	* XEmacs 21.0-pre5 is released.

1998-07-09  SL Baur  <steve@altair.xemacs.org>

	* XEmacs 21.0-pre4 is released.

1998-07-04  Jonathan Harris  <jhar@tardis.ed.ac.uk>

	* README: Documented the changed PACKAGEPATH option and the new
	  INSTALL_DIR option, install target and runemacs executable.
	  Added more debugging documentation.

	* config.h: Don't undef EMACS_CONFIGURATION because it's now
	  set in the makefile.

	* xemacs.mak: Added an INSTALL_DIR option and install target.
          Renamed the default package location option to PACKAGEPATH
	  and made it cope with paths with spaces in them.
	  Made non-debug build the default; DEBUG_XEMACS defaults to 0.
	  System configuration (EMACS_CONFIGURATION) now correctly
	  determined at build-time by this makefile.
	  Compiles the runemacs executable as part of the all target.

1998-06-29  SL Baur  <steve@altair.xemacs.org>

	* config.h:
	* xemacs.mak: NT native sound fixes
	From Fabrice POPINEAU via Adrian Aichner <adrian@xemacs.org>

1998-06-21  Martin Buchholz  <martin@xemacs.org>

	* xemacs.mak: It's XEmacs, not Xemacs!

1998-06-19  Jonathan Harris  <jhar@tardis.ed.ac.uk>

	* file.ico, lisp.ico:
	  New icons to represent a generic file and a lisp file.

	* xemacs.rc: Build file.ico and lisp.ico into the executable.

1998-06-15  Peter Windle <peterw@sdl.ug.eds.com>

	* xemacs.mak: Made XPM and X11 checks cope with case-sensitive
	NFS. Also apply Sean MacLennan's change allowing
	emacs_beta_version to be undefined.

1998-06-19  SL Baur  <steve@altair.xemacs.org>

	* xemacs.mak (distclean): Reorder when puresize-adjust.h gets
	deleted.
	From Adrian Aichner <adrian@xemacs.org>

1998-06-08  Kirill M. Katsnelson  <kkm@kis.ru>

	* config.h: Undefined DONT_ENCAPSULATE.
	Defined ENCAPSULATE_* for fopem, open, rename and mkdir.
	Removed MS-DOS code remains.

1998-06-03  Rick Rankin  <Rick_Rankin-P15254@email.mot.com>

	* Makefile.cygwin: created to compile runemacs.c. This should
	probably have a Makefile.in, but...

	* runemacs.c: modified to check to see if xemacs is a symbolic
	link when compiled under Cygwin.

1998-05-31  Kirill M. Katsnelson  <kkm@kis.ru>

	* xemacs.mak: Added lib-src/wakeup.exe

1998-05-30  Kirill M. Katsnelson  <kkm@kis.ru>

	* xemacs.mak: Added rules for hexl.exe, movemail.exe, mmencode.exe
	sorted-doc.exe, etags.exe

1998-05-30  Kirill M. Katsnelson  <kkm@kis.ru>

	* xemacs.mak: Support building InfoDock, with INFODOCK=1 macro
	in the command line.

1998-05-26  Kirill M. Katsnelson  <kkm@kis.ru>

	* inc/sys/dir.h: Removed #ifndef WINDOWSNT around the code which
	should be compiled in (sic!).
	Removed 'extern' before function prototypes.

1998-05-20  Kirill M. Katsnelson  <kkm@kis.ru>

	* xemacs.mak: Unified -nologo compiler switch handling and lib-src
	programs build (only make-docfile currently, adding other tools
	soon).

1998-05-23  Kirill M. Katsnelson  <kkm@kis.ru>

	* xemacs.mak: Added HAVE_DIALOGS macro, and dialog-*.* files to
	docfile creation and compilation.
	Defaulted HAVE_MSW to 1.
	Changed lib-src references to be relative to $(XEMACS)/, not ../

1998-05-16  Kirill M. Katsnelson  <kkm@kis.ru>

	* xemacs.mak: Removed inline.{c,obj}. It did buy nothing.

1998-05-15  Kirill M. Katsnelson  <kkm@kis.ru>

	* xemacs.mak: Comment out dialog.{c,obj} from build.

1998-05-11  Jonathan Harris  <jhar@tardis.ed.ac.uk>

	* nt/config.h:
	Unconditionally define new HAVE_DRAGNDROP.

1998-05-10  Kirill M. Katsnelson  <kkm@kis.ru>

	* xemacs.mak: Added dragdrop.{c,obj}

1998-05-08  Kirill M. Katsnelson  <kkm@kis.ru>

	* config.h (enum_field): Redefine to be unsigned int.

1998-05-07  Kirill M. Katsnelson  <kkm@kis.ru>

	* xemacs.mak: Really honor minimal tagbits, indexed lrecord and
	union type.

1998-05-03  Kirill M. Katsnelson  <kkm@kis.ru>

	* inc/sys/socket.h: Removed encapsulating definitions for Winsock
	functions.

1998-05-04  Kirill M. Katsnelson  <kkm@kis.ru>

	* xemacs.mak: Defined PATH_PROGNAME and	PATH_VERSION C macros.
	Make _DEBUG defined only when DEBUG_XEMACS.

1998-04-26  Kirill M. Katsnelson  <kkm@kis.ru>

	* xemacs.mak: Added glyphs-eimage.{c,obj}

1998-04-20  Kirill M. Katsnelson  <kkm@kis.ru>

	* xemacs.mak: Support "Don't panic, I will restart make" exit code.
	Extra checks for externally specified X{PM,11}_DIR.
	Proper quoting to allow spaces in these paths.
	Conduct all config checks at once.
	New option VERBOSECC. When non-zero, C compiler echoes its
	commands. When zero, only name of the file being compiled is
	echoed. Default is 0 (do not echo).

1998-04-17  Jonathan Harris <jhar@tardis.ed.ac.uk>

	* README: Documented new msvc build procedure, including XPM
	support.

	* xemacs.mak: Added XPM and TOOLBARS support for native msvc
	build.

	* xpm.mak: New file
	Makefile for building xpm library under msvc. Hopefully this
	will be part of future xpm distributions.

1998-04-10  Kirill M. Katsnelson  <kkm@kis.ru>

	* config.h: Do not USE_ASSERTION when DEBUG_XEMACS is not
	defined.

	* xemacs.mak: Added new file process-nt.c

1998-04-07  Kirill M. Katsnelson  <kkm@kis.ru>

	* xemacs.mak: Added build options which can be defined in nmake
	command line (defaults are parentheses):
	HAVE_MSW=0/1	(0)	Build with native GUI
	HAVE_X=0/1	(0)	Build with X-Windows
				** At least one must be defined
	X11_DIR=path	()	Path to the root dir of X11R6 installation
				** Must be defined when HAVE_X=1
	HAVE_MULE=0/1	(0)	Compile in MULE
	HAVE_MSW_C_DIRED=0/1(1)	Compile in fast dired
	PATH_PACKAGEPATH=path	Package search path
			("~/.xemacs")
	DEBUG_XEMACS=0/1 (1)	Compile with symbols, assertions and
				extra debugging checks
	USE_UNION_TYPE=0/1 (0)
	USE_MINIMAL_TAGBITS=0/1 (0)
	USE_INDEXED_LRECORD_IMPLEMENTATION=0/1 (0)
	GUNG_HO=0/1 (none)	When specified, overrides the above two.
	: Added output of a configuration report
	: Added copyright notice.
	: Deleted remains of ImageMagick.
	(distclean): Do not use mskedepend
	(install): echo "Not yet implmented".

1998-04-05  Kirill M. Katsnelson  <kkm@kis.ru>

	* config.h (enum_field): Borrow new definition from config.h.in

1998-04-01  Kirill M. Katsnelson  <kkm@kis.ru>

	* config.h: Patial sync-up with config.h.in

1998-03-25  jhar@tardis.ed.ac.uk

	* xemacs.mak: Adds glyphs-msw.c and imgproc.c and reflects
	alterations to package_path in nt/xemacs.mak.

1998-03-24  Kirill M. Katsnelson  <kkm@kis.ru>

	* xemacs.mak (dump-xemacs): Replaced use of `touch' with `echo'.

1998-03-20  Kirill M. Katsnelson  <kkm@kis.ru>

	* xemacs.mak: Removed all references to deleted dgif_lib.{c,obj},
	gif_err.{c,obj} and gifalloc.{c,obj}. New image support is not
	compiled in yet.

1998-03-19  Kirill M. Katsnelson  <kkm@kis.ru>

	* xemacs.mak: HAVE_FILE_CODING removed: it is no longer an option,
	since file I/O depends on it, and defined unconditioanlly in
	src/s/windowsnt.h.
	Added -nologo switch to different tools here and there.
	Suppressed some irrelevant make output.

1998-02-28  Kirill M. Katsnelson  <kkm@kis.ru>

	* xemacs.mak: Defined HAVE_FILE_CODING variable, an equivalent of
	--with-file-coding configure option. Default is yes.

1998-03-13  Kirill M. Katsnelson  <kkm@kis.ru>

	* xemacs.mak (update-elc): Copy Installation.el to $(LISP)

	* Installation.el: New file, copied by xemacs.mak during build.

Fri Feb 20 21:22:34 1998  Darryl Okahata  <darrylo@sr.hp.com>

	* xemacs.mak: Added entry for src/dired-msw.c.  Use of the
	  dired-in-C enhancements is optional, and is determined by
	  HAVE_MSW_C_DIRED.  See comments in xemacs.mak.

1998-02-18  Kirill M. Katsnelson  <kkm@kis.ru>

	* xemacs.mak: Fixed lost docstrings

1998-01-28  Jonathon Harris  <jhar@tardis.ed.ac.uk>

	* xemacs.mak: Updated accordingly.
	Creates the MSVC browse info immediately after the link.

1997-12-29  Kirill M. Katsnelson  <kkm@kis.ru>

	* config.h: Suppressed MSVC warning 'relational' : signed/unsigned
	mismatch

	* config.h: INLINE defined to __inline for MSVC compilers >= 2.x

1997-12-26  Kirill M. Katsnelson  <kkm@kis.ru>

	* xemacs.mak: added menubar-msw.c, menubar.c

	* xemacs.mak: scrollabrs and menubars are rearranged properly
	  under different ifdef'd secions, so for example menubar.obj goes
	  to always compiled section, and menubar-msw.obj is built only when
	  HAVE_MSW.

	* xemacs.mak: Compiler warning flag definition moved to a macro
	  CPP_WARN_FLAGS. Redefined from -w to -W3 (Doh!).

1997-12-11  David Hobley <davidh@wr.com.au>

        * Added support for auto generation of puresize-adjust.h
	  in xemacs.mak. Also created new file puresize-adjust.h to copy
 	  into src on initial build.

Mon December 08 1997 kkm@kis.ru

	* xemacs.mak: added profile.c, removed event-unixod.c
	* xemacs.mak: removed dangerous defines _IX_86, _X86_,
	  _MSC_VER
	* config.h: removed #define HAVE_UNIXOID_EVENT_LOOP

Thu December 04 1997 jhar@tardis.ed.ac.uk

	* xemacs.mak: Define DEBUG_XEMACS when compiling with debug.

Tue November 29 12:29:33 1997 davidh

	* xemacs.mak and config.h updated to provide ability to
	  specify DEBUG mode from the xemacs.mak file.

Mon December 01 1997 jhar

	* msw-init.el: Provide default bindings for cut, paste, copy and undo

	* event-msw.c, event-msw.h, frame-msw.c, msw-proc.c:
	  - Implemeted simple emacs_mswindows_event_pending_p().
	  - Fixed deleting frames.
	  - Rewrote timeout code, eliminating "!NILP(rest)" bug.
	  - Special processing for 'Ctrl-@' keystroke.
	  - Support for some new keysyms.

Mon December 01 1997 jhar

	* xemacs.mak:
	  - Add PACKAGE_PATH and EMACS_BETA_VERSION defines.
	  - Automatically copy changed include files from \nt to \src.
	  - Corrected some DOC_SRC* lists.

Tue November 18 21:45:06 1997 davidh

	* xemacs.mak updated to remove dependency on startup.elc
	  HAVE_IMAGEMAGICK added for X build.

Thu September 25 23:06:44 1997 davidh

	* xemacs.mak updated to make the build as simple as typing
	  nmake -f xemacs.mak. Also support for native gui included
	  which should mean the w32 directory is no longer required.

	* config.h synced with config.h.in from 20.3-b2

	* synced in changes to support native gui.

Thu September 25 23:06:44 1997 davidh

	* August Hill provided a patch to xemacs.mak to greatly simplify
	  the build - the DOC file gets created correctly.

Tue September 22 23:06:44 1997 davidh

	* August Hill provided some more patches - to expand ~ correctly
          and to correctly deal with drive letters in the path.

	* emacs.c patched to call init_ntproc()


Tue July 15 19:32:21 1997 davidh

        * August Hill provided some more patches to make things better
          - there is a workaround for dired to make the ^M's disappear
          - a patch to fix shell-command

Tue July 08 22:01:36 1997 davidh

        * #ifdef'd call to vfork and replaced with spawn as per GNU Emacs;
          as a result, removed /force - XEmacs now links normally.

Thu June 31 21:16:21 1997 davidh

	* nt/TODO created.

	* nt/X11.patch created to help with the X build.

	* August Hill provided:
 	  a patch to fix the _WRETCODE undefined symbol,
	  a patch to fix a problem with dired

	  and generally helped clarify the build instructions.

 	* Synced with 20.3b10 (Athens).

	* Made DIRECTORY_SEP be '\\'. Until I can change all code to
          use the macro, I decided this would be easiest.

	* Modified src/fileio.c to only open files in O_BINARY. This
	  causes files to be opened and written without automatically
	  writing ^M 's to the end of each line. MULE ought to sort this
          in theory, but I am less than convinced.

	* Updated the nt/README to provide a little more help.

Thu May 29 23:11:21 1997 davidh

	* Synced with 20.3b2.

	* Removed nt/README.src, nt/src.m.windowsnt.h nt/src.s.windowsnt.h.

	* Updated README from marcpa.

	* Added example Win32.cf and site.def files for X.

	* Added sed.exe into nt/.

	* Modified nt/xemacs.mak to pass correct flags to lwlib compile.

	* Added extra .elc files to ensure make-docfile gets all symbols.

	* Modified balloon_help.c to compile (#if'd max definition)

	* Modified src/event-Xt.c so as not to add signal_event_pipe to
          be selected on - this is a hack until I can work out a better
          way. Thanks to Ben Wing for help on this.

Thu Mar 27 20:56:21 1997  marcpa  (marcpa at MARCPA)

	* Synced with 20.1b9.

Sun Mar 16 00:32:15 1997  marcpa  (marcpa at MARCPA)

	* lisp/eterm/README.term is truncated: is it just me (because
	I'm on NT) or everyone else sees this ?
	Answer: it is because it contains a ^Z embedded in it, therefore
	it needs to be inserted in binary mode in CVS.

Thu Mar 13 00:19:25 1997  marcpa  (marcpa at MARCPA)

	* At end of compilation, there are some unresolved symbols:

link.exe @C:\TEMP\nma00115.
sysdep.obj : error LNK2001: unresolved external symbol _vfork
../src/temacs.exe : warning LNK4088: image being generated due to /FORCE
option; image may not run


Wed Mar 12 23:18:53 1997  marcpa  (marcpa at MARCPA)

	* Need to copy the nt/inc directory David originally submitted or
	NT code won't compile.

	* Need to copy nt/{config.h,paths.h,ad2c.sed,xemacs.mak} in src.

	* Had to modify XEmacs sources here and there : see the diffs
	between NT_FIRST_COMPILE and V20_1_beta9.

	* Needed to patch X11R6.3 sources: (include/x11/Xmd.h:155) BOOL is
	already defined by Windows and is a long, while X wants it to be
	an unsigned char.

--- Xmd.h~	Thu Jun 08 23:20:40 1995
+++ Xmd.h	Sun Mar 16 13:09:10 1997
@@ -150,8 +150,9 @@
 typedef CARD16		BITS16;
 typedef CARD8		BYTE;

+#ifndef WIN32
 typedef CARD8           BOOL;
-
+#endif

	* cpp.exe not used: cl.exe from VC++4.2 seems to handle everything
	properly.