annotate 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 2b621542ba7a
children d5863780dbef
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2720
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2705
diff changeset
1 2005-04-01 Marcus Crestani <crestani@xemacs.org>
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2705
diff changeset
2
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2705
diff changeset
3 The new allocator.
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2705
diff changeset
4
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2705
diff changeset
5 New configure flag: `MC_ALLOC':
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2705
diff changeset
6
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2705
diff changeset
7 * configure.ac (XE_COMPLEX_ARG_ENABLE): Add `--enable-mc-alloc' as
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2705
diff changeset
8 a new configure flag.
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2705
diff changeset
9 * configure.in (AC_INIT_PARSE_ARGS): Add `--mc-alloc' as a new
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2705
diff changeset
10 configure flag.
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2705
diff changeset
11 * configure.usage: Add description for `mc-alloc'.
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2705
diff changeset
12
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2705
diff changeset
13 DUMP_IN_EXEC:
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2705
diff changeset
14
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2705
diff changeset
15 * Makefile.in.in: Condition the installation of a separate dump
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2705
diff changeset
16 file on !DUMP_ON_EXEC.
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2705
diff changeset
17 * configure.ac (XE_COMPLEX_ARG_ENABLE): Add
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2705
diff changeset
18 `--enable-dump-in-exec' as a new configure flag.
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2705
diff changeset
19 * configure.ac: DUMP_IN_EXEC is define as default for PDUMP but
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2705
diff changeset
20 not default for MC_ALLOC.
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2705
diff changeset
21 * configure.in (AC_INIT_PARSE_ARGS): Add `--dump-in-exec' as a
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2705
diff changeset
22 new configure flag.
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2705
diff changeset
23 * configure.in: DUMP_IN_EXEC is define as default for PDUMP but
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2705
diff changeset
24 not default for MC_ALLOC.
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2705
diff changeset
25 * configure.usage: Add description for `dump-in-exec'.
6fa9919a9a0b [xemacs-hg @ 2005-04-08 23:10:01 by crestani]
crestani
parents: 2705
diff changeset
26
2705
2b621542ba7a [xemacs-hg @ 2005-03-31 17:11:11 by james]
james
parents: 2701
diff changeset
27 2005-03-31 Jerry James <james@xemacs.org>
2b621542ba7a [xemacs-hg @ 2005-03-31 17:11:11 by james]
james
parents: 2701
diff changeset
28
2b621542ba7a [xemacs-hg @ 2005-03-31 17:11:11 by james]
james
parents: 2701
diff changeset
29 * configure.ac: Aidan's 2005-03-30 patch, but against
2b621542ba7a [xemacs-hg @ 2005-03-31 17:11:11 by james]
james
parents: 2701
diff changeset
30 configure.ac.
2b621542ba7a [xemacs-hg @ 2005-03-31 17:11:11 by james]
james
parents: 2701
diff changeset
31
2701
355d304fdc78 [xemacs-hg @ 2005-03-30 19:51:27 by aidan]
aidan
parents: 2694
diff changeset
32 2005-03-30 Aidan Kehoe <kehoea@parhasard.net>
355d304fdc78 [xemacs-hg @ 2005-03-30 19:51:27 by aidan]
aidan
parents: 2694
diff changeset
33
355d304fdc78 [xemacs-hg @ 2005-03-30 19:51:27 by aidan]
aidan
parents: 2694
diff changeset
34 * configure: #include <X11/Intrinsic.h.> -> #include
355d304fdc78 [xemacs-hg @ 2005-03-30 19:51:27 by aidan]
aidan
parents: 2694
diff changeset
35 <X11/Intrinsic.h>, thank you Robert Delius Royar.
355d304fdc78 [xemacs-hg @ 2005-03-30 19:51:27 by aidan]
aidan
parents: 2694
diff changeset
36
2694
296a5cd2a686 [xemacs-hg @ 2005-03-27 04:21:07 by james]
james
parents: 2692
diff changeset
37 2005-03-15 Jerry James <james@xemacs.org>
296a5cd2a686 [xemacs-hg @ 2005-03-27 04:21:07 by james]
james
parents: 2692
diff changeset
38
296a5cd2a686 [xemacs-hg @ 2005-03-27 04:21:07 by james]
james
parents: 2692
diff changeset
39 * configure.ac: Include <X11/Intrinsic.h> when checking for
296a5cd2a686 [xemacs-hg @ 2005-03-27 04:21:07 by james]
james
parents: 2692
diff changeset
40 <Xaw/XawInit.h> usability.
296a5cd2a686 [xemacs-hg @ 2005-03-27 04:21:07 by james]
james
parents: 2692
diff changeset
41
2692
7be4146ed65e [xemacs-hg @ 2005-03-26 17:22:29 by vins]
vins
parents: 2680
diff changeset
42 2005-03-23 Vin Shelton <acs@xemacs.org>
7be4146ed65e [xemacs-hg @ 2005-03-26 17:22:29 by vins]
vins
parents: 2680
diff changeset
43
7be4146ed65e [xemacs-hg @ 2005-03-26 17:22:29 by vins]
vins
parents: 2680
diff changeset
44 * configure.in: Remove -fno-gnu-linker option from Solaris
7be4146ed65e [xemacs-hg @ 2005-03-26 17:22:29 by vins]
vins
parents: 2680
diff changeset
45 dynodump builds; it doesn't do anything.
7be4146ed65e [xemacs-hg @ 2005-03-26 17:22:29 by vins]
vins
parents: 2680
diff changeset
46
7be4146ed65e [xemacs-hg @ 2005-03-26 17:22:29 by vins]
vins
parents: 2680
diff changeset
47 Don't use 'head -1' - it's deprecated by coreutils-5.3.0 on some
7be4146ed65e [xemacs-hg @ 2005-03-26 17:22:29 by vins]
vins
parents: 2680
diff changeset
48 platforms.
7be4146ed65e [xemacs-hg @ 2005-03-26 17:22:29 by vins]
vins
parents: 2680
diff changeset
49
2680
b26d8b5d0d30 [xemacs-hg @ 2005-03-24 00:27:37 by aidan]
aidan
parents: 2667
diff changeset
50 2005-03-24 Aidan Kehoe <kehoea@parhasard.net>
b26d8b5d0d30 [xemacs-hg @ 2005-03-24 00:27:37 by aidan]
aidan
parents: 2667
diff changeset
51
b26d8b5d0d30 [xemacs-hg @ 2005-03-24 00:27:37 by aidan]
aidan
parents: 2667
diff changeset
52 * configure: Regenerate.
b26d8b5d0d30 [xemacs-hg @ 2005-03-24 00:27:37 by aidan]
aidan
parents: 2667
diff changeset
53 * configure.ac (XE_COMPLEX_ARG_ENABLE): --OPTION -> --with-OPTION
b26d8b5d0d30 [xemacs-hg @ 2005-03-24 00:27:37 by aidan]
aidan
parents: 2667
diff changeset
54 in various docstrings and error messages.
b26d8b5d0d30 [xemacs-hg @ 2005-03-24 00:27:37 by aidan]
aidan
parents: 2667
diff changeset
55
2667
4f72b178ae35 [xemacs-hg @ 2005-03-15 12:37:07 by malcolmp]
malcolmp
parents: 2663
diff changeset
56 2005-03-15 Stephen J. Turnbull <stephen@xemacs.org>
4f72b178ae35 [xemacs-hg @ 2005-03-15 12:37:07 by malcolmp]
malcolmp
parents: 2663
diff changeset
57
4f72b178ae35 [xemacs-hg @ 2005-03-15 12:37:07 by malcolmp]
malcolmp
parents: 2663
diff changeset
58 * configure.ac (--with-cflags-optimization):
4f72b178ae35 [xemacs-hg @ 2005-03-15 12:37:07 by malcolmp]
malcolmp
parents: 2663
diff changeset
59 (--with-cflags-debugging):
4f72b178ae35 [xemacs-hg @ 2005-03-15 12:37:07 by malcolmp]
malcolmp
parents: 2663
diff changeset
60 If the user specifies them, use them, and don't make her beg.
4f72b178ae35 [xemacs-hg @ 2005-03-15 12:37:07 by malcolmp]
malcolmp
parents: 2663
diff changeset
61 * configure.ac (Autodetect PNG): PNG & TIFF need -lz in AC_CHECK_LIB.
4f72b178ae35 [xemacs-hg @ 2005-03-15 12:37:07 by malcolmp]
malcolmp
parents: 2663
diff changeset
62
4f72b178ae35 [xemacs-hg @ 2005-03-15 12:37:07 by malcolmp]
malcolmp
parents: 2663
diff changeset
63 2005-03-15 Malcolm Purvis <malcolmp@xemacs.org>
4f72b178ae35 [xemacs-hg @ 2005-03-15 12:37:07 by malcolmp]
malcolmp
parents: 2663
diff changeset
64
4f72b178ae35 [xemacs-hg @ 2005-03-15 12:37:07 by malcolmp]
malcolmp
parents: 2663
diff changeset
65 * configure.ac: Fix problems with OpenBSD /bin/sh.
4f72b178ae35 [xemacs-hg @ 2005-03-15 12:37:07 by malcolmp]
malcolmp
parents: 2663
diff changeset
66
2663
d5a00a8fb31a [xemacs-hg @ 2005-03-14 12:22:16 by malcolmp]
malcolmp
parents: 2653
diff changeset
67 2005-03-13 Aidan Kehoe <kehoea@parhasard.net>
d5a00a8fb31a [xemacs-hg @ 2005-03-14 12:22:16 by malcolmp]
malcolmp
parents: 2653
diff changeset
68
d5a00a8fb31a [xemacs-hg @ 2005-03-14 12:22:16 by malcolmp]
malcolmp
parents: 2653
diff changeset
69 * configure.ac (TAB): Check $ac_cv_build, not $canonical, when
d5a00a8fb31a [xemacs-hg @ 2005-03-14 12:22:16 by malcolmp]
malcolmp
parents: 2653
diff changeset
70 working out whether to link against libossaudio.so on NetBSD.
d5a00a8fb31a [xemacs-hg @ 2005-03-14 12:22:16 by malcolmp]
malcolmp
parents: 2653
diff changeset
71
2653
c86fcce8b14b [xemacs-hg @ 2005-03-11 19:19:24 by stephent]
stephent
parents: 2651
diff changeset
72 2005-03-11 Stephen J. Turnbull <stephen@xemacs.org>
c86fcce8b14b [xemacs-hg @ 2005-03-11 19:19:24 by stephent]
stephent
parents: 2651
diff changeset
73
c86fcce8b14b [xemacs-hg @ 2005-03-11 19:19:24 by stephent]
stephent
parents: 2651
diff changeset
74 * XEmacs 21.5.20 "cilantro" is released.
c86fcce8b14b [xemacs-hg @ 2005-03-11 19:19:24 by stephent]
stephent
parents: 2651
diff changeset
75
2651
3580ae2ce979 [xemacs-hg @ 2005-03-11 11:18:44 by malcolmp]
malcolmp
parents: 2648
diff changeset
76 2005-03-07 Malcolm Purvis <malcolmp@xemacs.org>
3580ae2ce979 [xemacs-hg @ 2005-03-11 11:18:44 by malcolmp]
malcolmp
parents: 2648
diff changeset
77
3580ae2ce979 [xemacs-hg @ 2005-03-11 11:18:44 by malcolmp]
malcolmp
parents: 2648
diff changeset
78 * .cvsignore: Added autom4te.cache.
3580ae2ce979 [xemacs-hg @ 2005-03-11 11:18:44 by malcolmp]
malcolmp
parents: 2648
diff changeset
79 * aclocal.m4: Changes to support autoconf 2.59
3580ae2ce979 [xemacs-hg @ 2005-03-11 11:18:44 by malcolmp]
malcolmp
parents: 2648
diff changeset
80 * config.guess:
3580ae2ce979 [xemacs-hg @ 2005-03-11 11:18:44 by malcolmp]
malcolmp
parents: 2648
diff changeset
81 * config.sub: Upgraded to the latest upstream version
3580ae2ce979 [xemacs-hg @ 2005-03-11 11:18:44 by malcolmp]
malcolmp
parents: 2648
diff changeset
82 * configure.ac: Rewritten for autoconf 2.59 support.
3580ae2ce979 [xemacs-hg @ 2005-03-11 11:18:44 by malcolmp]
malcolmp
parents: 2648
diff changeset
83
2648
68a5da07c189 [xemacs-hg @ 2005-03-10 11:49:00 by malcolmp]
malcolmp
parents: 2628
diff changeset
84 2005-03-06 Malcolm Purvis <malcolmp@xemacs.org>
68a5da07c189 [xemacs-hg @ 2005-03-10 11:49:00 by malcolmp]
malcolmp
parents: 2628
diff changeset
85
68a5da07c189 [xemacs-hg @ 2005-03-10 11:49:00 by malcolmp]
malcolmp
parents: 2628
diff changeset
86 * INSTALL:
68a5da07c189 [xemacs-hg @ 2005-03-10 11:49:00 by malcolmp]
malcolmp
parents: 2628
diff changeset
87 * PROBLEMS: Change configure arguments to the new autoconf 2.5
68a5da07c189 [xemacs-hg @ 2005-03-10 11:49:00 by malcolmp]
malcolmp
parents: 2628
diff changeset
88 style configure.
68a5da07c189 [xemacs-hg @ 2005-03-10 11:49:00 by malcolmp]
malcolmp
parents: 2628
diff changeset
89
2625
f2bd34928a0f [xemacs-hg @ 2005-03-01 22:43:31 by aidan]
aidan
parents: 2609
diff changeset
90 2005-03-01 Aidan Kehoe <kehoea@parhasard.net>
f2bd34928a0f [xemacs-hg @ 2005-03-01 22:43:31 by aidan]
aidan
parents: 2609
diff changeset
91
2628
63a49b9b070c [xemacs-hg @ 2005-03-02 17:55:25 by aidan]
aidan
parents: 2625
diff changeset
92 * configure: Regenerated.
2625
f2bd34928a0f [xemacs-hg @ 2005-03-01 22:43:31 by aidan]
aidan
parents: 2609
diff changeset
93 * configure.in (XE_COMPUTE_RUNPATH): Check for the availability of
2628
63a49b9b070c [xemacs-hg @ 2005-03-02 17:55:25 by aidan]
aidan
parents: 2625
diff changeset
94 XtRegisterDrawable.
2625
f2bd34928a0f [xemacs-hg @ 2005-03-01 22:43:31 by aidan]
aidan
parents: 2609
diff changeset
95
2609
c2580215c222 [xemacs-hg @ 2005-02-23 18:56:41 by adrian]
adrian
parents: 2602
diff changeset
96 2005-02-22 Adrian Aichner <adrian@xemacs.org>
c2580215c222 [xemacs-hg @ 2005-02-23 18:56:41 by adrian]
adrian
parents: 2602
diff changeset
97
c2580215c222 [xemacs-hg @ 2005-02-23 18:56:41 by adrian]
adrian
parents: 2602
diff changeset
98 * info/dir: Update to content generated by Info-rebuild-dir.
c2580215c222 [xemacs-hg @ 2005-02-23 18:56:41 by adrian]
adrian
parents: 2602
diff changeset
99
2602
3d8cce0303fa [xemacs-hg @ 2005-02-22 07:15:59 by stephent]
stephent
parents: 2594
diff changeset
100 2005-02-21 Stephen J. Turnbull <stephen@xemacs.org>
3d8cce0303fa [xemacs-hg @ 2005-02-22 07:15:59 by stephent]
stephent
parents: 2594
diff changeset
101
3d8cce0303fa [xemacs-hg @ 2005-02-22 07:15:59 by stephent]
stephent
parents: 2594
diff changeset
102 * version.sh (XEMACS_RELEASE_DATE): New version info variable.
3d8cce0303fa [xemacs-hg @ 2005-02-22 07:15:59 by stephent]
stephent
parents: 2594
diff changeset
103
3d8cce0303fa [xemacs-hg @ 2005-02-22 07:15:59 by stephent]
stephent
parents: 2594
diff changeset
104 * configure.in (XEMACS_RELEASE_DATE): Use it.
3d8cce0303fa [xemacs-hg @ 2005-02-22 07:15:59 by stephent]
stephent
parents: 2594
diff changeset
105
2594
bafa01f3cb06 [xemacs-hg @ 2005-02-18 06:26:31 by stephent]
stephent
parents: 2593
diff changeset
106 2005-02-18 Stephen J. Turnbull <stephen@xemacs.org>
bafa01f3cb06 [xemacs-hg @ 2005-02-18 06:26:31 by stephent]
stephent
parents: 2593
diff changeset
107
bafa01f3cb06 [xemacs-hg @ 2005-02-18 06:26:31 by stephent]
stephent
parents: 2593
diff changeset
108 * XEmacs 21.5.19 "chives" is released.
bafa01f3cb06 [xemacs-hg @ 2005-02-18 06:26:31 by stephent]
stephent
parents: 2593
diff changeset
109
2593
f152e0bc4ff6 [xemacs-hg @ 2005-02-18 04:53:55 by stephent]
stephent
parents: 2564
diff changeset
110 2005-02-17 Stephen J. Turnbull <stephen@xemacs.org>
f152e0bc4ff6 [xemacs-hg @ 2005-02-18 04:53:55 by stephent]
stephent
parents: 2564
diff changeset
111
f152e0bc4ff6 [xemacs-hg @ 2005-02-18 04:53:55 by stephent]
stephent
parents: 2564
diff changeset
112 * CHANGES-beta: Update.
f152e0bc4ff6 [xemacs-hg @ 2005-02-18 04:53:55 by stephent]
stephent
parents: 2564
diff changeset
113
2564
d96db265d893 [xemacs-hg @ 2005-02-04 03:04:04 by ben]
ben
parents: 2553
diff changeset
114 2005-02-03 Ben Wing <ben@xemacs.org>
d96db265d893 [xemacs-hg @ 2005-02-04 03:04:04 by ben]
ben
parents: 2553
diff changeset
115
d96db265d893 [xemacs-hg @ 2005-02-04 03:04:04 by ben]
ben
parents: 2553
diff changeset
116 * BUGS, README.packages: Delete, incorporate into FAQ.
d96db265d893 [xemacs-hg @ 2005-02-04 03:04:04 by ben]
ben
parents: 2553
diff changeset
117 * README: Incorporate into FAQ. Delete everything but text
d96db265d893 [xemacs-hg @ 2005-02-04 03:04:04 by ben]
ben
parents: 2553
diff changeset
118 pointing to FAQ.
d96db265d893 [xemacs-hg @ 2005-02-04 03:04:04 by ben]
ben
parents: 2553
diff changeset
119
2553
b880fa9b5d8a [xemacs-hg @ 2005-02-03 17:33:50 by james]
james
parents: 2536
diff changeset
120 2005-02-03 Jerry James <james@xemacs.org>
b880fa9b5d8a [xemacs-hg @ 2005-02-03 17:33:50 by james]
james
parents: 2536
diff changeset
121
b880fa9b5d8a [xemacs-hg @ 2005-02-03 17:33:50 by james]
james
parents: 2536
diff changeset
122 * configure.in: g++ 3.4.2 doesn't like -Wmissing-prototypes or
b880fa9b5d8a [xemacs-hg @ 2005-02-03 17:33:50 by james]
james
parents: 2536
diff changeset
123 -Wstrict-prototypes.
b880fa9b5d8a [xemacs-hg @ 2005-02-03 17:33:50 by james]
james
parents: 2536
diff changeset
124
2536
7edc33019aa4 [xemacs-hg @ 2005-01-31 20:01:49 by ben]
ben
parents: 2512
diff changeset
125 2005-01-31 Ben Wing <ben@xemacs.org>
7edc33019aa4 [xemacs-hg @ 2005-01-31 20:01:49 by ben]
ben
parents: 2512
diff changeset
126
7edc33019aa4 [xemacs-hg @ 2005-01-31 20:01:49 by ben]
ben
parents: 2512
diff changeset
127 * GETTING.GNU.SOFTWARE: Delete.
7edc33019aa4 [xemacs-hg @ 2005-01-31 20:01:49 by ben]
ben
parents: 2512
diff changeset
128 * Makefile.in.in (SOURCES):
7edc33019aa4 [xemacs-hg @ 2005-01-31 20:01:49 by ben]
ben
parents: 2512
diff changeset
129 Delete GETTING.GNU.SOFTWARE from SOURCES.
7edc33019aa4 [xemacs-hg @ 2005-01-31 20:01:49 by ben]
ben
parents: 2512
diff changeset
130 * PROBLEMS:
7edc33019aa4 [xemacs-hg @ 2005-01-31 20:01:49 by ben]
ben
parents: 2512
diff changeset
131 Delete reference to check_cygwin_setup.sh.
7edc33019aa4 [xemacs-hg @ 2005-01-31 20:01:49 by ben]
ben
parents: 2512
diff changeset
132
2512
38caebdefb55 [xemacs-hg @ 2005-01-26 10:02:12 by ben]
ben
parents: 2491
diff changeset
133 2005-01-26 Ben Wing <ben@xemacs.org>
38caebdefb55 [xemacs-hg @ 2005-01-26 10:02:12 by ben]
ben
parents: 2491
diff changeset
134
38caebdefb55 [xemacs-hg @ 2005-01-26 10:02:12 by ben]
ben
parents: 2491
diff changeset
135 * configure.in (AC_INIT_PARSE_ARGS):
38caebdefb55 [xemacs-hg @ 2005-01-26 10:02:12 by ben]
ben
parents: 2491
diff changeset
136 * configure.in (CANONICALIZE_PATH):
38caebdefb55 [xemacs-hg @ 2005-01-26 10:02:12 by ben]
ben
parents: 2491
diff changeset
137 * configure.in (TAB):
38caebdefb55 [xemacs-hg @ 2005-01-26 10:02:12 by ben]
ben
parents: 2491
diff changeset
138 * configure.usage:
38caebdefb55 [xemacs-hg @ 2005-01-26 10:02:12 by ben]
ben
parents: 2491
diff changeset
139 Add --with-optimization, cflags-optimization,
38caebdefb55 [xemacs-hg @ 2005-01-26 10:02:12 by ben]
ben
parents: 2491
diff changeset
140 cflags-debugging. Separate out optimization and debugging arguments.
38caebdefb55 [xemacs-hg @ 2005-01-26 10:02:12 by ben]
ben
parents: 2491
diff changeset
141 Document.
38caebdefb55 [xemacs-hg @ 2005-01-26 10:02:12 by ben]
ben
parents: 2491
diff changeset
142
2491
876c400e58d7 [xemacs-hg @ 2005-01-21 09:30:46 by aidan]
aidan
parents: 2427
diff changeset
143 2005-01-21 Aidan Kehoe <kehoea@parhasard.net>
876c400e58d7 [xemacs-hg @ 2005-01-21 09:30:46 by aidan]
aidan
parents: 2427
diff changeset
144
876c400e58d7 [xemacs-hg @ 2005-01-21 09:30:46 by aidan]
aidan
parents: 2427
diff changeset
145 * configure:
876c400e58d7 [xemacs-hg @ 2005-01-21 09:30:46 by aidan]
aidan
parents: 2427
diff changeset
146 * configure.in (XE_COMPUTE_RUNPATH):
876c400e58d7 [xemacs-hg @ 2005-01-21 09:30:46 by aidan]
aidan
parents: 2427
diff changeset
147 NetBSD can use Linux's sound API, but it needs an extra library at
876c400e58d7 [xemacs-hg @ 2005-01-21 09:30:46 by aidan]
aidan
parents: 2427
diff changeset
148 link time to do so.
876c400e58d7 [xemacs-hg @ 2005-01-21 09:30:46 by aidan]
aidan
parents: 2427
diff changeset
149
2427
97dd9f867cef [xemacs-hg @ 2004-12-07 12:52:30 by malcolmp]
malcolmp
parents: 2420
diff changeset
150 2004-12-07 Malcolm Purvis <malcolmp@xemacs.org>
97dd9f867cef [xemacs-hg @ 2004-12-07 12:52:30 by malcolmp]
malcolmp
parents: 2420
diff changeset
151
97dd9f867cef [xemacs-hg @ 2004-12-07 12:52:30 by malcolmp]
malcolmp
parents: 2420
diff changeset
152 * INSTALL: A POSIX compatible Make is no longer required for builds.
97dd9f867cef [xemacs-hg @ 2004-12-07 12:52:30 by malcolmp]
malcolmp
parents: 2420
diff changeset
153 * Makefile.in.in (RECURSIVE_MAKE): Removed.
97dd9f867cef [xemacs-hg @ 2004-12-07 12:52:30 by malcolmp]
malcolmp
parents: 2420
diff changeset
154 * Makefile.in.in (RECURSIVE_MAKE_ARGS): New.
97dd9f867cef [xemacs-hg @ 2004-12-07 12:52:30 by malcolmp]
malcolmp
parents: 2420
diff changeset
155 * configure.in (RECURSIVE_MAKE): Removed.
97dd9f867cef [xemacs-hg @ 2004-12-07 12:52:30 by malcolmp]
malcolmp
parents: 2420
diff changeset
156 * configure.in (RECURSIVE_MAKE_ARGS): New.
97dd9f867cef [xemacs-hg @ 2004-12-07 12:52:30 by malcolmp]
malcolmp
parents: 2420
diff changeset
157 Always refer to make as $(MAKE) and use $(RECURSIVE_MAKE_ARGS) for
97dd9f867cef [xemacs-hg @ 2004-12-07 12:52:30 by malcolmp]
malcolmp
parents: 2420
diff changeset
158 other parameters. This allows -j to work in GNU Make while
97dd9f867cef [xemacs-hg @ 2004-12-07 12:52:30 by malcolmp]
malcolmp
parents: 2420
diff changeset
159 removing need for POSIX compatible make on all systems.
97dd9f867cef [xemacs-hg @ 2004-12-07 12:52:30 by malcolmp]
malcolmp
parents: 2420
diff changeset
160
2420
ad56e5a6d09f [xemacs-hg @ 2004-12-06 03:46:06 by ben]
ben
parents: 2416
diff changeset
161 2004-12-05 Ben Wing <ben@xemacs.org>
ad56e5a6d09f [xemacs-hg @ 2004-12-06 03:46:06 by ben]
ben
parents: 2416
diff changeset
162
ad56e5a6d09f [xemacs-hg @ 2004-12-06 03:46:06 by ben]
ben
parents: 2416
diff changeset
163 * README.packages:
ad56e5a6d09f [xemacs-hg @ 2004-12-06 03:46:06 by ben]
ben
parents: 2416
diff changeset
164 Fix error in specifying standard package location.
ad56e5a6d09f [xemacs-hg @ 2004-12-06 03:46:06 by ben]
ben
parents: 2416
diff changeset
165 Document --package-prefix.
ad56e5a6d09f [xemacs-hg @ 2004-12-06 03:46:06 by ben]
ben
parents: 2416
diff changeset
166
2416
515786aa760a [xemacs-hg @ 2004-12-05 08:06:41 by ben]
ben
parents: 2389
diff changeset
167 2004-12-05 Ben Wing <ben@xemacs.org>
515786aa760a [xemacs-hg @ 2004-12-05 08:06:41 by ben]
ben
parents: 2389
diff changeset
168
515786aa760a [xemacs-hg @ 2004-12-05 08:06:41 by ben]
ben
parents: 2389
diff changeset
169 * configure.usage:
515786aa760a [xemacs-hg @ 2004-12-05 08:06:41 by ben]
ben
parents: 2389
diff changeset
170 * configure.in (AC_INIT_PARSE_ARGS):
515786aa760a [xemacs-hg @ 2004-12-05 08:06:41 by ben]
ben
parents: 2389
diff changeset
171 * configure.in (TAB):
515786aa760a [xemacs-hg @ 2004-12-05 08:06:41 by ben]
ben
parents: 2389
diff changeset
172 * configure.in (XE_COMPUTE_RUNPATH):
515786aa760a [xemacs-hg @ 2004-12-05 08:06:41 by ben]
ben
parents: 2389
diff changeset
173 * configure:
515786aa760a [xemacs-hg @ 2004-12-05 08:06:41 by ben]
ben
parents: 2389
diff changeset
174 Support --package-prefix and mmdf and pop arguments to --mail-locking.
515786aa760a [xemacs-hg @ 2004-12-05 08:06:41 by ben]
ben
parents: 2389
diff changeset
175 Document in configure.usage.
515786aa760a [xemacs-hg @ 2004-12-05 08:06:41 by ben]
ben
parents: 2389
diff changeset
176
2389
df0455455d17 [xemacs-hg @ 2004-11-14 12:31:09 by crestani]
crestani
parents: 2388
diff changeset
177 2004-11-12 Marcus Crestani <crestani@informatik.uni-tuebingen.de>
df0455455d17 [xemacs-hg @ 2004-11-14 12:31:09 by crestani]
crestani
parents: 2388
diff changeset
178
df0455455d17 [xemacs-hg @ 2004-11-14 12:31:09 by crestani]
crestani
parents: 2388
diff changeset
179 * configure:
df0455455d17 [xemacs-hg @ 2004-11-14 12:31:09 by crestani]
crestani
parents: 2388
diff changeset
180 * configure.in: Make pdump default for Cygwin.
df0455455d17 [xemacs-hg @ 2004-11-14 12:31:09 by crestani]
crestani
parents: 2388
diff changeset
181
2388
cfff883d4990 [xemacs-hg @ 2004-11-14 12:19:55 by crestani]
crestani
parents: 2367
diff changeset
182 2004-11-12 Marcus Crestani <crestani@informatik.uni-tuebingen.de>
cfff883d4990 [xemacs-hg @ 2004-11-14 12:19:55 by crestani]
crestani
parents: 2367
diff changeset
183
cfff883d4990 [xemacs-hg @ 2004-11-14 12:19:55 by crestani]
crestani
parents: 2367
diff changeset
184 * Makefile.in.in (install-arch-dep): Fix installation for Cygwin.
cfff883d4990 [xemacs-hg @ 2004-11-14 12:19:55 by crestani]
crestani
parents: 2367
diff changeset
185
2367
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
186 2004-10-26 Ben Wing <ben@xemacs.org>
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
187
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
188 * configure.in (AC_INIT_NOTICE):
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
189 * configure.in (TAB):
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
190 * configure.in (XE_COMPUTE_RUNPATH):
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
191 Turn off -Winline and -Wchar-subscripts.
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
192 Use the right set of cflags when compiling modules.
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
193 Rewrite ldap configuration to separate the inclusion of lber
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
194 (needed in recent Cygwin) from the basic checks for the
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
195 needed libraries.
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
196 add a function for MAKE_JUNK_C; initially code was added to
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
197 generate xemacs.def using this, but it will need to be rewritten.
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
198 add an rm -f for junk.c to avoid weird Cygwin bug with cp -f onto
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
199 an existing file.
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
200 Sort list of auto-detected functions and eliminate unused checks for
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
201 stpcpy, setlocale and getwd.
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
202 Add autodetection of Cygwin scanf problems
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 2346
diff changeset
203
2346
162083ea139d [xemacs-hg @ 2004-10-22 05:16:40 by stephent]
stephent
parents: 2345
diff changeset
204 2004-10-22 Stephen J. Turnbull <stephen@xemacs.org>
162083ea139d [xemacs-hg @ 2004-10-22 05:16:40 by stephent]
stephent
parents: 2345
diff changeset
205
162083ea139d [xemacs-hg @ 2004-10-22 05:16:40 by stephent]
stephent
parents: 2345
diff changeset
206 * XEmacs 21.5.18 "chestnut" is released.
162083ea139d [xemacs-hg @ 2004-10-22 05:16:40 by stephent]
stephent
parents: 2345
diff changeset
207
2345
c9a4a450d9e2 [xemacs-hg @ 2004-10-22 02:14:13 by stephent]
stephent
parents: 2315
diff changeset
208 2004-10-22 Stephen J. Turnbull <stephen@xemacs.org>
c9a4a450d9e2 [xemacs-hg @ 2004-10-22 02:14:13 by stephent]
stephent
parents: 2315
diff changeset
209
c9a4a450d9e2 [xemacs-hg @ 2004-10-22 02:14:13 by stephent]
stephent
parents: 2315
diff changeset
210 * CHANGES-beta: Update for release.
c9a4a450d9e2 [xemacs-hg @ 2004-10-22 02:14:13 by stephent]
stephent
parents: 2315
diff changeset
211
2315
e219f63b9c24 [xemacs-hg @ 2004-09-29 15:38:30 by james]
james
parents: 2300
diff changeset
212 2004-09-29 Jerry James <james@xemacs.org>
e219f63b9c24 [xemacs-hg @ 2004-09-29 15:38:30 by james]
james
parents: 2300
diff changeset
213
e219f63b9c24 [xemacs-hg @ 2004-09-29 15:38:30 by james]
james
parents: 2300
diff changeset
214 * configure.in: Don't use -Wunused-parameter with g++.
e219f63b9c24 [xemacs-hg @ 2004-09-29 15:38:30 by james]
james
parents: 2300
diff changeset
215
2300
e2fdc9035c5b [xemacs-hg @ 2004-09-22 11:40:40 by malcolmp]
malcolmp
parents: 2286
diff changeset
216 2004-09-21 Malcolm Purvis <malcolmp@xemacs.org>
e2fdc9035c5b [xemacs-hg @ 2004-09-22 11:40:40 by malcolmp]
malcolmp
parents: 2286
diff changeset
217
e2fdc9035c5b [xemacs-hg @ 2004-09-22 11:40:40 by malcolmp]
malcolmp
parents: 2286
diff changeset
218 * configure.in: Unused parameter and variables warnings are GCC 3
e2fdc9035c5b [xemacs-hg @ 2004-09-22 11:40:40 by malcolmp]
malcolmp
parents: 2286
diff changeset
219 or greater.
e2fdc9035c5b [xemacs-hg @ 2004-09-22 11:40:40 by malcolmp]
malcolmp
parents: 2286
diff changeset
220
2286
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2283
diff changeset
221 2004-09-14 Jerry James <james@xemacs.org>
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2283
diff changeset
222
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2283
diff changeset
223 * configure.in (TAB): Add unused parameter and variables warnings
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2283
diff changeset
224 to gcc CFLAGS.
04bc9d2f42c7 [xemacs-hg @ 2004-09-20 19:18:55 by james]
james
parents: 2283
diff changeset
225
2283
f512fee90bfb [xemacs-hg @ 2004-09-20 18:00:38 by james]
james
parents: 2263
diff changeset
226 2004-09-20 Jerry James <james@xemacs.org>
f512fee90bfb [xemacs-hg @ 2004-09-20 18:00:38 by james]
james
parents: 2263
diff changeset
227
f512fee90bfb [xemacs-hg @ 2004-09-20 18:00:38 by james]
james
parents: 2263
diff changeset
228 * INSTALL: Update Canna description to reflect recent changes.
f512fee90bfb [xemacs-hg @ 2004-09-20 18:00:38 by james]
james
parents: 2263
diff changeset
229
2263
702b5727498a [xemacs-hg @ 2004-09-11 05:28:11 by malcolmp]
malcolmp
parents: 2259
diff changeset
230 2004-09-11 Malcolm Purvis <malcolmp@xemacs.org>
702b5727498a [xemacs-hg @ 2004-09-11 05:28:11 by malcolmp]
malcolmp
parents: 2259
diff changeset
231
702b5727498a [xemacs-hg @ 2004-09-11 05:28:11 by malcolmp]
malcolmp
parents: 2259
diff changeset
232 * configure.in Check for sys/resource.h, sys/vlimit.h, getrlimit()
702b5727498a [xemacs-hg @ 2004-09-11 05:28:11 by malcolmp]
malcolmp
parents: 2259
diff changeset
233 and vlimit().
702b5727498a [xemacs-hg @ 2004-09-11 05:28:11 by malcolmp]
malcolmp
parents: 2259
diff changeset
234
2259
e77c2aea9fd8 [xemacs-hg @ 2004-09-10 11:58:06 by malcolmp]
malcolmp
parents: 2216
diff changeset
235 2004-09-10 Malcolm Purvis <malcolmp@xemacs.org>
e77c2aea9fd8 [xemacs-hg @ 2004-09-10 11:58:06 by malcolmp]
malcolmp
parents: 2216
diff changeset
236
e77c2aea9fd8 [xemacs-hg @ 2004-09-10 11:58:06 by malcolmp]
malcolmp
parents: 2216
diff changeset
237 * INSTALL: A POSIX compatible Make is required for builds.
e77c2aea9fd8 [xemacs-hg @ 2004-09-10 11:58:06 by malcolmp]
malcolmp
parents: 2216
diff changeset
238 * Makefile.in.in: Enable support for parallel builds.
e77c2aea9fd8 [xemacs-hg @ 2004-09-10 11:58:06 by malcolmp]
malcolmp
parents: 2216
diff changeset
239
2216
352d35ff1c82 [xemacs-hg @ 2004-08-13 20:55:31 by adrian]
adrian
parents: 2131
diff changeset
240 2004-08-12 "Johann 'Myrkraverk' Oskarsson" <myrkraverk@users.sourceforge.net>
352d35ff1c82 [xemacs-hg @ 2004-08-13 20:55:31 by adrian]
adrian
parents: 2131
diff changeset
241
352d35ff1c82 [xemacs-hg @ 2004-08-13 20:55:31 by adrian]
adrian
parents: 2131
diff changeset
242 * config.guess: Identify PlayStation2.
352d35ff1c82 [xemacs-hg @ 2004-08-13 20:55:31 by adrian]
adrian
parents: 2131
diff changeset
243
2131
646a9dd3e204 [xemacs-hg @ 2004-06-16 10:32:57 by stephent]
stephent
parents: 2128
diff changeset
244 2004-06-16 Stephen J. Turnbull <stephen@xemacs.org>
646a9dd3e204 [xemacs-hg @ 2004-06-16 10:32:57 by stephent]
stephent
parents: 2128
diff changeset
245
646a9dd3e204 [xemacs-hg @ 2004-06-16 10:32:57 by stephent]
stephent
parents: 2128
diff changeset
246 * configure.in: Character classes in globs don't work, die when
646a9dd3e204 [xemacs-hg @ 2004-06-16 10:32:57 by stephent]
stephent
parents: 2128
diff changeset
247 GTK is mixed with other toolkits, protect comma in quoted message.
646a9dd3e204 [xemacs-hg @ 2004-06-16 10:32:57 by stephent]
stephent
parents: 2128
diff changeset
248
2128
3c2d928e17ad [xemacs-hg @ 2004-06-14 11:01:20 by stephent]
stephent
parents: 2079
diff changeset
249 2004-06-14 Stephen J. Turnbull <stephen@xemacs.org>
3c2d928e17ad [xemacs-hg @ 2004-06-14 11:01:20 by stephent]
stephent
parents: 2079
diff changeset
250
3c2d928e17ad [xemacs-hg @ 2004-06-14 11:01:20 by stephent]
stephent
parents: 2079
diff changeset
251 * configure.in (Autodetection of Gdk libraries and includes):
3c2d928e17ad [xemacs-hg @ 2004-06-14 11:01:20 by stephent]
stephent
parents: 2079
diff changeset
252 Don't allow mixing of GTK with other toolkits.
3c2d928e17ad [xemacs-hg @ 2004-06-14 11:01:20 by stephent]
stephent
parents: 2079
diff changeset
253
3c2d928e17ad [xemacs-hg @ 2004-06-14 11:01:20 by stephent]
stephent
parents: 2079
diff changeset
254 2004-06-12 Stephen J. Turnbull <stephen@xemacs.org>
3c2d928e17ad [xemacs-hg @ 2004-06-14 11:01:20 by stephent]
stephent
parents: 2079
diff changeset
255
3c2d928e17ad [xemacs-hg @ 2004-06-14 11:01:20 by stephent]
stephent
parents: 2079
diff changeset
256 * configure.in: Improve style of WARNINGs.
3c2d928e17ad [xemacs-hg @ 2004-06-14 11:01:20 by stephent]
stephent
parents: 2079
diff changeset
257
3c2d928e17ad [xemacs-hg @ 2004-06-14 11:01:20 by stephent]
stephent
parents: 2079
diff changeset
258 2004-05-20 Stephen J. Turnbull <stephen@xemacs.org>
3c2d928e17ad [xemacs-hg @ 2004-06-14 11:01:20 by stephent]
stephent
parents: 2079
diff changeset
259
3c2d928e17ad [xemacs-hg @ 2004-06-14 11:01:20 by stephent]
stephent
parents: 2079
diff changeset
260 * configure.in (HAVE_GPM): Die if GPM requested but not found.
3c2d928e17ad [xemacs-hg @ 2004-06-14 11:01:20 by stephent]
stephent
parents: 2079
diff changeset
261
2079
9402c85dcf6f [xemacs-hg @ 2004-05-14 15:35:28 by james]
james
parents: 2050
diff changeset
262 2004-05-10 Jerry James <james@xemacs.org>
9402c85dcf6f [xemacs-hg @ 2004-05-14 15:35:28 by james]
james
parents: 2050
diff changeset
263
9402c85dcf6f [xemacs-hg @ 2004-05-14 15:35:28 by james]
james
parents: 2050
diff changeset
264 * aclocal.m4: Typo fix.
9402c85dcf6f [xemacs-hg @ 2004-05-14 15:35:28 by james]
james
parents: 2050
diff changeset
265 * configure.in (XE_COMPUTE_RUNPATH): Add checks for shl_load and
9402c85dcf6f [xemacs-hg @ 2004-05-14 15:35:28 by james]
james
parents: 2050
diff changeset
266 LTDL; unify the OS-specific checks into a case statement.
9402c85dcf6f [xemacs-hg @ 2004-05-14 15:35:28 by james]
james
parents: 2050
diff changeset
267
2050
a741f294362b [xemacs-hg @ 2004-04-30 14:59:15 by james]
james
parents: 2048
diff changeset
268 2004-04-30 Jerry James <james@xemacs.org>
a741f294362b [xemacs-hg @ 2004-04-30 14:59:15 by james]
james
parents: 2048
diff changeset
269
a741f294362b [xemacs-hg @ 2004-04-30 14:59:15 by james]
james
parents: 2048
diff changeset
270 * configure.in: Turn ICC warning 147 into an error to get a good
a741f294362b [xemacs-hg @ 2004-04-30 14:59:15 by james]
james
parents: 2048
diff changeset
271 XRegisterIMInstantiateCallback prototype.
a741f294362b [xemacs-hg @ 2004-04-30 14:59:15 by james]
james
parents: 2048
diff changeset
272
2048
193e76abdf0f [xemacs-hg @ 2004-04-29 03:04:56 by james]
james
parents: 2029
diff changeset
273 2004-04-28 Jerry James <james@xemacs.org>
193e76abdf0f [xemacs-hg @ 2004-04-29 03:04:56 by james]
james
parents: 2029
diff changeset
274
193e76abdf0f [xemacs-hg @ 2004-04-29 03:04:56 by james]
james
parents: 2029
diff changeset
275 * configure.in: Get version information for both icc and icpc.
193e76abdf0f [xemacs-hg @ 2004-04-29 03:04:56 by james]
james
parents: 2029
diff changeset
276
2029
7a9919388e87 [xemacs-hg @ 2004-04-19 08:16:33 by stephent]
stephent
parents: 2016
diff changeset
277 2004-04-08 Stephen J. Turnbull <stephen@xemacs.org>
7a9919388e87 [xemacs-hg @ 2004-04-19 08:16:33 by stephent]
stephent
parents: 2016
diff changeset
278
7a9919388e87 [xemacs-hg @ 2004-04-19 08:16:33 by stephent]
stephent
parents: 2016
diff changeset
279 * configure.in (GTK setup): Warn if other toolkits requested.
7a9919388e87 [xemacs-hg @ 2004-04-19 08:16:33 by stephent]
stephent
parents: 2016
diff changeset
280
7a9919388e87 [xemacs-hg @ 2004-04-19 08:16:33 by stephent]
stephent
parents: 2016
diff changeset
281 2004-03-31 Stephen J. Turnbull <stephen@xemacs.org>
7a9919388e87 [xemacs-hg @ 2004-04-19 08:16:33 by stephent]
stephent
parents: 2016
diff changeset
282
7a9919388e87 [xemacs-hg @ 2004-04-19 08:16:33 by stephent]
stephent
parents: 2016
diff changeset
283 * configure.in (Compiler feature macros): Kaarthik Sivakumar says
7a9919388e87 [xemacs-hg @ 2004-04-19 08:16:33 by stephent]
stephent
parents: 2016
diff changeset
284 _POSIX_C_SOURCE should be defined for FreeBSD 4.5 to 4.9 at least.
7a9919388e87 [xemacs-hg @ 2004-04-19 08:16:33 by stephent]
stephent
parents: 2016
diff changeset
285
7a9919388e87 [xemacs-hg @ 2004-04-19 08:16:33 by stephent]
stephent
parents: 2016
diff changeset
286 2004-03-31 Stephen J. Turnbull <stephen@xemacs.org>
7a9919388e87 [xemacs-hg @ 2004-04-19 08:16:33 by stephent]
stephent
parents: 2016
diff changeset
287
7a9919388e87 [xemacs-hg @ 2004-04-19 08:16:33 by stephent]
stephent
parents: 2016
diff changeset
288 * Makefile.in.in (install-arch-indep): make gzip-el now saves ~4MB.
7a9919388e87 [xemacs-hg @ 2004-04-19 08:16:33 by stephent]
stephent
parents: 2016
diff changeset
289
2016
6aa2e57a873e [xemacs-hg @ 2004-04-15 20:59:24 by olivierg]
olivierg
parents: 2009
diff changeset
290 2003-12-07 Olivier Galibert <galibert@pobox.com>
6aa2e57a873e [xemacs-hg @ 2004-04-15 20:59:24 by olivierg]
olivierg
parents: 2009
diff changeset
291
6aa2e57a873e [xemacs-hg @ 2004-04-15 20:59:24 by olivierg]
olivierg
parents: 2009
diff changeset
292 * Makefile.in.in: Don't install the dmp file when it's in the
6aa2e57a873e [xemacs-hg @ 2004-04-15 20:59:24 by olivierg]
olivierg
parents: 2009
diff changeset
293 executable.
6aa2e57a873e [xemacs-hg @ 2004-04-15 20:59:24 by olivierg]
olivierg
parents: 2009
diff changeset
294
2009
1388c8b3e663 [xemacs-hg @ 2004-04-13 04:23:49 by james]
james
parents: 2006
diff changeset
295 2004-04-12 Kaarthik Sivakumar <kaarthik@comcast.net>
1388c8b3e663 [xemacs-hg @ 2004-04-13 04:23:49 by james]
james
parents: 2006
diff changeset
296
1388c8b3e663 [xemacs-hg @ 2004-04-13 04:23:49 by james]
james
parents: 2006
diff changeset
297 * configure.in: Check for libmp dependencies before checking for
1388c8b3e663 [xemacs-hg @ 2004-04-13 04:23:49 by james]
james
parents: 2006
diff changeset
298 the existence of the move function.
1388c8b3e663 [xemacs-hg @ 2004-04-13 04:23:49 by james]
james
parents: 2006
diff changeset
299
2006
1ea9c87af805 [xemacs-hg @ 2004-04-12 10:11:47 by stephent]
stephent
parents: 1998
diff changeset
300 2004-03-04 Malcolm Purvis <malcolmpurvis@optushome.com.au>
1ea9c87af805 [xemacs-hg @ 2004-04-12 10:11:47 by stephent]
stephent
parents: 1998
diff changeset
301
1ea9c87af805 [xemacs-hg @ 2004-04-12 10:11:47 by stephent]
stephent
parents: 1998
diff changeset
302 * configure.in (src/Makefile): No longer include a special linker
1ea9c87af805 [xemacs-hg @ 2004-04-12 10:11:47 by stephent]
stephent
parents: 1998
diff changeset
303 script for PowerPC Linux. Thanks to Stefan Bruda for reporting
1ea9c87af805 [xemacs-hg @ 2004-04-12 10:11:47 by stephent]
stephent
parents: 1998
diff changeset
304 this bug.
1ea9c87af805 [xemacs-hg @ 2004-04-12 10:11:47 by stephent]
stephent
parents: 1998
diff changeset
305
1998
1d23b62cc251 [xemacs-hg @ 2004-04-07 17:43:31 by stephent]
stephent
parents: 1997
diff changeset
306 2004-04-08 Stephen J. Turnbull <stephen@xemacs.org>
1d23b62cc251 [xemacs-hg @ 2004-04-07 17:43:31 by stephent]
stephent
parents: 1997
diff changeset
307
1d23b62cc251 [xemacs-hg @ 2004-04-07 17:43:31 by stephent]
stephent
parents: 1997
diff changeset
308 * configure.in (Compiler-specific hacks): Restore warning flags
1d23b62cc251 [xemacs-hg @ 2004-04-07 17:43:31 by stephent]
stephent
parents: 1997
diff changeset
309 for XEMACS_CC if gcc. Report warning flags at compute time.
1d23b62cc251 [xemacs-hg @ 2004-04-07 17:43:31 by stephent]
stephent
parents: 1997
diff changeset
310
1997
f02e47602886 [xemacs-hg @ 2004-04-07 16:23:49 by james]
james
parents: 1989
diff changeset
311 2004-04-07 Jerry James <james@xemacs.org>
f02e47602886 [xemacs-hg @ 2004-04-07 16:23:49 by james]
james
parents: 1989
diff changeset
312
f02e47602886 [xemacs-hg @ 2004-04-07 16:23:49 by james]
james
parents: 1989
diff changeset
313 * configure.in: FreeBSD MP needs -lcrypto.
f02e47602886 [xemacs-hg @ 2004-04-07 16:23:49 by james]
james
parents: 1989
diff changeset
314
1989
55bab11c30e8 [xemacs-hg @ 2004-04-06 20:50:39 by james]
james
parents: 1985
diff changeset
315 2004-04-06 Jerry James <james@xemacs.org>
55bab11c30e8 [xemacs-hg @ 2004-04-06 20:50:39 by james]
james
parents: 1985
diff changeset
316
55bab11c30e8 [xemacs-hg @ 2004-04-06 20:50:39 by james]
james
parents: 1985
diff changeset
317 * configure.in: Change test -e to test -r for portability.
55bab11c30e8 [xemacs-hg @ 2004-04-06 20:50:39 by james]
james
parents: 1985
diff changeset
318
1985
a8b463c4984a [xemacs-hg @ 2004-04-06 12:13:54 by stephent]
stephent
parents: 1984
diff changeset
319 2004-04-06 Stephen J. Turnbull <turnbull@sk.tsukuba.ac.jp>
a8b463c4984a [xemacs-hg @ 2004-04-06 12:13:54 by stephent]
stephent
parents: 1984
diff changeset
320
a8b463c4984a [xemacs-hg @ 2004-04-06 12:13:54 by stephent]
stephent
parents: 1984
diff changeset
321 * configure.in (use_number_lib): Accepts no to disable bignums.
a8b463c4984a [xemacs-hg @ 2004-04-06 12:13:54 by stephent]
stephent
parents: 1984
diff changeset
322 * configure.usage: Document the "no" value.
a8b463c4984a [xemacs-hg @ 2004-04-06 12:13:54 by stephent]
stephent
parents: 1984
diff changeset
323
1984
36760cdcb631 [xemacs-hg @ 2004-04-05 22:50:44 by james]
james
parents: 1964
diff changeset
324 2004-04-05 Jerry James <james@xemacs.org>
36760cdcb631 [xemacs-hg @ 2004-04-05 22:50:44 by james]
james
parents: 1964
diff changeset
325
36760cdcb631 [xemacs-hg @ 2004-04-05 22:50:44 by james]
james
parents: 1964
diff changeset
326 * configure.in (use_number_lib): New. Values are "gmp" or "mp".
36760cdcb631 [xemacs-hg @ 2004-04-05 22:50:44 by james]
james
parents: 1964
diff changeset
327 * configure.in: Use it. Report it. Check for size of a double.
36760cdcb631 [xemacs-hg @ 2004-04-05 22:50:44 by james]
james
parents: 1964
diff changeset
328 * configure.usage: Tell how to use use-number-lib.
36760cdcb631 [xemacs-hg @ 2004-04-05 22:50:44 by james]
james
parents: 1964
diff changeset
329
1964
ebb2b9148aad [xemacs-hg @ 2004-03-22 09:22:24 by stephent]
stephent
parents: 1955
diff changeset
330 2004-03-22 Stephen J. Turnbull <stephen@xemacs.org>
ebb2b9148aad [xemacs-hg @ 2004-03-22 09:22:24 by stephent]
stephent
parents: 1955
diff changeset
331
ebb2b9148aad [xemacs-hg @ 2004-03-22 09:22:24 by stephent]
stephent
parents: 1955
diff changeset
332 * XEmacs 21.5.17 "chayote" is released.
ebb2b9148aad [xemacs-hg @ 2004-03-22 09:22:24 by stephent]
stephent
parents: 1955
diff changeset
333
1955
02446ca6a05d [xemacs-hg @ 2004-03-18 09:57:08 by stephent]
stephent
parents: 1922
diff changeset
334 2004-03-18 Stephen J. Turnbull <turnbull@sk.tsukuba.ac.jp>
02446ca6a05d [xemacs-hg @ 2004-03-18 09:57:08 by stephent]
stephent
parents: 1922
diff changeset
335
02446ca6a05d [xemacs-hg @ 2004-03-18 09:57:08 by stephent]
stephent
parents: 1922
diff changeset
336 * configure.in (Compiler feature macros): Define _POSIX_C_SOURCE
02446ca6a05d [xemacs-hg @ 2004-03-18 09:57:08 by stephent]
stephent
parents: 1922
diff changeset
337 for FreeBSD 4.9 to shut up viteno's compiler, and _XOPEN_SOURCE to
02446ca6a05d [xemacs-hg @ 2004-03-18 09:57:08 by stephent]
stephent
parents: 1922
diff changeset
338 500 since apparently we'll use it if available.
02446ca6a05d [xemacs-hg @ 2004-03-18 09:57:08 by stephent]
stephent
parents: 1922
diff changeset
339
02446ca6a05d [xemacs-hg @ 2004-03-18 09:57:08 by stephent]
stephent
parents: 1922
diff changeset
340 2004-03-05 Stephen J. Turnbull <stephen@xemacs.org>
02446ca6a05d [xemacs-hg @ 2004-03-18 09:57:08 by stephent]
stephent
parents: 1922
diff changeset
341
02446ca6a05d [xemacs-hg @ 2004-03-18 09:57:08 by stephent]
stephent
parents: 1922
diff changeset
342 * configure.in (libc detection): Fix progress message.
02446ca6a05d [xemacs-hg @ 2004-03-18 09:57:08 by stephent]
stephent
parents: 1922
diff changeset
343
1922
569139be45f6 [xemacs-hg @ 2004-02-21 07:53:59 by stephent]
stephent
parents: 1916
diff changeset
344 2004-02-21 Stephen J. Turnbull <stephen@xemacs.org>
569139be45f6 [xemacs-hg @ 2004-02-21 07:53:59 by stephent]
stephent
parents: 1916
diff changeset
345
569139be45f6 [xemacs-hg @ 2004-02-21 07:53:59 by stephent]
stephent
parents: 1916
diff changeset
346 * configure.in (CFLAGS): Do XE_CFLAGS before adding warning flags to
569139be45f6 [xemacs-hg @ 2004-02-21 07:53:59 by stephent]
stephent
parents: 1916
diff changeset
347 CFLAGS. Thanks to Jerry James for reporting the bug.
569139be45f6 [xemacs-hg @ 2004-02-21 07:53:59 by stephent]
stephent
parents: 1916
diff changeset
348
1916
84785da441f9 [xemacs-hg @ 2004-02-18 12:14:30 by stephent]
stephent
parents: 1889
diff changeset
349 2004-02-18 Stephen J. Turnbull <stephen@xemacs.org>
84785da441f9 [xemacs-hg @ 2004-02-18 12:14:30 by stephent]
stephent
parents: 1889
diff changeset
350
84785da441f9 [xemacs-hg @ 2004-02-18 12:14:30 by stephent]
stephent
parents: 1889
diff changeset
351 * configure.in (AC_INIT_PARSE_ARGS): Use Solaris-compatible `for'.
1922
569139be45f6 [xemacs-hg @ 2004-02-21 07:53:59 by stephent]
stephent
parents: 1916
diff changeset
352 Thanks to Vin Shelton for noticing the bug, and Hrvoje Niksic for
569139be45f6 [xemacs-hg @ 2004-02-21 07:53:59 by stephent]
stephent
parents: 1916
diff changeset
353 the more elegant fix.
1916
84785da441f9 [xemacs-hg @ 2004-02-18 12:14:30 by stephent]
stephent
parents: 1889
diff changeset
354
1889
bf8be6575eae [xemacs-hg @ 2004-01-28 11:20:34 by stephent]
stephent
parents: 1871
diff changeset
355 2004-01-28 Stephen J. Turnbull <stephen@xemacs.org>
bf8be6575eae [xemacs-hg @ 2004-01-28 11:20:34 by stephent]
stephent
parents: 1871
diff changeset
356
bf8be6575eae [xemacs-hg @ 2004-01-28 11:20:34 by stephent]
stephent
parents: 1871
diff changeset
357 * configure.in: Use XE_CFLAGS for XEMACS_CC.
bf8be6575eae [xemacs-hg @ 2004-01-28 11:20:34 by stephent]
stephent
parents: 1871
diff changeset
358 Kludge: warn about CC and XEMACS_CC not from same vendor (gcc only).
bf8be6575eae [xemacs-hg @ 2004-01-28 11:20:34 by stephent]
stephent
parents: 1871
diff changeset
359 Various comment fixups.
bf8be6575eae [xemacs-hg @ 2004-01-28 11:20:34 by stephent]
stephent
parents: 1871
diff changeset
360 Delete dead code for finding srcdir.
bf8be6575eae [xemacs-hg @ 2004-01-28 11:20:34 by stephent]
stephent
parents: 1871
diff changeset
361
bf8be6575eae [xemacs-hg @ 2004-01-28 11:20:34 by stephent]
stephent
parents: 1871
diff changeset
362 * Makefile.in.in (clean): Force deletion of generated Lisp load files.
bf8be6575eae [xemacs-hg @ 2004-01-28 11:20:34 by stephent]
stephent
parents: 1871
diff changeset
363
bf8be6575eae [xemacs-hg @ 2004-01-28 11:20:34 by stephent]
stephent
parents: 1871
diff changeset
364 2003-11-06 Stephen J. Turnbull <stephen@xemacs.org>
bf8be6575eae [xemacs-hg @ 2004-01-28 11:20:34 by stephent]
stephent
parents: 1871
diff changeset
365
bf8be6575eae [xemacs-hg @ 2004-01-28 11:20:34 by stephent]
stephent
parents: 1871
diff changeset
366 * configure.in: Report cc and libc version info. Detection code
bf8be6575eae [xemacs-hg @ 2004-01-28 11:20:34 by stephent]
stephent
parents: 1871
diff changeset
367 by Valdis Kletnieks <Valdis.Kletnieks@vt.edu>. Tweaked for Debian.
bf8be6575eae [xemacs-hg @ 2004-01-28 11:20:34 by stephent]
stephent
parents: 1871
diff changeset
368
1871
b37a2b08a901 [xemacs-hg @ 2004-01-21 16:26:02 by james]
james
parents: 1800
diff changeset
369 2004-01-20 Jerry James <james@xemacs.org>
b37a2b08a901 [xemacs-hg @ 2004-01-21 16:26:02 by james]
james
parents: 1800
diff changeset
370
b37a2b08a901 [xemacs-hg @ 2004-01-21 16:26:02 by james]
james
parents: 1800
diff changeset
371 * configure.in: The icc compiler pretends to be gcc. It isn't.
b37a2b08a901 [xemacs-hg @ 2004-01-21 16:26:02 by james]
james
parents: 1800
diff changeset
372
1800
6c853dd06f0d [xemacs-hg @ 2003-11-20 16:06:00 by james]
james
parents: 1756
diff changeset
373 2003-11-18 Jerry James <james@xemacs.org>
6c853dd06f0d [xemacs-hg @ 2003-11-20 16:06:00 by james]
james
parents: 1756
diff changeset
374
6c853dd06f0d [xemacs-hg @ 2003-11-20 16:06:00 by james]
james
parents: 1756
diff changeset
375 * configure.in: Check for the typeof extension.
6c853dd06f0d [xemacs-hg @ 2003-11-20 16:06:00 by james]
james
parents: 1756
diff changeset
376
1756
b5db5c9230b1 [xemacs-hg @ 2003-10-16 19:44:34 by james]
james
parents: 1740
diff changeset
377 2003-10-15 Jerry James <james@xemacs.org>
b5db5c9230b1 [xemacs-hg @ 2003-10-16 19:44:34 by james]
james
parents: 1740
diff changeset
378
b5db5c9230b1 [xemacs-hg @ 2003-10-16 19:44:34 by james]
james
parents: 1740
diff changeset
379 * aclocal.m4: Add icc (Intel compiler) support.
b5db5c9230b1 [xemacs-hg @ 2003-10-16 19:44:34 by james]
james
parents: 1740
diff changeset
380 * configure.in: Ditto.
b5db5c9230b1 [xemacs-hg @ 2003-10-16 19:44:34 by james]
james
parents: 1740
diff changeset
381
1740
cf42e3b47b41 [xemacs-hg @ 2003-10-12 02:29:25 by james]
james
parents: 1716
diff changeset
382 2003-10-11 Jerry James <james@xemacs.org>
cf42e3b47b41 [xemacs-hg @ 2003-10-12 02:29:25 by james]
james
parents: 1716
diff changeset
383
cf42e3b47b41 [xemacs-hg @ 2003-10-12 02:29:25 by james]
james
parents: 1716
diff changeset
384 * configure.in: installexe.sh is under srcdir, not blddir.
cf42e3b47b41 [xemacs-hg @ 2003-10-12 02:29:25 by james]
james
parents: 1716
diff changeset
385
1716
022d0f785096 [xemacs-hg @ 2003-09-26 05:56:29 by youngs]
youngs
parents: 1707
diff changeset
386 2003-09-26 Steve Youngs <youngs@xemacs.org>
022d0f785096 [xemacs-hg @ 2003-09-26 05:56:29 by youngs]
youngs
parents: 1707
diff changeset
387
022d0f785096 [xemacs-hg @ 2003-09-26 05:56:29 by youngs]
youngs
parents: 1707
diff changeset
388 * XEmacs 21.5.16 "celeriac" is released.
022d0f785096 [xemacs-hg @ 2003-09-26 05:56:29 by youngs]
youngs
parents: 1707
diff changeset
389
1707
fca75a427ae3 [xemacs-hg @ 2003-09-22 03:22:14 by james]
james
parents: 1697
diff changeset
390 2003-09-21 Jerry James <james@xemacs.org>
fca75a427ae3 [xemacs-hg @ 2003-09-22 03:22:14 by james]
james
parents: 1697
diff changeset
391
fca75a427ae3 [xemacs-hg @ 2003-09-22 03:22:14 by james]
james
parents: 1697
diff changeset
392 * configure.in: Remove detection of GNU DLD.
fca75a427ae3 [xemacs-hg @ 2003-09-22 03:22:14 by james]
james
parents: 1697
diff changeset
393 * configure: Regenerate.
fca75a427ae3 [xemacs-hg @ 2003-09-22 03:22:14 by james]
james
parents: 1697
diff changeset
394
1697
20d5b69d37a1 [xemacs-hg @ 2003-09-19 16:24:33 by youngs]
youngs
parents: 1696
diff changeset
395 2003-09-20 Rodney Sparapani <rsparapa@mcw.edu>
20d5b69d37a1 [xemacs-hg @ 2003-09-19 16:24:33 by youngs]
youngs
parents: 1696
diff changeset
396
20d5b69d37a1 [xemacs-hg @ 2003-09-19 16:24:33 by youngs]
youngs
parents: 1696
diff changeset
397 * PROBLEMS: Propose bash as an alternative to buggy Solaris
20d5b69d37a1 [xemacs-hg @ 2003-09-19 16:24:33 by youngs]
youngs
parents: 1696
diff changeset
398 /bin/sh.
20d5b69d37a1 [xemacs-hg @ 2003-09-19 16:24:33 by youngs]
youngs
parents: 1696
diff changeset
399
1696
7032283c28db [xemacs-hg @ 2003-09-19 15:56:52 by youngs]
youngs
parents: 1692
diff changeset
400 2003-09-20 Steve Youngs <youngs@xemacs.org>
7032283c28db [xemacs-hg @ 2003-09-19 15:56:52 by youngs]
youngs
parents: 1692
diff changeset
401
7032283c28db [xemacs-hg @ 2003-09-19 15:56:52 by youngs]
youngs
parents: 1692
diff changeset
402 * configure: Re-generate after Martin's configure.in patch.
7032283c28db [xemacs-hg @ 2003-09-19 15:56:52 by youngs]
youngs
parents: 1692
diff changeset
403
7032283c28db [xemacs-hg @ 2003-09-19 15:56:52 by youngs]
youngs
parents: 1692
diff changeset
404 2003-09-20 Martin Buchholz <martin@xemacs.org>
7032283c28db [xemacs-hg @ 2003-09-19 15:56:52 by youngs]
youngs
parents: 1692
diff changeset
405
7032283c28db [xemacs-hg @ 2003-09-19 15:56:52 by youngs]
youngs
parents: 1692
diff changeset
406 * configure.in: XEmacs failed to build on Solaris9.
7032283c28db [xemacs-hg @ 2003-09-19 15:56:52 by youngs]
youngs
parents: 1692
diff changeset
407 Solaris9 comes with /usr/demo/SOUND, but no headers or libraries
7032283c28db [xemacs-hg @ 2003-09-19 15:56:52 by youngs]
youngs
parents: 1692
diff changeset
408 therein.
7032283c28db [xemacs-hg @ 2003-09-19 15:56:52 by youngs]
youngs
parents: 1692
diff changeset
409
1692
6265c9c31f53 [xemacs-hg @ 2003-09-18 05:13:54 by youngs]
youngs
parents: 1678
diff changeset
410 2003-09-18 Steve Youngs <youngs@xemacs.org>
6265c9c31f53 [xemacs-hg @ 2003-09-18 05:13:54 by youngs]
youngs
parents: 1678
diff changeset
411
6265c9c31f53 [xemacs-hg @ 2003-09-18 05:13:54 by youngs]
youngs
parents: 1678
diff changeset
412 * configure: Re-generate after Martin's configure.in patch.
6265c9c31f53 [xemacs-hg @ 2003-09-18 05:13:54 by youngs]
youngs
parents: 1678
diff changeset
413
6265c9c31f53 [xemacs-hg @ 2003-09-18 05:13:54 by youngs]
youngs
parents: 1678
diff changeset
414 2003-09-13 Martin Buchholz <martin@xemacs.org>
6265c9c31f53 [xemacs-hg @ 2003-09-18 05:13:54 by youngs]
youngs
parents: 1678
diff changeset
415
6265c9c31f53 [xemacs-hg @ 2003-09-18 05:13:54 by youngs]
youngs
parents: 1678
diff changeset
416 * configure.in (OS_RELEASE): Add support for SunOS 5.10.
6265c9c31f53 [xemacs-hg @ 2003-09-18 05:13:54 by youngs]
youngs
parents: 1678
diff changeset
417 On current OSes produced by Sun, `uname -r' prints "5.9".
6265c9c31f53 [xemacs-hg @ 2003-09-18 05:13:54 by youngs]
youngs
parents: 1678
diff changeset
418 It seems likely that on future OSes, `uname -r' will print "5.10".
6265c9c31f53 [xemacs-hg @ 2003-09-18 05:13:54 by youngs]
youngs
parents: 1678
diff changeset
419 We need to accept multi-digit release numbers.
6265c9c31f53 [xemacs-hg @ 2003-09-18 05:13:54 by youngs]
youngs
parents: 1678
diff changeset
420
1678
2422c1cd1afd [xemacs-hg @ 2003-09-12 02:02:06 by james]
james
parents: 1665
diff changeset
421 2003-05-10 Andrew Begel <abegel@CS.Berkeley.EDU>
2422c1cd1afd [xemacs-hg @ 2003-09-12 02:02:06 by james]
james
parents: 1665
diff changeset
422
2422c1cd1afd [xemacs-hg @ 2003-09-12 02:02:06 by james]
james
parents: 1665
diff changeset
423 * aclocal.m4 (XE_SHLIB_STUFF): Use -bundle when testing the
2422c1cd1afd [xemacs-hg @ 2003-09-12 02:02:06 by james]
james
parents: 1665
diff changeset
424 ability to build shared libraries, but use -bundle_loader in
2422c1cd1afd [xemacs-hg @ 2003-09-12 02:02:06 by james]
james
parents: 1665
diff changeset
425 ellcc. Properly handle other flags for MacOS X.
2422c1cd1afd [xemacs-hg @ 2003-09-12 02:02:06 by james]
james
parents: 1665
diff changeset
426
1665
bb216a3e537f [xemacs-hg @ 2003-09-04 00:05:04 by youngs]
youngs
parents: 1651
diff changeset
427 2003-09-03 Steve Youngs <youngs@xemacs.org>
bb216a3e537f [xemacs-hg @ 2003-09-04 00:05:04 by youngs]
youngs
parents: 1651
diff changeset
428
bb216a3e537f [xemacs-hg @ 2003-09-04 00:05:04 by youngs]
youngs
parents: 1651
diff changeset
429 * XEmacs 21.5.15 "celery" is released.
bb216a3e537f [xemacs-hg @ 2003-09-04 00:05:04 by youngs]
youngs
parents: 1651
diff changeset
430
1651
d3af5b868526 [xemacs-hg @ 2003-08-28 15:45:20 by james]
james
parents: 1648
diff changeset
431 2003-08-28 Jerry James <james@xemacs.org>
d3af5b868526 [xemacs-hg @ 2003-08-28 15:45:20 by james]
james
parents: 1648
diff changeset
432
d3af5b868526 [xemacs-hg @ 2003-08-28 15:45:20 by james]
james
parents: 1648
diff changeset
433 * configure.in: Link modules with -lstdc++ if g++ is used.
d3af5b868526 [xemacs-hg @ 2003-08-28 15:45:20 by james]
james
parents: 1648
diff changeset
434
1648
712931b4b71d [xemacs-hg @ 2003-08-27 18:06:54 by youngs]
youngs
parents: 1633
diff changeset
435 2003-08-28 Steve Youngs <youngs@xemacs.org>
712931b4b71d [xemacs-hg @ 2003-08-27 18:06:54 by youngs]
youngs
parents: 1633
diff changeset
436
712931b4b71d [xemacs-hg @ 2003-08-27 18:06:54 by youngs]
youngs
parents: 1633
diff changeset
437 * README.packages: Update.
712931b4b71d [xemacs-hg @ 2003-08-27 18:06:54 by youngs]
youngs
parents: 1633
diff changeset
438
1633
baca156a450b [xemacs-hg @ 2003-08-19 02:11:46 by james]
james
parents: 1617
diff changeset
439 2003-08-18 Jerry James <james@xemacs.org>
baca156a450b [xemacs-hg @ 2003-08-19 02:11:46 by james]
james
parents: 1617
diff changeset
440
baca156a450b [xemacs-hg @ 2003-08-19 02:11:46 by james]
james
parents: 1617
diff changeset
441 * Makefile.in.in (GENERATED_HEADERS): Add xemacs.def.
baca156a450b [xemacs-hg @ 2003-08-19 02:11:46 by james]
james
parents: 1617
diff changeset
442 * Makefile.in.in: Regenerate if xemacs.def.in.in is touched.
baca156a450b [xemacs-hg @ 2003-08-19 02:11:46 by james]
james
parents: 1617
diff changeset
443 * aclocal.m4 (XE_SHLIB_STUFF): Allow modules with Cygwin.
baca156a450b [xemacs-hg @ 2003-08-19 02:11:46 by james]
james
parents: 1617
diff changeset
444 * aclocal.m4 (cygwin_warn): Removed.
baca156a450b [xemacs-hg @ 2003-08-19 02:11:46 by james]
james
parents: 1617
diff changeset
445 * configure.in (XE_COMPUTE_RUNPATH): Process xemacs.def.in.in.
baca156a450b [xemacs-hg @ 2003-08-19 02:11:46 by james]
james
parents: 1617
diff changeset
446
1617
000fb15e7f54 [xemacs-hg @ 2003-08-12 06:36:38 by stephent]
stephent
parents: 1546
diff changeset
447 2003-08-12 Stephen J. Turnbull <stephen@xemacs.org>
000fb15e7f54 [xemacs-hg @ 2003-08-12 06:36:38 by stephent]
stephent
parents: 1546
diff changeset
448
000fb15e7f54 [xemacs-hg @ 2003-08-12 06:36:38 by stephent]
stephent
parents: 1546
diff changeset
449 * configure.usage (Window System): `lucid' option often means `Motif'.
000fb15e7f54 [xemacs-hg @ 2003-08-12 06:36:38 by stephent]
stephent
parents: 1546
diff changeset
450
1546
204e0afae501 [xemacs-hg @ 2003-06-30 09:10:26 by stephent]
stephent
parents: 1510
diff changeset
451 2003-06-13 Stephen J. Turnbull <stephen@xemacs.org>
204e0afae501 [xemacs-hg @ 2003-06-30 09:10:26 by stephent]
stephent
parents: 1510
diff changeset
452
204e0afae501 [xemacs-hg @ 2003-06-30 09:10:26 by stephent]
stephent
parents: 1510
diff changeset
453 * configure.usage (--cflags-warning): Change underscore to hyphen.
204e0afae501 [xemacs-hg @ 2003-06-30 09:10:26 by stephent]
stephent
parents: 1510
diff changeset
454
1510
a326a8b73148 [xemacs-hg @ 2003-06-01 05:10:14 by youngs]
youngs
parents: 1491
diff changeset
455 2003-06-01 Steve Youngs <youngs@xemacs.org>
a326a8b73148 [xemacs-hg @ 2003-06-01 05:10:14 by youngs]
youngs
parents: 1491
diff changeset
456
a326a8b73148 [xemacs-hg @ 2003-06-01 05:10:14 by youngs]
youngs
parents: 1491
diff changeset
457 * XEmacs 21.5.14 "cassava" is released.
a326a8b73148 [xemacs-hg @ 2003-06-01 05:10:14 by youngs]
youngs
parents: 1491
diff changeset
458
1491
d968d4073031 [xemacs-hg @ 2003-05-20 18:57:50 by james]
james
parents: 1473
diff changeset
459 2003-05-20 Jerry James <james@xemacs.org>
d968d4073031 [xemacs-hg @ 2003-05-20 18:57:50 by james]
james
parents: 1473
diff changeset
460
d968d4073031 [xemacs-hg @ 2003-05-20 18:57:50 by james]
james
parents: 1473
diff changeset
461 * configure.in: Add src to MAKE_SUBDIR early for module builds for
d968d4073031 [xemacs-hg @ 2003-05-20 18:57:50 by james]
james
parents: 1473
diff changeset
462 MacOSX and Windows; thanks to Andrew Begel. Set module makefile
d968d4073031 [xemacs-hg @ 2003-05-20 18:57:50 by james]
james
parents: 1473
diff changeset
463 variables appropriately if --with-modules=no is specified.
d968d4073031 [xemacs-hg @ 2003-05-20 18:57:50 by james]
james
parents: 1473
diff changeset
464
d968d4073031 [xemacs-hg @ 2003-05-20 18:57:50 by james]
james
parents: 1473
diff changeset
465 * configure: Regenerate.
d968d4073031 [xemacs-hg @ 2003-05-20 18:57:50 by james]
james
parents: 1473
diff changeset
466
1473
1fcb2428fee7 [xemacs-hg @ 2003-05-10 08:53:26 by youngs]
youngs
parents: 1470
diff changeset
467 2003-05-10 Steve Youngs <youngs@xemacs.org>
1fcb2428fee7 [xemacs-hg @ 2003-05-10 08:53:26 by youngs]
youngs
parents: 1470
diff changeset
468
1fcb2428fee7 [xemacs-hg @ 2003-05-10 08:53:26 by youngs]
youngs
parents: 1470
diff changeset
469 * XEmacs 21.5.13 "cauliflower" is released.
1fcb2428fee7 [xemacs-hg @ 2003-05-10 08:53:26 by youngs]
youngs
parents: 1470
diff changeset
470
1470
1364f9716d7b [xemacs-hg @ 2003-05-10 02:57:05 by youngs]
youngs
parents: 1464
diff changeset
471 2003-05-10 Steve Youngs <youngs@xemacs.org>
1364f9716d7b [xemacs-hg @ 2003-05-10 02:57:05 by youngs]
youngs
parents: 1464
diff changeset
472
1364f9716d7b [xemacs-hg @ 2003-05-10 02:57:05 by youngs]
youngs
parents: 1464
diff changeset
473 * Revert this patch:
1364f9716d7b [xemacs-hg @ 2003-05-10 02:57:05 by youngs]
youngs
parents: 1464
diff changeset
474 2003-05-01 Andrew Begel <abegel@CS.Berkeley.EDU>
1364f9716d7b [xemacs-hg @ 2003-05-10 02:57:05 by youngs]
youngs
parents: 1464
diff changeset
475
1364f9716d7b [xemacs-hg @ 2003-05-10 02:57:05 by youngs]
youngs
parents: 1464
diff changeset
476 * configure.in: Move module detection to after src/ is added to
1364f9716d7b [xemacs-hg @ 2003-05-10 02:57:05 by youngs]
youngs
parents: 1464
diff changeset
477 MAKE_SUBDIR. On MacOS X, building modules requires xemacs to
1364f9716d7b [xemacs-hg @ 2003-05-10 02:57:05 by youngs]
youngs
parents: 1464
diff changeset
478 already be built.
1364f9716d7b [xemacs-hg @ 2003-05-10 02:57:05 by youngs]
youngs
parents: 1464
diff changeset
479 * aclocal.m4 (XE_SHLIB_STUFF): Properly define ellcc flags for
1364f9716d7b [xemacs-hg @ 2003-05-10 02:57:05 by youngs]
youngs
parents: 1464
diff changeset
480 MacOS X.
1364f9716d7b [xemacs-hg @ 2003-05-10 02:57:05 by youngs]
youngs
parents: 1464
diff changeset
481 It was stopping certain libs from making their way into the
1364f9716d7b [xemacs-hg @ 2003-05-10 02:57:05 by youngs]
youngs
parents: 1464
diff changeset
482 Makefiles.
1364f9716d7b [xemacs-hg @ 2003-05-10 02:57:05 by youngs]
youngs
parents: 1464
diff changeset
483
1364f9716d7b [xemacs-hg @ 2003-05-10 02:57:05 by youngs]
youngs
parents: 1464
diff changeset
484 * configure: Regenerate.
1364f9716d7b [xemacs-hg @ 2003-05-10 02:57:05 by youngs]
youngs
parents: 1464
diff changeset
485
1464
b02bdcffb55f [xemacs-hg @ 2003-05-08 16:06:15 by stephent]
stephent
parents: 1462
diff changeset
486 2003-05-09 Stephen J. Turnbull <stephen@xemacs.org>
b02bdcffb55f [xemacs-hg @ 2003-05-08 16:06:15 by stephent]
stephent
parents: 1462
diff changeset
487
b02bdcffb55f [xemacs-hg @ 2003-05-08 16:06:15 by stephent]
stephent
parents: 1462
diff changeset
488 * configure.in: Revert Steve Youngs's patch, and set default for
b02bdcffb55f [xemacs-hg @ 2003-05-08 16:06:15 by stephent]
stephent
parents: 1462
diff changeset
489 ESD in the Defaults section. Improve comments.
b02bdcffb55f [xemacs-hg @ 2003-05-08 16:06:15 by stephent]
stephent
parents: 1462
diff changeset
490
b02bdcffb55f [xemacs-hg @ 2003-05-08 16:06:15 by stephent]
stephent
parents: 1462
diff changeset
491 * configure: Regenerate.
b02bdcffb55f [xemacs-hg @ 2003-05-08 16:06:15 by stephent]
stephent
parents: 1462
diff changeset
492
1462
c5da5c66fea7 [xemacs-hg @ 2003-05-07 08:34:08 by youngs]
youngs
parents: 1457
diff changeset
493 2003-05-07 Steve Youngs <youngs@xemacs.org>
c5da5c66fea7 [xemacs-hg @ 2003-05-07 08:34:08 by youngs]
youngs
parents: 1457
diff changeset
494
c5da5c66fea7 [xemacs-hg @ 2003-05-07 08:34:08 by youngs]
youngs
parents: 1457
diff changeset
495 * configure.in: Default ESD sound to off.
c5da5c66fea7 [xemacs-hg @ 2003-05-07 08:34:08 by youngs]
youngs
parents: 1457
diff changeset
496
c5da5c66fea7 [xemacs-hg @ 2003-05-07 08:34:08 by youngs]
youngs
parents: 1457
diff changeset
497 * configure.usage (--with-sound): Document ESD defaulting to off.
c5da5c66fea7 [xemacs-hg @ 2003-05-07 08:34:08 by youngs]
youngs
parents: 1457
diff changeset
498
c5da5c66fea7 [xemacs-hg @ 2003-05-07 08:34:08 by youngs]
youngs
parents: 1457
diff changeset
499 * configure: Regenerate.
c5da5c66fea7 [xemacs-hg @ 2003-05-07 08:34:08 by youngs]
youngs
parents: 1457
diff changeset
500
1457
b627cfd39e8a [xemacs-hg @ 2003-05-04 22:31:06 by youngs]
youngs
parents: 1454
diff changeset
501 2003-05-05 Steve Youngs <youngs@xemacs.org>
b627cfd39e8a [xemacs-hg @ 2003-05-04 22:31:06 by youngs]
youngs
parents: 1454
diff changeset
502
b627cfd39e8a [xemacs-hg @ 2003-05-04 22:31:06 by youngs]
youngs
parents: 1454
diff changeset
503 * CHANGES.beta: Update.
b627cfd39e8a [xemacs-hg @ 2003-05-04 22:31:06 by youngs]
youngs
parents: 1454
diff changeset
504
1454
38d0f093d818 [xemacs-hg @ 2003-05-04 01:04:36 by youngs]
youngs
parents: 1452
diff changeset
505 2003-05-04 Steve Youngs <youngs@xemacs.org>
38d0f093d818 [xemacs-hg @ 2003-05-04 01:04:36 by youngs]
youngs
parents: 1452
diff changeset
506
38d0f093d818 [xemacs-hg @ 2003-05-04 01:04:36 by youngs]
youngs
parents: 1452
diff changeset
507 * configure: Regenerate.
38d0f093d818 [xemacs-hg @ 2003-05-04 01:04:36 by youngs]
youngs
parents: 1452
diff changeset
508
38d0f093d818 [xemacs-hg @ 2003-05-04 01:04:36 by youngs]
youngs
parents: 1452
diff changeset
509 2003-05-04 Martin Buchholz <martin@xemacs.org>
38d0f093d818 [xemacs-hg @ 2003-05-04 01:04:36 by youngs]
youngs
parents: 1452
diff changeset
510
38d0f093d818 [xemacs-hg @ 2003-05-04 01:04:36 by youngs]
youngs
parents: 1452
diff changeset
511 * configure.in: Don't look for Motif if it's already present in
38d0f093d818 [xemacs-hg @ 2003-05-04 01:04:36 by youngs]
youngs
parents: 1452
diff changeset
512 $x_includes and $x_libraries.
38d0f093d818 [xemacs-hg @ 2003-05-04 01:04:36 by youngs]
youngs
parents: 1452
diff changeset
513
1452
dd63b61df78c [xemacs-hg @ 2003-05-03 22:47:10 by youngs]
youngs
parents: 1442
diff changeset
514 2003-05-01 Andrew Begel <abegel@CS.Berkeley.EDU>
dd63b61df78c [xemacs-hg @ 2003-05-03 22:47:10 by youngs]
youngs
parents: 1442
diff changeset
515
dd63b61df78c [xemacs-hg @ 2003-05-03 22:47:10 by youngs]
youngs
parents: 1442
diff changeset
516 * configure.in: Move module detection to after src/ is added to
dd63b61df78c [xemacs-hg @ 2003-05-03 22:47:10 by youngs]
youngs
parents: 1442
diff changeset
517 MAKE_SUBDIR. On MacOS X, building modules requires xemacs to
dd63b61df78c [xemacs-hg @ 2003-05-03 22:47:10 by youngs]
youngs
parents: 1442
diff changeset
518 already be built.
dd63b61df78c [xemacs-hg @ 2003-05-03 22:47:10 by youngs]
youngs
parents: 1442
diff changeset
519 * aclocal.m4 (XE_SHLIB_STUFF): Properly define ellcc flags for
dd63b61df78c [xemacs-hg @ 2003-05-03 22:47:10 by youngs]
youngs
parents: 1442
diff changeset
520 MacOS X.
dd63b61df78c [xemacs-hg @ 2003-05-03 22:47:10 by youngs]
youngs
parents: 1442
diff changeset
521
1442
5142be485095 [xemacs-hg @ 2003-05-02 06:15:54 by stephent]
stephent
parents: 1441
diff changeset
522 2003-05-02 Stephen J. Turnbull <stephen@xemacs.org>
5142be485095 [xemacs-hg @ 2003-05-02 06:15:54 by stephent]
stephent
parents: 1441
diff changeset
523
5142be485095 [xemacs-hg @ 2003-05-02 06:15:54 by stephent]
stephent
parents: 1441
diff changeset
524 * configure.in (darwin): Collect random kludges in one place.
5142be485095 [xemacs-hg @ 2003-05-02 06:15:54 by stephent]
stephent
parents: 1441
diff changeset
525 (cygwin): Check for intptr_t in <sys/types.h>.
5142be485095 [xemacs-hg @ 2003-05-02 06:15:54 by stephent]
stephent
parents: 1441
diff changeset
526 (Berkeley db): Handle 4.1 functions decorated with version info.
5142be485095 [xemacs-hg @ 2003-05-02 06:15:54 by stephent]
stephent
parents: 1441
diff changeset
527
1441
049c7092a496 [xemacs-hg @ 2003-05-02 06:00:41 by stephent]
stephent
parents: 1431
diff changeset
528 2003-04-28 Stephen J. Turnbull <stephen@xemacs.org>
049c7092a496 [xemacs-hg @ 2003-05-02 06:00:41 by stephent]
stephent
parents: 1431
diff changeset
529
049c7092a496 [xemacs-hg @ 2003-05-02 06:00:41 by stephent]
stephent
parents: 1431
diff changeset
530 * PROBLEMS (Windows): New: auxiliary programs for Windows.
049c7092a496 [xemacs-hg @ 2003-05-02 06:00:41 by stephent]
stephent
parents: 1431
diff changeset
531
049c7092a496 [xemacs-hg @ 2003-05-02 06:00:41 by stephent]
stephent
parents: 1431
diff changeset
532 2003-03-04 Stephen J. Turnbull <stephen@xemacs.org>
049c7092a496 [xemacs-hg @ 2003-05-02 06:00:41 by stephent]
stephent
parents: 1431
diff changeset
533
049c7092a496 [xemacs-hg @ 2003-05-02 06:00:41 by stephent]
stephent
parents: 1431
diff changeset
534 * Makefile.in.in (TAGS tags): Make DEFUNed functions be tags.
049c7092a496 [xemacs-hg @ 2003-05-02 06:00:41 by stephent]
stephent
parents: 1431
diff changeset
535 Patch by Martin Buchholz <martin@xemacs.org>.
049c7092a496 [xemacs-hg @ 2003-05-02 06:00:41 by stephent]
stephent
parents: 1431
diff changeset
536 <15410.44105.753590.169241@gargle.gargle.HOWL>
049c7092a496 [xemacs-hg @ 2003-05-02 06:00:41 by stephent]
stephent
parents: 1431
diff changeset
537
1431
bd5929b8e039 [xemacs-hg @ 2003-04-24 23:41:31 by youngs]
youngs
parents: 1427
diff changeset
538 2003-04-24 Steve Youngs <youngs@xemacs.org>
bd5929b8e039 [xemacs-hg @ 2003-04-24 23:41:31 by youngs]
youngs
parents: 1427
diff changeset
539
bd5929b8e039 [xemacs-hg @ 2003-04-24 23:41:31 by youngs]
youngs
parents: 1427
diff changeset
540 * XEmacs 21.5.12 "carrot" is released.
bd5929b8e039 [xemacs-hg @ 2003-04-24 23:41:31 by youngs]
youngs
parents: 1427
diff changeset
541
1427
5d62849e7275 [xemacs-hg @ 2003-04-24 05:26:40 by youngs]
youngs
parents: 1389
diff changeset
542 2003-04-24 Steve Youngs <youngs@xemacs.org>
5d62849e7275 [xemacs-hg @ 2003-04-24 05:26:40 by youngs]
youngs
parents: 1389
diff changeset
543
5d62849e7275 [xemacs-hg @ 2003-04-24 05:26:40 by youngs]
youngs
parents: 1389
diff changeset
544 * configure.in: Fix for building on openbsd.
5d62849e7275 [xemacs-hg @ 2003-04-24 05:26:40 by youngs]
youngs
parents: 1389
diff changeset
545 From Gregory Steuck <greg@nest.cx>
5d62849e7275 [xemacs-hg @ 2003-04-24 05:26:40 by youngs]
youngs
parents: 1389
diff changeset
546
5d62849e7275 [xemacs-hg @ 2003-04-24 05:26:40 by youngs]
youngs
parents: 1389
diff changeset
547 * configure: Regenerate
5d62849e7275 [xemacs-hg @ 2003-04-24 05:26:40 by youngs]
youngs
parents: 1389
diff changeset
548
1389
6355bae896e3 [xemacs-hg @ 2003-03-27 12:57:36 by stephent]
stephent
parents: 1384
diff changeset
549 2003-03-27 Stephen J. Turnbull <stephen@xemacs.org>
6355bae896e3 [xemacs-hg @ 2003-03-27 12:57:36 by stephent]
stephent
parents: 1384
diff changeset
550
6355bae896e3 [xemacs-hg @ 2003-03-27 12:57:36 by stephent]
stephent
parents: 1384
diff changeset
551 * PROBLEMS: Global substitution of .Xresources for .Xdefaults.
6355bae896e3 [xemacs-hg @ 2003-03-27 12:57:36 by stephent]
stephent
parents: 1384
diff changeset
552
1384
72bc4b7c2480 [xemacs-hg @ 2003-03-26 04:32:18 by james]
james
parents: 1375
diff changeset
553 2003-03-25 Jerry James <james@eecs.ku.edu>
72bc4b7c2480 [xemacs-hg @ 2003-03-26 04:32:18 by james]
james
parents: 1375
diff changeset
554
72bc4b7c2480 [xemacs-hg @ 2003-03-26 04:32:18 by james]
james
parents: 1375
diff changeset
555 * configure.in: Add Andrew Begel's shared library support for
72bc4b7c2480 [xemacs-hg @ 2003-03-26 04:32:18 by james]
james
parents: 1375
diff changeset
556 MacOS X.
72bc4b7c2480 [xemacs-hg @ 2003-03-26 04:32:18 by james]
james
parents: 1375
diff changeset
557
1375
0b6d70f7d49c [xemacs-hg @ 2003-03-24 14:13:40 by stephent]
stephent
parents: 1349
diff changeset
558 2003-03-18 Stephen J. Turnbull <stephen@xemacs.org>
0b6d70f7d49c [xemacs-hg @ 2003-03-24 14:13:40 by stephent]
stephent
parents: 1349
diff changeset
559
0b6d70f7d49c [xemacs-hg @ 2003-03-24 14:13:40 by stephent]
stephent
parents: 1349
diff changeset
560 * INSTALL: Give location of Darwin X11 downloads.
0b6d70f7d49c [xemacs-hg @ 2003-03-24 14:13:40 by stephent]
stephent
parents: 1349
diff changeset
561
1349
2e6e691f6649 [xemacs-hg @ 2003-03-09 17:23:50 by scop]
scop
parents: 1338
diff changeset
562 2003-02-09 Ville Skyttä <scop@xemacs.org>
2e6e691f6649 [xemacs-hg @ 2003-03-09 17:23:50 by scop]
scop
parents: 1338
diff changeset
563
2e6e691f6649 [xemacs-hg @ 2003-03-09 17:23:50 by scop]
scop
parents: 1338
diff changeset
564 * configure: Remove pkgdir and all references to it (unused).
2e6e691f6649 [xemacs-hg @ 2003-03-09 17:23:50 by scop]
scop
parents: 1338
diff changeset
565 * configure.in: Ditto.
2e6e691f6649 [xemacs-hg @ 2003-03-09 17:23:50 by scop]
scop
parents: 1338
diff changeset
566 * Makefile.in.in: Ditto.
2e6e691f6649 [xemacs-hg @ 2003-03-09 17:23:50 by scop]
scop
parents: 1338
diff changeset
567
1338
314c4e18dda0 [xemacs-hg @ 2003-03-03 10:35:29 by stephent]
stephent
parents: 1332
diff changeset
568 2003-03-03 Stephen J. Turnbull <stephen@xemacs.org>
314c4e18dda0 [xemacs-hg @ 2003-03-03 10:35:29 by stephent]
stephent
parents: 1332
diff changeset
569
314c4e18dda0 [xemacs-hg @ 2003-03-03 10:35:29 by stephent]
stephent
parents: 1332
diff changeset
570 * INSTALL: Reorganize, synch to configure.usage.
314c4e18dda0 [xemacs-hg @ 2003-03-03 10:35:29 by stephent]
stephent
parents: 1332
diff changeset
571
1332
6aa23bb3da6b [xemacs-hg @ 2003-03-02 02:18:05 by ben]
ben
parents: 1330
diff changeset
572 2003-03-01 Ben Wing <ben@xemacs.org>
6aa23bb3da6b [xemacs-hg @ 2003-03-02 02:18:05 by ben]
ben
parents: 1330
diff changeset
573
6aa23bb3da6b [xemacs-hg @ 2003-03-02 02:18:05 by ben]
ben
parents: 1330
diff changeset
574 * PROBLEMS:
6aa23bb3da6b [xemacs-hg @ 2003-03-02 02:18:05 by ben]
ben
parents: 1330
diff changeset
575 * PROBLEMS (Note):
6aa23bb3da6b [xemacs-hg @ 2003-03-02 02:18:05 by ben]
ben
parents: 1330
diff changeset
576 * PROBLEMS (http):
6aa23bb3da6b [xemacs-hg @ 2003-03-02 02:18:05 by ben]
ben
parents: 1330
diff changeset
577 * PROBLEMS (IMPORTANT):
6aa23bb3da6b [xemacs-hg @ 2003-03-02 02:18:05 by ben]
ben
parents: 1330
diff changeset
578 Include nt/PROBLEMS and update. Add note about incremental
6aa23bb3da6b [xemacs-hg @ 2003-03-02 02:18:05 by ben]
ben
parents: 1330
diff changeset
579 linking badness.
6aa23bb3da6b [xemacs-hg @ 2003-03-02 02:18:05 by ben]
ben
parents: 1330
diff changeset
580
1330
4542b72c005e [xemacs-hg @ 2003-03-01 07:25:26 by ben]
ben
parents: 1318
diff changeset
581 2003-02-28 Ben Wing <ben@xemacs.org>
4542b72c005e [xemacs-hg @ 2003-03-01 07:25:26 by ben]
ben
parents: 1318
diff changeset
582
4542b72c005e [xemacs-hg @ 2003-03-01 07:25:26 by ben]
ben
parents: 1318
diff changeset
583 * Makefile.in.in (mostlyclean):
4542b72c005e [xemacs-hg @ 2003-03-01 07:25:26 by ben]
ben
parents: 1318
diff changeset
584 * Makefile.in.in (clean):
4542b72c005e [xemacs-hg @ 2003-03-01 07:25:26 by ben]
ben
parents: 1318
diff changeset
585 * Makefile.in.in (top_distclean):
4542b72c005e [xemacs-hg @ 2003-03-01 07:25:26 by ben]
ben
parents: 1318
diff changeset
586 * Makefile.in.in (distclean):
4542b72c005e [xemacs-hg @ 2003-03-01 07:25:26 by ben]
ben
parents: 1318
diff changeset
587 Move src deletions to src/Makefile.in.in.
4542b72c005e [xemacs-hg @ 2003-03-01 07:25:26 by ben]
ben
parents: 1318
diff changeset
588
1318
b531bf8658e9 [xemacs-hg @ 2003-02-21 06:56:46 by ben]
ben
parents: 1314
diff changeset
589 2003-02-20 Ben Wing <ben@xemacs.org>
b531bf8658e9 [xemacs-hg @ 2003-02-21 06:56:46 by ben]
ben
parents: 1314
diff changeset
590
b531bf8658e9 [xemacs-hg @ 2003-02-21 06:56:46 by ben]
ben
parents: 1314
diff changeset
591 * PROBLEMS:
b531bf8658e9 [xemacs-hg @ 2003-02-21 06:56:46 by ben]
ben
parents: 1314
diff changeset
592 * PROBLEMS (event-stream.c): Removed.
b531bf8658e9 [xemacs-hg @ 2003-02-21 06:56:46 by ben]
ben
parents: 1314
diff changeset
593 * PROBLEMS (ABSTRACT):
b531bf8658e9 [xemacs-hg @ 2003-02-21 06:56:46 by ben]
ben
parents: 1314
diff changeset
594 * PROBLEMS (patch.):
b531bf8658e9 [xemacs-hg @ 2003-02-21 06:56:46 by ben]
ben
parents: 1314
diff changeset
595 * PROBLEMS (Note):
b531bf8658e9 [xemacs-hg @ 2003-02-21 06:56:46 by ben]
ben
parents: 1314
diff changeset
596 Add comment about Cygwin, unexec and sysmalloc.
b531bf8658e9 [xemacs-hg @ 2003-02-21 06:56:46 by ben]
ben
parents: 1314
diff changeset
597 Move some non-general stuff out of general.
b531bf8658e9 [xemacs-hg @ 2003-02-21 06:56:46 by ben]
ben
parents: 1314
diff changeset
598 Make a section for x86.
b531bf8658e9 [xemacs-hg @ 2003-02-21 06:56:46 by ben]
ben
parents: 1314
diff changeset
599
b531bf8658e9 [xemacs-hg @ 2003-02-21 06:56:46 by ben]
ben
parents: 1314
diff changeset
600 * configure.in (AC_INIT_NOTICE):
b531bf8658e9 [xemacs-hg @ 2003-02-21 06:56:46 by ben]
ben
parents: 1314
diff changeset
601 * configure.in (XE_COMPUTE_RUNPATH):
b531bf8658e9 [xemacs-hg @ 2003-02-21 06:56:46 by ben]
ben
parents: 1314
diff changeset
602 Add check for broken alloca in funcalls.
b531bf8658e9 [xemacs-hg @ 2003-02-21 06:56:46 by ben]
ben
parents: 1314
diff changeset
603
1314
15a91d7ae2d1 [xemacs-hg @ 2003-02-20 08:16:21 by ben]
ben
parents: 1307
diff changeset
604 2003-02-19 Ben Wing <ben@xemacs.org>
15a91d7ae2d1 [xemacs-hg @ 2003-02-20 08:16:21 by ben]
ben
parents: 1307
diff changeset
605
15a91d7ae2d1 [xemacs-hg @ 2003-02-20 08:16:21 by ben]
ben
parents: 1307
diff changeset
606 * Makefile.in.in:
15a91d7ae2d1 [xemacs-hg @ 2003-02-20 08:16:21 by ben]
ben
parents: 1307
diff changeset
607 * Makefile.in.in (GENERATED_HEADERS):
15a91d7ae2d1 [xemacs-hg @ 2003-02-20 08:16:21 by ben]
ben
parents: 1307
diff changeset
608 * Makefile.in.in (GENERATED_LISP): Removed.
15a91d7ae2d1 [xemacs-hg @ 2003-02-20 08:16:21 by ben]
ben
parents: 1307
diff changeset
609 * Makefile.in.in (.NO_PARALLEL):
15a91d7ae2d1 [xemacs-hg @ 2003-02-20 08:16:21 by ben]
ben
parents: 1307
diff changeset
610 * Makefile.in.in (beta):
15a91d7ae2d1 [xemacs-hg @ 2003-02-20 08:16:21 by ben]
ben
parents: 1307
diff changeset
611 * Makefile.in.in (dist):
15a91d7ae2d1 [xemacs-hg @ 2003-02-20 08:16:21 by ben]
ben
parents: 1307
diff changeset
612 * Makefile.in.in (batch): Removed.
15a91d7ae2d1 [xemacs-hg @ 2003-02-20 08:16:21 by ben]
ben
parents: 1307
diff changeset
613 * Makefile.in.in (batch_packages): Removed.
15a91d7ae2d1 [xemacs-hg @ 2003-02-20 08:16:21 by ben]
ben
parents: 1307
diff changeset
614 * Makefile.in.in (check): New.
15a91d7ae2d1 [xemacs-hg @ 2003-02-20 08:16:21 by ben]
ben
parents: 1307
diff changeset
615 * Makefile.in.in (finder): Removed.
15a91d7ae2d1 [xemacs-hg @ 2003-02-20 08:16:21 by ben]
ben
parents: 1307
diff changeset
616 * Makefile.in.in (check-features): New.
15a91d7ae2d1 [xemacs-hg @ 2003-02-20 08:16:21 by ben]
ben
parents: 1307
diff changeset
617 * Makefile.in.in (.PHONY):
15a91d7ae2d1 [xemacs-hg @ 2003-02-20 08:16:21 by ben]
ben
parents: 1307
diff changeset
618 * Makefile.in.in (install-only):
15a91d7ae2d1 [xemacs-hg @ 2003-02-20 08:16:21 by ben]
ben
parents: 1307
diff changeset
619 * Makefile.in.in (tagslisp):
15a91d7ae2d1 [xemacs-hg @ 2003-02-20 08:16:21 by ben]
ben
parents: 1307
diff changeset
620 * Makefile.in.in (info):
15a91d7ae2d1 [xemacs-hg @ 2003-02-20 08:16:21 by ben]
ben
parents: 1307
diff changeset
621 Major surgery. Move all stuff related to building anything in the
15a91d7ae2d1 [xemacs-hg @ 2003-02-20 08:16:21 by ben]
ben
parents: 1307
diff changeset
622 src/ directory into src/. Simplify the dependencies -- everything
15a91d7ae2d1 [xemacs-hg @ 2003-02-20 08:16:21 by ben]
ben
parents: 1307
diff changeset
623 in src/ is dependent on the single entry `src' in MAKE_SUBDIRS.
15a91d7ae2d1 [xemacs-hg @ 2003-02-20 08:16:21 by ben]
ben
parents: 1307
diff changeset
624 Remove weirdo targets like `all-elc[s]', dump-elc[s], etc.
15a91d7ae2d1 [xemacs-hg @ 2003-02-20 08:16:21 by ben]
ben
parents: 1307
diff changeset
625
1307
3f994430e7b9 [xemacs-hg @ 2003-02-16 06:13:17 by youngs]
youngs
parents: 1303
diff changeset
626 2003-02-16 Steve Youngs <youngs@xemacs.org>
3f994430e7b9 [xemacs-hg @ 2003-02-16 06:13:17 by youngs]
youngs
parents: 1303
diff changeset
627
3f994430e7b9 [xemacs-hg @ 2003-02-16 06:13:17 by youngs]
youngs
parents: 1303
diff changeset
628 * XEmacs 21.5.11 "cabbage" is released.
3f994430e7b9 [xemacs-hg @ 2003-02-16 06:13:17 by youngs]
youngs
parents: 1303
diff changeset
629
1303
f99d3d25df86 [xemacs-hg @ 2003-02-15 10:15:54 by ben]
ben
parents: 1294
diff changeset
630 2003-02-15 Ben Wing <ben@xemacs.org>
f99d3d25df86 [xemacs-hg @ 2003-02-15 10:15:54 by ben]
ben
parents: 1294
diff changeset
631
f99d3d25df86 [xemacs-hg @ 2003-02-15 10:15:54 by ben]
ben
parents: 1294
diff changeset
632 * Makefile.in.in (batch_packages): Run update-elc-2 with -no-autoloads
f99d3d25df86 [xemacs-hg @ 2003-02-15 10:15:54 by ben]
ben
parents: 1294
diff changeset
633 to avoid multiple autoload-loading problem.
f99d3d25df86 [xemacs-hg @ 2003-02-15 10:15:54 by ben]
ben
parents: 1294
diff changeset
634 * configure.usage (--error-checking): Document quick-build better.
f99d3d25df86 [xemacs-hg @ 2003-02-15 10:15:54 by ben]
ben
parents: 1294
diff changeset
635
1294
8c5cf108f035 [xemacs-hg @ 2003-02-14 07:38:22 by stephent]
stephent
parents: 1283
diff changeset
636 2003-01-28 Martin Buchholz <martin@xemacs.org>
8c5cf108f035 [xemacs-hg @ 2003-02-14 07:38:22 by stephent]
stephent
parents: 1283
diff changeset
637
8c5cf108f035 [xemacs-hg @ 2003-02-14 07:38:22 by stephent]
stephent
parents: 1283
diff changeset
638 * configure.in (opsys): (AIX specific)
8c5cf108f035 [xemacs-hg @ 2003-02-14 07:38:22 by stephent]
stephent
parents: 1283
diff changeset
639 Use opsys=aix4-2 for AIX 5 and all future versions.
8c5cf108f035 [xemacs-hg @ 2003-02-14 07:38:22 by stephent]
stephent
parents: 1283
diff changeset
640
1283
32bc2bab419c [xemacs-hg @ 2003-02-10 14:28:09 by stephent]
stephent
parents: 1259
diff changeset
641 2003-02-10 Stephen J. Turnbull <stephen@xemacs.org>
32bc2bab419c [xemacs-hg @ 2003-02-10 14:28:09 by stephent]
stephent
parents: 1259
diff changeset
642
32bc2bab419c [xemacs-hg @ 2003-02-10 14:28:09 by stephent]
stephent
parents: 1259
diff changeset
643 * INSTALL: Recommend Mule, deprecate stripped binaries.
32bc2bab419c [xemacs-hg @ 2003-02-10 14:28:09 by stephent]
stephent
parents: 1259
diff changeset
644
1259
d9c553868a01 [xemacs-hg @ 2003-02-05 10:07:26 by stephent]
stephent
parents: 1245
diff changeset
645 2003-02-05 Stephen J. Turnbull <stephen@xemacs.org>
d9c553868a01 [xemacs-hg @ 2003-02-05 10:07:26 by stephent]
stephent
parents: 1245
diff changeset
646
d9c553868a01 [xemacs-hg @ 2003-02-05 10:07:26 by stephent]
stephent
parents: 1245
diff changeset
647 * configure.in (DLSYM_NEEDS_UNDERSCORE): Define on darwin.
d9c553868a01 [xemacs-hg @ 2003-02-05 10:07:26 by stephent]
stephent
parents: 1245
diff changeset
648
d9c553868a01 [xemacs-hg @ 2003-02-05 10:07:26 by stephent]
stephent
parents: 1245
diff changeset
649 * configure.in: Fix --srcdir processing.
d9c553868a01 [xemacs-hg @ 2003-02-05 10:07:26 by stephent]
stephent
parents: 1245
diff changeset
650
1245
6981ff72175a [xemacs-hg @ 2003-01-31 12:14:00 by stephent]
stephent
parents: 1232
diff changeset
651 2003-01-31 Stephen J. Turnbull <stephen@xemacs.org>
6981ff72175a [xemacs-hg @ 2003-01-31 12:14:00 by stephent]
stephent
parents: 1232
diff changeset
652
6981ff72175a [xemacs-hg @ 2003-01-31 12:14:00 by stephent]
stephent
parents: 1232
diff changeset
653 * PROBLEMS: Collect Motif information in one place.
6981ff72175a [xemacs-hg @ 2003-01-31 12:14:00 by stephent]
stephent
parents: 1232
diff changeset
654
1232
c08a6fa181d1 [xemacs-hg @ 2003-01-23 11:38:56 by stephent]
stephent
parents: 1222
diff changeset
655 2002-10-19 Stephen Turnbull <stephen@xemacs.org>
c08a6fa181d1 [xemacs-hg @ 2003-01-23 11:38:56 by stephent]
stephent
parents: 1222
diff changeset
656
c08a6fa181d1 [xemacs-hg @ 2003-01-23 11:38:56 by stephent]
stephent
parents: 1222
diff changeset
657 * Makefile.in.in (clean): Delete auto-autoloads.e* and custom-load.*
c08a6fa181d1 [xemacs-hg @ 2003-01-23 11:38:56 by stephent]
stephent
parents: 1222
diff changeset
658 in lisp, lisp/mule, and modules.
c08a6fa181d1 [xemacs-hg @ 2003-01-23 11:38:56 by stephent]
stephent
parents: 1222
diff changeset
659
1222
0350fea81e65 [xemacs-hg @ 2003-01-18 04:48:18 by james]
james
parents: 1214
diff changeset
660 2003-01-14 Jerry James <james@xemacs.org>
0350fea81e65 [xemacs-hg @ 2003-01-18 04:48:18 by james]
james
parents: 1214
diff changeset
661
0350fea81e65 [xemacs-hg @ 2003-01-18 04:48:18 by james]
james
parents: 1214
diff changeset
662 * PROBLEMS: Describe Steve Youngs' problem with the PostgreSQL
0350fea81e65 [xemacs-hg @ 2003-01-18 04:48:18 by james]
james
parents: 1214
diff changeset
663 module and --error-checking=all.
0350fea81e65 [xemacs-hg @ 2003-01-18 04:48:18 by james]
james
parents: 1214
diff changeset
664
1214
4be1d80f2abd [xemacs-hg @ 2003-01-15 15:03:08 by gin]
gin
parents: 1202
diff changeset
665 2003-01-13 Ilya Golubev <golubev@xemacs.org>
4be1d80f2abd [xemacs-hg @ 2003-01-15 15:03:08 by gin]
gin
parents: 1202
diff changeset
666
4be1d80f2abd [xemacs-hg @ 2003-01-15 15:03:08 by gin]
gin
parents: 1202
diff changeset
667 * etc/photos/golubev.png, etc/photos/golubevm.png: New.
4be1d80f2abd [xemacs-hg @ 2003-01-15 15:03:08 by gin]
gin
parents: 1202
diff changeset
668
1202
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
669 2003-01-12 Mike Sperber <mike@xemacs.org>
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
670
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
671 * configure.in: Check for strupr and strlwr.
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
672
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
673 2002-12-16 Ben Wing <ben@xemacs.org>
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
674
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
675 * INSTALL (Rationale):
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
676 * configure.in (XE_COMPUTE_RUNPATH):
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
677 * configure.usage (Usage):
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
678 * configure.usage (--xemacs-compiler):
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
679 * configure.usage (--srcdir):
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
680 * configure.usage (--with-prefix):
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
681 * configure.usage (--bindir): New.
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
682 * configure.usage (--datadir): New.
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
683 * configure.usage (--statedir): New.
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
684 * configure.usage (--libdir): New.
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
685 * configure.usage (--infodir): New.
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
686 * configure.usage (--mandir): New.
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
687 * configure.usage (--lispdir): New.
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
688 * configure.usage (--sitelispdir): New.
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
689 * configure.usage (--etcdir): New.
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
690 * configure.usage (--lockdir): New.
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
691 * configure.usage (--archlibdir): New.
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
692 * configure.usage (--docdir): New.
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
693 * configure.usage (--moduledir): New.
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
694 * configure.usage (--with-site-lisp): New.
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
695 * configure.usage (--with-site-modules): New.
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
696 * configure.usage (--package-path): New.
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
697 * configure.usage (--infopath): New.
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
698 * configure.usage (--with-xmu):
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
699 * configure.usage (--with-tty):
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
700 * configure.usage (--with-gif):
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
701 * configure.usage (--native-sound-lib):
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
702 * configure.usage (--with-xim): New.
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
703 * configure.usage (--with-clash-detection): New.
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
704 * configure.usage (--with-database):
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
705 * configure.usage (--mail-locking):
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
706 * configure.usage (--with-ipv6-cname): Removed.
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
707 * configure.usage (--error-checking):
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
708 Redo usage message more logically, fix some problems. In configure,
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
709 when outputting the compilation options, put in a big ugly warning
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
710 about using union-type, since it's been known to trigger so many
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
711 compiler bugs, invariably leading to weird crashes.
6041a741b6d6 [xemacs-hg @ 2003-01-12 11:03:13 by michaels]
michaels
parents: 1187
diff changeset
712
1187
6f18092b3b3c [xemacs-hg @ 2003-01-05 05:13:26 by youngs]
youngs
parents: 1157
diff changeset
713 2003-01-04 Steve Youngs <youngs@xemacs.org>
6f18092b3b3c [xemacs-hg @ 2003-01-05 05:13:26 by youngs]
youngs
parents: 1157
diff changeset
714
6f18092b3b3c [xemacs-hg @ 2003-01-05 05:13:26 by youngs]
youngs
parents: 1157
diff changeset
715 * XEmacs 21.5.10 "burdock" is released.
6f18092b3b3c [xemacs-hg @ 2003-01-05 05:13:26 by youngs]
youngs
parents: 1157
diff changeset
716
1157
6af03f821bbe [xemacs-hg @ 2002-12-13 04:29:06 by andyp]
andyp
parents: 1155
diff changeset
717 2002-07-08 Andy Piper <andy@xemacs.org>
6af03f821bbe [xemacs-hg @ 2002-12-13 04:29:06 by andyp]
andyp
parents: 1155
diff changeset
718
6af03f821bbe [xemacs-hg @ 2002-12-13 04:29:06 by andyp]
andyp
parents: 1155
diff changeset
719 * Makefile.in.in (src/sheap-adjust.h): reset back to zero. Making
6af03f821bbe [xemacs-hg @ 2002-12-13 04:29:06 by andyp]
andyp
parents: 1155
diff changeset
720 this anything other than zero was misguided.
6af03f821bbe [xemacs-hg @ 2002-12-13 04:29:06 by andyp]
andyp
parents: 1155
diff changeset
721
1155
2e45c3beb9dc [xemacs-hg @ 2002-12-12 03:22:50 by stephent]
stephent
parents: 1123
diff changeset
722 2002-12-04 Stephen J. Turnbull <stephen@xemacs.org>
2e45c3beb9dc [xemacs-hg @ 2002-12-12 03:22:50 by stephent]
stephent
parents: 1123
diff changeset
723
2e45c3beb9dc [xemacs-hg @ 2002-12-12 03:22:50 by stephent]
stephent
parents: 1123
diff changeset
724 * configure.in: Make --pdump default per opsys; move Darwin's
2e45c3beb9dc [xemacs-hg @ 2002-12-12 03:22:50 by stephent]
stephent
parents: 1123
diff changeset
725 setting and change Linux's default to yes.
2e45c3beb9dc [xemacs-hg @ 2002-12-12 03:22:50 by stephent]
stephent
parents: 1123
diff changeset
726
1123
37bdd24225ef [xemacs-hg @ 2002-11-27 07:15:02 by ben]
ben
parents: 1117
diff changeset
727 2002-11-27 Ben Wing <ben@xemacs.org>
37bdd24225ef [xemacs-hg @ 2002-11-27 07:15:02 by ben]
ben
parents: 1117
diff changeset
728
37bdd24225ef [xemacs-hg @ 2002-11-27 07:15:02 by ben]
ben
parents: 1117
diff changeset
729 * configure.in (CANONICALIZE_PATH):
37bdd24225ef [xemacs-hg @ 2002-11-27 07:15:02 by ben]
ben
parents: 1117
diff changeset
730 * configure.in (TAB):
37bdd24225ef [xemacs-hg @ 2002-11-27 07:15:02 by ben]
ben
parents: 1117
diff changeset
731 Check for GCC version and only use -Wpacked in v3.
37bdd24225ef [xemacs-hg @ 2002-11-27 07:15:02 by ben]
ben
parents: 1117
diff changeset
732
1117
b3fcaf7cb856 [xemacs-hg @ 2002-11-22 16:23:52 by james]
james
parents: 1111
diff changeset
733 2002-10-14 Jerry James <james@xemacs.org>
b3fcaf7cb856 [xemacs-hg @ 2002-11-22 16:23:52 by james]
james
parents: 1111
diff changeset
734
b3fcaf7cb856 [xemacs-hg @ 2002-11-22 16:23:52 by james]
james
parents: 1111
diff changeset
735 * configure.in: Remove LISP_FLOAT_TYPE definition.
b3fcaf7cb856 [xemacs-hg @ 2002-11-22 16:23:52 by james]
james
parents: 1111
diff changeset
736
1111
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
737 2002-11-17 Ben Wing <ben@xemacs.org>
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
738
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
739 * aclocal.m4 (cygwin_warn): New.
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
740 Disable shared library modules under Cygwin for the moment,
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
741 since we need some more tricky coding done and I don't have the
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
742 time right now.
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
743
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
744 * configure.in:
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
745 * configure.in (need_modules_common): New.
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
746 * configure.in (quoted_arguments):
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
747 * configure.in (stack_trace_eye_catcher):
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
748 * configure.in (CPP):
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
749 * configure.in (CFLAGS): New.
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
750 * configure.in (bitmapdir):
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
751 * configure.in (ldap_libs):
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
752 * configure.in (postgresql_libs):
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
753 * configure.in (all_widgets):
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
754 * configure.in (SUBDIR_MAKEFILES):
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
755 * configure.in (RECURSIVE_MAKE):
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
756 * configure.in (null_string):
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
757 * configure.in (Mail):
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
758 * configure.usage (--cflags):
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
759 * configure.usage (--cflags_warning): New.
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
760
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
761 Make sure we use the compiler in --xemacs-compiler to compile
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
762 the modules, too, or we will get link errors when trying to do
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
763 a C++ build.
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
764
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
765 Create a directory modules/common, in which is code common to all
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
766 the module Makefiles and configure.ac's. We create a separate
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
767 directory because we may be building in a separate source tree,
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
768 and need a way of accessing the common code (at least in the case
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
769 of the Makefile). Either we create symlinks for all necessary
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
770 files or one just for the directory -- the latter is more robust.
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
771
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
772 Add code to create the symlink for modules/common as necessary.
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
773 When creating the modules Makefiles, append the common code.
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
774
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
775 Check for wcslen/wcscmp; apparently missing sometimes in Cygwin and
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
776 G++ v3.
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
777
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
778 Output correct compiler name in messages.
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
779
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
780 Separate warning flags from other C flags so that user-specified
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
781 --cflags doesn't disable warnings.
184461bc8de4 [xemacs-hg @ 2002-11-18 06:52:23 by ben]
ben
parents: 1100
diff changeset
782
1100
d50ab2546522 [xemacs-hg @ 2002-11-11 18:52:57 by stephent]
stephent
parents: 1099
diff changeset
783 2002-11-12 Stephen J. Turnbull <stephen@xemacs.org>
d50ab2546522 [xemacs-hg @ 2002-11-11 18:52:57 by stephent]
stephent
parents: 1099
diff changeset
784
d50ab2546522 [xemacs-hg @ 2002-11-11 18:52:57 by stephent]
stephent
parents: 1099
diff changeset
785 * PROBLEMS (Running/Linux): Lesstif 0.93.36 info, from F. McIngvale.
d50ab2546522 [xemacs-hg @ 2002-11-11 18:52:57 by stephent]
stephent
parents: 1099
diff changeset
786
d50ab2546522 [xemacs-hg @ 2002-11-11 18:52:57 by stephent]
stephent
parents: 1099
diff changeset
787 2002-11-12 Stephen J. Turnbull <stephen@xemacs.org>
1098
25f567f6ab2a [xemacs-hg @ 2002-11-11 16:13:28 by stephent]
stephent
parents: 1093
diff changeset
788
25f567f6ab2a [xemacs-hg @ 2002-11-11 16:13:28 by stephent]
stephent
parents: 1093
diff changeset
789 * PROBLEMS: Typo fix.
25f567f6ab2a [xemacs-hg @ 2002-11-11 16:13:28 by stephent]
stephent
parents: 1093
diff changeset
790
1092
f5d8712231af [xemacs-hg @ 2002-11-11 14:19:07 by stephent]
stephent
parents: 1070
diff changeset
791 2002-10-31 John Paul Wallington <jpw@shootybangbang.com>
f5d8712231af [xemacs-hg @ 2002-11-11 14:19:07 by stephent]
stephent
parents: 1070
diff changeset
792
f5d8712231af [xemacs-hg @ 2002-11-11 14:19:07 by stephent]
stephent
parents: 1070
diff changeset
793 * info/dir (File): button1 on a highlighted word doesn't
f5d8712231af [xemacs-hg @ 2002-11-11 14:19:07 by stephent]
stephent
parents: 1070
diff changeset
794 follow that cross-reference.
f5d8712231af [xemacs-hg @ 2002-11-11 14:19:07 by stephent]
stephent
parents: 1070
diff changeset
795
f5d8712231af [xemacs-hg @ 2002-11-11 14:19:07 by stephent]
stephent
parents: 1070
diff changeset
796 2002-10-31 Stephen J. Turnbull <stephen@xemacs.org>
f5d8712231af [xemacs-hg @ 2002-11-11 14:19:07 by stephent]
stephent
parents: 1070
diff changeset
797
f5d8712231af [xemacs-hg @ 2002-11-11 14:19:07 by stephent]
stephent
parents: 1070
diff changeset
798 * PROBLEMS (Running/IRIX): Irix 6.5 coredumps. Thanks, Valdis.
f5d8712231af [xemacs-hg @ 2002-11-11 14:19:07 by stephent]
stephent
parents: 1070
diff changeset
799
f5d8712231af [xemacs-hg @ 2002-11-11 14:19:07 by stephent]
stephent
parents: 1070
diff changeset
800 2002-10-19 Stephen Turnbull <stephen@xemacs.org>
f5d8712231af [xemacs-hg @ 2002-11-11 14:19:07 by stephent]
stephent
parents: 1070
diff changeset
801
f5d8712231af [xemacs-hg @ 2002-11-11 14:19:07 by stephent]
stephent
parents: 1070
diff changeset
802 * Makefile.in.in (clean): Delete auto-autoloads.e* and custom-load.*
f5d8712231af [xemacs-hg @ 2002-11-11 14:19:07 by stephent]
stephent
parents: 1070
diff changeset
803 in lisp, lisp/mule, and modules.
f5d8712231af [xemacs-hg @ 2002-11-11 14:19:07 by stephent]
stephent
parents: 1070
diff changeset
804 ChangeLog: Fix my bogus email addresses.
f5d8712231af [xemacs-hg @ 2002-11-11 14:19:07 by stephent]
stephent
parents: 1070
diff changeset
805
1070
989ddde6705d [xemacs-hg @ 2002-10-24 16:19:39 by youngs]
youngs
parents: 1058
diff changeset
806 2002-10-25 Stephen J. Turnbull <stephen@xemacs.org>
989ddde6705d [xemacs-hg @ 2002-10-24 16:19:39 by youngs]
youngs
parents: 1058
diff changeset
807
989ddde6705d [xemacs-hg @ 2002-10-24 16:19:39 by youngs]
youngs
parents: 1058
diff changeset
808 * configure.in (Check for POSIX functions): New section head.
989ddde6705d [xemacs-hg @ 2002-10-24 16:19:39 by youngs]
youngs
parents: 1058
diff changeset
809 getaddrinfo is detected on HP-UX 11.XX, but appears to be
989ddde6705d [xemacs-hg @ 2002-10-24 16:19:39 by youngs]
youngs
parents: 1058
diff changeset
810 non-functional. Disable it. Based on work by Darryl Okahata.
989ddde6705d [xemacs-hg @ 2002-10-24 16:19:39 by youngs]
youngs
parents: 1058
diff changeset
811
1092
f5d8712231af [xemacs-hg @ 2002-11-11 14:19:07 by stephent]
stephent
parents: 1070
diff changeset
812 2002-10-18 Stephen J. Turnbull <stephen@xemacs.org>
1058
d7285d54aa5f [xemacs-hg @ 2002-10-18 05:43:26 by stephent]
stephent
parents: 1056
diff changeset
813
d7285d54aa5f [xemacs-hg @ 2002-10-18 05:43:26 by stephent]
stephent
parents: 1056
diff changeset
814 * PROBLEMS (Running/Cygwin): "No cygXpm-noX" fatal error.
d7285d54aa5f [xemacs-hg @ 2002-10-18 05:43:26 by stephent]
stephent
parents: 1056
diff changeset
815
1092
f5d8712231af [xemacs-hg @ 2002-11-11 14:19:07 by stephent]
stephent
parents: 1070
diff changeset
816 2002-10-17 Stephen J. Turnbull <stephen@xemacs.org>
1056
c2acbc874bf1 [xemacs-hg @ 2002-10-17 14:12:14 by stephent]
stephent
parents: 1045
diff changeset
817
c2acbc874bf1 [xemacs-hg @ 2002-10-17 14:12:14 by stephent]
stephent
parents: 1045
diff changeset
818 * PROBLEMS (Missing charsets): Remove ambiguity.
c2acbc874bf1 [xemacs-hg @ 2002-10-17 14:12:14 by stephent]
stephent
parents: 1045
diff changeset
819
1045
ae9378e1cde3 [xemacs-hg @ 2002-10-10 14:47:21 by stephent]
stephent
parents: 1044
diff changeset
820 2002-10-10 Stephen J. Turnbull <stephen@xemacs.org>
ae9378e1cde3 [xemacs-hg @ 2002-10-10 14:47:21 by stephent]
stephent
parents: 1044
diff changeset
821
ae9378e1cde3 [xemacs-hg @ 2002-10-10 14:47:21 by stephent]
stephent
parents: 1044
diff changeset
822 * INSTALL (PREREQUISITES): Recommend Texinfo 4.2.
ae9378e1cde3 [xemacs-hg @ 2002-10-10 14:47:21 by stephent]
stephent
parents: 1044
diff changeset
823
1042
aea3ce44b888 [xemacs-hg @ 2002-10-08 06:06:48 by youngs]
youngs
parents: 1036
diff changeset
824 2002-09-27 Stephen J. Turnbull <stephen@xemacs.org>
aea3ce44b888 [xemacs-hg @ 2002-10-08 06:06:48 by youngs]
youngs
parents: 1036
diff changeset
825
aea3ce44b888 [xemacs-hg @ 2002-10-08 06:06:48 by youngs]
youngs
parents: 1036
diff changeset
826 * PROBLEMS (Running, General): Missing charset in FontSet warnings.
aea3ce44b888 [xemacs-hg @ 2002-10-08 06:06:48 by youngs]
youngs
parents: 1036
diff changeset
827
1036
b33a835c21cc [xemacs-hg @ 2002-10-08 03:11:48 by stephent]
stephent
parents: 1024
diff changeset
828 2002-10-08 Stephen J. Turnbull <stephen@xemacs.org>
b33a835c21cc [xemacs-hg @ 2002-10-08 03:11:48 by stephent]
stephent
parents: 1024
diff changeset
829
b33a835c21cc [xemacs-hg @ 2002-10-08 03:11:48 by stephent]
stephent
parents: 1024
diff changeset
830 * PROBLEMS (MacOS/X): Describe stack limitation.
b33a835c21cc [xemacs-hg @ 2002-10-08 03:11:48 by stephent]
stephent
parents: 1024
diff changeset
831 (Digital Unix): Generalize to all regexp-using applications.
b33a835c21cc [xemacs-hg @ 2002-10-08 03:11:48 by stephent]
stephent
parents: 1024
diff changeset
832 * INSTALL (PREQUISITES): Mention MacOS/X stack limitation.
b33a835c21cc [xemacs-hg @ 2002-10-08 03:11:48 by stephent]
stephent
parents: 1024
diff changeset
833 (PROBLEMS): Point to PROBLEMS file for build notes.
b33a835c21cc [xemacs-hg @ 2002-10-08 03:11:48 by stephent]
stephent
parents: 1024
diff changeset
834 Thanks to Skip Montanaro for the report.
b33a835c21cc [xemacs-hg @ 2002-10-08 03:11:48 by stephent]
stephent
parents: 1024
diff changeset
835
1011
fac45095e485 [xemacs-hg @ 2002-09-20 22:19:05 by youngs]
youngs
parents: 1009
diff changeset
836 2002-09-20 Steve Youngs <youngs@xemacs.org>
fac45095e485 [xemacs-hg @ 2002-09-20 22:19:05 by youngs]
youngs
parents: 1009
diff changeset
837
fac45095e485 [xemacs-hg @ 2002-09-20 22:19:05 by youngs]
youngs
parents: 1009
diff changeset
838 * Makefile.in.in (TAGS tags): Descend into the modules directory
fac45095e485 [xemacs-hg @ 2002-09-20 22:19:05 by youngs]
youngs
parents: 1009
diff changeset
839 as well.
fac45095e485 [xemacs-hg @ 2002-09-20 22:19:05 by youngs]
youngs
parents: 1009
diff changeset
840
1009
c7a849296cb4 [xemacs-hg @ 2002-09-20 11:32:42 by stephent]
stephent
parents: 997
diff changeset
841 2002-09-20 Stephen J. Turnbull <stephen@xemacs.org>
c7a849296cb4 [xemacs-hg @ 2002-09-20 11:32:42 by stephent]
stephent
parents: 997
diff changeset
842
c7a849296cb4 [xemacs-hg @ 2002-09-20 11:32:42 by stephent]
stephent
parents: 997
diff changeset
843 * PROBLEMS: AIX memcpy MACRO/#ifdef USE_KKCC lossage. Thx, Valdis!
c7a849296cb4 [xemacs-hg @ 2002-09-20 11:32:42 by stephent]
stephent
parents: 997
diff changeset
844
997
89cca5f594bd [xemacs-hg @ 2002-09-10 15:37:48 by james]
james
parents: 981
diff changeset
845 2002-08-08 Jerry James <james@xemacs.org>
89cca5f594bd [xemacs-hg @ 2002-09-10 15:37:48 by james]
james
parents: 981
diff changeset
846
89cca5f594bd [xemacs-hg @ 2002-09-10 15:37:48 by james]
james
parents: 981
diff changeset
847 * Makefile.in.in (install-arch-dep): Install internal modules and
89cca5f594bd [xemacs-hg @ 2002-09-10 15:37:48 by james]
james
parents: 981
diff changeset
848 the corresponding autoload file.
89cca5f594bd [xemacs-hg @ 2002-09-10 15:37:48 by james]
james
parents: 981
diff changeset
849 * configure: Regenerate.
89cca5f594bd [xemacs-hg @ 2002-09-10 15:37:48 by james]
james
parents: 981
diff changeset
850 * configure.in: Detect module support early.
89cca5f594bd [xemacs-hg @ 2002-09-10 15:37:48 by james]
james
parents: 981
diff changeset
851 Define variables to be substituted in internal Makefiles.
89cca5f594bd [xemacs-hg @ 2002-09-10 15:37:48 by james]
james
parents: 981
diff changeset
852 Use ldap_libs instead of LIBS for LDAP libraries.
89cca5f594bd [xemacs-hg @ 2002-09-10 15:37:48 by james]
james
parents: 981
diff changeset
853 Use postgresql_libs instead of LIBS for PostgreSQL libraries.
89cca5f594bd [xemacs-hg @ 2002-09-10 15:37:48 by james]
james
parents: 981
diff changeset
854 Introduce ld_libs_module for seamless module/no-module support.
89cca5f594bd [xemacs-hg @ 2002-09-10 15:37:48 by james]
james
parents: 981
diff changeset
855
981
0205cafe98ff [xemacs-hg @ 2002-08-30 08:25:48 by youngs]
youngs
parents: 975
diff changeset
856 2002-08-30 Steve Youngs <youngs@xemacs.org>
0205cafe98ff [xemacs-hg @ 2002-08-30 08:25:48 by youngs]
youngs
parents: 975
diff changeset
857
0205cafe98ff [xemacs-hg @ 2002-08-30 08:25:48 by youngs]
youngs
parents: 975
diff changeset
858 * XEmacs 21.5.9 "brussels sprouts" is released.
0205cafe98ff [xemacs-hg @ 2002-08-30 08:25:48 by youngs]
youngs
parents: 975
diff changeset
859
975
151d438d2d55 [xemacs-hg @ 2002-08-28 05:36:20 by youngs]
youngs
parents: 974
diff changeset
860 2002-08-16 Steve Youngs <youngs@xemacs.org>
151d438d2d55 [xemacs-hg @ 2002-08-28 05:36:20 by youngs]
youngs
parents: 974
diff changeset
861
151d438d2d55 [xemacs-hg @ 2002-08-28 05:36:20 by youngs]
youngs
parents: 974
diff changeset
862 * version.sh (xemacs_extra_name): New var to identify XEmacs
151d438d2d55 [xemacs-hg @ 2002-08-28 05:36:20 by youngs]
youngs
parents: 974
diff changeset
863 version > release < next release. ie, release+cvs.
151d438d2d55 [xemacs-hg @ 2002-08-28 05:36:20 by youngs]
youngs
parents: 974
diff changeset
864
151d438d2d55 [xemacs-hg @ 2002-08-28 05:36:20 by youngs]
youngs
parents: 974
diff changeset
865 * configure.in: Test for xemacs_extra_name.
151d438d2d55 [xemacs-hg @ 2002-08-28 05:36:20 by youngs]
youngs
parents: 974
diff changeset
866
151d438d2d55 [xemacs-hg @ 2002-08-28 05:36:20 by youngs]
youngs
parents: 974
diff changeset
867 * configure: Re-generate.
151d438d2d55 [xemacs-hg @ 2002-08-28 05:36:20 by youngs]
youngs
parents: 974
diff changeset
868
974
fce478afd5b4 [xemacs-hg @ 2002-08-24 10:23:48 by scop]
scop
parents: 957
diff changeset
869 2002-08-22 Ville Skyttä <ville.skytta@xemacs.org>
fce478afd5b4 [xemacs-hg @ 2002-08-24 10:23:48 by scop]
scop
parents: 957
diff changeset
870
fce478afd5b4 [xemacs-hg @ 2002-08-24 10:23:48 by scop]
scop
parents: 957
diff changeset
871 * configure.usage: Reorder usage message to clarify what widgets
fce478afd5b4 [xemacs-hg @ 2002-08-24 10:23:48 by scop]
scop
parents: 957
diff changeset
872 are supported and what aren't.
fce478afd5b4 [xemacs-hg @ 2002-08-24 10:23:48 by scop]
scop
parents: 957
diff changeset
873
957
c017b187b1ec [xemacs-hg @ 2002-08-10 06:37:37 by stephent]
stephent
parents: 933
diff changeset
874 2002-08-10 Stephen J. Turnbull <stephen@xemacs.org>
c017b187b1ec [xemacs-hg @ 2002-08-10 06:37:37 by stephent]
stephent
parents: 933
diff changeset
875
c017b187b1ec [xemacs-hg @ 2002-08-10 06:37:37 by stephent]
stephent
parents: 933
diff changeset
876 * PROBLEMS (General advice): Define runtime and build problems.
c017b187b1ec [xemacs-hg @ 2002-08-10 06:37:37 by stephent]
stephent
parents: 933
diff changeset
877
c017b187b1ec [xemacs-hg @ 2002-08-10 06:37:37 by stephent]
stephent
parents: 933
diff changeset
878 2002-07-24 Stephen J. Turnbull <stephen@xemacs.org>
c017b187b1ec [xemacs-hg @ 2002-08-10 06:37:37 by stephent]
stephent
parents: 933
diff changeset
879
c017b187b1ec [xemacs-hg @ 2002-08-10 06:37:37 by stephent]
stephent
parents: 933
diff changeset
880 * PROBLEMS (Running, Linux): Rewrite "Hannibal Lecter" ld stuff.
c017b187b1ec [xemacs-hg @ 2002-08-10 06:37:37 by stephent]
stephent
parents: 933
diff changeset
881
933
f6bc42928b34 [xemacs-hg @ 2002-07-27 03:52:44 by youngs]
youngs
parents: 925
diff changeset
882 2002-07-27 Steve Youngs <youngs@xemacs.org>
f6bc42928b34 [xemacs-hg @ 2002-07-27 03:52:44 by youngs]
youngs
parents: 925
diff changeset
883
f6bc42928b34 [xemacs-hg @ 2002-07-27 03:52:44 by youngs]
youngs
parents: 925
diff changeset
884 * XEmacs 21.5.8 "broccoli" is released.
f6bc42928b34 [xemacs-hg @ 2002-07-27 03:52:44 by youngs]
youngs
parents: 925
diff changeset
885
925
c4937d1216b6 [xemacs-hg @ 2002-07-16 08:26:38 by michaels]
michaels
parents: 917
diff changeset
886 2002-07-09 Mike Sperber <mike@xemacs.org>
c4937d1216b6 [xemacs-hg @ 2002-07-16 08:26:38 by michaels]
michaels
parents: 917
diff changeset
887
c4937d1216b6 [xemacs-hg @ 2002-07-16 08:26:38 by michaels]
michaels
parents: 917
diff changeset
888 * configure.usage:
c4937d1216b6 [xemacs-hg @ 2002-07-16 08:26:38 by michaels]
michaels
parents: 917
diff changeset
889 * configure.in: Add --use-kkcc option for new GC algorithms.
c4937d1216b6 [xemacs-hg @ 2002-07-16 08:26:38 by michaels]
michaels
parents: 917
diff changeset
890
917
259c80d93e3b [xemacs-hg @ 2002-07-11 18:41:26 by stephent]
stephent
parents: 915
diff changeset
891 2002-06-04 Jerry James <james@xemacs.org>
259c80d93e3b [xemacs-hg @ 2002-07-11 18:41:26 by stephent]
stephent
parents: 915
diff changeset
892
259c80d93e3b [xemacs-hg @ 2002-07-11 18:41:26 by stephent]
stephent
parents: 915
diff changeset
893 * configure.usage: Identify --with-modules as autodetecting.
259c80d93e3b [xemacs-hg @ 2002-07-11 18:41:26 by stephent]
stephent
parents: 915
diff changeset
894
915
31b3496cb402 [xemacs-hg @ 2002-07-10 06:23:36 by stephent]
stephent
parents: 911
diff changeset
895 2002-07-04 Stephen J. Turnbull <stephen@xemacs.org>
31b3496cb402 [xemacs-hg @ 2002-07-10 06:23:36 by stephent]
stephent
parents: 911
diff changeset
896
31b3496cb402 [xemacs-hg @ 2002-07-10 06:23:36 by stephent]
stephent
parents: 911
diff changeset
897 * PROBLEMS: Add two basic configuration questions.
31b3496cb402 [xemacs-hg @ 2002-07-10 06:23:36 by stephent]
stephent
parents: 911
diff changeset
898
911
428608d46017 [xemacs-hg @ 2002-07-09 11:57:41 by michaels]
michaels
parents: 894
diff changeset
899 2002-07-08 Mike Sperber <mike@xemacs.org>
428608d46017 [xemacs-hg @ 2002-07-09 11:57:41 by michaels]
michaels
parents: 894
diff changeset
900
428608d46017 [xemacs-hg @ 2002-07-09 11:57:41 by michaels]
michaels
parents: 894
diff changeset
901 * configure.in: Test for wchar.h.
428608d46017 [xemacs-hg @ 2002-07-09 11:57:41 by michaels]
michaels
parents: 894
diff changeset
902
894
2367ca81af28 [xemacs-hg @ 2002-07-02 15:00:50 by stephent]
stephent
parents: 892
diff changeset
903 2002-07-02 Stephen J. Turnbull <stephen@xemacs.org>
2367ca81af28 [xemacs-hg @ 2002-07-02 15:00:50 by stephent]
stephent
parents: 892
diff changeset
904
2367ca81af28 [xemacs-hg @ 2002-07-02 15:00:50 by stephent]
stephent
parents: 892
diff changeset
905 * XEmacs 21.5.7 "broccoflower" is released.
2367ca81af28 [xemacs-hg @ 2002-07-02 15:00:50 by stephent]
stephent
parents: 892
diff changeset
906
892
52c2a7139db0 [xemacs-hg @ 2002-07-02 12:27:53 by stephent]
stephent
parents: 864
diff changeset
907 2002-07-02 Stephen J. Turnbull <stephen@xemacs.org>
52c2a7139db0 [xemacs-hg @ 2002-07-02 12:27:53 by stephent]
stephent
parents: 864
diff changeset
908
52c2a7139db0 [xemacs-hg @ 2002-07-02 12:27:53 by stephent]
stephent
parents: 864
diff changeset
909 * PROBLEMS (Running XEmacs; General): Xref FAQ Q3.10.6.
52c2a7139db0 [xemacs-hg @ 2002-07-02 12:27:53 by stephent]
stephent
parents: 864
diff changeset
910
864
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
911 2002-05-22 Andy Piper <andy@xemacs.org>
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
912
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
913 * build-msw-release.sh (TMPINSTALL): install to a tmpdir so that
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
914 xemacs can be running while we build a dist.
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
915
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
916 2002-05-07 Andy Piper <andy@xemacs.org>
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
917
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
918 * configure.in: undo autoconf 2.5x change.
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
919
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
920 2002-04-26 Andy Piper <andy@xemacs.org>
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
921
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
922 * configure.in: make sure that a combined X and windows build gets
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
923 widgets.
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
924
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
925 2002-04-26 Andy Piper <andy@xemacs.org>
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
926
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
927 * configure.in: update to support autoconf 2.5x from Andreas
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
928 Schwab <schwab@suse.de> and/or Werner Fink <werner@suse.de>.
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
929
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
930 2002-05-04 Stephen J. Turnbull <stephen@xemacs.org>
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
931
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
932 * etc/sample.init.el: Fix comment typo about resize-minibuffer.
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
933
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
934 * etc/sample.init.el: Add description of initialization process,
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
935 the custom.el file, and code to load custom.el early instead of
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
936 late.
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
937
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
938 2002-04-22 Hrvoje Niksic <hniksic@xemacs.org>
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
939
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
940 * etc/photos/hniksic.png, etc/photos/hniksic.png: Update.
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
941
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
942 2002-04-25 Mike Fabian <mfabian@suse.de>
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
943
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
944 * configure.in: add option moduledir as mentioned in ./configure
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
945 --help
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
946
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
947 2001-04-21 Martin Buchholz <martin@xemacs.org>
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
948
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
949 * configure.in: Detect MacOS/X "Darwin".
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
950 Thanks to Greg Parker <gparker@cs.stanford.edu>.
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
951
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
952 2002-03-30 Steve Youngs <youngs@xemacs.org>
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
953
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
954 * etc/package-index.LATEST.pgp: Update to current reality.
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
955
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
956 2002-02-28 Stephen J. Turnbull <stephen@xemacs.org>
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
957
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
958 * etc/TUTORIAL.se: New from Mats Lidell.
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
959
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
960 2002-01-07 Jan Vroonhof <jan@xemacs.org>
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
961
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
962 * configure.in: Make explicit "--with-widgets" mean "=yes".
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
963 If "--with-widgets=yes" autodetect athena.
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
964
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
965 2001-12-29 Steve Youngs <youngs@xemacs.org>
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
966
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
967 * etc/package-index.LATEST.pgp: Update.
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
968
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
969 2001-12-13 William M. Perry <wmperry@gnu.org>
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
970
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
971 * configure.in (GTK): add -Wno-shadow.
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
972
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
973 2002-01-23 Jarl Friis <jarl@diku.dk>
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
974
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
975 * etc/BETA (http): Informing of xemacs-patches mailing list. Added
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
976 note on patch etiquette.
5b3cf2203477 [xemacs-hg @ 2002-06-04 06:09:51 by andyp]
andyp
parents: 853
diff changeset
977
853
2b6fa2618f76 [xemacs-hg @ 2002-05-28 08:44:22 by ben]
ben
parents: 846
diff changeset
978 2001-03-26 Paul Stodghill <stodghil@cs.cornell.edu>
2b6fa2618f76 [xemacs-hg @ 2002-05-28 08:44:22 by ben]
ben
parents: 846
diff changeset
979
2b6fa2618f76 [xemacs-hg @ 2002-05-28 08:44:22 by ben]
ben
parents: 846
diff changeset
980 * configure.in: Don't #define __STDC__ in confdefs.h
2b6fa2618f76 [xemacs-hg @ 2002-05-28 08:44:22 by ben]
ben
parents: 846
diff changeset
981
846
7b263c3f9ec9 [xemacs-hg @ 2002-05-16 15:24:20 by stephent]
stephent
parents: 845
diff changeset
982 2002-02-28 Malcolm Purvis <malcolmpurvis@optushome.com.au>
7b263c3f9ec9 [xemacs-hg @ 2002-05-16 15:24:20 by stephent]
stephent
parents: 845
diff changeset
983
7b263c3f9ec9 [xemacs-hg @ 2002-05-16 15:24:20 by stephent]
stephent
parents: 845
diff changeset
984 * configure.in: Protect nocomboreloc linker arguments to avoid
7b263c3f9ec9 [xemacs-hg @ 2002-05-16 15:24:20 by stephent]
stephent
parents: 845
diff changeset
985 problem on the ppc.
7b263c3f9ec9 [xemacs-hg @ 2002-05-16 15:24:20 by stephent]
stephent
parents: 845
diff changeset
986
845
77624ff6e2da [xemacs-hg @ 2002-05-16 15:11:22 by stephent]
stephent
parents: 835
diff changeset
987 2002-05-17 Stephen J. Turnbull <stephen@xemacs.org>
77624ff6e2da [xemacs-hg @ 2002-05-16 15:11:22 by stephent]
stephent
parents: 835
diff changeset
988
77624ff6e2da [xemacs-hg @ 2002-05-16 15:11:22 by stephent]
stephent
parents: 835
diff changeset
989 * PROBLEMS: Describe "Hannibal Lecter" crash on Linux. Reorder
77624ff6e2da [xemacs-hg @ 2002-05-16 15:11:22 by stephent]
stephent
parents: 835
diff changeset
990 Linux runtime issues section.
77624ff6e2da [xemacs-hg @ 2002-05-16 15:11:22 by stephent]
stephent
parents: 835
diff changeset
991 * INSTALL: Improve description of mail locking.
77624ff6e2da [xemacs-hg @ 2002-05-16 15:11:22 by stephent]
stephent
parents: 835
diff changeset
992
835
e7ad6587a7a0 [xemacs-hg @ 2002-05-11 09:32:08 by adrian]
adrian
parents: 828
diff changeset
993 2002-05-04 Stephen J. Turnbull <stephen@xemacs.org>
e7ad6587a7a0 [xemacs-hg @ 2002-05-11 09:32:08 by adrian]
adrian
parents: 828
diff changeset
994
e7ad6587a7a0 [xemacs-hg @ 2002-05-11 09:32:08 by adrian]
adrian
parents: 828
diff changeset
995 * PROBLEMS (General): Decribe failed AUTH with EFS.
e7ad6587a7a0 [xemacs-hg @ 2002-05-11 09:32:08 by adrian]
adrian
parents: 828
diff changeset
996
828
4ead1e0842f0 [xemacs-hg @ 2002-05-07 15:30:14 by stephent]
stephent
parents: 826
diff changeset
997 2002-04-23 Olivier Galibert <galibert@pobox.com>
4ead1e0842f0 [xemacs-hg @ 2002-05-07 15:30:14 by stephent]
stephent
parents: 826
diff changeset
998
4ead1e0842f0 [xemacs-hg @ 2002-05-07 15:30:14 by stephent]
stephent
parents: 826
diff changeset
999 * configure.in: Fix the "error checking" warning.
4ead1e0842f0 [xemacs-hg @ 2002-05-07 15:30:14 by stephent]
stephent
parents: 826
diff changeset
1000
826
6728e641994e [xemacs-hg @ 2002-05-05 11:30:15 by ben]
ben
parents: 823
diff changeset
1001 2002-05-05 Ben Wing <ben@xemacs.org>
6728e641994e [xemacs-hg @ 2002-05-05 11:30:15 by ben]
ben
parents: 823
diff changeset
1002
6728e641994e [xemacs-hg @ 2002-05-05 11:30:15 by ben]
ben
parents: 823
diff changeset
1003 * README.packages: Update info about --package-path.
6728e641994e [xemacs-hg @ 2002-05-05 11:30:15 by ben]
ben
parents: 823
diff changeset
1004
814
a634e3b7acc8 [xemacs-hg @ 2002-04-14 12:41:59 by ben]
ben
parents: 808
diff changeset
1005 2002-04-14 Ben Wing <ben@xemacs.org>
a634e3b7acc8 [xemacs-hg @ 2002-04-14 12:41:59 by ben]
ben
parents: 808
diff changeset
1006
a634e3b7acc8 [xemacs-hg @ 2002-04-14 12:41:59 by ben]
ben
parents: 808
diff changeset
1007 * TODO.ben-mule-21-5:
a634e3b7acc8 [xemacs-hg @ 2002-04-14 12:41:59 by ben]
ben
parents: 808
diff changeset
1008 * TODO.ben-mule-21-5 (Priority): New.
a634e3b7acc8 [xemacs-hg @ 2002-04-14 12:41:59 by ben]
ben
parents: 808
diff changeset
1009 Update.
a634e3b7acc8 [xemacs-hg @ 2002-04-14 12:41:59 by ben]
ben
parents: 808
diff changeset
1010
808
aa9a0cd78930 [xemacs-hg @ 2002-04-05 12:30:45 by stephent]
stephent
parents: 803
diff changeset
1011 2002-04-05 Stephen J. Turnbull <stephen@xemacs.org>
aa9a0cd78930 [xemacs-hg @ 2002-04-05 12:30:45 by stephent]
stephent
parents: 803
diff changeset
1012
aa9a0cd78930 [xemacs-hg @ 2002-04-05 12:30:45 by stephent]
stephent
parents: 803
diff changeset
1013 * XEmacs 21.5.6 "bok choi" is released.
aa9a0cd78930 [xemacs-hg @ 2002-04-05 12:30:45 by stephent]
stephent
parents: 803
diff changeset
1014
803
9b6b28d87550 [xemacs-hg @ 2002-04-05 07:36:18 by stephent]
stephent
parents: 801
diff changeset
1015 2002-04-05 Stephen J. Turnbull <stephen@xemacs.org>
9b6b28d87550 [xemacs-hg @ 2002-04-05 07:36:18 by stephent]
stephent
parents: 801
diff changeset
1016
9b6b28d87550 [xemacs-hg @ 2002-04-05 07:36:18 by stephent]
stephent
parents: 801
diff changeset
1017 * CHANGES-beta: Update for release.
9b6b28d87550 [xemacs-hg @ 2002-04-05 07:36:18 by stephent]
stephent
parents: 801
diff changeset
1018
801
2b676dc88c66 [xemacs-hg @ 2002-04-01 03:58:02 by ben]
ben
parents: 800
diff changeset
1019 2002-03-31 Ben Wing <ben@xemacs.org>
2b676dc88c66 [xemacs-hg @ 2002-04-01 03:58:02 by ben]
ben
parents: 800
diff changeset
1020
2b676dc88c66 [xemacs-hg @ 2002-04-01 03:58:02 by ben]
ben
parents: 800
diff changeset
1021 * Makefile.in.in (all):
2b676dc88c66 [xemacs-hg @ 2002-04-01 03:58:02 by ben]
ben
parents: 800
diff changeset
1022 * Makefile.in.in (finder):
2b676dc88c66 [xemacs-hg @ 2002-04-01 03:58:02 by ben]
ben
parents: 800
diff changeset
1023 * Makefile.in.in (Makefile):
2b676dc88c66 [xemacs-hg @ 2002-04-01 03:58:02 by ben]
ben
parents: 800
diff changeset
1024 * Makefile.in.in (SOURCES):
2b676dc88c66 [xemacs-hg @ 2002-04-01 03:58:02 by ben]
ben
parents: 800
diff changeset
1025 Try to make the Makefile notice if its source Makefile.in.in is
2b676dc88c66 [xemacs-hg @ 2002-04-01 03:58:02 by ben]
ben
parents: 800
diff changeset
1026 changed, and regenerate and run itself.
2b676dc88c66 [xemacs-hg @ 2002-04-01 03:58:02 by ben]
ben
parents: 800
diff changeset
1027
2b676dc88c66 [xemacs-hg @ 2002-04-01 03:58:02 by ben]
ben
parents: 800
diff changeset
1028 Use a bigger default SHEAP_ADJUSTMENT on Cygwin; otherwise you
2b676dc88c66 [xemacs-hg @ 2002-04-01 03:58:02 by ben]
ben
parents: 800
diff changeset
1029 can't compile under Mule if a Lisp file has changed. (can't run
2b676dc88c66 [xemacs-hg @ 2002-04-01 03:58:02 by ben]
ben
parents: 800
diff changeset
1030 temacs)
2b676dc88c66 [xemacs-hg @ 2002-04-01 03:58:02 by ben]
ben
parents: 800
diff changeset
1031
2b676dc88c66 [xemacs-hg @ 2002-04-01 03:58:02 by ben]
ben
parents: 800
diff changeset
1032 * TODO.ben-mule-21-5 (bugs): update.
2b676dc88c66 [xemacs-hg @ 2002-04-01 03:58:02 by ben]
ben
parents: 800
diff changeset
1033
800
a5954632b187 [xemacs-hg @ 2002-03-31 08:27:14 by ben]
ben
parents: 793
diff changeset
1034 2002-03-31 Ben Wing <ben@xemacs.org>
a5954632b187 [xemacs-hg @ 2002-03-31 08:27:14 by ben]
ben
parents: 793
diff changeset
1035
a5954632b187 [xemacs-hg @ 2002-03-31 08:27:14 by ben]
ben
parents: 793
diff changeset
1036 * TODO.ben-mule-21-5 (bugs): Update.
a5954632b187 [xemacs-hg @ 2002-03-31 08:27:14 by ben]
ben
parents: 793
diff changeset
1037
a5954632b187 [xemacs-hg @ 2002-03-31 08:27:14 by ben]
ben
parents: 793
diff changeset
1038 * configure.in (USAGE_ERROR):
a5954632b187 [xemacs-hg @ 2002-03-31 08:27:14 by ben]
ben
parents: 793
diff changeset
1039 * configure.in (CANONICALIZE_PATH):
a5954632b187 [xemacs-hg @ 2002-03-31 08:27:14 by ben]
ben
parents: 793
diff changeset
1040 * configure.in (XE_COMPUTE_RUNPATH):
a5954632b187 [xemacs-hg @ 2002-03-31 08:27:14 by ben]
ben
parents: 793
diff changeset
1041 Fix for new error-checking types.
a5954632b187 [xemacs-hg @ 2002-03-31 08:27:14 by ben]
ben
parents: 793
diff changeset
1042
793
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1043 2002-03-28 Ben Wing <ben@xemacs.org>
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1044
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1045 * etc/ChangeLog: New file.
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1046
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1047 Separated out all entries for etc/ into their own ChangeLog.
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1048 Includes entries for the following files:
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1049
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1050 etc/BABYL, etc/BETA, etc/CHARSETS, etc/DISTRIB, etc/Emacs.ad,
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1051 etc/FTP, etc/GNUS-NEWS, etc/GOATS, etc/HELLO, etc/INSTALL,
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1052 etc/MACHINES, etc/MAILINGLISTS, etc/MSDOS, etc/MYTHOLOGY, etc/NEWS,
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1053 etc/OXYMORONS, etc/PACKAGES, etc/README, etc/TUTORIAL,
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1054 etc/TUTORIAL.de, etc/TUTORIAL.ja, etc/TUTORIAL.ko, etc/TUTORIAL.se,
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1055 etc/aliases.ksh, etc/altrasoft-logo.xpm, etc/check_cygwin_setup.sh,
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1056 etc/custom/example-themes/europe-theme.el,
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1057 etc/custom/example-themes/ex-custom-file,
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1058 etc/custom/example-themes/example-theme.el, etc/e/eterm.ti,
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1059 etc/edt-user.doc, etc/enriched.doc, etc/etags.1, etc/gnuserv.1,
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1060 etc/gnuserv.README, etc/package-index.LATEST.gpg,
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1061 etc/package-index.LATEST.pgp, etc/photos/jan.png, etc/recycle.xpm,
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1062 etc/refcard.tex, etc/sample.Xdefaults, etc/sample.emacs,
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1063 etc/sgml/CATALOG, etc/sgml/HTML32.dtd, etc/skk/SKK.tut.E,
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1064 etc/smilies/Face_ase.xbm, etc/smilies/Face_ase2.xbm,
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1065 etc/smilies/Face_ase3.xbm, etc/smilies/Face_smile.xbm,
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1066 etc/smilies/Face_weep.xbm, etc/sounds, etc/toolbar,
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1067 etc/toolbar/workshop-cap-up.xpm, etc/xemacs-ja.1, etc/xemacs.1,
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1068 etc/yow.lines, etc\BETA, etc\NEWS, etc\README, etc\TUTORIAL,
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1069 etc\TUTORIAL.de, etc\check_cygwin_setup.sh, etc\sample.init.el,
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1070 etc\unicode\README, etc\unicode\mule-ucs\*, etc\unicode\other\*
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1071
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1072 2002-03-24 Ben Wing <ben@xemacs.org>
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1073
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1074 * TODO.ben-mule-21-5 (bugs):
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1075 * TODO.ben-mule-21-5 (Signaling): New.
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1076 Add stuff from Frank Schmitt.
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
1077
788
026c5bf9c134 [xemacs-hg @ 2002-03-21 07:29:57 by ben]
ben
parents: 781
diff changeset
1078 2002-03-20 Ben Wing <ben@xemacs.org>
026c5bf9c134 [xemacs-hg @ 2002-03-21 07:29:57 by ben]
ben
parents: 781
diff changeset
1079
026c5bf9c134 [xemacs-hg @ 2002-03-21 07:29:57 by ben]
ben
parents: 781
diff changeset
1080 * TODO.ben-mule-21-5:
026c5bf9c134 [xemacs-hg @ 2002-03-21 07:29:57 by ben]
ben
parents: 781
diff changeset
1081 * TODO.ben-mule-21-5 (bugs):
026c5bf9c134 [xemacs-hg @ 2002-03-21 07:29:57 by ben]
ben
parents: 781
diff changeset
1082 Create bug list for latest problems.
026c5bf9c134 [xemacs-hg @ 2002-03-21 07:29:57 by ben]
ben
parents: 781
diff changeset
1083
781
eba92770173a [xemacs-hg @ 2002-03-18 10:13:39 by ben]
ben
parents: 777
diff changeset
1084 2002-03-18 Ben Wing <ben@xemacs.org>
eba92770173a [xemacs-hg @ 2002-03-18 10:13:39 by ben]
ben
parents: 777
diff changeset
1085
eba92770173a [xemacs-hg @ 2002-03-18 10:13:39 by ben]
ben
parents: 777
diff changeset
1086 * README (http):
eba92770173a [xemacs-hg @ 2002-03-18 10:13:39 by ben]
ben
parents: 777
diff changeset
1087 Include a long, long description of the suggested directory layout
eba92770173a [xemacs-hg @ 2002-03-18 10:13:39 by ben]
ben
parents: 777
diff changeset
1088 for developing XEmacs. This should probably go as part of a
eba92770173a [xemacs-hg @ 2002-03-18 10:13:39 by ben]
ben
parents: 777
diff changeset
1089 larger document, a "Getting Started with Developing XEmacs". ####
eba92770173a [xemacs-hg @ 2002-03-18 10:13:39 by ben]
ben
parents: 777
diff changeset
1090 Does such a document exist?
eba92770173a [xemacs-hg @ 2002-03-18 10:13:39 by ben]
ben
parents: 777
diff changeset
1091
eba92770173a [xemacs-hg @ 2002-03-18 10:13:39 by ben]
ben
parents: 777
diff changeset
1092 2002-03-18 Ben Wing <ben@xemacs.org>
eba92770173a [xemacs-hg @ 2002-03-18 10:13:39 by ben]
ben
parents: 777
diff changeset
1093
eba92770173a [xemacs-hg @ 2002-03-18 10:13:39 by ben]
ben
parents: 777
diff changeset
1094 * Some ChangeLog entries from stuff that got applied long ago
eba92770173a [xemacs-hg @ 2002-03-18 10:13:39 by ben]
ben
parents: 777
diff changeset
1095 never got checked in, due to the nasty SCCS "oops, i forgot again
eba92770173a [xemacs-hg @ 2002-03-18 10:13:39 by ben]
ben
parents: 777
diff changeset
1096 ..." bug.
eba92770173a [xemacs-hg @ 2002-03-18 10:13:39 by ben]
ben
parents: 777
diff changeset
1097
eba92770173a [xemacs-hg @ 2002-03-18 10:13:39 by ben]
ben
parents: 777
diff changeset
1098 2001-05-04 Ben Wing <ben@xemacs.org>
eba92770173a [xemacs-hg @ 2002-03-18 10:13:39 by ben]
ben
parents: 777
diff changeset
1099
eba92770173a [xemacs-hg @ 2002-03-18 10:13:39 by ben]
ben
parents: 777
diff changeset
1100 * PROBLEMS:
eba92770173a [xemacs-hg @ 2002-03-18 10:13:39 by ben]
ben
parents: 777
diff changeset
1101 * PROBLEMS (Note):
eba92770173a [xemacs-hg @ 2002-03-18 10:13:39 by ben]
ben
parents: 777
diff changeset
1102 Correct general info about init file.
eba92770173a [xemacs-hg @ 2002-03-18 10:13:39 by ben]
ben
parents: 777
diff changeset
1103 Fix up Cygwin, Windows sections.
eba92770173a [xemacs-hg @ 2002-03-18 10:13:39 by ben]
ben
parents: 777
diff changeset
1104
777
e65d9cf16707 [xemacs-hg @ 2002-03-15 11:00:28 by ben]
ben
parents: 776
diff changeset
1105 2002-03-15 Ben Wing <ben@xemacs.org>
e65d9cf16707 [xemacs-hg @ 2002-03-15 11:00:28 by ben]
ben
parents: 776
diff changeset
1106
e65d9cf16707 [xemacs-hg @ 2002-03-15 11:00:28 by ben]
ben
parents: 776
diff changeset
1107 * configure.in (XE_COMPUTE_RUNPATH):
e65d9cf16707 [xemacs-hg @ 2002-03-15 11:00:28 by ben]
ben
parents: 776
diff changeset
1108 check for sys/times.h.
e65d9cf16707 [xemacs-hg @ 2002-03-15 11:00:28 by ben]
ben
parents: 776
diff changeset
1109
776
79940b592197 [xemacs-hg @ 2002-03-15 07:43:14 by ben]
ben
parents: 774
diff changeset
1110 2002-03-15 Ben Wing <ben@xemacs.org>
79940b592197 [xemacs-hg @ 2002-03-15 07:43:14 by ben]
ben
parents: 774
diff changeset
1111
79940b592197 [xemacs-hg @ 2002-03-15 07:43:14 by ben]
ben
parents: 774
diff changeset
1112 * Makefile.in.in (batch):
79940b592197 [xemacs-hg @ 2002-03-15 07:43:14 by ben]
ben
parents: 774
diff changeset
1113 * Makefile.in.in (batch_packages):
79940b592197 [xemacs-hg @ 2002-03-15 07:43:14 by ben]
ben
parents: 774
diff changeset
1114 * Makefile.in.in (finder):
79940b592197 [xemacs-hg @ 2002-03-15 07:43:14 by ben]
ben
parents: 774
diff changeset
1115 * Makefile.in.in (check-features):
79940b592197 [xemacs-hg @ 2002-03-15 07:43:14 by ben]
ben
parents: 774
diff changeset
1116 * Makefile.in.in (install):
79940b592197 [xemacs-hg @ 2002-03-15 07:43:14 by ben]
ben
parents: 774
diff changeset
1117 Use -no-packages to avoid problems with package files shadowing
79940b592197 [xemacs-hg @ 2002-03-15 07:43:14 by ben]
ben
parents: 774
diff changeset
1118 core files (e.g. unicode.el in mule-ucs).
79940b592197 [xemacs-hg @ 2002-03-15 07:43:14 by ben]
ben
parents: 774
diff changeset
1119
774
703228f54913 [xemacs-hg @ 2002-03-14 03:54:10 by stephent]
stephent
parents: 771
diff changeset
1120 2002-03-12 Ben Wing <ben@xemacs.org>
703228f54913 [xemacs-hg @ 2002-03-14 03:54:10 by stephent]
stephent
parents: 771
diff changeset
1121
776
79940b592197 [xemacs-hg @ 2002-03-15 07:43:14 by ben]
ben
parents: 774
diff changeset
1122 * The Great Mule Merge: See CHANGES-ben-mule.
774
703228f54913 [xemacs-hg @ 2002-03-14 03:54:10 by stephent]
stephent
parents: 771
diff changeset
1123
768
e3c602a01a26 [xemacs-hg @ 2002-03-05 14:45:51 by stephent]
stephent
parents: 762
diff changeset
1124 2002-03-05 Stephen J. Turnbull <stephen@xemacs.org>
e3c602a01a26 [xemacs-hg @ 2002-03-05 14:45:51 by stephent]
stephent
parents: 762
diff changeset
1125
e3c602a01a26 [xemacs-hg @ 2002-03-05 14:45:51 by stephent]
stephent
parents: 762
diff changeset
1126 * XEmacs 21.5.5 "beets" is released.
e3c602a01a26 [xemacs-hg @ 2002-03-05 14:45:51 by stephent]
stephent
parents: 762
diff changeset
1127
762
177fa09febec [xemacs-hg @ 2002-03-05 12:44:45 by stephent]
stephent
parents: 760
diff changeset
1128 2002-03-05 Stephen J. Turnbull <stephen@xemacs.org>
177fa09febec [xemacs-hg @ 2002-03-05 12:44:45 by stephent]
stephent
parents: 760
diff changeset
1129
177fa09febec [xemacs-hg @ 2002-03-05 12:44:45 by stephent]
stephent
parents: 760
diff changeset
1130 * CHANGES-beta: Prune pre-21.5 information.
177fa09febec [xemacs-hg @ 2002-03-05 12:44:45 by stephent]
stephent
parents: 760
diff changeset
1131
726
1f525cb38373 [xemacs-hg @ 2002-01-09 18:58:56 by janv]
janv
parents: 725
diff changeset
1132 2002-01-07 Jan Vroonhof <jan@xemacs.org>
1f525cb38373 [xemacs-hg @ 2002-01-09 18:58:56 by janv]
janv
parents: 725
diff changeset
1133
1f525cb38373 [xemacs-hg @ 2002-01-09 18:58:56 by janv]
janv
parents: 725
diff changeset
1134 * configure.in: Make explicit "--with-widgets" mean "=yes".
1f525cb38373 [xemacs-hg @ 2002-01-09 18:58:56 by janv]
janv
parents: 725
diff changeset
1135 If "--with-widgets=yes" autodetect athena.
1f525cb38373 [xemacs-hg @ 2002-01-09 18:58:56 by janv]
janv
parents: 725
diff changeset
1136
725
b35d39ece38f [xemacs-hg @ 2002-01-08 16:49:21 by stephent]
stephent
parents: 724
diff changeset
1137 2002-01-08 Stephen J. Turnbull <stephen@xemacs.org>
b35d39ece38f [xemacs-hg @ 2002-01-08 16:49:21 by stephent]
stephent
parents: 724
diff changeset
1138
b35d39ece38f [xemacs-hg @ 2002-01-08 16:49:21 by stephent]
stephent
parents: 724
diff changeset
1139 * XEmacs 21.5.4 "bamboo" is released.
b35d39ece38f [xemacs-hg @ 2002-01-08 16:49:21 by stephent]
stephent
parents: 724
diff changeset
1140
724
76d5a3dd827a [xemacs-hg @ 2002-01-05 07:33:11 by stephent]
stephent
parents: 721
diff changeset
1141 2001-05-17 Andrew Begel <abegel@eecs.berkeley.edu>
76d5a3dd827a [xemacs-hg @ 2002-01-05 07:33:11 by stephent]
stephent
parents: 721
diff changeset
1142
76d5a3dd827a [xemacs-hg @ 2002-01-05 07:33:11 by stephent]
stephent
parents: 721
diff changeset
1143 * aclocal.m4 (LTLD): Don't use "gcc", use the ld reported by gcc.
76d5a3dd827a [xemacs-hg @ 2002-01-05 07:33:11 by stephent]
stephent
parents: 721
diff changeset
1144
76d5a3dd827a [xemacs-hg @ 2002-01-05 07:33:11 by stephent]
stephent
parents: 721
diff changeset
1145 2001-08-19 Charles Wilson <cwilson@ece.gatech.edu>
76d5a3dd827a [xemacs-hg @ 2002-01-05 07:33:11 by stephent]
stephent
parents: 721
diff changeset
1146
76d5a3dd827a [xemacs-hg @ 2002-01-05 07:33:11 by stephent]
stephent
parents: 721
diff changeset
1147 * configure.in (for graphics libraries): Detect Cygwin xpm-nox.
76d5a3dd827a [xemacs-hg @ 2002-01-05 07:33:11 by stephent]
stephent
parents: 721
diff changeset
1148
76d5a3dd827a [xemacs-hg @ 2002-01-05 07:33:11 by stephent]
stephent
parents: 721
diff changeset
1149 2001-04-14 Gordon Sadler <gbsadler1@lcisp.com>
76d5a3dd827a [xemacs-hg @ 2002-01-05 07:33:11 by stephent]
stephent
parents: 721
diff changeset
1150
76d5a3dd827a [xemacs-hg @ 2002-01-05 07:33:11 by stephent]
stephent
parents: 721
diff changeset
1151 * configure.in: Add GTK_CFLAGS to CPPFLAGS for glade.h check.
76d5a3dd827a [xemacs-hg @ 2002-01-05 07:33:11 by stephent]
stephent
parents: 721
diff changeset
1152
76d5a3dd827a [xemacs-hg @ 2002-01-05 07:33:11 by stephent]
stephent
parents: 721
diff changeset
1153 2001-07-01 Alexey Mahotkin <alexm@hsys.msk.ru>
76d5a3dd827a [xemacs-hg @ 2002-01-05 07:33:11 by stephent]
stephent
parents: 721
diff changeset
1154
76d5a3dd827a [xemacs-hg @ 2002-01-05 07:33:11 by stephent]
stephent
parents: 721
diff changeset
1155 * configure.in (option processing): with_widgets=m is ambiguous;
76d5a3dd827a [xemacs-hg @ 2002-01-05 07:33:11 by stephent]
stephent
parents: 721
diff changeset
1156 don't allow it.
76d5a3dd827a [xemacs-hg @ 2002-01-05 07:33:11 by stephent]
stephent
parents: 721
diff changeset
1157 (AC_CHECKING for the Athena widgets): Don't check for Athena when
76d5a3dd827a [xemacs-hg @ 2002-01-05 07:33:11 by stephent]
stephent
parents: 721
diff changeset
1158 with_widgets=no.
76d5a3dd827a [xemacs-hg @ 2002-01-05 07:33:11 by stephent]
stephent
parents: 721
diff changeset
1159
76d5a3dd827a [xemacs-hg @ 2002-01-05 07:33:11 by stephent]
stephent
parents: 721
diff changeset
1160 2001-07-22 Stephen J. Turnbull <stephen@xemacs.org>
76d5a3dd827a [xemacs-hg @ 2002-01-05 07:33:11 by stephent]
stephent
parents: 721
diff changeset
1161
76d5a3dd827a [xemacs-hg @ 2002-01-05 07:33:11 by stephent]
stephent
parents: 721
diff changeset
1162 * configure.usage: Various documentation improvements.
76d5a3dd827a [xemacs-hg @ 2002-01-05 07:33:11 by stephent]
stephent
parents: 721
diff changeset
1163
76d5a3dd827a [xemacs-hg @ 2002-01-05 07:33:11 by stephent]
stephent
parents: 721
diff changeset
1164 * configure.in (--with-ipv6-cname): New Boolean option. Defaults on.
76d5a3dd827a [xemacs-hg @ 2002-01-05 07:33:11 by stephent]
stephent
parents: 721
diff changeset
1165 * configure.usage:
76d5a3dd827a [xemacs-hg @ 2002-01-05 07:33:11 by stephent]
stephent
parents: 721
diff changeset
1166 * PROBLEMS (IPv6 CNAME lookup):
76d5a3dd827a [xemacs-hg @ 2002-01-05 07:33:11 by stephent]
stephent
parents: 721
diff changeset
1167 Document it.
76d5a3dd827a [xemacs-hg @ 2002-01-05 07:33:11 by stephent]
stephent
parents: 721
diff changeset
1168
721
f72a191f8ecf [xemacs-hg @ 2002-01-02 20:56:32 by adrian]
adrian
parents: 719
diff changeset
1169 2002-01-02 Adrian Aichner <adrian@xemacs.org>
f72a191f8ecf [xemacs-hg @ 2002-01-02 20:56:32 by adrian]
adrian
parents: 719
diff changeset
1170
f72a191f8ecf [xemacs-hg @ 2002-01-02 20:56:32 by adrian]
adrian
parents: 719
diff changeset
1171 * info/dir (File): Reword entry for Emodules according to
f72a191f8ecf [xemacs-hg @ 2002-01-02 20:56:32 by adrian]
adrian
parents: 719
diff changeset
1172 ../man/emodules.texi.
f72a191f8ecf [xemacs-hg @ 2002-01-02 20:56:32 by adrian]
adrian
parents: 719
diff changeset
1173
705
47f5192d44c9 [xemacs-hg @ 2001-12-18 22:55:29 by adrian]
adrian
parents: 703
diff changeset
1174 2001-12-18 Adrian Aichner <adrian@xemacs.org>
47f5192d44c9 [xemacs-hg @ 2001-12-18 22:55:29 by adrian]
adrian
parents: 703
diff changeset
1175
47f5192d44c9 [xemacs-hg @ 2001-12-18 22:55:29 by adrian]
adrian
parents: 703
diff changeset
1176 * info\.cvsignore: Correct pattern to match all info files.
47f5192d44c9 [xemacs-hg @ 2001-12-18 22:55:29 by adrian]
adrian
parents: 703
diff changeset
1177
701
886e83363116 [xemacs-hg @ 2001-12-17 15:58:18 by adrian]
adrian
parents: 699
diff changeset
1178 2001-12-16 Adrian Aichner <adrian@xemacs.org>
886e83363116 [xemacs-hg @ 2001-12-17 15:58:18 by adrian]
adrian
parents: 699
diff changeset
1179
886e83363116 [xemacs-hg @ 2001-12-17 15:58:18 by adrian]
adrian
parents: 699
diff changeset
1180 * info\.cvsignore: Info files are generated, so let's ignore them
886e83363116 [xemacs-hg @ 2001-12-17 15:58:18 by adrian]
adrian
parents: 699
diff changeset
1181 all.
886e83363116 [xemacs-hg @ 2001-12-17 15:58:18 by adrian]
adrian
parents: 699
diff changeset
1182
699
1f799c0f4c7e [xemacs-hg @ 2001-12-16 17:39:53 by adrian]
adrian
parents: 686
diff changeset
1183 2001-12-15 Adrian Aichner <adrian@xemacs.org>
1f799c0f4c7e [xemacs-hg @ 2001-12-16 17:39:53 by adrian]
adrian
parents: 686
diff changeset
1184
1f799c0f4c7e [xemacs-hg @ 2001-12-16 17:39:53 by adrian]
adrian
parents: 686
diff changeset
1185 * info\dir (File): Update version to 21.5.
1f799c0f4c7e [xemacs-hg @ 2001-12-16 17:39:53 by adrian]
adrian
parents: 686
diff changeset
1186
668
91da4ecd9da0 [xemacs-hg @ 2001-09-26 14:38:17 by stephent]
stephent
parents: 667
diff changeset
1187 2001-08-29 Jered Floyd <jered@MIT.EDU>
91da4ecd9da0 [xemacs-hg @ 2001-09-26 14:38:17 by stephent]
stephent
parents: 667
diff changeset
1188
91da4ecd9da0 [xemacs-hg @ 2001-09-26 14:38:17 by stephent]
stephent
parents: 667
diff changeset
1189 * configure.in (moduledir,sitemoduledir,archlibdir):
91da4ecd9da0 [xemacs-hg @ 2001-09-26 14:38:17 by stephent]
stephent
parents: 667
diff changeset
1190 Place arch-specific files under ${libdir}, not under ${datadir}.
91da4ecd9da0 [xemacs-hg @ 2001-09-26 14:38:17 by stephent]
stephent
parents: 667
diff changeset
1191
667
046f73d312c5 [xemacs-hg @ 2001-09-25 10:20:11 by didierv]
didierv
parents: 665
diff changeset
1192 2001-09-25 Didier Verna <didier@xemacs.org>
046f73d312c5 [xemacs-hg @ 2001-09-25 10:20:11 by didierv]
didierv
parents: 665
diff changeset
1193
046f73d312c5 [xemacs-hg @ 2001-09-25 10:20:11 by didierv]
didierv
parents: 665
diff changeset
1194 * configure.ac: new. Autoconf 2.5x guard.
046f73d312c5 [xemacs-hg @ 2001-09-25 10:20:11 by didierv]
didierv
parents: 665
diff changeset
1195
708
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1196 2001-11-21 Robert Pluim <rpluim@bigfoot.com>
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1197
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1198 * PROBLEMS (Sun/Solaris): Document fix for Motif related crashes
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1199
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1200 2001-12-15 Stephen J. Turnbull <stephen@xemacs.org>
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1201
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1202 * configure.in (Miscellaneous Flags): test for -z nocombreloc,
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1203 instead of -z combreloc, to avoid confusing Solaris.
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1204
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1205 2001-11-24 Stephen J. Turnbull <stephen@xemacs.org>
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1206
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1207 * configure.usage: Makefile.in -> Makefile.in.in.
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1208
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1209 2001-11-21 Stephen J. Turnbull <stephen@xemacs.org>
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1210
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1211 * Makefile.in.in: HP-UX needs LDFLAGS. From Lutz Jaenicke
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1212 <Lutz.Jaenicke@aet.TU-Cottbus.DE>.
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1213
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1214 2001-11-17 Stephen J. Turnbull <stephen@xemacs.org>
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1215
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1216 * configure.in: Fix typos in comments.
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1217 * (Miscellaneous flags): Use -z nocombreloc if supported and !pdump.
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1218 * (Installation): Suggest pdump instead of -z nocomboreloc.
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1219 * configure.usage: Document --quick-build.
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1220
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1221 2001-10-30 Stephen J. Turnbull <stephen@xemacs.org>
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1222
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1223 * configure.in: Typo in reference to with_ipv6_cname.
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1224
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1225 2001-10-30 Stephen J. Turnbull <stephen@xemacs.org>
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1226
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1227 * configure.in: Initialize with_ipv6_cname=no.
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1228 * configure.usage: Document it.
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1229
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1230 2001-10-05 Stephen J. Turnbull <stephen@xemacs.org>
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1231
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1232 * configure.in: Document that autoconf 2.5x is unsupported.
512e4a478e9d [xemacs-hg @ 2001-12-20 06:08:09 by andyp]
andyp
parents: 705
diff changeset
1233
664
6e99cc8c6ca5 [xemacs-hg @ 2001-09-18 05:04:26 by ben]
ben
parents: 655
diff changeset
1234 2001-09-17 Ben Wing <ben@xemacs.org>
6e99cc8c6ca5 [xemacs-hg @ 2001-09-18 05:04:26 by ben]
ben
parents: 655
diff changeset
1235
6e99cc8c6ca5 [xemacs-hg @ 2001-09-18 05:04:26 by ben]
ben
parents: 655
diff changeset
1236 * configure.in (TAB):
6e99cc8c6ca5 [xemacs-hg @ 2001-09-18 05:04:26 by ben]
ben
parents: 655
diff changeset
1237 * configure.in (XE_COMPUTE_RUNPATH):
6e99cc8c6ca5 [xemacs-hg @ 2001-09-18 05:04:26 by ben]
ben
parents: 655
diff changeset
1238 Don't use -Wshadow when compiling with g++ or you get buried in
6e99cc8c6ca5 [xemacs-hg @ 2001-09-18 05:04:26 by ben]
ben
parents: 655
diff changeset
1239 silly warnings. This patch was already applied but somehow got
6e99cc8c6ca5 [xemacs-hg @ 2001-09-18 05:04:26 by ben]
ben
parents: 655
diff changeset
1240 unapplied. Stephen?
6e99cc8c6ca5 [xemacs-hg @ 2001-09-18 05:04:26 by ben]
ben
parents: 655
diff changeset
1241
6e99cc8c6ca5 [xemacs-hg @ 2001-09-18 05:04:26 by ben]
ben
parents: 655
diff changeset
1242 2001-06-24 Ben Wing <ben@xemacs.org>
6e99cc8c6ca5 [xemacs-hg @ 2001-09-18 05:04:26 by ben]
ben
parents: 655
diff changeset
1243
6e99cc8c6ca5 [xemacs-hg @ 2001-09-18 05:04:26 by ben]
ben
parents: 655
diff changeset
1244 * configure.in (TAB): Don't use -Wshadow when compiling with
6e99cc8c6ca5 [xemacs-hg @ 2001-09-18 05:04:26 by ben]
ben
parents: 655
diff changeset
1245 g++ or you get buried in silly warnings.
6e99cc8c6ca5 [xemacs-hg @ 2001-09-18 05:04:26 by ben]
ben
parents: 655
diff changeset
1246 * configure.in (XE_COMPUTE_RUNPATH): Fix compile problems when
6e99cc8c6ca5 [xemacs-hg @ 2001-09-18 05:04:26 by ben]
ben
parents: 655
diff changeset
1247 compiling --with-msw, --with-x=no, --with-tty=no.
6e99cc8c6ca5 [xemacs-hg @ 2001-09-18 05:04:26 by ben]
ben
parents: 655
diff changeset
1248
654
3ab33cd99bbf [xemacs-hg @ 2001-09-07 09:54:37 by stephent]
stephent
parents: 642
diff changeset
1249 2001-09-07 Stephen J. Turnbull <stephen@xemacs.org>
3ab33cd99bbf [xemacs-hg @ 2001-09-07 09:54:37 by stephent]
stephent
parents: 642
diff changeset
1250
3ab33cd99bbf [xemacs-hg @ 2001-09-07 09:54:37 by stephent]
stephent
parents: 642
diff changeset
1251 * XEmacs 21.5.3 "asparagus" is released.
3ab33cd99bbf [xemacs-hg @ 2001-09-07 09:54:37 by stephent]
stephent
parents: 642
diff changeset
1252
642
277f059a321b [xemacs-hg @ 2001-08-01 18:59:04 by adrian]
adrian
parents: 641
diff changeset
1253 2001-08-02 Peter Brown <rendhalver@users.sourceforge.net>
277f059a321b [xemacs-hg @ 2001-08-01 18:59:04 by adrian]
adrian
parents: 641
diff changeset
1254
277f059a321b [xemacs-hg @ 2001-08-01 18:59:04 by adrian]
adrian
parents: 641
diff changeset
1255 * configure.usage (--with-dialogs): added lucid to list of options
277f059a321b [xemacs-hg @ 2001-08-01 18:59:04 by adrian]
adrian
parents: 641
diff changeset
1256 * configure.usage (--with-widgets): added lucid to list of options
277f059a321b [xemacs-hg @ 2001-08-01 18:59:04 by adrian]
adrian
parents: 641
diff changeset
1257 * configure.usage (--with-dragndrop): added GTK to list of protocols
277f059a321b [xemacs-hg @ 2001-08-01 18:59:04 by adrian]
adrian
parents: 641
diff changeset
1258 * configure.usage (--mail-locking): added `locking' or `mmdf' to
277f059a321b [xemacs-hg @ 2001-08-01 18:59:04 by adrian]
adrian
parents: 641
diff changeset
1259 list of options syncing options documentation with those in
277f059a321b [xemacs-hg @ 2001-08-01 18:59:04 by adrian]
adrian
parents: 641
diff changeset
1260 configure.in
277f059a321b [xemacs-hg @ 2001-08-01 18:59:04 by adrian]
adrian
parents: 641
diff changeset
1261
641
b17040ffddd1 [xemacs-hg @ 2001-07-28 08:14:27 by stephent]
stephent
parents: 636
diff changeset
1262 2001-07-28 Stephen J. Turnbull <stephen@xemacs.org>
b17040ffddd1 [xemacs-hg @ 2001-07-28 08:14:27 by stephent]
stephent
parents: 636
diff changeset
1263
b17040ffddd1 [xemacs-hg @ 2001-07-28 08:14:27 by stephent]
stephent
parents: 636
diff changeset
1264 * XEmacs 21.5.2 "artichoke" is released.
b17040ffddd1 [xemacs-hg @ 2001-07-28 08:14:27 by stephent]
stephent
parents: 636
diff changeset
1265
623
3e13cd716cff [xemacs-hg @ 2001-06-22 01:51:40 by ben]
ben
parents: 598
diff changeset
1266 2001-06-21 Ben Wing <ben@xemacs.org>
3e13cd716cff [xemacs-hg @ 2001-06-22 01:51:40 by ben]
ben
parents: 598
diff changeset
1267
3e13cd716cff [xemacs-hg @ 2001-06-22 01:51:40 by ben]
ben
parents: 598
diff changeset
1268 * README:
3e13cd716cff [xemacs-hg @ 2001-06-22 01:51:40 by ben]
ben
parents: 598
diff changeset
1269 * README (http):
3e13cd716cff [xemacs-hg @ 2001-06-22 01:51:40 by ben]
ben
parents: 598
diff changeset
1270 * README (ftp):
3e13cd716cff [xemacs-hg @ 2001-06-22 01:51:40 by ben]
ben
parents: 598
diff changeset
1271 Rewrite.
3e13cd716cff [xemacs-hg @ 2001-06-22 01:51:40 by ben]
ben
parents: 598
diff changeset
1272
598
6452bb72f5b9 [xemacs-hg @ 2001-06-01 05:07:19 by martinb]
martinb
parents: 594
diff changeset
1273 2001-05-29 Martin Buchholz <martin@xemacs.org>
6452bb72f5b9 [xemacs-hg @ 2001-06-01 05:07:19 by martinb]
martinb
parents: 594
diff changeset
1274
6452bb72f5b9 [xemacs-hg @ 2001-06-01 05:07:19 by martinb]
martinb
parents: 594
diff changeset
1275 * Makefile.in.in: `make distclean' would fail if srcdir != blddir.
6452bb72f5b9 [xemacs-hg @ 2001-06-01 05:07:19 by martinb]
martinb
parents: 594
diff changeset
1276 Remove SUBDIR_DISTCLEAN until such a time as the module subdir is
6452bb72f5b9 [xemacs-hg @ 2001-06-01 05:07:19 by martinb]
martinb
parents: 594
diff changeset
1277 properly integrated into the build system.
6452bb72f5b9 [xemacs-hg @ 2001-06-01 05:07:19 by martinb]
martinb
parents: 594
diff changeset
1278 Only create ${moduledir} and ${sitemoduledir} if HAVE_SHLIB.
6452bb72f5b9 [xemacs-hg @ 2001-06-01 05:07:19 by martinb]
martinb
parents: 594
diff changeset
1279
594
fd49b88b9f06 [xemacs-hg @ 2001-05-31 12:47:21 by ben]
ben
parents: 585
diff changeset
1280 2001-05-30 Ben Wing <ben@xemacs.org>
fd49b88b9f06 [xemacs-hg @ 2001-05-31 12:47:21 by ben]
ben
parents: 585
diff changeset
1281
fd49b88b9f06 [xemacs-hg @ 2001-05-31 12:47:21 by ben]
ben
parents: 585
diff changeset
1282 * configure.in (AC_INIT_PARSE_ARGS):
fd49b88b9f06 [xemacs-hg @ 2001-05-31 12:47:21 by ben]
ben
parents: 585
diff changeset
1283 * configure.in (USAGE_ERROR):
fd49b88b9f06 [xemacs-hg @ 2001-05-31 12:47:21 by ben]
ben
parents: 585
diff changeset
1284 * configure.in (XE_COMPUTE_RUNPATH):
fd49b88b9f06 [xemacs-hg @ 2001-05-31 12:47:21 by ben]
ben
parents: 585
diff changeset
1285 Fix problems detecting both native and Linux sound on Cygwin
fd49b88b9f06 [xemacs-hg @ 2001-05-31 12:47:21 by ben]
ben
parents: 585
diff changeset
1286 when compiled with --with-msw=no.
fd49b88b9f06 [xemacs-hg @ 2001-05-31 12:47:21 by ben]
ben
parents: 585
diff changeset
1287
fd49b88b9f06 [xemacs-hg @ 2001-05-31 12:47:21 by ben]
ben
parents: 585
diff changeset
1288 Rearrange file-coding handling a bit to avoid warning when
fd49b88b9f06 [xemacs-hg @ 2001-05-31 12:47:21 by ben]
ben
parents: 585
diff changeset
1289 compiling with Mule.
fd49b88b9f06 [xemacs-hg @ 2001-05-31 12:47:21 by ben]
ben
parents: 585
diff changeset
1290
fd49b88b9f06 [xemacs-hg @ 2001-05-31 12:47:21 by ben]
ben
parents: 585
diff changeset
1291 2001-05-28 Martin Buchholz <martin@xemacs.org>
fd49b88b9f06 [xemacs-hg @ 2001-05-31 12:47:21 by ben]
ben
parents: 585
diff changeset
1292
fd49b88b9f06 [xemacs-hg @ 2001-05-31 12:47:21 by ben]
ben
parents: 585
diff changeset
1293 * configure.in (--xemacs-compiler): New.
fd49b88b9f06 [xemacs-hg @ 2001-05-31 12:47:21 by ben]
ben
parents: 585
diff changeset
1294 * configure.usage:
fd49b88b9f06 [xemacs-hg @ 2001-05-31 12:47:21 by ben]
ben
parents: 585
diff changeset
1295 * INSTALL:
fd49b88b9f06 [xemacs-hg @ 2001-05-31 12:47:21 by ben]
ben
parents: 585
diff changeset
1296 Document XEMACS_CC and corresponding compiler option --xemacs-compiler.
fd49b88b9f06 [xemacs-hg @ 2001-05-31 12:47:21 by ben]
ben
parents: 585
diff changeset
1297 Explain how to build xemacs using a C++ compiler.
fd49b88b9f06 [xemacs-hg @ 2001-05-31 12:47:21 by ben]
ben
parents: 585
diff changeset
1298
585
5ce8d1ac7bde [xemacs-hg @ 2001-05-29 04:21:30 by martinb]
martinb
parents: 582
diff changeset
1299 2001-05-29 Martin Buchholz <martin@xemacs.org>
5ce8d1ac7bde [xemacs-hg @ 2001-05-29 04:21:30 by martinb]
martinb
parents: 582
diff changeset
1300
5ce8d1ac7bde [xemacs-hg @ 2001-05-29 04:21:30 by martinb]
martinb
parents: 582
diff changeset
1301 * configure.in: Remove stray backslash.
5ce8d1ac7bde [xemacs-hg @ 2001-05-29 04:21:30 by martinb]
martinb
parents: 582
diff changeset
1302
582
0dcc097685c7 [xemacs-hg @ 2001-05-27 01:50:52 by ben]
ben
parents: 567
diff changeset
1303 2001-05-26 Ben Wing <ben@xemacs.org>
0dcc097685c7 [xemacs-hg @ 2001-05-27 01:50:52 by ben]
ben
parents: 567
diff changeset
1304
0dcc097685c7 [xemacs-hg @ 2001-05-27 01:50:52 by ben]
ben
parents: 567
diff changeset
1305 * configure.in (XE_COMPUTE_RUNPATH):
0dcc097685c7 [xemacs-hg @ 2001-05-27 01:50:52 by ben]
ben
parents: 567
diff changeset
1306 rewrite warning output so that it doesn't happen by default --
0dcc097685c7 [xemacs-hg @ 2001-05-27 01:50:52 by ben]
ben
parents: 567
diff changeset
1307 you should only get warnings when something is actively wrong,
0dcc097685c7 [xemacs-hg @ 2001-05-27 01:50:52 by ben]
ben
parents: 567
diff changeset
1308 not just because a feature is not present.
0dcc097685c7 [xemacs-hg @ 2001-05-27 01:50:52 by ben]
ben
parents: 567
diff changeset
1309
567
4a2749e56f92 [xemacs-hg @ 2001-05-24 11:21:32 by yoshiki]
yoshiki
parents: 562
diff changeset
1310 2001-05-06 Karl M. Hegbloom <karlheg@hegbloom.net>
4a2749e56f92 [xemacs-hg @ 2001-05-24 11:21:32 by yoshiki]
yoshiki
parents: 562
diff changeset
1311
4a2749e56f92 [xemacs-hg @ 2001-05-24 11:21:32 by yoshiki]
yoshiki
parents: 562
diff changeset
1312 * configure.in: See if mkstemp is available for movemail.c
4a2749e56f92 [xemacs-hg @ 2001-05-24 11:21:32 by yoshiki]
yoshiki
parents: 562
diff changeset
1313
559
5101772788b2 [xemacs-hg @ 2001-05-23 10:02:02 by ben]
ben
parents: 557
diff changeset
1314 2001-05-23 Ben Wing <ben@xemacs.org>
5101772788b2 [xemacs-hg @ 2001-05-23 10:02:02 by ben]
ben
parents: 557
diff changeset
1315
5101772788b2 [xemacs-hg @ 2001-05-23 10:02:02 by ben]
ben
parents: 557
diff changeset
1316 * configure.in (AC_INIT_PARSE_ARGS):
5101772788b2 [xemacs-hg @ 2001-05-23 10:02:02 by ben]
ben
parents: 557
diff changeset
1317 * configure.in (TAB):
5101772788b2 [xemacs-hg @ 2001-05-23 10:02:02 by ben]
ben
parents: 557
diff changeset
1318 * configure.in (XE_COMPUTE_RUNPATH):
5101772788b2 [xemacs-hg @ 2001-05-23 10:02:02 by ben]
ben
parents: 557
diff changeset
1319 add some support for eventually turning on file coding by
5101772788b2 [xemacs-hg @ 2001-05-23 10:02:02 by ben]
ben
parents: 557
diff changeset
1320 default. Fix numerous places where AC_MSG_WARN had quotes
5101772788b2 [xemacs-hg @ 2001-05-23 10:02:02 by ben]
ben
parents: 557
diff changeset
1321 around its arg, which is bad. Replace with []. Same for
5101772788b2 [xemacs-hg @ 2001-05-23 10:02:02 by ben]
ben
parents: 557
diff changeset
1322 AC_MSG_ERROR.
5101772788b2 [xemacs-hg @ 2001-05-23 10:02:02 by ben]
ben
parents: 557
diff changeset
1323
5101772788b2 [xemacs-hg @ 2001-05-23 10:02:02 by ben]
ben
parents: 557
diff changeset
1324 2001-05-15 Steve Youngs <youngs@xemacs.org>
667
046f73d312c5 [xemacs-hg @ 2001-09-25 10:20:11 by didierv]
didierv
parents: 665
diff changeset
1325 * configure.in:
557
f486da5f1a3b [xemacs-hg @ 2001-05-22 06:49:12 by martinb]
martinb
parents: 554
diff changeset
1326 If no native dumper (UNEXEC) is defined, simply use pdump.
f486da5f1a3b [xemacs-hg @ 2001-05-22 06:49:12 by martinb]
martinb
parents: 554
diff changeset
1327 If no SYSTEM_TYPE is defined, choose an appopriate default.
f486da5f1a3b [xemacs-hg @ 2001-05-22 06:49:12 by martinb]
martinb
parents: 554
diff changeset
1328
554
bc4355ec8a32 [xemacs-hg @ 2001-05-21 08:04:35 by yoshiki]
yoshiki
parents: 551
diff changeset
1329 2001-05-10 Paul Stodghill <stodghil@cs.cornell.edu>
bc4355ec8a32 [xemacs-hg @ 2001-05-21 08:04:35 by yoshiki]
yoshiki
parents: 551
diff changeset
1330
bc4355ec8a32 [xemacs-hg @ 2001-05-21 08:04:35 by yoshiki]
yoshiki
parents: 551
diff changeset
1331 * configure.in: Reverse the order of Windows and Linux sound tests
bc4355ec8a32 [xemacs-hg @ 2001-05-21 08:04:35 by yoshiki]
yoshiki
parents: 551
diff changeset
1332 so that Cygwin will find Windows first.
bc4355ec8a32 [xemacs-hg @ 2001-05-21 08:04:35 by yoshiki]
yoshiki
parents: 551
diff changeset
1333
559
5101772788b2 [xemacs-hg @ 2001-05-23 10:02:02 by ben]
ben
parents: 557
diff changeset
1334 2001-05-14 Martin Buchholz <martin@xemacs.org>
5101772788b2 [xemacs-hg @ 2001-05-23 10:02:02 by ben]
ben
parents: 557
diff changeset
1335
5101772788b2 [xemacs-hg @ 2001-05-23 10:02:02 by ben]
ben
parents: 557
diff changeset
1336 * configure.in (XE_REALLOC_NULLPTR_BUG): New.
541
02261edd09de [xemacs-hg @ 2001-05-15 06:58:27 by youngs]
youngs
parents: 537
diff changeset
1337
535
c69610198c35 [xemacs-hg @ 2001-05-14 04:52:02 by martinb]
martinb
parents: 532
diff changeset
1338 2001-05-11 Martin Buchholz <martin@xemacs.org>
c69610198c35 [xemacs-hg @ 2001-05-14 04:52:02 by martinb]
martinb
parents: 532
diff changeset
1339
667
046f73d312c5 [xemacs-hg @ 2001-09-25 10:20:11 by didierv]
didierv
parents: 665
diff changeset
1340 * configure.in:
535
c69610198c35 [xemacs-hg @ 2001-05-14 04:52:02 by martinb]
martinb
parents: 532
diff changeset
1341 Check for sys/ptyio.h on HPUX, else for pty.h or perhaps sys/pty.h
c69610198c35 [xemacs-hg @ 2001-05-14 04:52:02 by martinb]
martinb
parents: 532
diff changeset
1342
532
1cb1000b6813 [xemacs-hg @ 2001-05-12 11:31:37 by ben]
ben
parents: 527
diff changeset
1343 2001-05-10 Ben Wing <ben@xemacs.org>
1cb1000b6813 [xemacs-hg @ 2001-05-12 11:31:37 by ben]
ben
parents: 527
diff changeset
1344
1cb1000b6813 [xemacs-hg @ 2001-05-12 11:31:37 by ben]
ben
parents: 527
diff changeset
1345 * Makefile.in.in (all):
1cb1000b6813 [xemacs-hg @ 2001-05-12 11:31:37 by ben]
ben
parents: 527
diff changeset
1346 * Makefile.in.in (configure):
1cb1000b6813 [xemacs-hg @ 2001-05-12 11:31:37 by ben]
ben
parents: 527
diff changeset
1347 * Makefile.in.in (finder):
1cb1000b6813 [xemacs-hg @ 2001-05-12 11:31:37 by ben]
ben
parents: 527
diff changeset
1348 remove autoload targets.
1cb1000b6813 [xemacs-hg @ 2001-05-12 11:31:37 by ben]
ben
parents: 527
diff changeset
1349
527
7b35ad872326 [xemacs-hg @ 2001-05-10 08:09:13 by yoshiki]
yoshiki
parents: 522
diff changeset
1350 2001-04-26 Malcolm Purvis <malcolmpurvis@optushome.com.au>
7b35ad872326 [xemacs-hg @ 2001-05-10 08:09:13 by yoshiki]
yoshiki
parents: 522
diff changeset
1351
7b35ad872326 [xemacs-hg @ 2001-05-10 08:09:13 by yoshiki]
yoshiki
parents: 522
diff changeset
1352 * configure.in: Check gtk version validity only when gtk-config
7b35ad872326 [xemacs-hg @ 2001-05-10 08:09:13 by yoshiki]
yoshiki
parents: 522
diff changeset
1353 exists.
7b35ad872326 [xemacs-hg @ 2001-05-10 08:09:13 by yoshiki]
yoshiki
parents: 522
diff changeset
1354
522
19559cacc941 [xemacs-hg @ 2001-05-09 11:46:58 by martinb]
martinb
parents: 515
diff changeset
1355 2001-05-09 Martin Buchholz <martin@xemacs.org>
19559cacc941 [xemacs-hg @ 2001-05-09 11:46:58 by martinb]
martinb
parents: 515
diff changeset
1356
19559cacc941 [xemacs-hg @ 2001-05-09 11:46:58 by martinb]
martinb
parents: 515
diff changeset
1357 * XEmacs 21.5.1 "anise" is released.
19559cacc941 [xemacs-hg @ 2001-05-09 11:46:58 by martinb]
martinb
parents: 515
diff changeset
1358
505
6495d35ba9df [xemacs-hg @ 2001-05-05 08:26:03 by martinb]
martinb
parents: 472
diff changeset
1359 2001-05-04 Martin Buchholz <martin@xemacs.org>
6495d35ba9df [xemacs-hg @ 2001-05-05 08:26:03 by martinb]
martinb
parents: 472
diff changeset
1360
667
046f73d312c5 [xemacs-hg @ 2001-09-25 10:20:11 by didierv]
didierv
parents: 665
diff changeset
1361 * configure.in (opsys):
505
6495d35ba9df [xemacs-hg @ 2001-05-05 08:26:03 by martinb]
martinb
parents: 472
diff changeset
1362 Use lower-case `uname -s` as the default value for opsys.
6495d35ba9df [xemacs-hg @ 2001-05-05 08:26:03 by martinb]
martinb
parents: 472
diff changeset
1363 The previous code effectively did the non-sensical
6495d35ba9df [xemacs-hg @ 2001-05-05 08:26:03 by martinb]
martinb
parents: 472
diff changeset
1364 opsys=$canonical because [] magically disappear in configure.in.
6495d35ba9df [xemacs-hg @ 2001-05-05 08:26:03 by martinb]
martinb
parents: 472
diff changeset
1365
472
0edeb854dc7e [xemacs-hg @ 2001-04-18 07:37:19 by martinb]
martinb
parents: 467
diff changeset
1366 2001-04-18 Martin Buchholz <martin@xemacs.org>
0edeb854dc7e [xemacs-hg @ 2001-04-18 07:37:19 by martinb]
martinb
parents: 467
diff changeset
1367
0edeb854dc7e [xemacs-hg @ 2001-04-18 07:37:19 by martinb]
martinb
parents: 467
diff changeset
1368 * XEmacs 21.5.0 "alfalfa" is released.
0edeb854dc7e [xemacs-hg @ 2001-04-18 07:37:19 by martinb]
martinb
parents: 467
diff changeset
1369
464
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
1370 2001-03-26 Paul Stodghill <stodghil@cs.cornell.edu>
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
1371
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
1372 * configure.in: Don't #define __STDC__ in confdefs.h
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
1373
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
1374 2001-03-30 Stephen J. Turnbull <stephen@xemacs.org>
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
1375
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
1376 * configure.usage: Document --with-file-coding.
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
1377
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
1378 * configure.in:
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
1379 * configure:
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
1380 Fix typo, add -Wsign-compare if GCC, run autoconf.
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
1381
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
1382 2001-03-23 Stephen J. Turnbull <stephen@xemacs.org>
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
1383
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
1384 * PROBLEMS (Problems with running XEmacs):
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
1385 Document TMPDIR lossage in gnuserv/gnuclient.
5aa1854ad537 Import from CVS: tag r21-2-47
cvs
parents: 462
diff changeset
1386
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1387 2001-03-21 Martin Buchholz <martin@xemacs.org>
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1388
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1389 * XEmacs 21.2.46 "Urania" is released.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1390
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1391 2001-03-19 Andy Piper <andy@xemacs.org>
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1392
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1393 * configure.in: default rel-alloc to off under cygwin
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1394
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1395 2001-03-15 Stephen J. Turnbull <stephen@xemacs.org>
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1396
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1397 * ChangeLog: Fix CVS commit breakage from GTK merge, log GTK merge.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1398
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1399 * CHANGES-beta:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1400 * configure.in:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1401 Fix gratuitous whitespace changes from GTK merge.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1402
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1403 * configure.usage: Untabify --with-{gtk,gnome}.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1404
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1405 2001-03-12 Andy Piper <andy@xemacs.org>
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1406
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1407 * configure.in: only pick up mingw directory.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1408
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1409 2001-03-02 Ben Wing <ben@xemacs.org>
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1410
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1411 * info\dir: Update to 21.4; clean up descriptions of manuals;
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1412 replace misnomer "Local Packages" with more correct "Other
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1413 Documentation".
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1414
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1415 2001-03-09 William M. Perry <wmperry@aventail.com>
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1416
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1417 * CHANGES-beta:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1418 * configure.in:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1419 * configure.usage:
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1420 The Great GTK Merge.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1421
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1422 2001-02-23 Andy Piper <andy@xemacs.org>
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1423
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1424 * configure.usage (--with-netinstall): add docs.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1425
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1426 * configure.in: with_netinstall is a new option. Default to off.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
1427
460
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
1428 2001-02-23 Martin Buchholz <martin@xemacs.org>
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
1429
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
1430 * XEmacs 21.2.45 "Thelxepeia" is released.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
1431
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
1432 2001-02-13 Martin Buchholz <martin@xemacs.org>
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
1433
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
1434 * aclocal.m4: Fix module support for AIX cc.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
1435 Support possible future OSes irix7, aix5, osf[56].
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
1436
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
1437 2001-02-12 Martin Buchholz <martin@xemacs.org>
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
1438
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
1439 * configure.in: No need for NON_GNU_CPP on SCO.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
1440
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
1441 2001-02-09 Martin Buchholz <martin@xemacs.org>
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
1442
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
1443 * configure.in: Prefer utime to utimes - it's more standard.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
1444 Remove explicit checking for struct utimbuf.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
1445 Remove explicit checking for <utime.h>.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
1446 Combined into one simpler test for utime.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
1447 Add explicit check for utimes, if utime not found.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
1448
458
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1449 2001-02-08 Martin Buchholz <martin@xemacs.org>
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1450
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1451 * XEmacs 21.2.44 "Thalia" is released.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1452
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1453 2001-01-16 Mike Sperber <mike@xemacs.org>
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1454
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1455 * configure.in: Remove bogus path variable definitions.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1456 Reflect the fact that specifying --datadir also affects docdir and
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1457 archlibdir.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1458
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1459 2001-02-06 Martin Buchholz <martin@xemacs.org>
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1460
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1461 * configure.in: Only use -Wpointer-arith on non-glibc systems.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1462
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1463 2001-02-02 Martin Buchholz <martin@xemacs.org>
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1464
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1465 * configure.in (wnn): Make sure wnn/commonhd.h can be #included,
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1466 for the sake of gcc 2.97 fixincludes, which breaks it.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1467
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1468 2001-01-27 Martin Buchholz <martin@xemacs.org>
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1469
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1470 * configure.in: Check for util.h for NetBSD's openpty.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1471
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1472 2001-01-28 Martin Buchholz <martin@xemacs.org>
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1473
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1474 * config.sub: Upgrade to offical version 2001-01-12.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1475 * config.guess: Upgrade to offical version 2001-01-17.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
1476
456
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
1477 2001-01-26 Martin Buchholz <martin@xemacs.org>
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
1478
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
1479 * XEmacs 21.2.43 "Terspichore" is released.
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
1480
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
1481 2001-01-21 Steve Youngs <youngs@xemacs.org>
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
1482
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
1483 * README.packages: Doc fix.
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
1484
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
1485 2001-01-17 Steve Youngs <youngs@xemacs.org>
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
1486
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
1487 * README.packages: Update.
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
1488
454
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1489 2001-01-20 Martin Buchholz <martin@xemacs.org>
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1490
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1491 * XEmacs 21.2.42 "Poseidon" is released.
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1492
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1493 2001-01-18 Martin Buchholz <martin@xemacs.org>
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1494
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1495 * PROBLEMS (Sun/Solaris): Yet another microimprovement.
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1496
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1497 2001-01-17 Martin Buchholz <martin@xemacs.org>
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1498
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1499 * PROBLEMS (Sun/Solaris): Replace --with-gnu-ld=no with
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1500 --with-ld=/usr/ccs/bin/ld
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1501
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1502 2001-01-16 Robert Pluim <rpluim@bigfoot.com>
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1503
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1504 * PROBLEMS (SunOS/Solaris): Document workaround for GNU ld bug on
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1505 Solaris. Half mine, half Raymond Toy, half Martin Buchholz.
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1506
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1507 2001-01-16 Didier Verna <didier@xemacs.org>
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1508
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1509 * NEWS: document the modeline horizontal scrolling feature.
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1510
452
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
1511 2001-01-17 Martin Buchholz <martin@xemacs.org>
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
1512
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
1513 * XEmacs 21.2.41 "Polyhymnia" is released.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
1514
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
1515 2001-01-16 Martin Buchholz <martin@xemacs.org>
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
1516
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
1517 * PROBLEMS: Document MIPSpro ICE problem workaround.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
1518
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
1519 2001-01-06 Golubev I. N. <gin@mo.msk.ru>
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
1520
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
1521 * configure.in: check for dlopen by linking program with
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
1522 <dlfcn.h>.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
1523
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
1524 2001-01-08 Andy Piper <andy@xemacs.org>
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
1525
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
1526 * configure.in: add extra_includes and populate appropriately for
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
1527 cygwin and mingw.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
1528
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
1529 2000-12-28 Andy Piper <andy@xemacs.org>
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
1530
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
1531 * configure.in: allow --with-widgets=msw
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
1532
450
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
1533 2001-01-08 Martin Buchholz <martin@xemacs.org>
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
1534
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
1535 * XEmacs 21.2.40 is released.
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
1536
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
1537 2000-12-26 Stephen J. Turnbull <stephen@xemacs.org>
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
1538
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
1539 * PROBLEMS (Running/Linux): Rehabilitate Mandrake; tip for color-gcc.
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
1540
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
1541 2000-12-20 Stephen J. Turnbull <stephen@xemacs.org>
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
1542
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
1543 * PROBLEMS (Linux): document Mandrake policy, how to get Meta on
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
1544 Alt, and getaddrinfo() blocking trying to get localhost's CNAME.
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
1545
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
1546 2000-07-20 Kazuyuki IENAGA <ienaga@xemacs.org>
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
1547
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
1548 * configure.in: use input-method-xlib.o for USE_XFONTSET instead
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
1549 of input-method-xfs.o.
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
1550
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
1551 * configure: ditto
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
1552
448
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents: 446
diff changeset
1553 2000-12-31 Martin Buchholz <martin@xemacs.org>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents: 446
diff changeset
1554
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents: 446
diff changeset
1555 * XEmacs 21.2.39 is released.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents: 446
diff changeset
1556
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents: 446
diff changeset
1557 2000-02-02 Daiki Ueno <ueno@ueda.info.waseda.ac.jp>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents: 446
diff changeset
1558
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents: 446
diff changeset
1559 * configure.in: Added check if the berkdb has db_create or not.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents: 446
diff changeset
1560
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents: 446
diff changeset
1561 2000-10-11 Yoshiki Hayashi <yoshiki@xemacs.org>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents: 446
diff changeset
1562
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents: 446
diff changeset
1563 * configure.in: Fix broken gcc detection for 2.7.2.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents: 446
diff changeset
1564
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents: 446
diff changeset
1565 2000-12-11 Andy Piper <andy@xemacs.org>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents: 446
diff changeset
1566
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents: 446
diff changeset
1567 * configure.in (XE_COMPUTE_RUNPATH): add netinstall as a subdirectory.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents: 446
diff changeset
1568
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents: 446
diff changeset
1569 * netinstall: new net installer for MS-Windows.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents: 446
diff changeset
1570
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 444
diff changeset
1571 2000-12-05 Martin Buchholz <martin@xemacs.org>
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 444
diff changeset
1572
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 444
diff changeset
1573 * XEmacs 21.2.38 is released.
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 444
diff changeset
1574
454
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1575 2000-11-26 Bjrn Torkelsson <torkel@hpc2n.umu.se>
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 444
diff changeset
1576
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 444
diff changeset
1577 * configure.in: Only show message about DnD API if compiling with DnD
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 444
diff changeset
1578
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 444
diff changeset
1579 2000-11-09 Martin Buchholz <martin@xemacs.org>
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 444
diff changeset
1580
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 444
diff changeset
1581 * configure.in: Autodetect elf.h.
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 444
diff changeset
1582
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1583 2000-11-14 Martin Buchholz <martin@xemacs.org>
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1584
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1585 * XEmacs 21.2.37 is released.
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1586
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1587 2000-10-19 Stephen J. Turnbull <stephen@xemacs.org>
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1588
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1589 * README.packages: Add "uninstalled package" FAQ.
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1590
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1591 2000-11-01 Martin Buchholz <martin@xemacs.org>
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1592
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1593 * configure.in: Handle alloca with Compaq C on Alpha Linux.
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1594
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1595 2000-10-27 Martin Buchholz <martin@xemacs.org>
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1596
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1597 * configure.in: Oops, _getpt ==> _getpty
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1598
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1599 2000-10-23 Yoshiki Hayashi <yoshiki@xemacs.org>
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1600
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1601 * Makefile.in.in: Remove lockdir related things.
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1602
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1603 2000-10-11 Martin Buchholz <martin@xemacs.org>
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1604
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1605 * configure.in:
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1606 Remove checking for XFree86. Use feature tests instead!
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1607 Add check for XRegisterIMInstantiateCallback.
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1608 Add check for XRegisterIMInstantiateCallback's prototype.
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1609
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1610 2000-10-08 Karl M. Hegbloom <karlheg@debian.org>
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1611
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1612 * configure.in: Typo - missing paren.
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1613
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1614 2000-10-10 Martin Buchholz <martin@xemacs.org>
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1615
454
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1616 * configure.in:
444
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1617 Use stropts.h, not sys/stropts.h.
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1618 Use strtio.h, not sys/strtio.h.
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1619
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1620 2000-10-06 Martin Buchholz <martin@xemacs.org>
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1621
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1622 * configure.in: Pretend that DEC OSF >= 5 is really DEC OSF 4.
576fb035e263 Import from CVS: tag r21-2-37
cvs
parents: 442
diff changeset
1623
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1624 2000-10-04 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1625
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1626 * XEmacs 21.2.36 is released.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1627
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1628 2000-09-27 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1629
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1630 * configure.in: Big signal/process handling overhaul.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1631 Autoconfiscate lots of functions and headers:
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1632 getpt _getpt grantpt unlockpt ptsname killpg tcgetpgrp
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1633 openpty pty.h libutil.h sys/stropts.h sys/strtio.h isastream
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1634
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1635 2000-09-19 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1636
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1637 * *: Spelling mega-patch
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1638
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1639 2000-09-16 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1640
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1641 * configure.in: Remove strcasecmp.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1642
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1643 2000-09-16 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1644
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1645 * configure.in: Add -Kalloca to $c_switch_system when using
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1646 Unixware native compiler (if necessary).
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1647
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1648 2000-09-15 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1649
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1650 * configure.in: Prevent spurious "No" in configure output when not
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1651 using gcc. Oh, and it's "no", not "No". Oh, and it's "yes", not "Yes".
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1652
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1653 2000-09-14 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1654
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1655 * configure.in: Save 2 sed process invocations per Makefile.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1656
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1657 2000-08-22 SL Baur <steve@turbolinux.co.jp>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1658
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1659 * configure.in (after_morecore_hook_exists): Don't add /usr/shlib
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1660 to link path if compiling on Alpha/Linux.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1661
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1662 2000-09-01 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1663
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1664 * Makefile.in.in (depend): cd to the correct directory.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1665
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1666 2000-08-31 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1667
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1668 * configure.in: with_widgets is incompatible with X11 R4.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1669
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1670 * configure.in: Make Balloon Help conditional on finding shape.h
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1671
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1672 2000-08-09 Vin Shelton <acs@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1673
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1674 * configure.in: Check for UNIX98 PTYs. Patch from Florian Weimer
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1675 <Florian.Weimer@RUS.Uni-Stuttgart.DE>.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1676
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1677 2000-07-31 Yoshiki Hayashi <yoshiki@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1678
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1679 * configure.usage: Remove lockdir document.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1680
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1681 2000-07-31 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1682
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1683 * configure.in:
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1684 Make knowledge of machine and opsys optional.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1685 Make existence of s&m files optional.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1686 Rely on configure alone if s&m files not found.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1687
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1688 * configure.in:
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1689 Use only configure-time tests to detect getloadavg().
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1690 Don't check for kstat.h if we have getloadavg().
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1691 Check for sys/loadavg.h if we have getloadavg().
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1692
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1693 2000-07-15 Ben Wing <ben@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1694
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1695 * Makefile.in.in (configure):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1696 all-elcs target now uses update-elc-2.el not update-elc.sh
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1697
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1698 2000-07-19 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1699
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1700 * XEmacs 21.2.35 is released.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1701
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1702 2000-07-13 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1703
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1704 * configure.in: --with-menubars=yes should not be an error.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1705
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1706 * configure.in: "compiling in support for Athena" message was
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1707 sometimes lying.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1708
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1709 2000-07-12 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1710
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1711 * configure.in: Rewrite xmkmf symbol detection to avoid
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1712 redefinition of symbols we've already defined.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1713 Also, handle xmkmf symbols with values other than 1.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1714
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1715 2000-07-12 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1716
454
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1717 * configure.in:
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1718 Make sure Unix98 socklen_t is defined.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1719 Use ANSI C mode `-std1' with DEC C instead of `-std'.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1720
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1721 2000-07-09 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1722
454
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1723 * configure.in:
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1724 Replace SMART_INCLUDE with a dumber, but more reliable method.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1725 2000-07-10 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1726
454
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1727 * modules/zlib/Makefile:
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1728 * modules/sample/Makefile:
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1729 * modules/ldap/Makefile:
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1730 * modules/base64/Makefile:
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1731 * Makefile.in.in:
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1732 rm -f ==> $(RM)
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1733 define SHELL=/bin/sh
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1734
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1735 2000-07-09 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1736
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1737 * configure.in: PostgreSQL rewrite.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1738 - Don't look for postgreSQL in /usr/local.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1739 - Simplify detection code.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1740 - Don't use SMART_INCLUDE.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1741 - Don't autodetect if --with-postgresql=no.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1742
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1743 2000-07-08 Ben Wing <ben@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1744
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1745 * configure.usage: addl doc for graphics libs, with-msw.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1746
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1747 2000-07-09 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1748
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1749 * configure.in: sh builtin `test' uses `=', not `=='.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1750
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1751 2000-07-08 Ben Wing <ben@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1752
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1753 * configure.in: add -lcomdlg32 for cygwin.
454
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1754
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1755 2000-07-05 Craig Lanning <lanning@scra.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1756
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1757 * aclocal.m4 (can_build_shared):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1758 First pass at module support for cygwin and mingw.
454
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1759
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1760 * configure:
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1761 * configure (xe_check_libs):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1762 * configure (acfindx):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1763 * configure (ac_x_includes):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1764 * configure (ac_x_libraries):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1765 * configure (ac_cv_lib_dnet_dnet_ntoa):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1766 * configure (xe_msg_checking):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1767 * configure (xe_runpath_dir):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1768 * configure (xetest):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1769 * configure (ac_err):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1770 * configure (ac_safe):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1771 * configure (with_xmu):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1772 * configure (bitmapdir):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1773 * configure (with_xauth):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1774 * configure (libs_xauth):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1775 * configure (with_cde):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1776 * configure (with_ldap):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1777 * configure (with_ldap_krbdes):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1778 * configure (save_c_switch_site):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1779 * configure (with_postgresql):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1780 * configure (with_xface):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1781 * configure (with_jpeg):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1782 * configure (with_png):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1783 * configure (with_tiff):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1784 * configure (athena_lib):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1785 * configure (have_motif):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1786 * configure (all_widgets):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1787 * configure (with_xim):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1788 * configure (with_xfs):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1789 * configure (with_wnn):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1790 * configure (with_canna):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1791 * configure (extra_objs):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1792 * configure (ac_cv_c_inline):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1793 * configure (have_esd_config):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1794 * configure (c_switch_site):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1795 * configure (with_ncurses):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1796 * configure (with_gpm):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1797 * configure (xealias):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1798 * configure (xehost_os):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1799 * configure (can_build_shared):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1800 * configure (xcldf):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1801 * configure (LTLD):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1802 * configure (ld_dynamic_link_flags):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1803 * configure (Mail):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1804 * configure.in:
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1805 * configure.in (after_morecore_hook_exists):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1806 * configure.in (xetest):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1807 * configure.in (emacs_cv_localtime_cache):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1808 * configure.in (Mail):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1809 * configure.in:
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1810 Clean up configure support for cygwin and mingw.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1811
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1812 2000-06-27 Darryl Okahata <darrylo@soco.agilent.com>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1813
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1814 * PROBLEMS: Document broken native audio for recent patches and
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1815 releases of HP-UX.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1816
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1817 2000-06-10 Ben Wing <ben@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1818
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1819 * Makefile.in.in (install-arch-dep):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1820 WINDOWSNT -> WIN32_NATIVE.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1821 __CYGWIN32__ -> CYGWIN.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1822
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1823 2000-06-01 Andreas Jaeger <aj@suse.de>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1824
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1825 * configure.in: Recognize s390.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1826
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1827 * config.guess: New version from GNU config archive.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1828 * config.sub: Likewise.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1829
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1830 2000-05-28 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1831
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1832 * XEmacs 21.2.34 is released.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1833
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1834 2000-05-15 Yoshiki Hayashi <yoshiki@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1835
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1836 * configure.in:
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1837 Do not define DOUG_LEA_MALLOC when using other malloc scheme.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1838 Remove unused variable use_minimal_tagbits.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1839
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1840 2000-05-02 Yoshiki Hayashi <yoshiki@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1841
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1842 * configure.in: Remove lockdir.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1843
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1844 2000-05-01 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1845
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1846 * XEmacs 21.2.33 is released.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1847
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1848 2000-04-27 Katsumi Yamaoka <yamaoka@jpl.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1849
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1850 * configure.in: Use ORDINARY_LD instead of "\$(ORDINARY_LD)" for
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1851 the value of LD.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1852
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1853 2000-04-26 Ben Wing <ben@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1854
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1855 * configure.in: add support for --quick-build. Remove --no-doc-file,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1856 subsumed.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1857
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1858 2000-04-19 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1859
454
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1860 * configure.in:
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1861 * src/config.h.in:
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1862 Rewrite SMART_INCLUDE implementation to actually work.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1863 Be paranoid - Avoid use of spaces in these macro definitions.
454
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1864 Leave alloca() definition at start of compilation unit,
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1865 as AIX requests.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1866 Rename SMART_INCLUDE_MACRO to SMART_INCLUDE_INDIRECTIONS.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1867
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1868 2000-04-13 Yoshiki Hayashi <yoshiki@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1869
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1870 * configure.in: Enable clash-detection by default.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1871 * configure.usage: Update documentation.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1872
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1873 2000-04-06 Andy Piper <andy@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1874
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1875 * configure.in: fix typo.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1876
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1877 2000-04-03 Yoshiki Hayashi <yoshiki@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1878
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1879 * configure.in : Fix printing error check warning even if
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1880 it is not compiled in.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1881
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1882 2000-02-19 Jan Vroonhof <vroonhof@math.ethz.ch>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1883
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1884 * xemacs/configure.in: Do a normal link when compiling with
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1885 --pdump. Don't try compiling an unexec object file.
454
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
1886
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1887 2000-03-27 Didier Verna <didier@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1888
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1889 * configure.in: reorganize the output by topic.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1890 New configure test to define the proper SMART_INCLUDE macro.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1891
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1892 * configure.usage: slightly rearanged some options.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1893
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1894 2000-03-25 Didier Verna <didier@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1895
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1896 * configure.in: rename `foo_h_path' to `foo_h_file' for variables
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1897 representing real headers and not directories. This applies to
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1898 `db_h_path', `curses_h_path', `term_h_path', `tt_c_h_path' and
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1899 `soundcard_h_path'.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1900
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1901 2000-03-21 Didier Verna <didier@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1902
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1903 * configure.in: try to find postgresql headers at different places
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1904 and define POSTGRES_H_PATH as appropriate.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1905
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1906 2000-03-22 Andy Piper <andy@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1907
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1908 * config.h.in: add ERROR_CHECK_GLYPHS.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1909
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1910 * configure.in: add error_check_glyphs.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1911
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1912 2000-03-20 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1913
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1914 * XEmacs 21.2.32 is released.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1915
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1916 2000-03-15 Olivier Galibert <galibert@pobox.com>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1917
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1918 * configure.in: Add dumper.o object when pdumping.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1919
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1920 2000-02-20 Olivier Galibert <galibert@pobox.com>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1921
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1922 * Makefile.in.in: Add pdump install support
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1923
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1924 * configure.in: Add EMACS_PROGNAME config.h variable.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1925
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1926 2000-03-10 SL Baur <steve@musashimaru.m17n.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1927
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1928 * configure.usage: document --with-postgresql flag.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1929
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1930 2000-03-06 SL Baur <steve@musashimaru.m17n.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1931
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1932 * configure.in: add autodetection of PostgreSQL runtime libraries
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1933
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1934 2000-03-09 Yoshiki Hayashi <yoshiki@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1935
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1936 * aclocal.m4 (XE_SHLIB_STUFF): Define ld_shlibs to yes
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1937 when C compiler can produce shared libraries.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1938
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1939 2000-02-26 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1940
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1941 * configure.in: Unconditionally define SHELL, to allow working
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1942 with (unreleased) autoconf 2.14.1, found on Mandrake 7.0 systems.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1943
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1944 2000-02-23 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1945
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1946 * XEmacs 21.2.31 is released.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1947
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1948 2000-02-21 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1949
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1950 * XEmacs 21.2.30 is released.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1951
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1952 2000-02-20 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1953
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1954 * configure.in: Enforce use of autoconf version >= 2.13.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1955
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1956 * configure.in: Fix OS release test on Solaris.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1957
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1958 2000-02-19 Marcus Thiessel <marcus@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1959
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1960 * PROBLEMS: Update email address. Describe more HP Motif errors.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1961
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1962 2000-02-19 Jan Vroonhof <vroonhof@math.ethz.ch>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1963
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1964 * configure.in: Split Solaris version test in two parts. In the
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1965 Bourne shell the "-a" operator does NOT short-circuit.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1966
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1967 1999-12-15 Jan Vroonhof <jan@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1968
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1969 * (configure.in): Autodetect broken gcc versions. Patch from WM
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1970 Perry with tiny tweaks by Yoshiki Hayashi and yours truly.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1971
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1972 2000-02-17 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1973
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1974 * configure.in: Autodetect sys/param.h. Reorganize
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1975 AC_CHECK_HEADERS call.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1976 * src/config.h.in: Add HAVE_SYS_PARAM_H.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1977
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1978 2000-02-16 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1979
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1980 * configure.in: Test for arm simply using arm* instead of arm-*
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1981
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1982 2000-02-16 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1983
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1984 * XEmacs 21.2.29 is released.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1985
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1986 2000-02-16 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1987
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1988 * configure.in: Don't use rel_alloc if malloc() calls mmap().
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1989 Discover this by looking for M_MMAP_THRESHOLD.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1990
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1991 * configure.in: Don't define POSIX_C_SOURCE on Solaris, due to
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1992 bugs in (at least) Solaris 2.5 headers.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1993
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1994 2000-01-29 Craig Lanning <CraigL@DyCon.com>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1995
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1996 * configure.in: Fix detection of XPM on systems without X11.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1997
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1998 2000-02-11 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
1999
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2000 * configure.in:
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2001 * src/config.h.in:
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2002 Define _POSIX_C_SOURCE, _XOPEN_SOURCE, _XOPEN_SOURCE_EXTENDED,
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2003 but only on tested Operating systems - Linux && SunOS >= 5.5.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2004
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2005 2000-02-09 Valdis Kletnieks <Valdis.Kletnieks@vt.edu>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2006
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2007 * aclocal.m4: Support dlls on aix[34].
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2008
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2009 2000-02-09 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2010
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2011 * .cvsignore: Ignore gmon.out
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2012
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2013 2000-02-08 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2014
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2015 * configure.in: Sync Berkeley db autodetection with src/database.c
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2016
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2017 2000-02-07 Martin Buchholz <martin@xemacs.org>
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2018
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2019 * configure.in: check for XConvertCase.
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2020
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2021 2000-02-07 Martin Buchholz <martin@xemacs.org>
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2022
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2023 * XEmacs 21.2.28 is released.
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2024
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2025 2000-01-27 URA Hiroshi <ura@hiru.aoba.yokohama.jp>
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2026
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2027 * configure.in: added getaddrinfo and getnameinfo to AC_FUNC.
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2028
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2029 2000-01-26 Martin Buchholz <martin@xemacs.org>
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2030
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2031 * configure.in: Backout the /etc/ld.so.conf patch of 2000-01-18.
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2032
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2033 2000-01-24 Martin Buchholz <martin@xemacs.org>
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2034
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2035 * configure.in: Always use our own realpath(), not the system one.
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2036
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2037 2000-01-25 Martin Buchholz <martin@xemacs.org>
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2038
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2039 * configure.in: Default Drag-N-Drop to "no"
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2040
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2041 1999-12-28 Max Matveev <max@melbourne.sgi.com>
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2042
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2043 * configure.in: add new machine type for IRIX 6.[2-5] to
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2044 switch from using unexelf.o to unexelfsgi.o for just those
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2045 versions of IRIX.
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2046 In the ideal world it would be handled by the s/irix6-0.h but
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2047 since machine config is included AFTER OS config, I had to add a
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2048 new machine type.
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2049
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2050 2000-01-22 Andy Piper <andy@xemacs.org>
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2051
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2052 * configure.in: add winspool to windows libraries.
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2053
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2054 2000-01-22 Martin Buchholz <martin@xemacs.org>
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2055
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2056 * configure.in: Add more warnings to default gcc flags.
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2057
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2058 2000-01-20 Daniel Pittman <daniel@danann.net>
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2059
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2060 * configure.in: Find Athena headers hidden in even more obscure
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2061 places. That is, search Xaw3D/ as well as X11/Xaw3D/.
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2062
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2063 2000-01-19 Martin Buchholz <martin@xemacs.org>
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2064
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2065 * configure.in: Add support for NetWinders.
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2066 Patch by Sean MacLennan <seanm@netwinder.org>
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2067
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2068 2000-01-18 Martin Buchholz <martin@xemacs.org>
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2069
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2070 * configure.in: Use /etc/ld.so.conf at link-time, if available.
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 438
diff changeset
2071
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2072 2000-01-18 Martin Buchholz <martin@xemacs.org>
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2073
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2074 * XEmacs 21.2.27 is released.
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2075
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2076 2000-01-14 Martin Buchholz <martin@xemacs.org>
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2077
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2078 * configure.in: Create a .dbxrc in the src directory, like .gdbinit.
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2079
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2080 * configure.in: Add `tests' symlink to make it easier to find
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2081 automated tests directory.
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2082
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2083 2000-01-14 Andy Piper <andy@xemacs.org>
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2084
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2085 * configure.in: for cygwin 1.0 we must pick up the mingw32 headers
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2086 before the cygwin headers.
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2087
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2088 2000-01-08 Martin Buchholz <martin@xemacs.org>
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2089
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2090 * configure.in:
438
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2091 - Allow find-tag to work in the build directory.
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2092 - rename src/gdbinit to src/.gdbinit, so that gdb can find it.
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2093 - Less verbose messages when creating .sbinit, .gdbinit, TAGS.
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2094
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2095 2000-01-07 Marcus Thiessel <marcus@xemacs.org>
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2096
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2097 * config.sub: Upgrade to 1.169, imported from autoconf's CVS
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2098 * config.guess: Upgrade to 1.158, imported from autoconf's CVS
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2099
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2100 2000-01-03 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de>
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2101
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2102 * configure.usage (--mail-locking):
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2103 * configure.in: Handle --mail-locking option correctly in
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2104 preparation for the movemail locking overhaul.
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2105
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2106 2000-01-05 Daniel Pittman <daniel@danann.net>
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2107
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2108 * configure.in (Installation): Report which Athena header/library
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2109 combo is being used.
84b14dcb0985 Import from CVS: tag r21-2-27
cvs
parents: 436
diff changeset
2110
436
080151679be2 Import from CVS: tag r21-2-26
cvs
parents: 434
diff changeset
2111 1999-12-31 Martin Buchholz <martin@xemacs.org>
080151679be2 Import from CVS: tag r21-2-26
cvs
parents: 434
diff changeset
2112
080151679be2 Import from CVS: tag r21-2-26
cvs
parents: 434
diff changeset
2113 * XEmacs 21.2.26 is released.
080151679be2 Import from CVS: tag r21-2-26
cvs
parents: 434
diff changeset
2114
434
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 432
diff changeset
2115 1999-12-24 Martin Buchholz <martin@xemacs.org>
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 432
diff changeset
2116
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 432
diff changeset
2117 * XEmacs 21.2.25 is released.
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 432
diff changeset
2118
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 432
diff changeset
2119 1999-12-17 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp>
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 432
diff changeset
2120
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 432
diff changeset
2121 * README: Remove msdos part.
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 432
diff changeset
2122
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 432
diff changeset
2123 1999-12-17 Martin Buchholz <martin@xemacs.org>
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 432
diff changeset
2124
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 432
diff changeset
2125 * configure.in: Oops. xpm doesn't actually depend on X11.
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 432
diff changeset
2126 I got confused by the name (like others get confused by `xemacs'?)
9d177e8d4150 Import from CVS: tag r21-2-25
cvs
parents: 432
diff changeset
2127
432
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
2128 1999-12-14 Martin Buchholz <martin@xemacs.org>
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
2129
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
2130 * XEmacs 21.2.24 is released.
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
2131
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
2132 1999-12-13 Martin Buchholz <martin@xemacs.org>
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
2133
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2134 * configure.in:
432
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
2135 * configure.usage:
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
2136 - Autodetect NAS. Change Docs accordingly.
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
2137
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
2138 * configure.in: Warn if configure --with-xpm --without-x11.
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
2139
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
2140 1999-12-09 Martin Buchholz <martin@xemacs.org>
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
2141
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
2142 * configure.in: Clean up sound support.
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
2143 - variable `old_nas' was used but never set.
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
2144 - change `with_esd' to `with_esd_sound' for consistency.
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
2145 - Don't trust the output of `esd-config --libs`; test it.
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
2146 - Add `esd-config --cflags` to c_switch_site.
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
2147 - Die if ESD sound requested, but not available.
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
2148 - ESD is not dependent on X, therefore use LIBS, not libs_x.
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
2149
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
2150 1999-12-07 Martin Buchholz <martin@xemacs.org>
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
2151
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
2152 * configure.in (--with-sound): Variable with_esd was mispelled.
3a7e78e1142d Import from CVS: tag r21-2-24
cvs
parents: 430
diff changeset
2153
430
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
2154 1999-12-07 Martin Buchholz <martin@xemacs.org>
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
2155
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
2156 * XEmacs 21.2.23 is released.
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
2157
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
2158 1999-11-30 Martin Buchholz <martin@xemacs.org>
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
2159
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
2160 * configure.in: Fix module support.
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
2161 --with-modules=yes was completely broken.
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
2162 AC_DEFINE(HAVE_DLFCN_H) was invoked twice.
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
2163 Remove linking test for _dlopen - seems totally bogus.
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
2164 Die if --with-modules=yes but no module support found.
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
2165 Do nothing, not even msg, if --with-modules=no.
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
2166
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
2167 1999-11-17 Isaac Hollander <ysh@mindspring.com>
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
2168
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
2169 * Makefile.in.in: add and use TAR macro. Sometimes tar only copies
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
2170 symlinks instead of the actual files
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
2171
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
2172 1999-11-30 Martin Buchholz <martin@xemacs.org>
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
2173
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
2174 * aclocal.m4: Shared library support for hpux >= version 11
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
2175
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
2176 1999-11-29 Martin Buchholz <martin@xemacs.org>
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
2177
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
2178 * Makefile.in.in (beta): `make beta' should rebuild info.
a5df635868b2 Import from CVS: tag r21-2-23
cvs
parents: 428
diff changeset
2179
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents: 426
diff changeset
2180 1999-11-29 XEmacs Build Bot <builds@cvs.xemacs.org>
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents: 426
diff changeset
2181
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents: 426
diff changeset
2182 * XEmacs 21.2.22 is released
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents: 426
diff changeset
2183
426
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2184 1999-11-28 Martin Buchholz <martin@xemacs.org>
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2185
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2186 * XEmacs 21.2.21 is released.
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2187
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2188 1999-11-26 Martin Buchholz <martin@xemacs.org>
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2189
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2190 * configure.in:
426
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2191 Add configure support for Unix 98 type ssize_t.
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2192
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2193 1999-11-27 Martin Buchholz <martin@xemacs.org>
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2194
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2195 * Makefile.in.in:
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2196 Make sure config.values.sh is up to date.
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2197 Use $(SHELL) instead of sh or /bin/sh consistently.
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2198 Delegate `depend' target to src/Makefile.in.in.
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2199
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2200 1999-10-27 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp>
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2201
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2202 * INSTALL: Update configure option.
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2203
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2204 1999-10-12 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2205
426
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2206 * configure.in (native_sound_lib, *-sgi-*): Check for audio.h.
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2207 (LIBS): Check for libCsup.
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2208
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2209 1999-10-24 Jan Vroonhof <vroonhof@math.ethz.ch>
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2210
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2211 * config.h.in: define HAVE_ESD_SOUND
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2212
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2213 * configure.in: Add support for esd sound. --with-sound
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2214 now accepts a list of options.
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2215 * configure.usage (--native-sound-lib): ditto.
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2216
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2217 1999-11-17 Martin Buchholz <martin@xemacs.org>
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2218
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2219 * Makefile.in.in (install-arch-dep):
426
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2220 Fix `make install' if prefix != exec_prefix.
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2221
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2222 1999-11-15 Martin Buchholz <martin@xemacs.org>
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2223
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2224 * configure.in:
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2225 - Accept --with-database=gdbm as an alias for
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2226 --with-database=gnudbm.
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2227 - rename with_database_gnudbm to with_database_gdbm.
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2228
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2229 * aclocal.m4 (ld_dynamic_link_flags): Just use empty value for
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2230 ld_dynamic_link_flags on Solaris. Else CC gives us:
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2231 CC: Warning: Option -Wl,-Bdynamic passed to ld, if ld is invoked, ignored otherwise
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2232 /usr/ccs/bin/ld: illegal option -- W
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2233
43177a4f3daf Import from CVS: tag r21-2-21
cvs
parents: 424
diff changeset
2234
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2235 1999-11-10 XEmacs Build Bot <builds@cvs.xemacs.org>
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2236
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2237 * XEmacs 21.2.20 is released
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2238
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2239 1999-09-21 Martin Buchholz <martin@xemacs.org>
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2240 * configure.in: Autodetect Unix98 PTY
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2241
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2242 1999-08-30 Robert Pluim <rpluim@bigfoot.com>
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2243
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2244 * README.packages: Add description of package-get-provider
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2245
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2246 1999-10-22 Vin Shelton <acs@xemacs.org>
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2247
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2248 * INSTALL: Added more information about README.packages, and
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2249 re-numbered some bullets.
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2250
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2251 1999-10-24 Jan Vroonhof <vroonhof@math.ethz.ch>
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2252
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2253 * INSTALL: Update disk requirements. Refer to README.packages
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2254
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2255 1999-10-21 Andy Piper <andy@xemacs.org>
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2256
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2257 * configure.in (all_widgets): Only use xaw3d if we really have it.
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2258
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2259 1999-10-06 Andy Piper <andy@xemacs.org>
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2260
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2261 * Makefile.in.in: use WINDOWSNT for mingw install.
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2262
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2263 1999-09-25 Andy Piper <andy@xemacs.org>
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2264
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2265 * configure.in: check for Xaw3d and use in preference to Xaw
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2266
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2267 1999-09-21 Martin Buchholz <martin@xemacs.org>
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2268
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2269 * Makefile.in.in: All Makefiles should #include config.h
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2270
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2271 1999-09-19 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de>
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2272
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2273 * configure.in (EMACS_CONFIGURATION): Use $configuration, not
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2274 $canonical, so that installation paths and dynamic path setup will
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2275 stay in synch.
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2276
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2277 1999-09-20 Andy Piper <andy@xemacs.org>
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2278
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2279 * Makefile.in.in: use __CYGWIN32__ and __MINGW32__ to predicate
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2280 installation linkage.
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2281
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2282 1999-08-29 Andreas Jaeger <aj@arthur.rhein-neckar.de>
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2283
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2284 * configure.in (machine): Recognize MIPS/Linux.
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2285
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2286 1999-08-27 Jan Vroonhof <vroonhof@math.ethz.ch>
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2287
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2288 * modules/zlib/Makefile (distclean):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2289 * modules/ldap/Makefile (distclean):
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2290 * modules/sample/Makefile (distclean):
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2291 * modules/base64/Makefile (distclean): new target
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2292
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2293 * Makefile.in.in (top_distclean): Add package directories
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2294 (SUBDIR_DISTCLEAN): New variable, add module directories
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2295
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2296 1999-09-01 Martin Buchholz <martin@xemacs.org>
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2297
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2298 * configure.in: Warn, but otherwise ignore, obsolete arguments.
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2299
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2300 1999-08-20 Olivier Galibert <galibert@pobox.com>
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2301
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2302 * configure.in: Add --pdump option.
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2303 * configure.usage: Ditto.
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2304
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2305 1999-08-04 Andy Piper <andy@xemacs.org>
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2306
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2307 * configure.in: report widget usage correctly. beef up setting.
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2308
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2309 * Makefile.in.in: fix install-arch-dep for mingw32.
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2310
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2311 1999-07-28 Andy Piper <andy@xemacs.org>
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2312
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2313 * config.h.in: add new LWLIB defines.
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2314
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2315 * configure.in: fix definitions of widget defines with various
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2316 toolkit options.
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
2317
422
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2318 1999-07-30 XEmacs Build Bot <builds@cvs.xemacs.org>
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2319
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2320 * XEmacs 21.2.19 is released
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2321
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2322 1999-07-28 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de>
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2323
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2324 * configure.in: Removed superfluous call to AC_FUNC_MMAP.
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2325
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2326 1999-03-07 Gregory Neil Shapiro <gshapiro@sendmail.org>
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2327
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2328 * configure.in: Check for Kerberos and the need for the DES
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2329 library before checking for LDAP in case LDAP requires these
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2330 libraries.
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2331
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2332 1999-07-26 SL Baur <steve@miho>
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2333
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2334 * configure.in: Rename --with-shlib to --with-modules for
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2335 consistency with the other two options that use that name.
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2336
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2337 * configure.usage (--with-modules): Document it.
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2338
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2339 1999-07-22 SL Baur <steve@beopen.com>
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2340
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2341 * configure.in: add sco7 support
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2342 From Bob Weiner <weiner@beopen.com>
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2343
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2344 1999-07-22 SL Baur <steve@miho>
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2345
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2346 * Makefile.in.in (install-arch-dep): Install config.values into
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2347 docdir.
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2348 From Karl M. Hegbloom <karlheg@cathcart.sysc.pdx.edu>
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2349
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2350 1999-07-21 SL Baur <steve@miho>
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2351
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2352 * Makefile.in.in (inststaticdir): New variable.
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2353 (instvardir): Ditto.
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2354 (install-arch-dep): Use them.
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2355
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2356 * configure.in (sitelispdir): Need to use ${PROGNAME}.
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2357 (sitemoduledir): Ditto.
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2358 (inststaticdir): New variable.
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2359 (instvardir): Ditto.
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2360 (infodir): Use them.
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2361 (lispdir): Ditto.
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2362 (moduledir): Ditto.
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2363 (pkgdir): Ditto.
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2364 (etcdir): Ditto.
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2365 (lockdir): Ditto.
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2366 (archlibdir): Ditto.
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2367
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2368 1999-07-14 SL Baur <steve@beopen.com>
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2369
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2370 * InfoDock 4.0.8 is released
95016f13131a Import from CVS: tag r21-2-19
cvs
parents: 420
diff changeset
2371
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2372 1999-07-13 XEmacs Build Bot <builds@cvs.xemacs.org>
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2373
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2374 * XEmacs 21.2.18 is released
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2375
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2376 1999-07-06 SL Baur <steve@miho.m17n.org>
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2377
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2378 * config.guess (main): Synch with newer config.guess for HP
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2379 support.
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2380 From Marcus Thiessel <marcus@xemacs.org>
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2381
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2382 1999-06-25 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de>
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2383
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2384 * configure.in (with_prefix): Added --with-prefix, defaults to
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2385 yes, to control whether the value of --prefix is compiled into the
420
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2386 binary.
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2387
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2388 1999-07-03 Andy Piper <andy@xemacs.org>
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2389
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2390 * configure.usage (--with-widgets): add.
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2391
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2392 1999-07-02 Andy Piper <andy@xemacs.org>
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2393
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2394 * configure.in: Make sure we get motif in lwlib if we have widgets
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2395 and motif.
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2396
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2397 1999-06-25 SL Baur <steve@miho.m17n.org>
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2398
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2399 * configure.in (version): Fix --with-infodock test.
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2400
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2401 1999-06-15 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de>
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2402
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2403 * configure.in: --prefix and --exec-prefix are now only compiled
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2404 into the binary if user-defined.
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2405
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2406 1999-03-23 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de>
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2407
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2408 * configure.in: Made docdir configurable.
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2409
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2410 * Makefile.in (docdir): Added variable for custom DOC directory.
41dbb7a9d5f2 Import from CVS: tag r21-2-18
cvs
parents: 418
diff changeset
2411
418
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 416
diff changeset
2412 1999-06-22 XEmacs Build Bot <builds@cvs.xemacs.org>
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 416
diff changeset
2413
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 416
diff changeset
2414 * XEmacs 21.2.17 is released
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 416
diff changeset
2415
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 416
diff changeset
2416 1999-06-13 Oscar Figueiredo <oscar@xemacs.org>
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 416
diff changeset
2417
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 416
diff changeset
2418 * configure.in (with_ldap): Check libldap independently of liblber
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 416
diff changeset
2419 Do not test alternate library names such as libldap10
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 416
diff changeset
2420 Test the presence of a variety of LDAP API functions which were
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 416
diff changeset
2421 formerly assumed to be present according to dubious heuristics
e804706bfb8c Import from CVS: tag r21-2-17
cvs
parents: 416
diff changeset
2422
416
ebe98a74bd68 Import from CVS: tag r21-2-16
cvs
parents: 414
diff changeset
2423 1999-06-11 XEmacs Build Bot <builds@cvs.xemacs.org>
ebe98a74bd68 Import from CVS: tag r21-2-16
cvs
parents: 414
diff changeset
2424
ebe98a74bd68 Import from CVS: tag r21-2-16
cvs
parents: 414
diff changeset
2425 * XEmacs 21.2.16 is released
ebe98a74bd68 Import from CVS: tag r21-2-16
cvs
parents: 414
diff changeset
2426
ebe98a74bd68 Import from CVS: tag r21-2-16
cvs
parents: 414
diff changeset
2427 1999-06-04 SL Baur <steve@steve1.m17n.org>
ebe98a74bd68 Import from CVS: tag r21-2-16
cvs
parents: 414
diff changeset
2428
ebe98a74bd68 Import from CVS: tag r21-2-16
cvs
parents: 414
diff changeset
2429 * configure.in (CPP): Correct test for locating $site_prefix
ebe98a74bd68 Import from CVS: tag r21-2-16
cvs
parents: 414
diff changeset
2430 include directories.
ebe98a74bd68 Import from CVS: tag r21-2-16
cvs
parents: 414
diff changeset
2431
414
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2432 1999-06-04 XEmacs Build Bot <builds@cvs.xemacs.org>
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2433
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2434 * XEmacs 21.2.15 is released
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2435
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2436 1999-06-01 Gunnar Evermann <ge204@eng.cam.ac.uk>
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2437
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2438 * README.packages: fix typos: user pacakge hierarchy is ~/.xemacs
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2439 From: Eric Veldhuyzen <eric@terra.nu>
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2440
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2441 1999-05-25 Jan Vroonhof <jan@xemacs.org>
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2442
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2443 * configure.in: For non-beta's use x.y.z format for version strings.
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2444
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2445 1999-06-03 SL Baur <steve@xemacs.org>
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2446
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2447 * version.sh: add emacs_is_beta initialization
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2448
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2449 * configure.in: Implement patch levels in version number
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2450 From Jan Vroonhof <vroonhof@math.ethz.ch>
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2451
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2452 * configure.in:
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2453 * configure.usage:
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2454 * config.h.in: Rename session option to wmcommand.
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2455 From Oliver Graf <ograf@rhein-zeitung.de>
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2456
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2457 1999-05-16 Mike McEwan <mike@lotusland.demon.co.uk>
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2458
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2459 * info/dir: Add `emodules.info' entry to the top info dir.
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2460
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2461 1999-05-31 SL Baur <steve@steve1.m17n.org>
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2462
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2463 * configure.in (CPP): Don't check for include subdirectories in
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2464 site-prefix directories. This check loses in valid configurations
414
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2465 like /usr/jp in TurboLinux. Conditionally add include directory to
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2466 site switches.
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2467
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2468 1999-05-14 Hrvoje Niksic <hniksic@srce.hr>
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2469
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2470 * configure.in (quoted_arguments): Support
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2471 --error-checking=byte-code.
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2472
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2473 1999-05-14 XEmacs Build Bot <builds@cvs.xemacs.org>
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2474
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2475 * XEmacs 21.2.14 is released
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2476
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2477 1999-05-11 SL Baur <steve@altair.xemacs.org>
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2478
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2479 * version.sh (infodock_build_version): Synch InfoDock version.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2480
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2481 1999-05-06 Hrvoje Niksic <hniksic@srce.hr>
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2482
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2483 * aclocal.m4 (ld_dynamic_link_flags): Change -Bexport to -Bdynamic
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2484 for Solaris.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2485
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2486 1999-05-03 Hrvoje Niksic <hniksic@srce.hr>
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2487
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2488 * configure.in (xemacs_betaname): Don't generate Installation.el.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2489
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2490 * Makefile.in.in (top_distclean): Don't remove Installation.el.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2491
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2492 1999-04-29 Andy Piper <andy@xemacs.org>
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2493
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2494 * configure.in: add mingw32 as a target platform. add nt process
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2495 support options.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2496
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2497 1998-09-04 MORIOKA Tomohiko <morioka@jaist.ac.jp>
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2498
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2499 * configure.in: Delete mule-coding.o.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2500
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2501 1999-04-22 Gunnar Evermann <ge204@eng.cam.ac.uk>
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2502
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2503 * lwlib/xlwmenu.c (string_width_u): Initialise chars before
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2504 calling XmStringGetLtoR
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2505 (string_draw_u): ditto and check return value of XmStringGetLtoR()
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2506
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2507 1999-04-05 Olivier Galibert <galibert@pobox.com>
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2508
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2509 * Makefile.in.in (GENERATED_HEADERS): Don't generate
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2510 puresize-adjust.h anymore
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2511
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2512 * configure.usage: Remove everything gung-ho or purespace related
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2513
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2514 * configure.in: Ditto
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2515
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2516 1999-04-17 Hrvoje Niksic <hniksic@srce.hr>
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2517
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2518 * configure.in: Check for getloadavg().
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
2519
396
6719134a07c2 Import from CVS: tag r21-2-13
cvs
parents: 394
diff changeset
2520 1999-03-12 XEmacs Build Bot <builds@cvs.xemacs.org>
6719134a07c2 Import from CVS: tag r21-2-13
cvs
parents: 394
diff changeset
2521
6719134a07c2 Import from CVS: tag r21-2-13
cvs
parents: 394
diff changeset
2522 * XEmacs 21.2.13 is released
6719134a07c2 Import from CVS: tag r21-2-13
cvs
parents: 394
diff changeset
2523
6719134a07c2 Import from CVS: tag r21-2-13
cvs
parents: 394
diff changeset
2524 1999-03-09 SL Baur <steve@xemacs.org>
6719134a07c2 Import from CVS: tag r21-2-13
cvs
parents: 394
diff changeset
2525
6719134a07c2 Import from CVS: tag r21-2-13
cvs
parents: 394
diff changeset
2526 * Makefile.in.in (LC_ALL): Try very, very hard to build in C locale.
6719134a07c2 Import from CVS: tag r21-2-13
cvs
parents: 394
diff changeset
2527
394
7d59cb494b73 Import from CVS: tag r21-2-12
cvs
parents: 392
diff changeset
2528 1999-03-05 XEmacs Build Bot <builds@cvs.xemacs.org>
7d59cb494b73 Import from CVS: tag r21-2-12
cvs
parents: 392
diff changeset
2529
7d59cb494b73 Import from CVS: tag r21-2-12
cvs
parents: 392
diff changeset
2530 * XEmacs 21.2.12 is released
7d59cb494b73 Import from CVS: tag r21-2-12
cvs
parents: 392
diff changeset
2531
7d59cb494b73 Import from CVS: tag r21-2-12
cvs
parents: 392
diff changeset
2532 1999-03-04 Martin Buchholz <martin@xemacs.org>
7d59cb494b73 Import from CVS: tag r21-2-12
cvs
parents: 392
diff changeset
2533
7d59cb494b73 Import from CVS: tag r21-2-12
cvs
parents: 392
diff changeset
2534 * Makefile.in.in (top_distclean): Remove confdefs.h as well.
7d59cb494b73 Import from CVS: tag r21-2-12
cvs
parents: 392
diff changeset
2535
7d59cb494b73 Import from CVS: tag r21-2-12
cvs
parents: 392
diff changeset
2536 1999-03-03 Martin Buchholz <martin@xemacs.org>
7d59cb494b73 Import from CVS: tag r21-2-12
cvs
parents: 392
diff changeset
2537
7d59cb494b73 Import from CVS: tag r21-2-12
cvs
parents: 392
diff changeset
2538 * configure.in:
7d59cb494b73 Import from CVS: tag r21-2-12
cvs
parents: 392
diff changeset
2539 `uname -v` -> "`uname -v`":
7d59cb494b73 Import from CVS: tag r21-2-12
cvs
parents: 392
diff changeset
2540 backquoted expressions need additional double
7d59cb494b73 Import from CVS: tag r21-2-12
cvs
parents: 392
diff changeset
2541 quotes to be a single token.
7d59cb494b73 Import from CVS: tag r21-2-12
cvs
parents: 392
diff changeset
2542 Use separate if's to avoid extra process invocations.
7d59cb494b73 Import from CVS: tag r21-2-12
cvs
parents: 392
diff changeset
2543
7d59cb494b73 Import from CVS: tag r21-2-12
cvs
parents: 392
diff changeset
2544 1999-01-05 Gunnar Evermann <ge204@eng.cam.ac.uk>
7d59cb494b73 Import from CVS: tag r21-2-12
cvs
parents: 392
diff changeset
2545
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2546 * PROBLEMS: Document crashes on SPARC with gcc 2.8.1.
394
7d59cb494b73 Import from CVS: tag r21-2-12
cvs
parents: 392
diff changeset
2547
392
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2548 1999-03-01 XEmacs Build Bot <builds@cvs.xemacs.org>
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2549
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2550 * XEmacs 21.2.11 is released
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2551
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2552 1999-02-16 Andy Piper <andy@xemacs.org>
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2553
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2554 * PROBLEMS: add entries for building under Cygwin.
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2555
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2556 1999-02-14 Jan Vroonhof <vroonhof@math.ethz.ch>
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2557
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2558 * README.packages: Clear up that mule-sumo packages is used _in
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2559 addition_ to the normal sumo.
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2560
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2561 1999-02-16 Martin Buchholz <martin@xemacs.org>
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2562
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2563 * configure.usage: Move quantify/purify into debug flags section
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2564
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2565 1999-02-10 Martin Buchholz <martin@xemacs.org>
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2566
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2567 * configure.in:
392
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2568 - Fixup xfs comments and redundant option checking
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2569
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2570 * configure.in:
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2571 * INSTALL:
392
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2572 * lisp/paths.el:
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2573 - improved automounter tmp directory support.
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2574 - support 4 (!) empirically discovered automounter conventions
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2575
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2576 1999-02-10 Martin Buchholz <martin@xemacs.org>
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2577
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2578 * lwlib/lwlib.h:
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2579 - redo CONST hacking to deal with X11 R4, which was
392
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2580 broken in a previous patch.
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2581
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2582 1999-02-10 Martin Buchholz <martin@xemacs.org>
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2583
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2584 * configure.in:
392
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2585 - irix uses -rpath
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2586
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2587 1999-02-10 Martin Buchholz <martin@xemacs.org>
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2588
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2589 * configure.in:
392
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2590 - Check for XOpenIM before using xim=xlib
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2591 - only use XmIm if $have_motif = yes
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2592
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2593 1999-02-10 Martin Buchholz <martin@xemacs.org>
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2594
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2595 * configure.in. Port to BSDI BSD/OS 4.0.
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2596
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2597 1999-01-07 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de>
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2598
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2599 * configure.in: Warn if using Motif dialog boxes on AIX 4.3.
1f50e6fe4f3f Import from CVS: tag r21-2-11
cvs
parents: 390
diff changeset
2600
390
c6012109f545 Import from CVS: tag r21-2-10
cvs
parents: 388
diff changeset
2601 1999-02-05 XEmacs Build Bot <builds@cvs.xemacs.org>
c6012109f545 Import from CVS: tag r21-2-10
cvs
parents: 388
diff changeset
2602
c6012109f545 Import from CVS: tag r21-2-10
cvs
parents: 388
diff changeset
2603 * XEmacs 21.2.10 is released
c6012109f545 Import from CVS: tag r21-2-10
cvs
parents: 388
diff changeset
2604
388
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2605 1999-02-02 XEmacs Build Bot <builds@cvs.xemacs.org>
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2606
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2607 * XEmacs 21.2.9 is released
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2608
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2609 1999-01-21 Andy Piper <andy@xemacs.org>
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2610
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2611 * configure.in: make xface detection specifc to a window system in
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2612 general rather than just X.
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2613
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2614 1999-18-10 Andy Piper <andy@xemacs.org>
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2615
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2616 * configure.in: remove -O3 prevention on cygwin - current versions
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2617 cope ok now. remove dll prevention on cygwin - the new module
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2618 code checks correctly.
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2619
388
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2620 1999-01-10 J. Kean Johnston <jkj@sco.com>
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2621
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
2622 * configure.in: Added moduledir as the path where loadable modules
388
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2623 are stored. Added --with-site-modules and --moduledir options.
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2624 - Ensure the SCO OpenServer compiles with --dynamic by default
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2625 - Check for dlfcn.h for dynamic loader
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2626 - Renamed dll.o to emodules.o and changed dynamic loader tests
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2627 - Renabled code that deals with site-lisp so that it is handled
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2628 correctly when a user specifies --with-site-lisp.
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2629
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2630 * aclocal.m4: Replaced entire file with more complete DLL tests
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2631 by way of libtool.
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2632
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2633 * config.usage: Removed TAB characters which caused it to be
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2634 displayed incorrectly on terminals where TAB != 8.
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2635 - Added help text to describe --with-site-modules and --moduledir.
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2636
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2637 * INSTALL: Updated documentation to describe module directories
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2638
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2639 * Makefile.in.in: Added moduledir, sitemoduledir macros.
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2640 - Make those directories at install time.
aabb7f5b1c81 Import from CVS: tag r21-2-9
cvs
parents: 386
diff changeset
2641
386
4af0ddfb7c5b Import from CVS: tag r21-2-8
cvs
parents: 384
diff changeset
2642 1998-12-28 Martin Buchholz <martin@xemacs.org>
4af0ddfb7c5b Import from CVS: tag r21-2-8
cvs
parents: 384
diff changeset
2643
4af0ddfb7c5b Import from CVS: tag r21-2-8
cvs
parents: 384
diff changeset
2644 * XEmacs 21.2.8 is released.
4af0ddfb7c5b Import from CVS: tag r21-2-8
cvs
parents: 384
diff changeset
2645
4af0ddfb7c5b Import from CVS: tag r21-2-8
cvs
parents: 384
diff changeset
2646 1998-12-28 Martin Buchholz <martin@xemacs.org>
4af0ddfb7c5b Import from CVS: tag r21-2-8
cvs
parents: 384
diff changeset
2647
4af0ddfb7c5b Import from CVS: tag r21-2-8
cvs
parents: 384
diff changeset
2648 * PROBLEMS: Document Linux GNU Libc 2.0 I18N crashes.
4af0ddfb7c5b Import from CVS: tag r21-2-8
cvs
parents: 384
diff changeset
2649
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2650 1998-12-24 Martin Buchholz <martin@xemacs.org>
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2651
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2652 * XEmacs 21.2.7 is released.
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2653
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2654 1998-12-20 Martin Buchholz <martin@xemacs.org>
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2655
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2656 * configure.in: Redo DBM support
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2657 - die if dbm support requested, but not provided.
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2658 - properly check for libgdbm, then libc, then libdbm
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2659 - properly check for ndbm.h
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2660 - comments improved
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2661 - XE_DIE should always prefix messages with Error: for clarity
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2662
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2663 1998-12-07 Martin Buchholz <martin@xemacs.org>
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2664
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2665 * xemacs.mak (TEMACS_OBJS):
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2666 (DOC_SRC4):
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2667 - Remove pure.c, pure.obj
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2668
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2669 1998-12-06 Martin Buchholz <martin@xemacs.org>
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2670
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2671 * Makefile.in.in (distclean):
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2672 * dynodump/Makefile.in.in (distclean):
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2673 * src/Makefile.in.in (distclean):
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2674 * lib-src/Makefile.in.in (distclean):
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2675 * lwlib/Makefile.in.in (distclean):
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2676 - Make sure GNUmakefile is deleted.
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2677
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2678 1998-12-17 Andy Piper <andy@xemacs.org>
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2679
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2680 * configure.in (all_widgets): remove gui.o addition - its always
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2681 in the makefile now.
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2682
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2683 * configure.in: add gui-msw.o to msw objects.
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2684
382
064ab7fed2e0 Import from CVS: tag r21-2-6
cvs
parents: 380
diff changeset
2685 1998-12-16 Andy Piper <andy@xemacs.org>
064ab7fed2e0 Import from CVS: tag r21-2-6
cvs
parents: 380
diff changeset
2686
064ab7fed2e0 Import from CVS: tag r21-2-6
cvs
parents: 380
diff changeset
2687 * XEmacs 21.2.6 is released
064ab7fed2e0 Import from CVS: tag r21-2-6
cvs
parents: 380
diff changeset
2688
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 377
diff changeset
2689 1998-12-05 XEmacs Build Bot <builds@cvs.xemacs.org>
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 377
diff changeset
2690
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 377
diff changeset
2691 * XEmacs 21.2.5 is released
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 377
diff changeset
2692
377
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 375
diff changeset
2693 1998-11-28 SL Baur <steve@altair.xemacs.org>
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 375
diff changeset
2694
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 375
diff changeset
2695 * XEmacs 21.2-beta4 is released.
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 375
diff changeset
2696
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 375
diff changeset
2697 1998-11-27 SL Baur <steve@altair.xemacs.org>
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 375
diff changeset
2698
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 375
diff changeset
2699 * configure.in: Linux/Arm Support.
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 375
diff changeset
2700 From James LewisMoss <dres@ioa.com>
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 375
diff changeset
2701
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 375
diff changeset
2702 1998-11-27 Takeshi Hagiwara <hagiwara@ie.niigata-u.ac.jp>
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 375
diff changeset
2703
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 375
diff changeset
2704 * configure.in:
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 375
diff changeset
2705 Fix the realpath() problem of UnixWare2.1.3.
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 375
diff changeset
2706 Patches for NEC's sysv4.2 machine.
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 375
diff changeset
2707
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 375
diff changeset
2708 1998-11-09 Kazuyuki IENAGA <ienaga@jsys.co.jp>
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 375
diff changeset
2709
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 375
diff changeset
2710 * configure.in: Check if there's wnn4.2 or wnn6 specific library
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 375
diff changeset
2711 installed. The Wnn library will be checked if the --with-wnn
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 375
diff changeset
2712 and/or --with-wnn6 was specified compulsory.
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 375
diff changeset
2713
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 375
diff changeset
2714 1998-07-28 Jan Vroonhof <vroonhof@math.ethz.ch>
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 375
diff changeset
2715
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 375
diff changeset
2716 * configure.in (CPP): Too many spaces im run-patch flag detection.
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 375
diff changeset
2717
375
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 373
diff changeset
2718 1998-10-15 SL Baur <steve@altair.xemacs.org>
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 373
diff changeset
2719
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 373
diff changeset
2720 * XEmacs 21.2-beta3 is released.
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 373
diff changeset
2721
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 373
diff changeset
2722 1998-10-13 Andy Piper <andyp@parallax.co.uk>
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 373
diff changeset
2723
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 373
diff changeset
2724 * configure.in: enable drag and drop support by default if mswindows is
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 373
diff changeset
2725 detected.
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 373
diff changeset
2726
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 373
diff changeset
2727 1998-10-09 Kevin Oberman <oberman@es.net>
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 373
diff changeset
2728
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 373
diff changeset
2729 * config.sub: Fix for Alpha architecture
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 373
diff changeset
2730
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 373
diff changeset
2731 1998-10-05 Andy Piper <andyp@parallax.co.uk>
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 373
diff changeset
2732
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 373
diff changeset
2733 * configure.in: don't enable shared lib support for cygwin unless
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 373
diff changeset
2734 explititly told to.
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 373
diff changeset
2735
373
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2736 1998-09-29 SL Baur <steve@altair.xemacs.org>
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2737
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2738 * XEmacs 21.2-beta2 is released.
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2739
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2740 1998-09-09 Gunnar Evermann <Gunnar.Evermann@nats.informatik.uni-hamburg.de>
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2741
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2742 * lwlib/xlwmenu.c:
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2743 * lwlib/xlwscrollbar: fix for Motif >=2.0
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2744 Patch provided by Glenn Barry <gtb@eng.sun.com>
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2745
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2746 * PROBLEMS: XEmacs 21.0 now works on HP-UX 11.0
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2747
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2748 1998-09-02 Andy Piper <andyp@parallax.co.uk>
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2749
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2750 * configure.in: check for cygwin32/version.h.
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2751
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2752 1998-08-31 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de>
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2753
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2754 * PROBLEMS: Added AIX 4.3 note.
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2755
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2756 * configure.in: Better detection of AIX 4.3.
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2757 AIX xlc can do -g and -Ox at the same time.
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2758
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2759 1998-08-17 P. E. Jareth Hein <jareth@camelot.co.jp>
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2760
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2761 * configure.in: Alter configure so that it checks for mismatched PNG
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2762 header/libs, screams a little louder on old/mismatched library
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2763 conditions for both PNG and XPM, stop screaming if png is not found and
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2764 no window-system is selected, and fixed a bug in the XPM checking.
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2765
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2766 1998-08-07 P. E. Jareth Hein <jareth@camelot.co.jp>
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2767
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2768 * configure.usage (--without-gif): Modify text to reflect status
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2769 of GIF support
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2770
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2771 1998-08-04 P. E. Jareth Hein <jareth@camelot.co.jp>
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2772
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2773 * configure.in: add back in the support for the in-core GIF
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2774 code, change the required PNG library version to 1.0.2, and add
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2775 a warning if PNG not found, since PNG images are now distributed
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2776 as part of the core. Also minor wording changes in things reported
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2777 to the user.
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2778
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2779 1998-07-28 Kai Haberzettl <khaberz@synnet.de>
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2780
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2781 * BETA: Update mailing-list address for build-reports
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2782
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2783 1998-08-01 SL Baur <steve@altair.xemacs.org>
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2784
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2785 * Makefile.in (TAGS tags): Add variable `tagslisp' so a TAGS file
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2786 can built that includes package lisp.
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2787
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2788 1998-07-23 Martin Buchholz <martin@xemacs.org>
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2789
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2790 * configure.in:
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2791 - support multiple flavors of alpha, (XEmacs treats them identically)
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2792 - Fix AC_TRY_RUN so that actions have access to $?
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2793 - Identify DEC C compilers. Add default optimization CFLAGS and
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2794 always use -std.
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2795 - Use an extensible method for adding support for future compilers.
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2796 - Have SunPro C use that same extensible method.
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2797 - Make sol2 always use `-R', Linux and DEC OSF always use `-rpath'
6240c7796c7a Import from CVS: tag r21-2b2
cvs
parents: 371
diff changeset
2798
304
c6de09ad3017 Import from CVS: tag r21-0b50
cvs
parents: 300
diff changeset
2799 1998-07-19 SL Baur <steve@altair.xemacs.org>
c6de09ad3017 Import from CVS: tag r21-0b50
cvs
parents: 300
diff changeset
2800
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 369
diff changeset
2801 * XEmacs 21.2-beta1 is released.
304
c6de09ad3017 Import from CVS: tag r21-0b50
cvs
parents: 300
diff changeset
2802
c6de09ad3017 Import from CVS: tag r21-0b50
cvs
parents: 300
diff changeset
2803 1998-07-18 SL Baur <steve@altair.xemacs.org>
c6de09ad3017 Import from CVS: tag r21-0b50
cvs
parents: 300
diff changeset
2804
c6de09ad3017 Import from CVS: tag r21-0b50
cvs
parents: 300
diff changeset
2805 * config.guess: Synched with latest FSF version.
c6de09ad3017 Import from CVS: tag r21-0b50
cvs
parents: 300
diff changeset
2806
454
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
2807 1998-07-12 Bjrn Torkelsson <torkel@hpc2n.umu.se>
304
c6de09ad3017 Import from CVS: tag r21-0b50
cvs
parents: 300
diff changeset
2808
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2809 * Makefile.in: added LDFLAGS.
304
c6de09ad3017 Import from CVS: tag r21-0b50
cvs
parents: 300
diff changeset
2810
300
3cc9f0ebfbd1 Import from CVS: tag r21-0b48
cvs
parents: 298
diff changeset
2811 1998-07-12 SL Baur <steve@altair.xemacs.org>
3cc9f0ebfbd1 Import from CVS: tag r21-0b48
cvs
parents: 298
diff changeset
2812
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 369
diff changeset
2813 * README: Bump version numbers.
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 369
diff changeset
2814 * info/dir: Ditto.
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 369
diff changeset
2815 * version.sh: Ditto.
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 369
diff changeset
2816
793
e38acbeb1cae [xemacs-hg @ 2002-03-29 04:46:17 by ben]
ben
parents: 788
diff changeset
2817 * XEmacs 21.0-pre5 is released.
300
3cc9f0ebfbd1 Import from CVS: tag r21-0b48
cvs
parents: 298
diff changeset
2818
3cc9f0ebfbd1 Import from CVS: tag r21-0b48
cvs
parents: 298
diff changeset
2819 1998-07-10 SL Baur <steve@altair.xemacs.org>
3cc9f0ebfbd1 Import from CVS: tag r21-0b48
cvs
parents: 298
diff changeset
2820
3cc9f0ebfbd1 Import from CVS: tag r21-0b48
cvs
parents: 298
diff changeset
2821 * configure.in (with_offix): Default --with-offix to off.
3cc9f0ebfbd1 Import from CVS: tag r21-0b48
cvs
parents: 298
diff changeset
2822
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 296
diff changeset
2823 1998-07-09 SL Baur <steve@altair.xemacs.org>
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 296
diff changeset
2824
300
3cc9f0ebfbd1 Import from CVS: tag r21-0b48
cvs
parents: 298
diff changeset
2825 * configure.in: Handle multiple database libraries.
3cc9f0ebfbd1 Import from CVS: tag r21-0b48
cvs
parents: 298
diff changeset
2826 From Gregory Neil Shapiro <gshapiro@sendmail.org>
3cc9f0ebfbd1 Import from CVS: tag r21-0b48
cvs
parents: 298
diff changeset
2827
298
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 296
diff changeset
2828 * XEmacs 21.0-pre4 is released.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 296
diff changeset
2829
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 296
diff changeset
2830 * configure.in: Fix test for InfoDock sources.
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 296
diff changeset
2831
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 296
diff changeset
2832 1998-07-09 Oliver Graf <ograf@fga.de>
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 296
diff changeset
2833
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 296
diff changeset
2834 * configure.usage: added warning to --with-offix
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 296
diff changeset
2835
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 296
diff changeset
2836 1998-06-28 SL Baur <steve@altair.xemacs.org>
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 296
diff changeset
2837
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 296
diff changeset
2838 * configure.in: Berkeley DB autodetection fixes
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 296
diff changeset
2839 From Martin Buchholz <martin@xemacs.org>
70ad99077275 Import from CVS: tag r21-0b47
cvs
parents: 296
diff changeset
2840
296
5a79be0ef6a8 Import from CVS: tag r21-0b46
cvs
parents: 294
diff changeset
2841 1998-06-19 SL Baur <steve@altair.xemacs.org>
5a79be0ef6a8 Import from CVS: tag r21-0b46
cvs
parents: 294
diff changeset
2842
5a79be0ef6a8 Import from CVS: tag r21-0b46
cvs
parents: 294
diff changeset
2843 * XEmacs 21.0-pre3 is released.
5a79be0ef6a8 Import from CVS: tag r21-0b46
cvs
parents: 294
diff changeset
2844
5a79be0ef6a8 Import from CVS: tag r21-0b46
cvs
parents: 294
diff changeset
2845 1998-06-20 Kazuyuki IENAGA <ienaga@jsys.co.jp>
5a79be0ef6a8 Import from CVS: tag r21-0b46
cvs
parents: 294
diff changeset
2846
5a79be0ef6a8 Import from CVS: tag r21-0b46
cvs
parents: 294
diff changeset
2847 * configure.in: Added check if the berkdb has db_open or not.
5a79be0ef6a8 Import from CVS: tag r21-0b46
cvs
parents: 294
diff changeset
2848 (With fixes from Martin Buchholz)
5a79be0ef6a8 Import from CVS: tag r21-0b46
cvs
parents: 294
diff changeset
2849
294
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 292
diff changeset
2850 1998-06-19 SL Baur <steve@altair.xemacs.org>
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 292
diff changeset
2851
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 292
diff changeset
2852 * XEmacs 21.0-pre2 is released.
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 292
diff changeset
2853
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 292
diff changeset
2854 1998-06-18 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de>
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 292
diff changeset
2855
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 292
diff changeset
2856 * configure.in: Added -lC for static linking under AIX 4.2.
4b85ae5eabfb Import from CVS: tag r21-0b45
cvs
parents: 292
diff changeset
2857
292
6cb5e14cd98e Import from CVS: tag r21-0b44
cvs
parents: 290
diff changeset
2858 1998-06-14 SL Baur <steve@altair.xemacs.org>
6cb5e14cd98e Import from CVS: tag r21-0b44
cvs
parents: 290
diff changeset
2859
6cb5e14cd98e Import from CVS: tag r21-0b44
cvs
parents: 290
diff changeset
2860 * XEmacs 21.0-pre1 is released.
6cb5e14cd98e Import from CVS: tag r21-0b44
cvs
parents: 290
diff changeset
2861
290
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2862 1998-06-11 SL Baur <steve@altair.xemacs.org>
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2863
292
6cb5e14cd98e Import from CVS: tag r21-0b44
cvs
parents: 290
diff changeset
2864 * XEmacs 21.0-beta43 is released.
290
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2865
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2866 1998-06-04 Oliver Graf <ograf@fga.de>
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2867
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2868 * tests/Dnd/README: a step-by-step test run
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2869 * tests/Dnd/droptest.el: some clarifications
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2870 * tests/Dnd/droptest.sh: created, creates test files
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2871
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2872 1998-06-01 Oliver Graf <ograf@fga.de>
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2873
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2874 * configure.in (summary): added experimental to dragndrop option
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2875 * configure.usage: added experimental note to --with-dragndrop
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2876 * tests/Dnd/droptest.el: extra start-drag-region function
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2877 changed the experimental- stuff
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2878
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2879 1998-06-07 SL Baur <steve@altair.xemacs.org>
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2880
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2881 * lwlib/xlwmenu.c: Add room for the 0 byte sentinel.
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2882
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2883 1998-06-05 Colin Rafferty <colin@xemacs.org>
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2884
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2885 * lwlib/xlwmenu.c: Made newchars be as large as it needs to be.
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2886
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
2887 1998-06-01 SL Baur <steve@altair.xemacs.org>
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
2888
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
2889 * XEmacs 21.0-beta42 is released.
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
2890
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
2891 1998-05-29 Andy Piper <andyp@parallax.co.uk>
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
2892
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
2893 * configure.in: don't use -O3 for cygwin.
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
2894
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
2895 1998-05-28 P. E. Jareth Hein <jareth@camelot-soft.com>
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
2896
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
2897 * configure.in: Switch from giflib to gifreader for
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
2898 our GIF image support (no other mods needed)
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
2899
290
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2900 1998-05-28 Oliver Graf <ograf@fga.de>
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
2901
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
2902 * configure.in: only one DnD protocol, CDE has priority over OffiX
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
2903
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
2904 * tests/Dnd/README: some changes reflecting recent modifications
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
2905 * tests/Dnd/dragtest.el: removed
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
2906 * tests/Dnd/droptest.el: cosmetics and comments
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
2907
290
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2908 1998-05-26 Oliver Graf <ograf@fga.de>
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
2909
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
2910 * tests/Dnd/droptest.el: adapted to CDE extensions
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
2911
290
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2912 1998-05-25 Hans Guenter Weigand <hgweigand@wiesbaden.netsurf.de>
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2913
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2914 * configure.in:
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2915 * config.sub: add initial OpenBSD support
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 288
diff changeset
2916
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
2917 1998-05-21 Andy Piper <andyp@parallax.co.uk>
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
2918
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
2919 * configure.in: check for msw dialogs.
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 286
diff changeset
2920
286
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
2921 1998-05-23 SL Baur <steve@altair.xemacs.org>
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
2922
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
2923 * XEmacs 21.0-beta41 is released.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
2924
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
2925 1998-05-17 SL Baur <steve@altair.xemacs.org>
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
2926
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
2927 * configure.in (CPP): Change -O2 to -O3.
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
2928 Suggested by Martin Buchholz <martin@xemacs.org>
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 284
diff changeset
2929
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2930 1998-05-15 SL Baur <steve@altair.xemacs.org>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2931
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2932 * XEmacs 21.0-beta40 is released.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2933
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2934 1998-05-13 SL Baur <steve@altair.xemacs.org>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2935
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2936 * configure.in (ZSH_VERSION): zsh-3.1.2 (and zsh-3.0.4) drops core
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2937 on the `unset CDPATH' if running as sh.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2938
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2939 1998-05-12 Oliver Graf <ograf@fga.de>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2940
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2941 * tests/Dnd/droptest.el: some CDE adaptions (untested)
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2942
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2943 1998-05-11 Martin Buchholz <martin@xemacs.org>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2944
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2945 * configure.in:
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2946 Add some more comments.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2947 If using bash, use Posix mode and unset CDPATH.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2948 Be more careful checking feature dependencies.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2949 Introduce XE_CHECK_FEATURE_DEPENDENCY.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2950 Undo the gross hack of multiple `echo >> $tempcname'
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2951 by using here documents instead. (Might break mswindows, tho...)
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2952 Be more careful autodetecting tooltalk.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2953
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2954 * PROBLEMS:
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2955 Document problems with Solaris 2.6 + XSUNTRANSPORT
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2956
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
2957 * Makefile.in:
284
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2958 * lwlib/Makefile.in.in:
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2959 * modules/Makefile.in:
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2960 - Adjust for luser's CDPATH being set to something weird.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2961 - Take into account bash 2.02's tendency to print the cwd when
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2962 using CDPATH. Always use `cd ./foo' instead of `cd foo'.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2963 - fix the run-temacs target to use $(DUMPENV)
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2964 - fix the run-puremacs target to use $(DUMPENV)
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2965 - fix the `depend' target to properly $(RM) the right files
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2966 - Generate a better TAGS file for XEmacs' lisp code using
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2967 hand-crafted regexps.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2968 - Use standard coding conventions for modules/Makefile.in
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2969
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2970 1998-05-12 Kazuyuki IENAGA <ienaga@jsys.co.jp>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2971
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2972 * configure.in: some people claimed that they can't stop
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2973 linking wnn6 library if they set --with-wnn6=no.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2974
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2975 1998-05-11 Oliver Graf <ograf@fga.de>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2976
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2977 * tests/Dnd/droptest.el: adapted to new calling conventions
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2978 also showing the new possibilities
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2979 * tests/Dnd/README: changed to new protocol
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2980
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2981 1998-05-11 SAKIYAMA Nobuo <nobuo@db3.so-net.or.jp>
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2982
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2983 * Fix for HAVE_MULTICAST check.
558f606b08ae Import from CVS: tag r21-0b40
cvs
parents: 282
diff changeset
2984
282
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
2985 1998-05-09 SL Baur <steve@altair.xemacs.org>
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
2986
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
2987 * XEmacs 21.0-beta39 is released.
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
2988
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
2989 1998-05-06 Oliver Graf <ograf@fga.de>
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
2990
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
2991 * configure.in: added autodetection for the Drag'n'Drop API
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
2992 if some DnD protocol is found, HAVE_DRAGNDROP will be defined
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
2993 and dragdrop.o is added to extra_objs
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
2994 * configure.usage: added with-dragndrop, added (*) to with-offix
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
2995 * tests/Dnd/droptest.el: complete overhaul, no it's a real test
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
2996
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
2997 1998-05-04 Oliver Graf <ograf@fga.de>
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
2998
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
2999 * tests/Dnd/droptest.el: changed to test new protocol
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
3000 * tests/Dnd/README.OffiX: removed
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
3001 * tests/Dnd/README: created, info about new protocol
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
3002 * tests/Dnd/dragtest.el: comment change
c42ec1d1cded Import from CVS: tag r21-0b39
cvs
parents: 280
diff changeset
3003
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
3004 1998-05-02 SL Baur <steve@altair.xemacs.org>
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
3005
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
3006 * XEmacs 21.0-beta38 is released.
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
3007
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
3008 1998-04-29 SL Baur <steve@altair.xemacs.org>
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
3009
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
3010 * configure.in: Use `PROGNAME' for all generated paths.
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
3011
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
3012 * Makefile.in: Change `progname' to `PROGNAME' for consistency.
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
3013
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
3014 1998-04-27 SL Baur <steve@altair.xemacs.org>
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
3015
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
3016 * configure.in (progname): Parameterize program name on `progname'
280
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
3017 and add --with-infodock.
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
3018
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
3019 1998-04-26 SL Baur <steve@altair.xemacs.org>
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
3020
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
3021 * Makefile.in: Religiously use ${progname} instead of hardcoded
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
3022 `xemacs'.
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
3023 CPPFLAGS was being set correctly in ${subdir}/Makefiles and
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
3024 overridden by the empty one set in the toplevel Makefile.
7df0dd720c89 Import from CVS: tag r21-0b38
cvs
parents: 278
diff changeset
3025
278
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3026 1998-04-25 SL Baur <steve@altair.xemacs.org>
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3027
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3028 * XEmacs-21.0-beta37 is released.
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3029
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3030 1998-04-25 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de>
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3031
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3032 * configure.in: Sychronized ..._USER_DEFINED variables with
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3033 datadir setting.
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3034
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3035 * Makefile.in (mkdir): No longer create sitelispdir.
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3036
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3037 Sat Apr 24 1998 Andy Piper <andyp@parallax.co.uk>
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3038
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 369
diff changeset
3039 * configure.in: make graphic libraries tests be dependant on a
278
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3040 window system not X11 only.
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3041
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3042 Fri Apr 24 19:38:19 1998 Andy Piper <andyp@parallax.co.uk>
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3043
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3044 * configure.in: check for our special select in msw.
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3045
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3046 1998-04-22 Marcus Thiessel <marcus_thiessel@hp.com>
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3047
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3048 * PROBLEMS: add answers to some FAQ concerning hpux.
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3049
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3050 Wed Apr 22 12:59:35 1998 Andy Piper <andyp@parallax.co.uk>
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3051
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3052 * configure.in: enable checking for special mswindows select()
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3053
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3054 1998-04-21 Martin Buchholz <martin@xemacs.org>
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3055
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3056 * configure.in: Isolate incomprehensible cma_open/pthreads checking
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3057 to decosf*
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3058
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3059 1998-04-21 Marcus Thiessel <marcus_thiessel@hp.com>
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3060
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3061 * configure.in: /usr/{include,lib}/Motif2.1 added to search path for X11
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3062 libs and includes.
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3063
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3064 1998-04-22 Itay Ben-Yaacov <pezz@www-mail.huji.ac.il>
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3065
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3066 * configure.in: check for xpm does not depend anymore on having X.
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3067 if libXpm exists, and is of the FOR_MSW flavor, define FOR_MSW.
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3068
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3069 1998-04-19 Oscar Figueiredo <Oscar.Figueiredo@di.epfl.ch>
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3070
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3071 * info/dir: Fixed the explanatory notes for
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3072 `Info-default-directory-list' removal and the new automatic dir
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3073 rebuilding facility. Reindented the menu. Added an entry for
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
3074 term.info
278
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3075
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3076 1998-04-20 SL Baur <steve@altair.xemacs.org>
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3077
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3078 * configure.in (LISPDIR): Removed configuration option for
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3079 site-lisp.
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3080
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3081 1998-04-19 SL Baur <steve@altair.xemacs.org>
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3082
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3083 * configure.in (version): snarf InfoDock version number.
90d73dddcdc4 Import from CVS: tag r21-0b37
cvs
parents: 276
diff changeset
3084
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3085 1998-04-18 SL Baur <steve@altair.xemacs.org>
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3086
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3087 * XEmacs-21.0-beta36 is released.
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3088
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3089 Fri Apr 17 12:59:35 1998 Andy Piper <andyp@parallax.co.uk>
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3090
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3091 * configure.in: enable install pre-processing for mswindows
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3092
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3093 Fri Apr 17 12:59:35 1998 Andy Piper <andyp@parallax.co.uk>
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
3094
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3095 * Makefile.in.in: add install_pp to install incantation.
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3096
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3097 * installexe.sh: new file. Add .exe to install targets if the
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3098 result is executable.
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3099
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3100 Fri Apr 17 12:59:35 1998 Andy Piper <andyp@parallax.co.uk>
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
3101
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3102 * Makefile.in: add install_pp to install incantation.
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3103
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3104 1998-04-14 Itay Ben-Yaacov <pezz@www-mail.huji.ac.il>
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3105
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3106 * configure.in: Large echo split into a few smaller ones,
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3107 so the cygnus sh.exe does not crash.
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3108
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3109 Thu Apr 16 12:59:35 1998 Andy Piper <andyp@parallax.co.uk>
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3110
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3111 * configure.in: enable toolbar checking for mswindows build
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3112
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3113 1998-04-06 Martin Buchholz <martin@xemacs.org>
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3114
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
3115 * config.h.in: Add _SVID_SOURCE to list of xmkmf #defines.
276
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3116 Used (at least) by RedHat 4.2.
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3117
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3118 1998-04-11 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de>
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3119
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3120 * configure.in: Re-instated src/paths.h generation from
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3121 src/paths.h.in.
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3122
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3123 * Makefile.in (top_distclean): Remove site-lisp on `make
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3124 distclean'.
6330739388db Import from CVS: tag r21-0b36
cvs
parents: 274
diff changeset
3125
274
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3126 1998-04-10 SL Baur <steve@altair.xemacs.org>
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3127
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3128 * XEmacs 21.0-beta35 is released.
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3129
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3130 1998-04-10 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de>
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3131
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3132 * configure.usage: Clarified --package-path documentation.
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3133
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3134 1998-04-07 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de>
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3135
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3136 * configure.in: Now generates src/paths.h from src/paths.h.in.in.
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3137 Removed defaults for infopath and package-path.
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3138
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3139 * Makefile.in (src/paths.h): ... is now generated from
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3140 src/paths.h.in.in. Moved generation of paths.h to configure.
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3141
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3142 * paths.h.in: Removed.
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3143
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3144 * paths.h.in.in: Created.
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3145
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3146 1998-04-06 Martin Buchholz <martin@xemacs.org>
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3147
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3148 * configure.in: png was still being used if png_version < 0.96
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3149
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3150 * configure.in: Fixed magic to handle AIX, X11R6, and gcc.
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3151
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3152 1998-04-05 Amir J. Katz <amir@ndsoft.com>
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3153
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3154 * INSTALL (Rationale): Offix support comment is wrong. To disable,
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3155 one must use --with-offix=no and not --without-offix
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3156
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3157 1998-04-05 SL Baur <steve@altair.xemacs.org>
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3158
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3159 * configure.in (CPP): ppc.ldscript sits in $srcdir/src not $srcdir.
ca9a9ec9c1c1 Import from CVS: tag r21-0b35
cvs
parents: 272
diff changeset
3160
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3161 1998-04-04 SL Baur <steve@altair.xemacs.org>
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3162
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3163 * XEmacs 21.0-beta34 is released.
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3164
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3165 1998-04-03 Martin Buchholz <martin@xemacs.org>
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3166
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3167 * configure.in:
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3168 checking whether gettimeofday accepts one or two arguments... two
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3169
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3170 1998-04-03 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de>
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3171
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3172 * configure.in: Fixed magic to handle AIX and MIT X11R6.
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3173
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3174 1998-04-02 Martin Buchholz <martin@xemacs.org>
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3175
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3176 * configure.in: Add magic -T $srcdir/ppc.ldscript on Linux powerpc
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3177
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3178 1998-04-01 Martin Buchholz <martin@xemacs.org>
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3179
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3180 * tests/database.el (test-database): Temporary files (the databases
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3181 that were created) should be deleted.
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3182
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3183 * Makefile.in (testdir): Remove gnumake-specific syntax.
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3184 (src/Makefile): src/Makefile depends on src/depend.
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3185
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3186 1998-03-29 Martin Buchholz <martin@xemacs.org>
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3187
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3188 * configure.in: Check for -lz, -lgz unconditionally. Too many
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3189 system linkers don't properly die when there are cascaded link
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3190 dependencies, so we can't rely on the linker for that. The only
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
3191 downside is that we might link with an extra unneeded library. If
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3192 you really really care about this, you can go fix it.
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3193
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3194 * configure.in: Enhance PANIC msg to make it clear that
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3195 --with-FEATURE is going to die if FEATURE is not installed.
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3196
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3197 1998-03-27 Martin Buchholz <martin@xemacs.org>
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3198
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3199 * configure.in: $debug was not properly dependent on $beta
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
3200
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
3201 * configure.in: Move offix configuration out of src/Makefile.in.in
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3202 into configure.in.
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3203
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3204 * configure.in: Reorganize xpm detection code.
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3205
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
3206 * configure.in: XIM default to ON if Motif which is not Lesstif is
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3207 found.
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3208
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3209 * configure.in: Keep auto-generated makefile dependencies out of
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3210 src/Makefile.in.in by using AC_OUTPUT file concatenation support.
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3211
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3212 1998-03-26 Martin Buchholz <martin@xemacs.org>
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3213
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3214 * configure.in: Fix up cflags handling. Specifically, configure
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3215 --cflags='' would fail to be recognized.
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3216
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3217 * configure.in: Fix up png detection. Link with png_read_image to
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3218 make sure -lz is required. Test for png >- 0.96 via header file.
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3219
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3220 1998-03-21 Martin Buchholz <martin@xemacs.org>
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3221
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3222 * configure.in (XE_GCC_WRAP_LDFLAGS)
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3223 Rename to XE_PROTECT_LINKER_FLAGS. Rewrite.
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3224
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3225 * configure.in: Make sure BSD always links in libz.a
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3226 BSD's stupid linker can't detect cascaded lib dependencies
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3227
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3228 * configure.in: Autodetect lesstif. define have_lesstif.
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3229 Don't use motif-xim with lesstif, at least by default.
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3230
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3231 1998-03-30 SL Baur <steve@altair.xemacs.org>
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3232
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3233 * version.sh: Add InfoDock version number variables.
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3234
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3235 1998-03-30 Amir J. Katz <amir@ndsoft.com>
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3236
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3237 * info/dir: Replaced string '20.5' with '21.0'
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
3238
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3239 1998-03-24 SL Baur <steve@altair.xemacs.org>
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3240
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3241 * XEmacs 21.0-beta33 is released.
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3242
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3243 1998-03-26 Didier Verna <didier@xemacs.org>
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3244
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3245 * configure.in, Makefile.in: Removed infopath_user_defined---we
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3246 always want to propagate it.
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3247
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3248 * configure.usage: Synched with configure.in.
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3249
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3250 1998-03-25 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de>
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3251
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3252 * configure.usage, INSTALL: Synched with the new path layout.
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3253
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3254 * Makefile.in (src/paths.h): Replaced packagepath with
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3255 package_path to make configure happy.
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3256
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3257 * configure.in: Made default setting for packagepath conform to
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3258 what packages.el builds at run-time: XEmacs-version-specific paths
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3259 before site-specific ones.
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3260 Added default setting for pkgdir.
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3261 Changed --packagepath back to --package-path.
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
3262
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3263 1998-03-24 SL Baur <steve@altair.xemacs.org>
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3264
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3265 * XEmacs 21.0-beta32 is released.
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3266
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3267 1998-03-23 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de>
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3268
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3269 * configure.in: Extended package path by version-specific
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3270 hierarchies. Changed allow-site-lisp to inhibit-site-lisp.
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3271
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3272 1998-03-22 SL Baur <steve@altair.xemacs.org>
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3273
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3274 * Makefile.in (distclean): Remove packages and mule-packages if they
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3275 have been linked into place.
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3276
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3277 1998-03-22 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de>
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3278
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3279 * <Today>: The Big Path Searching Overhaul.
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3280
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3281 * Makefile.in, configure.in: Now pass all configure-specified paths
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3282 into the binary in a uniform way.
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3283
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3284 1998-03-20 SL Baur <steve@altair.xemacs.org>
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3285
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3286 * configure.in (have_libmcheck): Add test for glibc's malloc
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3287 checker.
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3288 - Fix HP/UX dynamic linking flag.
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3289
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3290 1998-03-19 SL Baur <steve@altair.xemacs.org>
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3291
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3292 * configure.in (quoted_arguments): Fix unquoted variable in
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3293 error-checking test.
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3294 - fix bogus substitution.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
3295
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3296 1998-03-17 SL Baur <steve@altair.xemacs.org>
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3297
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3298 * configure.in: In -lpng test, look for png_set_strip_alpha.
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3299 Suggested by William M. Perry <wmperry@aventail.com>
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 265
diff changeset
3300
265
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3301 1998-03-16 SL Baur <steve@altair.xemacs.org>
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3302
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3303 * XEmacs 21.0 beta31 is released.
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3304
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3305 1998-03-16 P. E. Jareth Hein <jareth@camelot-soft.com>
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3306
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3307 * configure.usage (Usage): Correct information about gif, tiff
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3308 and WNN entries
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3309
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3310 1998-03-13 SL Baur <steve@altair.xemacs.org>
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3311
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3312 * configure.in: typo fix in sed command.
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3313 From P. E. Jareth Hein <jareth@camelot-soft.com>
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3314
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3315 * configure.in (all_widgets): Check for snprintf().
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3316
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3317 1998-03-11 P. E. Jareth Hein <jareth@camelot-soft.com>
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3318
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3319 * configure.in: New gif support
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3320
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3321 1998-03-10 SL Baur <steve@altair.xemacs.org>
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3322
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3323 * configure.in (have_glibc): Don't define _GNU_SOURCE for glibc.
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3324
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3325 Mon Mar 09 13:00:55 1998 Andy Piper <andyp@parallax.co.uk>
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3326
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3327 * configure.in: don't add libc to link list for dlopen ordinary
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3328 link takes care of this. check for dlfcn.h
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3329
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3330 1998-03-10 SL Baur <steve@altair.xemacs.org>
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3331
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3332 * configure.in: Examine each directory of X11 include path for
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3333 inclusion into BITMAPDIR.
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3334
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3335 1998-03-09 SL Baur <steve@altair.xemacs.org>
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3336
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3337 * aclocal.m4: Add legalese.
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3338
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3339 Mon Mar 09 13:00:55 1998 Andy Piper <andyp@parallax.co.uk>
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3340
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3341 * configure.in: make sure we have ndbm.h as well as libgdbm.a for
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3342 database support.
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3343
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3344 * configure.in: move msw checking after x checking so that
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3345 auto-detection works.
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3346
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3347 1998-03-09 SL Baur <steve@altair.xemacs.org>
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3348
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3349 * configure.in: New DLL support.
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3350 * aclocal.m4: New file.
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3351 From William M. Perry <wmperry@aventail.com>
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3352
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3353 1998-03-08 SL Baur <steve@altair.xemacs.org>
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3354
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3355 * configure.in (xemacs_betaname): Align messages for minimal
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3356 tagbits and indexed lrecords.
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3357 Suggested by Andreas Jaeger <aj@arthur.rhein-neckar.de>
8efd647ea9ca Import from CVS: tag r20-5b31
cvs
parents: 263
diff changeset
3358
263
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
3359 1998-03-07 SL Baur <steve@altair.xemacs.org>
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
3360
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
3361 * XEmacs 20.5-beta30 is released.
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
3362
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
3363 1998-03-05 SL Baur <steve@altair.xemacs.org>
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
3364
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
3365 * PROBLEMS: Update wording of x86 GCC 2.7 problems.
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
3366
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
3367 Wed Mar 04 08:55:12 1998 Andy Piper <andyp@parallax.co.uk>
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
3368
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
3369 * configure.in: add a --with-msw option. Make X and msw work
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
3370 together if the user asks.
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
3371
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
3372 1998-03-02 SL Baur <steve@altair.xemacs.org>
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
3373
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
3374 * PROBLEMS: Update documentation of gcc bugs that impact XEmacs.
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
3375
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
3376 1998-03-01 SL Baur <steve@altair.xemacs.org>
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
3377
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
3378 * configure.in: Add substitutable variable ld_dynamic_link_flags
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
3379 for special required linker flags for building DLL capable
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
3380 binaries.
727739f917cb Import from CVS: tag r20-5b30
cvs
parents: 261
diff changeset
3381
261
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
3382 1998-02-28 SL Baur <steve@altair.xemacs.org>
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
3383
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
3384 * Makefile.in (top_distclean): Remove Installation.el.
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
3385 (xemacs): New target. Formerly it was `all:'.
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
3386 (all): New default, dist: is now superfluous.
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
3387
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
3388 1998-02-27 SL Baur <steve@altair.xemacs.org>
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
3389
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
3390 * configure.in (GNU_MALLOC): add --with-dlmalloc to allow
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
3391 selective use of Doug Lea malloc in Linux C Library and GNU C Library.
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
3392 (Installation): Add XEmacs version and generate `Installation.el'.
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
3393
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
3394 1998-02-26 SL Baur <steve@altair.xemacs.org>
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
3395
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
3396 * configure.in (with_ldap: Fix -lldap autodection.
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
3397 Suggested by Oscar Figueiredo <Oscar.Figueiredo@di.epfl.ch>
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
3398 (Installation): Only keep the last configuration.
405dd6d1825b Import from CVS: tag r20-5b29
cvs
parents: 259
diff changeset
3399
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 257
diff changeset
3400 1998-02-25 SL Baur <steve@altair.xemacs.org>
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 257
diff changeset
3401
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 257
diff changeset
3402 * XEmacs 20.5-beta28 is released.
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 257
diff changeset
3403
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 257
diff changeset
3404 * configure.in (with_session): Fix reporting of the setting.
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 257
diff changeset
3405 (with_database_gnudbm): Correctly report setting.
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 257
diff changeset
3406
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 257
diff changeset
3407 1998-02-24 SL Baur <steve@altair.xemacs.org>
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 257
diff changeset
3408
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 257
diff changeset
3409 * configure.usage: Restore documentation of graphics library
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 257
diff changeset
3410 flags.
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 257
diff changeset
3411 From Karl M. Hegbloom <karlheg@bittersweet.inetarena.com>
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 257
diff changeset
3412
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 257
diff changeset
3413 1998-02-19 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com>
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 257
diff changeset
3414
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 257
diff changeset
3415 * PROBLEMS: Tell of the `gpm' SIGTSTP bug and `C-z' on the Linux
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 257
diff changeset
3416 console.
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 257
diff changeset
3417
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 257
diff changeset
3418 1998-02-23 SL Baur <steve@altair.xemacs.org>
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 257
diff changeset
3419
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 257
diff changeset
3420 * XEmacs 20.4 is released to the beta testers.
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 257
diff changeset
3421
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 257
diff changeset
3422 1998-02-21 SL Baur <steve@altair.xemacs.org>
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 257
diff changeset
3423
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
3424 * configure.in (after_morecore_hook_exists): Modify dlmalloc tests
259
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 257
diff changeset
3425 to also test for Linux libc5.
11cf20601dec Import from CVS: tag r20-5b28
cvs
parents: 257
diff changeset
3426
255
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 253
diff changeset
3427 1998-02-19 SL Baur <steve@altair.xemacs.org>
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 253
diff changeset
3428
257
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 255
diff changeset
3429 * XEmacs 20.5-beta27 is released.
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 255
diff changeset
3430 * XEmacs-20.4-pre4 is released.
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 255
diff changeset
3431
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 255
diff changeset
3432 * configure.in (doug_lea_malloc): Requires USE_MINIMAL_TAGBITS.
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 255
diff changeset
3433 (--with-gung): Implement it.
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 255
diff changeset
3434
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 255
diff changeset
3435 * configure.usage (--with-gung): Document. Turns on
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 255
diff changeset
3436 USE_MINIMAL_TAGBITS and USE_INDEXED_LRECORD_IMPLEMENTATION.
65c19d2020f7 Import from CVS: tag r20-5b27
cvs
parents: 255
diff changeset
3437 (--with-term): Remove.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
3438
255
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 253
diff changeset
3439 * XEmacs-20.5-beta26 is released.
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 253
diff changeset
3440
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 253
diff changeset
3441 1998-02-18 SL Baur <steve@altair.xemacs.org>
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 253
diff changeset
3442
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 253
diff changeset
3443 * XEmacs-20.4-pre3 is released.
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 253
diff changeset
3444
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 253
diff changeset
3445 * Makefile.in: use better feedback while rebuilding finder database.
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 253
diff changeset
3446 Suggested by Stephen J. Turnbull <turnbull@sk.tsukuba.ac.jp>
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 253
diff changeset
3447
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 253
diff changeset
3448 1998-02-15 SL Baur <steve@altair.xemacs.org>
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 253
diff changeset
3449
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 253
diff changeset
3450 * configure.in (doug_lea_malloc): Add checking for Doug Lea
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 253
diff changeset
3451 Malloc.
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 253
diff changeset
3452
253
157b30c96d03 Import from CVS: tag r20-5b25
cvs
parents: 251
diff changeset
3453 1998-02-14 SL Baur <steve@altair.xemacs.org>
157b30c96d03 Import from CVS: tag r20-5b25
cvs
parents: 251
diff changeset
3454
255
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 253
diff changeset
3455 * configure.in (OFFIX_O): Don't use OffiX if no real Xmu support.
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 253
diff changeset
3456 Suggested by Pekka Marjola <pema@iki.fi>
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 253
diff changeset
3457
084402c475ba Import from CVS: tag r20-5b26
cvs
parents: 253
diff changeset
3458 * XEmacs-20.4-pre2 is released.
253
157b30c96d03 Import from CVS: tag r20-5b25
cvs
parents: 251
diff changeset
3459 * XEmacs-20.5-beta25 is released.
157b30c96d03 Import from CVS: tag r20-5b25
cvs
parents: 251
diff changeset
3460
157b30c96d03 Import from CVS: tag r20-5b25
cvs
parents: 251
diff changeset
3461 1998-02-13 SL Baur <steve@altair.xemacs.org>
157b30c96d03 Import from CVS: tag r20-5b25
cvs
parents: 251
diff changeset
3462
157b30c96d03 Import from CVS: tag r20-5b25
cvs
parents: 251
diff changeset
3463 * INSTALL: Update for Cygwin and Microsoft Windows.
157b30c96d03 Import from CVS: tag r20-5b25
cvs
parents: 251
diff changeset
3464
157b30c96d03 Import from CVS: tag r20-5b25
cvs
parents: 251
diff changeset
3465 * README: Update for Microsoft Windows.
157b30c96d03 Import from CVS: tag r20-5b25
cvs
parents: 251
diff changeset
3466
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
3467 1998-02-09 SL Baur <steve@altair.xemacs.org>
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
3468
253
157b30c96d03 Import from CVS: tag r20-5b25
cvs
parents: 251
diff changeset
3469 * XEmacs 20.4-pre1 is released.
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
3470 * XEmacs 20.5-beta24 is released.
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
3471
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
3472 Wed Jan 28 13:41:22 1998 Andy Piper <andyp@parallax.co.uk>
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
3473
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
3474 * configure.in: add mule-coding target which defines MULE_CODING,
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
3475 nothing uses it as yet. add gif objects to msw support. define
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
3476 const_is_losing=no for msw. make msw not selected if tty selected.
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
3477 add -lshell32 for dnd support. check for a.out.h rather than
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
3478 coff.h
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
3479
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
3480 * lib-src/make-docfile.c: add cygwin support and generalise the
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
3481 remaining open calls. IMHO this should really include sysfile.h.
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 249
diff changeset
3482
249
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 247
diff changeset
3483 1998-02-03 SL Baur <steve@altair.xemacs.org>
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 247
diff changeset
3484
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 247
diff changeset
3485 * XEmacs 20.5-beta23 is released.
83b3d10dcba9 Import from CVS: tag r20-5b23
cvs
parents: 247
diff changeset
3486
247
e70b3a057e12 Import from CVS: tag r20-5b22
cvs
parents: 245
diff changeset
3487 1998-01-27 SL Baur <steve@altair.xemacs.org>
e70b3a057e12 Import from CVS: tag r20-5b22
cvs
parents: 245
diff changeset
3488
e70b3a057e12 Import from CVS: tag r20-5b22
cvs
parents: 245
diff changeset
3489 * XEmacs 20.5-beta22 is released.
e70b3a057e12 Import from CVS: tag r20-5b22
cvs
parents: 245
diff changeset
3490
245
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 243
diff changeset
3491 1998-01-25 SL Baur <steve@altair.xemacs.org>
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 243
diff changeset
3492
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 243
diff changeset
3493 * XEmacs 20.5-beta21 is released.
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 243
diff changeset
3494
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 243
diff changeset
3495 Wed Jan 21 10:49:47 1998 Andy Piper <andyp@parallax.co.uk>
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 243
diff changeset
3496
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 243
diff changeset
3497 * configure.in: check for coff.h
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 243
diff changeset
3498
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 243
diff changeset
3499 1998-01-21 Hrvoje Niksic <hniksic@srce.hr>
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 243
diff changeset
3500
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 243
diff changeset
3501 * configure.in: Added support for `--with-shlib'.
51092a27c943 Import from CVS: tag r20-5b21
cvs
parents: 243
diff changeset
3502
243
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
3503 1998-01-18 SL Baur <steve@altair.xemacs.org>
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
3504
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
3505 * XEmacs 20.5-beta20 is released.
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
3506
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
3507 1998-01-13 Martin Buchholz <martin@xemacs.org>
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
3508
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
3509 * configure.usage:
243
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
3510 Remove doc for configure-time INFOPATH, no longer used.
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
3511
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
3512 * configure.in:
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
3513 * src/config.h.in:
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
3514 Define HAVE_INVERSE_HYPERBOLIC using 1 configure test, not 3.
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
3515
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
3516 * lwlib/lwlib.h:
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
3517 * lwlib/lwlib.c:
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
3518 * lwlib/lwlib-config.c:
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
3519 * lwlib/lwlib-Xm.c:
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
3520 * lwlib/lwlib-Xaw.c:
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
3521 * lwlib/lwlib-Xlw.c:
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
3522 * lwlib/config.h.in:
243
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
3523 * src/menubar-x.c:
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
3524 Prepend LWLIB_ to (SCROLLBARS|MENUBARS|DIALOGS)_(MOTIF|LUCID|ATHENA).
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
3525 Maintain only one set of variables.
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
3526
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
3527 * Makefile.in (install-arch-dep): Simplify.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
3528 Replace construct `test -d $dir && foo' with
243
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
3529 `if test -d $dir; then foo; fi'
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
3530
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
3531 * lwlib/xlwmenu.c:
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
3532 * lwlib/xlwscrollbar.c:
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
3533 * lwlib/lwlib-Xlw.c:
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
3534 * lwlib/lwlib-Xm.c:
243
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
3535 Always assume presence of limits.h (ANSI).
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
3536
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 239
diff changeset
3537 1998-01-12 SL Baur <steve@altair.xemacs.org>
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 239
diff changeset
3538
243
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
3539 * INSTALL: Updated for recent Mule/package changes.
f220cc83d72e Import from CVS: tag r20-5b20
cvs
parents: 241
diff changeset
3540
241
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 239
diff changeset
3541 * XEmacs 20.5-beta19 is released.
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 239
diff changeset
3542
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 239
diff changeset
3543 1998-01-12 Damon Lipparelli <lipp@primus.com>
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 239
diff changeset
3544
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 239
diff changeset
3545 * Makefile.in: Yow! Fixed paths to install dirs when --prefix !=
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 239
diff changeset
3546 --exec-prefix.
f955c73f5258 Import from CVS: tag r20-5b19
cvs
parents: 239
diff changeset
3547
239
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 237
diff changeset
3548 1998-01-10 SL Baur <steve@altair.xemacs.org>
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 237
diff changeset
3549
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 237
diff changeset
3550 * XEmacs 20.5-beta18 is released.
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 237
diff changeset
3551
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3552 1998-01-08 Didier Verna <didier@xemacs.org>
239
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 237
diff changeset
3553
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 237
diff changeset
3554 * configure.in: Get rid of INFOPATH for configure time.
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 237
diff changeset
3555 * configure.usage (Usage): Ditto.
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 237
diff changeset
3556
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 237
diff changeset
3557 1998-01-09 SL Baur <steve@altair.xemacs.org>
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 237
diff changeset
3558
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 237
diff changeset
3559 * Makefine.in: Correct reported amount of disk savings from
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 237
diff changeset
3560 compression.
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 237
diff changeset
3561 From Markus Linnala <maage@cs.tut.fi>
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 237
diff changeset
3562
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 237
diff changeset
3563 Thu Jan 08 09:42:36 1998 <andyp@parallax.co.uk>
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 237
diff changeset
3564
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 237
diff changeset
3565 * configure.in: detect and set scrollbars and menubars with
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 237
diff changeset
3566 MS-Windows more appropriately. Check for sys/un.h to use in
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 237
diff changeset
3567 gnuserv.
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 237
diff changeset
3568
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 237
diff changeset
3569 1998-01-07 SL Baur <steve@altair.xemacs.org>
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 237
diff changeset
3570
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 237
diff changeset
3571 * Makefile.in (progname): Cleanly parameterize XEmacs-specific
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 237
diff changeset
3572 naming.
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 237
diff changeset
3573
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 237
diff changeset
3574 1998-01-05 Glynn Clements <glynn@sensei.co.uk>
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 237
diff changeset
3575
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 237
diff changeset
3576 * lwlib/xlwmenu.c (push_button_draw): use inactive_gc instead of
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 237
diff changeset
3577 inactive_button_gc for menu entries.
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 237
diff changeset
3578 (remap_menubar): ignore the enabled status
41f2f0e326e9 Import from CVS: tag r20-5b18
cvs
parents: 237
diff changeset
3579
237
89ec2bb86eea Import from CVS: tag r20-5b17
cvs
parents: 235
diff changeset
3580 1998-01-04 SL Baur <steve@altair.xemacs.org>
89ec2bb86eea Import from CVS: tag r20-5b17
cvs
parents: 235
diff changeset
3581
89ec2bb86eea Import from CVS: tag r20-5b17
cvs
parents: 235
diff changeset
3582 * XEmacs 20.5-beta17 is released.
89ec2bb86eea Import from CVS: tag r20-5b17
cvs
parents: 235
diff changeset
3583
89ec2bb86eea Import from CVS: tag r20-5b17
cvs
parents: 235
diff changeset
3584 * Makefile.in (finder): Use -vanilla.
89ec2bb86eea Import from CVS: tag r20-5b17
cvs
parents: 235
diff changeset
3585 (lisp/finder-inf.el): Ditto.
89ec2bb86eea Import from CVS: tag r20-5b17
cvs
parents: 235
diff changeset
3586 (check-features): New target. Do a sanity check prior to
89ec2bb86eea Import from CVS: tag r20-5b17
cvs
parents: 235
diff changeset
3587 installation.
89ec2bb86eea Import from CVS: tag r20-5b17
cvs
parents: 235
diff changeset
3588
235
85a06df23a9a Import from CVS: tag r20-5b16
cvs
parents: 233
diff changeset
3589 1997-01-03 SL Baur <steve@altair.xemacs.org>
85a06df23a9a Import from CVS: tag r20-5b16
cvs
parents: 233
diff changeset
3590
85a06df23a9a Import from CVS: tag r20-5b16
cvs
parents: 233
diff changeset
3591 * XEmacs 20.5-beta16 is released.
85a06df23a9a Import from CVS: tag r20-5b16
cvs
parents: 233
diff changeset
3592
233
52952cbfc5b5 Import from CVS: tag r20-5b15
cvs
parents: 231
diff changeset
3593 1997-12-30 SL Baur <steve@altair.xemacs.org>
52952cbfc5b5 Import from CVS: tag r20-5b15
cvs
parents: 231
diff changeset
3594
52952cbfc5b5 Import from CVS: tag r20-5b15
cvs
parents: 231
diff changeset
3595 * XEmacs 20.5-beta15 is released.
52952cbfc5b5 Import from CVS: tag r20-5b15
cvs
parents: 231
diff changeset
3596
52952cbfc5b5 Import from CVS: tag r20-5b15
cvs
parents: 231
diff changeset
3597 1997-12-29 SL Baur <steve@altair.xemacs.org>
52952cbfc5b5 Import from CVS: tag r20-5b15
cvs
parents: 231
diff changeset
3598
52952cbfc5b5 Import from CVS: tag r20-5b15
cvs
parents: 231
diff changeset
3599 * Makefile.in (${SUBDIR}): Remove bogus .RECURSIVE dependency.
52952cbfc5b5 Import from CVS: tag r20-5b15
cvs
parents: 231
diff changeset
3600
231
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents: 229
diff changeset
3601 1997-12-27 SL Baur <steve@altair.xemacs.org>
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents: 229
diff changeset
3602
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents: 229
diff changeset
3603 * XEmacs 20.5-beta14 is released.
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents: 229
diff changeset
3604
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents: 229
diff changeset
3605 1997-12-23 Andy Piper <andyp@parallax.co.uk>
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents: 229
diff changeset
3606
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents: 229
diff changeset
3607 * configure.in: support for *-pc-cygwin32 config
557eaa0339bf Import from CVS: tag r20-5b14
cvs
parents: 229
diff changeset
3608
229
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 227
diff changeset
3609 1997-12-25 SL Baur <steve@altair.xemacs.org>
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 227
diff changeset
3610
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 227
diff changeset
3611 * XEmacs 20.5-beta13 is released.
434959a2fba3 Import from CVS: tag r20-5b13
cvs
parents: 227
diff changeset
3612
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 225
diff changeset
3613 1997-12-20 SL Baur <steve@altair.xemacs.org>
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 225
diff changeset
3614
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 225
diff changeset
3615 * XEmacs 20.5-beta 12 is released.
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 225
diff changeset
3616
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 225
diff changeset
3617 1997-12-19 SL Baur <steve@altair.xemacs.org>
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 225
diff changeset
3618
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
3619 * configure.in (bitmapdir): Reenable --with-session by default for
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 225
diff changeset
3620 testing.
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 225
diff changeset
3621
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 225
diff changeset
3622 1997-12-17 SL Baur <steve@altair.xemacs.org>
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 225
diff changeset
3623
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 225
diff changeset
3624 * info/dir (File): Skk and Gnats are packaged.
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 225
diff changeset
3625
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 225
diff changeset
3626 * PROBLEMS (Note): Update version numbers.
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 225
diff changeset
3627
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 225
diff changeset
3628 * info/dir (File): Update version number.
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 225
diff changeset
3629
225
12579d965149 Import from CVS: tag r20-4b11
cvs
parents: 223
diff changeset
3630 1997-12-16 SL Baur <steve@altair.xemacs.org>
12579d965149 Import from CVS: tag r20-4b11
cvs
parents: 223
diff changeset
3631
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 225
diff changeset
3632 * XEmacs 20.5-beta11 is released.
225
12579d965149 Import from CVS: tag r20-4b11
cvs
parents: 223
diff changeset
3633
12579d965149 Import from CVS: tag r20-4b11
cvs
parents: 223
diff changeset
3634 1997-12-14 SL Baur <steve@altair.xemacs.org>
12579d965149 Import from CVS: tag r20-4b11
cvs
parents: 223
diff changeset
3635
12579d965149 Import from CVS: tag r20-4b11
cvs
parents: 223
diff changeset
3636 * configure.in: Don't bypass graphics library detection
12579d965149 Import from CVS: tag r20-4b11
cvs
parents: 223
diff changeset
3637 if the `--with-imagick' option is given to configure.
12579d965149 Import from CVS: tag r20-4b11
cvs
parents: 223
diff changeset
3638 : Print autodetected graphics libraries to be linked with Imagick.
12579d965149 Import from CVS: tag r20-4b11
cvs
parents: 223
diff changeset
3639
12579d965149 Import from CVS: tag r20-4b11
cvs
parents: 223
diff changeset
3640 * Makefile.in (lisp/finder-inf.el): Reverse previous change.
12579d965149 Import from CVS: tag r20-4b11
cvs
parents: 223
diff changeset
3641
12579d965149 Import from CVS: tag r20-4b11
cvs
parents: 223
diff changeset
3642 1997-12-14 Olivier Galibert <olivier.galibert@mines.u-nancy.fr>
12579d965149 Import from CVS: tag r20-4b11
cvs
parents: 223
diff changeset
3643
12579d965149 Import from CVS: tag r20-4b11
cvs
parents: 223
diff changeset
3644 * Makefile.in (install-arch-indep): Build info files if needed.
12579d965149 Import from CVS: tag r20-4b11
cvs
parents: 223
diff changeset
3645
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 221
diff changeset
3646 1997-12-13 SL Baur <steve@altair.xemacs.org>
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 221
diff changeset
3647
225
12579d965149 Import from CVS: tag r20-4b11
cvs
parents: 223
diff changeset
3648 * Makefile.in (lisp/finder-inf.el): Add dependency on src/.
12579d965149 Import from CVS: tag r20-4b11
cvs
parents: 223
diff changeset
3649
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 225
diff changeset
3650 * XEmacs 20.5-beta10 is released.
223
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 221
diff changeset
3651
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 221
diff changeset
3652 1997-12-12 SL Baur <steve@altair.xemacs.org>
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 221
diff changeset
3653
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 221
diff changeset
3654 * configure.in (CPP): Don't add special CFLAGS for ix86/Linux.
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 221
diff changeset
3655
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 221
diff changeset
3656 1997-12-10 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com>
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 221
diff changeset
3657
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 221
diff changeset
3658 * configure.in (autodetect ImageMagick): also look for
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 221
diff changeset
3659 "X11/magick/magick.h", and if present, define
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 221
diff changeset
3660 MAGICK_HEADERS_ARE_UNDER_X11
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 221
diff changeset
3661
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 221
diff changeset
3662 1997-12-11 SL Baur <steve@altair.xemacs.org>
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 221
diff changeset
3663
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 221
diff changeset
3664 * configure.in (imagick_libs): Add autodetection for freetype
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 221
diff changeset
3665 -lttf library.
2c611d1463a6 Import from CVS: tag r20-4b10
cvs
parents: 221
diff changeset
3666
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
3667 1997-12-09 SL Baur <steve@altair.xemacs.org>
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
3668
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 225
diff changeset
3669 * XEmacs 20.5-beta9 is released.
221
6c0ae1f9357f Import from CVS: tag r20-4b9
cvs
parents: 219
diff changeset
3670
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3671 1997-12-06 SL Baur <steve@altair.xemacs.org>
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3672
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 225
diff changeset
3673 * XEmacs 20.5-beta8 is released.
219
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3674
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3675 * info/dir: update for further packaging.
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3676 * configure.in: remove `tree-x' from XEmacs build.
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3677
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3678 1997-11-29 Jeff Miller <jmiller@smart.net>
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3679
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3680 * configure.in: motif menubars need xlwmenu.o
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3681
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3682 * updated files in src/ to allow an XEmacs configured for
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3683 motif menubars to at least compile. Motif menubars are still
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3684 very broken.
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3685
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3686 1997-12-02 P E Jareth Hein <jareth@camelot-soft.com>
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3687
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3688 * lwlib/xlwscrollbar.c: fixed colormap/visual handling to work
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3689 properly with the information in the core.
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3690
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3691 * lwlib/xlwmenu.c: fixed colormap/visual handling to work properly with
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3692 the information in the core, and fixed a potental problem with
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3693 parentage.
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3694
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3695 1997-12-01 SL Baur <steve@altair.xemacs.org>
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3696
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3697 * configure.in (with_session): Properly display flag in configure
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3698 status report.
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3699
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3700 1997-11-29 SL Baur <steve@altair.xemacs.org>
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3701
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3702 * configure.usage: Remove documentation of obsolete option
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3703 --with-gif.
262b8bb4a523 Import from CVS: tag r20-4b8
cvs
parents: 217
diff changeset
3704
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3705 1997-11-27 SL Baur <steve@altair.xemacs.org>
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3706
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 225
diff changeset
3707 * XEmacs 20.5-beta7 is released.
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3708
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3709 * configure.in: When testing for -ltiff, fall back on the extra
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3710 libraries -ljpeg, and -lz since some -ltiff's need them.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3711
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3712 1997-11-26 SL Baur <steve@altair.xemacs.org>
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3713
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3714 * lwlib/xlwmenu.c (display_menu): Defer incremental menus properly.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3715 From Glynn Clements <glynn@sensei.co.uk>
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3716
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3717 1997-11-25 Kazuyuki IENAGA <ienaga@jsys.co.jp>
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3718
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3719 * configure.in: Improve auto detect of libraries ImageMagick rely
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3720 on.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3721
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3722 1997-11-23 Jeff Miller <jmiller@smart.net>
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3723
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3724 * Energize is dead. Removed ENERGIZE ifdef's from code in lwlib
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3725 and src. Configure.in modified. --with-energize is no longer a
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3726 valid configure option.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3727
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3728 * lwlib/Makefile.in.in removed energize support
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3729 * lwlib/lwlib-Xm.c removed energize support
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3730 * lwlib/lwlib-config.c removed energize support
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3731
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3732 * lwlib/energize/* removed
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3733
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3734 1997-11-23 SL Baur <steve@altair.xemacs.org>
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3735
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3736 * Makefile.in: Change references of lisp/utils/finder-inf.el to
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3737 lisp/finder-inf.el.
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3738
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3739 1997-11-20 SL Baur <steve@altair.xemacs.org>
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3740
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 225
diff changeset
3741 * XEmacs 20.5-beta6 is released.
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3742
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3743 1997-11-21 Stephen Turnbull <turnbull@sk.tsukuba.ac.jp>
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3744
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3745 * configure.usage: Use `--' convention in "usage:" line.
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3746
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3747 1997-11-20 Stephen Turnbull <turnbull@sk.tsukuba.ac.jp>
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3748
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3749 * configure.in: added `with_xfs' to list of boolean features.
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3750
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3751 1997-11-20 SL Baur <steve@altair.xemacs.org>
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3752
217
d44af0c54775 Import from CVS: tag r20-4b7
cvs
parents: 215
diff changeset
3753 * XEmacs 20.3 is released for binary kit building.
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3754
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3755 1997-11-19 Tor Arntsen <tor@spacetec.no>
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3756
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3757 * PROBLEMS: Removed IRIX entry about xemacs core dumps when using
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3758 xemacs dumped on one machine on another. Problem was fixed by 20.3.
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3759
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3760 1997-11-18 SL Baur <steve@altair.xemacs.org>
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3761
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3762 * configure.usage: New file.
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3763
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3764 * configure.in: Use it instead of monster 10k shell variable.
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3765
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3766 1997-11-17 SL Baur <steve@altair.xemacs.org>
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3767
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3768 * XEmacs 20.3-pre4 is released.
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3769
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3770 1997-11-17 Jens-Ulrik Holger Petersen <petersen@kurims.kyoto-u.ac.jp>
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3771
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3772 * configure.in (infopath): List "/usr/local/" dirs before "/usr/"
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3773 dirs.
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3774
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3775 1997-11-17 SL Baur <steve@altair.xemacs.org>
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3776
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3777 * configure.in: Initialize infodir off of datadir.
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3778
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3779 * Makefile.in: Force LANG = C for building.
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3780
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3781 1997-11-15 SL Baur <steve@altair.xemacs.org>
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3782
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3783 * XEmacs 20.3-pre3 is released.
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 225
diff changeset
3784 * XEmacs 20.5-beta5 is released.
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3785
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents: 211
diff changeset
3786 1997-11-13 Marc Paquette <marcpa@cam.org>
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents: 211
diff changeset
3787
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents: 211
diff changeset
3788 * nt/Todo: added a task for support of lisp packages through
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents: 211
diff changeset
3789 the registry.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents: 211
diff changeset
3790
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents: 211
diff changeset
3791 1997-11-13 Jonathan Harris <jhar@tardis.ed.ac.uk>
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents: 211
diff changeset
3792
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents: 211
diff changeset
3793 * Renamed files *w32* to *msw*
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents: 211
diff changeset
3794
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents: 211
diff changeset
3795 * Changed 'w32' and 'win32' to 'mswindows', and HAVE_W32GUI to
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents: 211
diff changeset
3796 HAVE_MS_WINDOWS. Changed files:
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents: 211
diff changeset
3797 cus-edit.el, device.el, faces.el, frame.el, msw-faces.el,
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents: 211
diff changeset
3798 msw.init.el, igrep.el, dumped-lisp.el, font.el, hippie-exp.el,
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents: 211
diff changeset
3799 sysdep.el, console-msw.c, console-msw.h, console.c,
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents: 211
diff changeset
3800 device-msw.c, emacs.c, event-msw.c, event-msw.h, event-stream.c,
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents: 211
diff changeset
3801 events.c, events.h, faces.c, frame-msw.c, frame.c, general.c,
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents: 211
diff changeset
3802 msw-proc.c, objects-msw.c, objects-msw.h, redisplay-msw.c,
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
3803 redisplay.c, symsinit.h,
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents: 211
diff changeset
3804
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents: 211
diff changeset
3805 * Didn't change 'win32' in nt.c, nt.h, ntproc.c
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents: 211
diff changeset
3806
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents: 211
diff changeset
3807 * Deleted w32 build directory since nt build directory now handles
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents: 211
diff changeset
3808 X and native mswindows builds.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents: 211
diff changeset
3809
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3810 1997-11-11 SL Baur <steve@altair.xemacs.org>
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3811
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 225
diff changeset
3812 * XEmacs 20.5-beta4 is released.
215
1f0dabaa0855 Import from CVS: tag r20-4b6
cvs
parents: 213
diff changeset
3813
211
78478c60bfcd Import from CVS: tag r20-4b4
cvs
parents: 209
diff changeset
3814 1997-11-10 SL Baur <steve@altair.xemacs.org>
78478c60bfcd Import from CVS: tag r20-4b4
cvs
parents: 209
diff changeset
3815
78478c60bfcd Import from CVS: tag r20-4b4
cvs
parents: 209
diff changeset
3816 * info/dir: remove packaged entries.
78478c60bfcd Import from CVS: tag r20-4b4
cvs
parents: 209
diff changeset
3817 From Glynn Clements <glynn@sensei.co.uk>
78478c60bfcd Import from CVS: tag r20-4b4
cvs
parents: 209
diff changeset
3818
78478c60bfcd Import from CVS: tag r20-4b4
cvs
parents: 209
diff changeset
3819 * configure.in: Puke and die if NAS sound is selected without X.
78478c60bfcd Import from CVS: tag r20-4b4
cvs
parents: 209
diff changeset
3820
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3821 1997-11-08 SL Baur <steve@altair.xemacs.org>
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3822
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 225
diff changeset
3823 * XEmacs 20.5-beta3 is released.
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3824 * XEmacs 20.3-pre2 is released.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3825
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3826 Wed November 05 23:40:00 1997 <jhar@tardis.ed.ac.uk>
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3827
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3828 * w32/xemacs.mak: moved building the DOC file to after the .elcs.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3829
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3830 Sun November 01 12:00:00 1997 <jhar@tardis.ed.ac.uk>
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3831
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3832 * Files split from nt to new w32 directory:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3833 ChangeLog, README, Todo, paths.h, config.h, inc/*, runemacs.c,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3834 xemacs.mak.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3835
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
3836 1997-11-05 Didier Verna <didier@xemacs.org>
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3837
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3838 * configure.in: Added the --site-prefixes options for the configure
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
3839 script. You give a colon or space separated list of prefixes, and
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3840 subdirectories include/ and lib/ will be added with -I and -L.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3841
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3842 1997-11-05 Martin Buchholz <Martin Buchholz <martin@xemacs.org>>
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3843
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3844 * configure.in: AIX + gcc fixes.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3845 - Don't wrap -B. aixflags changed to start_flags.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3846
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3847 1997-11-04 SL Baur <steve@altair.xemacs.org>
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3848
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3849 * lwlib/lwlib-Xm.c(update_one_menu_entry): Add missing variable.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3850 From Skip Montanaro <skip@calendar.com>
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3851
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3852 1997-11-03 MORIOKA Tomohiko <morioka@jaist.ac.jp>
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3853
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3854 * Delete etc/TUTORIAL.th because Thai is not supported yet.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3855
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3856 1997-11-02 Kyle Jones <kyle_jones@wonderworks.com>
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3857
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3858 * lwlib/lwlib-Xaw.c (xaw_pop_instance): Don't use parent
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3859 window's coordinates and dimensions to center the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3860 dialog box unless its mapped_when_managed property is
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3861 true. This should avoid the top level widget that the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3862 HAVE_SESSION code creates, which is unmapped and
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3863 useless for this purpose.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3864
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3865 1997-11-01 SL Baur <steve@altair.xemacs.org>
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3866
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3867 * XEmacs 20.3-pre1 is released.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3868
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3869 1997-10-31 SL Baur <steve@altair.xemacs.org>
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3870
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3871 * XEmacs 19.16 is released.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3872
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3873 1997-10-31 SL Baur <steve@altair.xemacs.org>
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents: 207
diff changeset
3874
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 225
diff changeset
3875 * XEmacs 20.5-beta2 is released.
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3876
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3877 1997-10-30 SL Baur <steve@altair.xemacs.org>
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3878
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3879 * configure.in (xetest): Eliminate tests for PNG, JPEG,
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3880 TIFF(broken) and replace with test for ImageMagick.
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3881
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3882 1997-10-30 Kyle Jones <kyle_jones@wonderworks.com>
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
3883
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3884 * lwlib/xlwmenu.h: Added string macro declarations for
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3885 titleForeground and highlightForeground properties.
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3886
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3887 * lwlib/xlwmenuP.h: Added struct fields for title and
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3888 highlight colors.
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3889
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3890 * lwlib/xlwmenu.c: Added initialization and usage code
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3891 for the new titleForeground and highlightForeground
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3892 properties.
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3893
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3894 1997-10-28 SL Baur <steve@altair.xemacs.org>
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3895
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3896 * XEmacs 20.3-beta94 is released.
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3897
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3898 1997-10-28 Andreas Jaeger <aj@arthur.rhein-neckar.de>
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3899
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3900 * configure.in: Correct last patch for berkdb.
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3901
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3902 1997-10-28 SL Baur <steve@altair.xemacs.org>
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3903
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3904 * XEmacs 20.3-beta93 is released.
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3905
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3906 1997-10-27 Martin Buchholz <mrb@eng.sun.com>
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3907
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3908 * lib-src/make-path.c:
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3909 * lib-src/digest-doc.c:
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3910 * lib-src/gnuslib.c: Always include config.h before system headers
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3911 * configure.in: Improve AIX configure support
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3912 - NON_GNU_CC defaults to `xlc'
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
3913 - CFLAGS defaults to "-O3 -qstrict -qlibansi -qinfo -qro
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3914 -qmaxmem=20000"
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3915 - check for sin instead of sqrt in -lm to avoid xlc internal error
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3916 - Detect -li18n for use with Motif
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3917 - Move weird AIX static linking flags from s&m files to configure.in
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3918 - use #pragma instead of -ma flag to avoid compiler warnings
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3919
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3920 1997-10-25 Kyle Jones <kyle_jones@wonderworks.com>
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3921
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3922 * lwlib/xlwmenu.c: Use XtRDimension in place of
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3923 XmRHorizontalDimension in shadowThickness resource
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3924 declaration.
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3925
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3926 * lwlib/xlwmenu.c (label_button_draw): Use the button_gc
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3927 color as the foreground for selected entries.
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3928
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3929 * lwlib/xlwmenu.c (push_button_draw): Use the button_gc
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3930 color as the foreground for selected entries.
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3931
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3932 * lwlib/xlwmenu.c (toggle_decoration_height): Force
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3933 height to be minimum of 2x the shadow thickness.
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3934
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3935 1997-10-24 Andreas Jaeger <aj@arthur.rhein-neckar.de>
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3936
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3937 * configure.in: Don't choke on Berkeley DB 2.x.
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3938
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3939 1997-10-24 SL Baur <steve@altair.xemacs.org>
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3940
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3941 * XEmacs 20.3-beta92 is released.
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3942
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3943 1997-10-21 SL Baur <steve@altair.xemacs.org>
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3944
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3945 * Makefile.in (lisp/utils/finder-inf.el): Don't force rebuild if
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3946 it already exists (use `make finder' to force rebuild).
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3947
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3948 1997-10-18 SL Baur <steve@altair.xemacs.org>
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3949
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
3950 * XEmacs 20.3-beta91 is released.
207
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3951
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3952 1997-10-15 Olivier Galibert <olivier.galibert@mines.u-nancy.fr>
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3953
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3954 * configure.in: Removed -Olimit=2000 from cc for IRIX.
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3955
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3956 1997-10-12 Karl M. Hegbloom <karlheg@inetarena.com>
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3957
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3958 * configure.in (null_string): Added AC_SUBST(infodir_user_defined)
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3959 and removed backquoted echo statement from the infopath report line.
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3960
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3961 1997-10-15 Olivier Galibert <olivier.galibert@mines.u-nancy.fr>
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3962
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3963 * configure.in: Added detection of the declaration of the timezone
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3964 variable in system files. Defines HAVE_TIMEZONE_DECL if yes.
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3965
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3966
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3967 1997-10-15 Olivier Galibert <olivier.galibert@mines.u-nancy.fr>
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3968
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3969 * config.h.in: Add HAVE_TIMEZONE_DECL for detection of declaration
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3970 of the timezone variable in system headers.
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3971
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3972 * systime.h: Use HAVE_TIMEZONE_DECL.
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3973
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3974 1997-10-14 SL Baur <steve@altair.xemacs.org>
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3975
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3976 * configure.in (all_widgets): Don't allow configuration of
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3977 --with-mule if Mule lisp hasn't been installed.
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3978
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3979 1997-10-13 SL Baur <steve@altair.xemacs.org>
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3980
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3981 * configure.in: Remove `site-lisp' from list of directories to
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3982 make symbolic links for.
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3983
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3984 * XEmacs 20.3-beta90 is released.
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3985
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3986 1997-10-12 Glynn Clements <glynn@sensei.co.uk>
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3987
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3988 * info/dir: Cosmetic changes to info/dir
e45d5e7c476e Import from CVS: tag r20-4b2
cvs
parents: 205
diff changeset
3989
205
92f8ad5d0d3f Import from CVS: tag r20-4b1
cvs
parents: 203
diff changeset
3990 1997-10-12 SL Baur <steve@altair.xemacs.org>
92f8ad5d0d3f Import from CVS: tag r20-4b1
cvs
parents: 203
diff changeset
3991
227
0e522484dd2a Import from CVS: tag r20-5b12
cvs
parents: 225
diff changeset
3992 * XEmacs 20.5-beta1 is released.
205
92f8ad5d0d3f Import from CVS: tag r20-4b1
cvs
parents: 203
diff changeset
3993
92f8ad5d0d3f Import from CVS: tag r20-4b1
cvs
parents: 203
diff changeset
3994 * XEmacs 19.16-pre9 is released.
92f8ad5d0d3f Import from CVS: tag r20-4b1
cvs
parents: 203
diff changeset
3995
92f8ad5d0d3f Import from CVS: tag r20-4b1
cvs
parents: 203
diff changeset
3996 * XEmacs 19.16-pre8 is released.
92f8ad5d0d3f Import from CVS: tag r20-4b1
cvs
parents: 203
diff changeset
3997
203
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
3998 1997-10-11 SL Baur <steve@altair.xemacs.org>
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
3999
205
92f8ad5d0d3f Import from CVS: tag r20-4b1
cvs
parents: 203
diff changeset
4000 * XEmacs 20.3-beta28 is released.
92f8ad5d0d3f Import from CVS: tag r20-4b1
cvs
parents: 203
diff changeset
4001
203
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4002 * Makefile.in (src/paths.h): Update PATH_INFOPATH
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4003 (infopath): New shell variable.
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4004 (infopath_user_defined): Ditto.
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4005
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4006 * configure.in (infodir_user_defined): Spelling fixes.
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4007
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4008 1997-10-10 Karl M. Hegbloom <karlheg@inetarena.com>
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4009
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4010 * configure.in: added options and option help docs for infopath
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4011 and lockdir
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4012 * '' added a line to the report for infopath and lockdir
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4013
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4014 1997-10-10 Karl M. Hegbloom <karlheg@inetarena.com>
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4015
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4016 * Makefile.in.in (INFOPATH): Added variable and put it into
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4017 DUMPENV.
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4018
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4019 1997-10-11 SL Baur <steve@altair.xemacs.org>
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4020
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4021 * packages/info/localdir: New directory and file.
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4022
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4023 * packages/README: New directory & file.
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4024
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4025 1997-10-10 Martin Buchholz <mrb@eng.sun.com>
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4026
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4027 * Makefile.in: Add `make configure' target
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4028
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4029 1997-10-07 SL Baur <steve@altair.xemacs.org>
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4030
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4031 * XEmacs 19.16-pre7 is released.
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4032
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4033 1997-10-05 Damon Lipparelli <lipp@aa.net>
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4034
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4035 * Makefile.in (install-arch-dep, install-arch-indep): Move the
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4036 commands for symlink'ing the system-independent bits into the
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4037 system-dependent directory structure from "install-arch-indep" to
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4038 "install-arch-dep".
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4039
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4040 1997-10-06 Jens-Ulrik Holger Petersen <petersen@kurims.kyoto-u.ac.jp>
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4041
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4042 * Makefile.in (blddir): variable from "configure".
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4043 (finder): use it.
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4044
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4045 1997-10-05 SL Baur <steve@altair.xemacs.org>
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4046
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4047 * Makefile.in (GENERATED_LISP): New variable.
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4048 (all): Force dependency on finder-inf.el.
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4049 (lisp/utils/finder-inf.el): new rule.
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4050
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4051 1997-10-04 SL Baur <steve@altair.xemacs.org>
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4052
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4053 * XEmacs 19.16-pre6 is released.
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 201
diff changeset
4054
201
eb5470882647 Import from CVS: tag r20-3b27
cvs
parents: 199
diff changeset
4055 1997-10-04 SL Baur <steve@altair.xemacs.org>
eb5470882647 Import from CVS: tag r20-3b27
cvs
parents: 199
diff changeset
4056
eb5470882647 Import from CVS: tag r20-3b27
cvs
parents: 199
diff changeset
4057 * XEmacs 20.3-beta27 is released.
eb5470882647 Import from CVS: tag r20-3b27
cvs
parents: 199
diff changeset
4058
eb5470882647 Import from CVS: tag r20-3b27
cvs
parents: 199
diff changeset
4059 1997-10-03 Damon Lipparelli <lipp@primus.com>
eb5470882647 Import from CVS: tag r20-3b27
cvs
parents: 199
diff changeset
4060
eb5470882647 Import from CVS: tag r20-3b27
cvs
parents: 199
diff changeset
4061 * Makefile.in (install-arch-indep): When --prefix !=
eb5470882647 Import from CVS: tag r20-3b27
cvs
parents: 199
diff changeset
4062 --exec-prefix, symlink the system-independent bits into the
eb5470882647 Import from CVS: tag r20-3b27
cvs
parents: 199
diff changeset
4063 system-dependent directory structure (rather than the other way
eb5470882647 Import from CVS: tag r20-3b27
cvs
parents: 199
diff changeset
4064 around).
eb5470882647 Import from CVS: tag r20-3b27
cvs
parents: 199
diff changeset
4065
eb5470882647 Import from CVS: tag r20-3b27
cvs
parents: 199
diff changeset
4066 1997-10-03 Martin Buchholz <mrb@eng.sun.com>
eb5470882647 Import from CVS: tag r20-3b27
cvs
parents: 199
diff changeset
4067
eb5470882647 Import from CVS: tag r20-3b27
cvs
parents: 199
diff changeset
4068 * lib-src/etags.c: etags 12.28 + prototypization
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4069 * INSTALL: Better document --site-runtime-libraries
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4070 * src/scrollbar-x.c (x_update_scrollbar_instance_status):
201
eb5470882647 Import from CVS: tag r20-3b27
cvs
parents: 199
diff changeset
4071 FIX: M-x scroll-left; horizontal scrollbar appears; drag it
eb5470882647 Import from CVS: tag r20-3b27
cvs
parents: 199
diff changeset
4072 left; scrollbar disappears; keyboard inoperative.
eb5470882647 Import from CVS: tag r20-3b27
cvs
parents: 199
diff changeset
4073 * configure.in: Remove left-over references to *_switch_x_*
eb5470882647 Import from CVS: tag r20-3b27
cvs
parents: 199
diff changeset
4074 - NAS libaudio is part of $libs_x, not $LIBS
eb5470882647 Import from CVS: tag r20-3b27
cvs
parents: 199
diff changeset
4075
199
169c0442b401 Import from CVS: tag r20-3b26
cvs
parents: 197
diff changeset
4076 1997-10-02 SL Baur <steve@altair.xemacs.org>
169c0442b401 Import from CVS: tag r20-3b26
cvs
parents: 197
diff changeset
4077
169c0442b401 Import from CVS: tag r20-3b26
cvs
parents: 197
diff changeset
4078 * XEmacs 20.3-beta26 is released.
169c0442b401 Import from CVS: tag r20-3b26
cvs
parents: 197
diff changeset
4079
197
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 195
diff changeset
4080 1997-09-30 SL Baur <steve@altair.xemacs.org>
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 195
diff changeset
4081
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 195
diff changeset
4082 * XEmacs 20.3-beta25 is released.
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 195
diff changeset
4083
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 195
diff changeset
4084 * Makefile.in (install-arch-dep): Install the `Installation' for
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 195
diff changeset
4085 future reference.
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 195
diff changeset
4086
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 195
diff changeset
4087 * Makefile.in (top_distclean): Remove finder-inf.el*.
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 195
diff changeset
4088
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 195
diff changeset
4089 * configure.in (use_union_type): Default to "yes".
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 195
diff changeset
4090
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 195
diff changeset
4091 1997-09-29 Martin Buchholz <mrb@eng.sun.com>
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 195
diff changeset
4092
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 195
diff changeset
4093 * configure.in: Add tiff autodetection
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 195
diff changeset
4094
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 195
diff changeset
4095 1997-09-29 SL Baur <steve@altair.xemacs.org>
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 195
diff changeset
4096
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 195
diff changeset
4097 * lwlib/xlwmenu.c: Add bounds checking.
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 195
diff changeset
4098 Check error return on XmStringGetLtoR.
acd284d43ca1 Import from CVS: tag r20-3b25
cvs
parents: 195
diff changeset
4099
195
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 193
diff changeset
4100 1997-09-27 SL Baur <steve@altair.xemacs.org>
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 193
diff changeset
4101
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 193
diff changeset
4102 * XEmacs 20.3-beta24 is released.
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 193
diff changeset
4103
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 193
diff changeset
4104 1997-09-27 Hrvoje Niksic <hniksic@srce.hr>
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 193
diff changeset
4105
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 193
diff changeset
4106 * Makefile.in (custom-loads): New target.
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 193
diff changeset
4107
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 193
diff changeset
4108 1997-09-23 SL Baur <steve@altair.xemacs.org>
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 193
diff changeset
4109
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 193
diff changeset
4110 * lwlib/xlwmenu.c: Fix compilation problem with USE_XFONTSET.
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 193
diff changeset
4111 From Kazuyuki IENAGA <ienaga@jsys.co.jp>
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 193
diff changeset
4112
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 193
diff changeset
4113 1997-09-22 SL Baur <steve@altair.xemacs.org>
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 193
diff changeset
4114
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 193
diff changeset
4115 * XEmacs 19.16-pre4 is released.
a2f645c6b9f8 Import from CVS: tag r20-3b24
cvs
parents: 193
diff changeset
4116
193
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 191
diff changeset
4117 1997-09-20 SL Baur <steve@altair.xemacs.org>
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 191
diff changeset
4118
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 191
diff changeset
4119 * XEmacs 20.3-beta23 is released.
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 191
diff changeset
4120
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 191
diff changeset
4121 1997-09-19 SL Baur <steve@altair.xemacs.org>
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 191
diff changeset
4122
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 191
diff changeset
4123 * XEmacs 19.16-pre3 is released.
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 191
diff changeset
4124
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 191
diff changeset
4125 1997-09-19 Martin Buchholz <mrb@eng.sun.com>
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 191
diff changeset
4126
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 191
diff changeset
4127 * src/redisplay-tty.c: Fix crashes with non-7bit tty escape
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 191
diff changeset
4128 sequences (needs more testing).
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4129 * */Makefile*:
193
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 191
diff changeset
4130 - Cleanup man/*/Makefile for consistency.
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 191
diff changeset
4131 - use $(MAKEFINFO), $(TEXI2DVI), etc...
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 191
diff changeset
4132 - Make combination --with-srcdir + Sun make work properly.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4133 - Change construct: test -d $${dir} || mkdir $${dir}
193
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 191
diff changeset
4134 --> if test ! -d $${dir}; then mkdir $${dir}; fi
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 191
diff changeset
4135 * lisp/x11/x-win-sun.el: Fix remaining glitches with
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 191
diff changeset
4136 re-mappings of Sun function keys.
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 191
diff changeset
4137 * configure.in: Detect libXaw AFTER libXpm to support libXawXpm.
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 191
diff changeset
4138 * man/internals/internals.texi: Fix makeinfo compilation error.
f53b5ca2e663 Import from CVS: tag r20-3b23
cvs
parents: 191
diff changeset
4139
191
ecf6ba7b0a10 Import from CVS: tag r20-3b22
cvs
parents: 189
diff changeset
4140 1997-09-17 SL Baur <steve@altair.xemacs.org>
ecf6ba7b0a10 Import from CVS: tag r20-3b22
cvs
parents: 189
diff changeset
4141
ecf6ba7b0a10 Import from CVS: tag r20-3b22
cvs
parents: 189
diff changeset
4142 * XEmacs 20.3-beta22 is released.
ecf6ba7b0a10 Import from CVS: tag r20-3b22
cvs
parents: 189
diff changeset
4143
189
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 187
diff changeset
4144 1997-09-16 SL Baur <steve@altair.xemacs.org>
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 187
diff changeset
4145
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 187
diff changeset
4146 * XEmacs 20.3-beta21 is released.
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 187
diff changeset
4147
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 187
diff changeset
4148 * XEmacs 19.16-pre2 is released.
489f57a838ef Import from CVS: tag r20-3b21
cvs
parents: 187
diff changeset
4149
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4150 1997-09-13 SL Baur <steve@altair.xemacs.org>
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4151
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4152 * XEmacs 20.3-beta20 is released.
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4153
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4154 1997-09-11 Martin Buchholz <mrb@eng.sun.com>
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4155
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4156 * configure.in: Use `PATH' for options that take multiple dirs.
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4157 - Fix test for $PWD == `pwd`
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4158 - Prefer autodetected X11R6 to X11 so that broken HP and Linux
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4159 systems can work. (untested)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4160
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4161 * lisp/cl/cl.el: Fix `loop' indentation to be same as `defun'.
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4162 * lisp/prim/dumped-lisp.el: cl-extra and cl-seq always end up
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4163 being autoloaded - let's make them part of the core.
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4164
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4165 * lisp/x11/x-compose.el:
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4166 * lisp/x11/x-init.el:
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4167 * lisp/x11/x-win-sun.el:
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4168 * lisp/x11/x-winxfree86.el:
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4169 * src/device-x.c:
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4170 * src/event-Xt.c:
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4171 - Yet another rewrite of key handling (not the last, though)
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4172 - x-keysym-on-keyboard-p is much faster.
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4173 - x-keysym-on-keyboard-sans-modifiers-p introduced.
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4174 - x-keysym-hashtable introduced.
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4175 - allow X11R4 libs to guess keysyms on X11R5 servers.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4176 - A better workaround for the bug that some Xlibs generate
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4177 Multi_key a adiaeresis when pressing Multi_key a "
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4178
187
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4179 * src/dgif_lib.c: Make sure size_t is defined before using it.
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4180
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4181 1997-09-12 SL Baur <steve@altair.xemacs.org>
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4182
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4183 XEmacs 19.16-pre1 "Queens" is released.
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4184
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4185 1997-09-08 SL Baur <steve@altair.xemacs.org>
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4186
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4187 * configure.in: Reverse package-path.
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4188 From Colin Rafferty <craffert@ml.com>
b405438285a2 Import from CVS: tag r20-3b20
cvs
parents: 185
diff changeset
4189
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4190 1997-09-02 SL Baur <steve@altair.xemacs.org>
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4191
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4192 * XEmacs 20.3-beta19 is released.
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4193
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4194 * Makefile.in (finder): New target.
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4195
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4196 1997-08-29 SL Baur <steve@altair.xemacs.org>
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4197
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4198 * XEmacs 19.16-beta91 is released.
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4199
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4200 1997-08-25 MORIOKA Tomohiko <morioka@jaist.ac.jp>
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4201
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4202 * lisp/apel/emu-x20.el (mime-charset-coding-system-alist):
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4203 iso-2022-jp-2 is defined as coding-system.
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4204
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4205 * lisp/mule/mule-coding.el: Rename `iso-2022-ss2-{7|8}' ->
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4206 `iso-2022-{7|8}bit-ss2' to sync with Emacs 20.0.96.
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4207
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4208 (iso-2022-jp-2): New coding system.
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4209
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4210 1997-08-23 MORIOKA Tomohiko <morioka@jaist.ac.jp>
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4211
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4212 * lisp/prim/about.el (about-maintainer-glyph): Fix problem with
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4213 jka-compr.el.
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4214
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4215 1997-08-20 SL Baur <steve@altair.xemacs.org>
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4216
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4217 * XEmacs 19.16-beta90 is released.
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 183
diff changeset
4218
183
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
4219 1997-08-16 SL Baur <steve@altair.xemacs.org>
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
4220
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
4221 * XEmacs 20.3-beta18 is released.
e121b013d1f0 Import from CVS: tag r20-3b18
cvs
parents: 181
diff changeset
4222
181
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 179
diff changeset
4223 1997-08-09 SL Baur <steve@altair.xemacs.org>
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 179
diff changeset
4224
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 179
diff changeset
4225 * XEmacs 20.3-beta17 is released.
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 179
diff changeset
4226
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 179
diff changeset
4227 1997-08-09 Martin Buchholz <mrb@eng.sun.com>
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 179
diff changeset
4228
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 179
diff changeset
4229 * configure.in:
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 179
diff changeset
4230 - use-system-malloc renamed to with-system-malloc.
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 179
diff changeset
4231 - config.el reimplemented for improved accuracy.
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 179
diff changeset
4232 - new variable `blddir' introduced for informational purposes.
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 179
diff changeset
4233 * lib-src/config.values.in: new config.el implementation
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 179
diff changeset
4234 * lib-src/config.values.sh: new config.el implementation
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4235 * lisp/modes/pascal.el: Sync with GNU Emacs, fix infloop problem
181
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 179
diff changeset
4236 (thanks to Espen Skoglund, pascal.el maintainer)
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 179
diff changeset
4237 * src/chartab.c: maintainability improvements.
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 179
diff changeset
4238 * src/mule-coding.c: FIX for: editing DOS files with ISO2022*
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 179
diff changeset
4239 coding systems results in extra CR's inserted into file on saving.
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 179
diff changeset
4240
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 179
diff changeset
4241 1997-08-06 SL Baur <steve@altair.xemacs.org>
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 179
diff changeset
4242
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 179
diff changeset
4243 * configure.in: Crash & burn if db-2 is detected.
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 179
diff changeset
4244 From Soren Dayton <csdayton@cs.uchicago.edu>
bfd6434d15b3 Import from CVS: tag r20-3b17
cvs
parents: 179
diff changeset
4245
179
9ad43877534d Import from CVS: tag r20-3b16
cvs
parents: 177
diff changeset
4246 1997-07-31 SL Baur <steve@altair.xemacs.org>
9ad43877534d Import from CVS: tag r20-3b16
cvs
parents: 177
diff changeset
4247
9ad43877534d Import from CVS: tag r20-3b16
cvs
parents: 177
diff changeset
4248 * XEmacs 20.3-beta16 is released.
9ad43877534d Import from CVS: tag r20-3b16
cvs
parents: 177
diff changeset
4249
9ad43877534d Import from CVS: tag r20-3b16
cvs
parents: 177
diff changeset
4250 1997-07-31 Martin Buchholz <mrb@eng.sun.com>
9ad43877534d Import from CVS: tag r20-3b16
cvs
parents: 177
diff changeset
4251
9ad43877534d Import from CVS: tag r20-3b16
cvs
parents: 177
diff changeset
4252 * configure.in: --with-x11=no --> --with-xface=no
9ad43877534d Import from CVS: tag r20-3b16
cvs
parents: 177
diff changeset
4253 * lisp/efs/dired-xemacs.el: Rationalize mouse file functions
9ad43877534d Import from CVS: tag r20-3b16
cvs
parents: 177
diff changeset
4254 * src/input-method-xlib.c: Allow xemacs to connect to kinput2
9ad43877534d Import from CVS: tag r20-3b16
cvs
parents: 177
diff changeset
4255 * event-Xt.c: Fix crashes when no input context available.
9ad43877534d Import from CVS: tag r20-3b16
cvs
parents: 177
diff changeset
4256 * src/mule-coding.c: Use enum eol_type instead of int consistently
9ad43877534d Import from CVS: tag r20-3b16
cvs
parents: 177
diff changeset
4257 * regex.c: Use (void *) 0 instead of NULL in varargs function calls
9ad43877534d Import from CVS: tag r20-3b16
cvs
parents: 177
diff changeset
4258 * src/s/freebsd.h: Wrap #include X11/Xlocale.h inside #ifndef
9ad43877534d Import from CVS: tag r20-3b16
cvs
parents: 177
diff changeset
4259 NOT_C_CODE
9ad43877534d Import from CVS: tag r20-3b16
cvs
parents: 177
diff changeset
4260
177
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
4261 1997-07-26 SL Baur <steve@altair.xemacs.org>
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
4262
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
4263 * XEmacs 20.3-beta15 is released.
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
4264
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
4265 1997-07-25 SL Baur <steve@altair.xemacs.org>
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
4266
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
4267 * lwlib/xlwscrollbar.c: Add debug malloc support.
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
4268 * lwlib/xlwmenu.c: Ditto.
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
4269 * lwlib/lwlib-utils.h: Ditto.
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
4270
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
4271 * configure.in (null_string): Add --use-debug-malloc option.
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
4272
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
4273 1997-07-21 SL Baur <steve@altair.xemacs.org>
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
4274
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
4275 * info/dir (Packages): Remove AUCTeX, Gnus and Message manuals.
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
4276
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
4277 1997-07-20 SL Baur <steve@altair.xemacs.org>
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
4278
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
4279 * Makefile.in (install-arch-indep): Create required links when
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
4280 prefixdir != execdir.
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
4281
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
4282 1997-07-19 SL Baur <steve@altair.xemacs.org>
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4283
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4284 * XEmacs 20.3-beta14 is released.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4285
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4286 1997-07-19 Martin Buchholz <mrb@eng.sun.com>
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4287
177
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
4288 * src/fns.c (require): Print messages when loading a file as a
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4289 result of require.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4290
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4291 * configure.in:
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4292 * lisp/utils/config.el:
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4293 * lib-src/config.values:
175
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4294 - new file created and installed by building.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4295 - Allow configuration time values to be queried by the lisp code.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4296
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4297 * configure.in:
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4298 - check for alloca in libPW on hpux.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4299 - Redo --with-clash-detection
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4300 - need to check for termios and friends even if with-tty=no.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4301 - Always define SIGNALS_VIA_CHARACTERS if HAVE_TERMIOS
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4302 - better quoting for AIX_SMT_EXP (untested)
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4303 - gcc flags now default to "-g -O2 -Wall -Wno-switch"
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4304
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4305 * *.[ch]: more warning elimination
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4306
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4307 * src/input-method*.c:
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4308 * src/s/freebsd.h:
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4309 - remove freebsd ifdefs from C code.
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4310
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4311 * src/specifier.c:
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4312 - fix Fdisplay-table-specifier-p
2d532a89d707 Import from CVS: tag r20-3b14
cvs
parents: 173
diff changeset
4313
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4314 1997-07-13 Steven L Baur <steve@altair.xemacs.org>
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4315
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4316 * XEmacs 20.3-beta13 is released.
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4317
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4318 * info/dir (Packages): Integrate texinfo manual for PH.
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4319
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4320 1997-07-10 Hrvoje Niksic <hniksic@srce.hr>
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4321
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4322 * extents.c (print_extent): Print correctly.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4323
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4324 1997-07-13 Steven L Baur <steve@altair.xemacs.org>
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4325
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4326 * configure.in (CPP): Add -Wall to default gcc CFLAGS.
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4327
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4328 1997-07-11 Martin Buchholz <mrb@eng.sun.com>
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4329
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4330 * *Makefile*: More cleanup.
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4331 - MAKE CFLAGS=-foo now works with recursive invocations on old makes
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4332 - Nuke ld_call_shared from s&m files
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4333 - Nuke src/s/*-static.h
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4334 - Nuke Solaris and DEC OSF static build support.
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4335 - Nuke SHORTNAMES
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4336 - Nuke libmld
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4337 - CLASH_DETECTION configurable, off by default.
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4338
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4339 * *.[ch]: Warning elimination, code cleanup, some 64-bit
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4340 safeguarding.
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4341
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4342 * sol2.h: More bullet-proofing for Sun bugs in header files.
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4343
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4344 * lib-src/etags.c: etags version 12.19.
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4345
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4346 * lisp/x11/x-select.el:
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4347 * src/xselect.c: Try STRING if selection owner couldn't convert
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4348 COMPOUND_TEXT.
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4349
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4350 * src/*.c: Change defalt to default_, and in general allow
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4351 doc-snarfing functions to recognize and ignore trailing `_'
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4352
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4353 * src/*.[ch]: Introduce XVECTOR_DATA and XVECTOR_LENGTH macros and
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4354 convert source code to use them consistently.
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 171
diff changeset
4355
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4356 1997-07-08 Steven L Baur <steve@altair.xemacs.org>
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4357
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4358 * XEmacs 20.3-beta12 is released.
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4359
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4360 1997-07-08 Martin Buchholz <mrb@eng.sun.com>
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4361
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4362 * configure.in: Set options differently, depending on beta-ness of
171
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4363 build tree.
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4364 * *Makefile*: Clean up *clean: targets, esp. Steven's beloved
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4365 distclean.
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4366
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4367 1997-07-08 Steven L Baur <steve@altair.xemacs.org>
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4368
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4369 * pkg-src/tree-x/Makefile.in.in (xoobr): Pass CFLAGS to the
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4370 linker.
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4371 From Olivier Galibert <Olivier.Galibert@mines.u-nancy.fr>
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4372
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4373 1997-07-07 Steven L Baur <steve@altair.xemacs.org>
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4374
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4375 * pkg-src/tree-x/Makefile.in.in (distclean): Add target.
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4376
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4377 1997-07-06 Steven L Baur <steve@altair.xemacs.org>
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4378
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4379 * lwlib/lwlib-Xm.c (xm_update_one_value): Hand application of mrb
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4380 fix. Restoration of lossage from beta10->beta11 upgrade.
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4381
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4382 * XEmacs 20.3-beta11 is released.
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4383
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4384 1997-07-08 MORIOKA Tomohiko <morioka@jaist.ac.jp>
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4385
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4386 * lisp/language/english.el: Add quail-british for British.
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4387
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4388 * lisp/language/european.el: Register input-method for various non
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4389 quail-latin-1 methods.
929b76928fce Import from CVS: tag r20-3b12
cvs
parents: 169
diff changeset
4390
169
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4391 1997-07-05 Martin Buchholz <mrb@eng.sun.com>
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4392
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4393 * lib-src/getopt*.c: Don't redefine const - let configure do that.
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4394
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4395 * configure.in: Better behavior for `configure --with-gcc=no'
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4396 - Autodetect ulimit.h
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4397 - Remove broken SunOS4 kludge for libXmu
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4398 - Autodetect usleep
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4399
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4400 * src/s/sol2.h: Support gcc on various Solaris releases.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4401
169
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4402 * lib-src/*.c: Ansify prototypes.
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4403
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4404 * lisp/prim/files.el: Optimize auto-mode-alist.
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4405
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4406 * pkg-src/tree-x/Makefile.in.in: `make distclean' now works
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4407 - `make install' now works.
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4408 - dependencies updated.
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4409
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4410 * pkg-src/tree-x/*.[ch]: Fix compile warnings.
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4411 - Replace uses of XtVa* with non-varargs variants.
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4412
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4413 1997-07-01 MORIOKA Tomohiko <morioka@jaist.ac.jp>
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4414
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4415 * lisp/modes/image-mode.el: Add `image-maybe-restore' to
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4416 `change-major-mode-hook'.
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4417
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4418 * lisp/modes/image-mode.el (image-maybe-restore): New function.
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4419
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4420 * src/glyphs.c (make_string_from_file): must protect from
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4421 `format-alist'.
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4422
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4423 1997-06-30 Steven L Baur <steve@altair.xemacs.org>
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4424
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4425 * pkg-src/tree-x/Makefile.in.in (INSTALL): Add configure written
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4426 variable.
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4427
167
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4428 1997-06-29 Steven L Baur <steve@altair.xemacs.org>
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4429
169
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4430 * configure.in (CPP): Correct typo `print-lib-gcc-file-name'
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4431 should be `print-libgcc-file-name'
15872534500d Import from CVS: tag r20-3b11
cvs
parents: 167
diff changeset
4432 From Katsumi Yamaoka <yamaoka@ga.sony.co.jp>
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4433
167
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4434 * XEmacs 20.3-beta10 is released.
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4435
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4436 1997-06-29 MORIOKA Tomohiko <morioka@jaist.ac.jp>
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4437
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4438 * lisp/language/chinese.el: Add chinese-isoir165 (CCITT Extended
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4439 GB).
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4440
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4441 * lisp/language/chinese.el: Modify charset DOC-strings for CNS
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4442 11643 to be more detailed.
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4443
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4444 * lisp/language/arabic.el: Rename `arabic-0', `arabic-1' and
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4445 `arabic-2' to `arabic-digit', `arabic-1-column' and
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4446 `arabic-2-column' to sync with Emacs/mule-19.34.94-zeta.
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4447
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4448 * src/mule-charset.c: Modify charset DOC-strings to be more
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4449 detailed.
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4450
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4451 Use BOX DRAWINGS characters of JIS X0208.
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4452
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4453 1997-06-28 MORIOKA Tomohiko <morioka@jaist.ac.jp>
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4454
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4455 * lisp/apel/richtext.el: Add autoload comments for
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4456 `richtext-encode' and `richtext-decode'.
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4457
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4458 * lisp/prim/format.el (format-alist): Add `text/richtext'.
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4459
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4460 * lisp/tl/chartblxmas.el: New file.
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4461
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4462 * lisp/x11/x-menubar.el (default-menubar): Add "Show character
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4463 table" for MULE menu.
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4464
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4465 * lisp/apel/emu.el: Check richtext.el is bundled.
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4466
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4467 * lisp/tl/char-table.el (view-charset): New command.
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4468
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4469 * lisp/tl/char-table.el: Rename some functions.
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4470
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4471 * lisp/packages/hexl.el (hexl-mode-exit): Run
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4472 `hexl-mode-exit-hook'.
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4473
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4474 * lisp/x11/x-menubar.el (default-menubar): Fix "Describe language
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4475 support" and "Set language environment" of mule menu.
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4476
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4477 * lisp/apel/file-detect.el: Add autoload comments for function
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4478 `add-path', `add-latest-path', `get-latest-path',
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4479 `file-installed-p', `exec-installed-p', `module-installed-p' and
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4480 variable `exec-suffix-list'.
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4481
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4482 * lisp/prim/format.el (format-alist): Add image/jpeg, image/gif,
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4483 image/png and image/x-xpm.
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4484
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4485 * lisp/modes/image-mode.el: New file.
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4486
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4487 1997-06-27 MORIOKA Tomohiko <morioka@jaist.ac.jp>
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4488
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4489 * lisp/tm/tm-ew-e.el (tm-eword::encode-string-1): avoid infinite
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4490 loop caused by long non-encoded-word element. (cf. [tm-en:1356])
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4491
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4492 (mime/field-encoding-method-alist): Add "Message-ID" as ignored.
85ec50267440 Import from CVS: tag r20-3b10
cvs
parents: 165
diff changeset
4493
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4494 1997-06-25 Steven L Baur <steve@altair.xemacs.org>
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4495
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4496 * XEmacs 20.3-beta9 is released.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4497
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4498 * Makefile.in (dist): Make `make dist' work for me.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4499
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4500 1997-06-25 Martin Buchholz <mrb@eng.sun.com>
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4501
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4502 * configure.in:
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4503 - Change "t" to tabs in sed commands
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4504 - Add /g to sed substitition commands when appropriate
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4505 - Change XtVa[SG]etValue to Xt[SG]etValue
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4506 - Make version variables into Lisp_Objects.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4507
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4508 1997-06-19 Martin Buchholz <mrb@eng.sun.com>
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4509
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4510 * src/config.h.in:
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4511 * configure.in:
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4512 - Autodetect X defines using xmkmf.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4513 - Compute rpath on *bsd* systems as well.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4514 - rewrite PRINT_VAR m4 macro.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4515 - detect sizes of void* and long long for future use by unex*.c
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4516 * regex.c: _GNU_SOURCE may be defined by config.h; don't redefine.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4517
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4518 1997-06-24 MORIOKA Tomohiko <morioka@jaist.ac.jp>
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4519
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4520 * lisp/language/arabic.el: moved from lisp/mule/arabic-hooks.el.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4521
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4522 * lisp/mh-e/mh-e.el (mh-get-new-mail): Decode output as
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4523 `mh-folder-coding-system'.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4524
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4525 1997-06-24 MORIOKA Tomohiko <morioka@jaist.ac.jp>
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4526
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4527 * lisp/language/ethio-util.el: imported from
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4528 Emacs/mule-19.34.94-zeta.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4529
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4530 * lisp/language/arabic-util.el: moved from lisp/mule/arabic.el;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4531 repair Arabic characters.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4532
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4533 1997-06-24 MORIOKA Tomohiko <morioka@jaist.ac.jp>
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4534
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4535 * lib-src/update-autoloads.sh: Search lisp/mule/.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4536
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4537 * lisp/x11/x-menubar.el: Fix "Describe language support" and "Set
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4538 language environment" of Mule menu.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4539
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4540 * lisp/language/visual-mode.el: moved from mule/.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4541
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4542 * lisp/language/ethiopic.el: Modify for XEmacs.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4543
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4544 * lisp/language/cyrillic.el: Modify DOC-string of koi8-r; Fixed
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4545 problem of setting for `language-info-alist' about koi8-r.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4546
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4547 * lisp/mule/auto-autoloads.el: Enable auto-autoloads.el for mule/.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4548
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4549 * lisp/mule/mule-util.el: New file (imported from
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4550 Emacs/mule-19.34.94-zeta).
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4551
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4552 * lisp/mule/mule-misc.el: Function `truncate-string-to-width' was
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4553 moved to mule-util.el.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4554
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4555 * lisp/prim/dumped-lisp.el, lisp/mule/mule-load.el:
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4556 lisp/mule/arabic-hooks.el was moved to lisp/language/arabic.el;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4557 lisp/mule/arabic.el was moved to lisp/language/arabic-util.el; Use
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4558 lisp/language/ethiopic.el instead of lisp/mule/ethiopic-hooks.el;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4559 Use lisp/language/ethio-util.el instead of lisp/mule/ethiopic.el.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4560
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4561 * lisp/mule/mule-coding.el (coding-system-docstring): New alias to
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4562 emulate Emacs/mule-19.34.94-zeta function.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4563
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4564 * lisp/mule/mule-cmds.el: modified to sync with
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4565 Emacs/mule-19.34.94-zeta (mule-prefix was changed to "C-x C-m")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4566
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4567 (set-language-info): Add to "Describe Language Support" and "Set
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4568 Language Environment" menu.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4569
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4570 * lisp/mule/mule-charset.el: Function `compose-region' and
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4571 `decompose-region' were moved to mule-util.el.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4572
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4573 * lisp/leim/quail.el: modify to sync with latest quail.el of
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4574 Emacs/mule in ETL.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4575
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4576 (quail-toggle-mode-temporarily): check `quail-conv-overlay'.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4577
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4578 (quail-map-p): Use `characterp' instead of `integerp'.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4579
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4580 1997-06-21 Steven L Baur <steve@altair.xemacs.org>
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4581
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4582 * Makefile.in: Missing FRC.info.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4583 (install-arch-dep): Add missing backslash.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4584 From Glynn Clements <glynn@sensei.co.uk>
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 163
diff changeset
4585
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4586 * XEmacs 20.3-beta8 is released.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4587
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4588 1997-06-20 Olivier Galibert <Olivier.Galibert@mines.u-nancy.fr>
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4589
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4590 * lwlib/lwlib-Xaw.c, lwlib/lwlib-Xlw.c, lwlib/lwlib-Xm.c,
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4591 lwlib/lwlib.c: Make 64 bit clean.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4592
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4593 1997-06-19 Martin Buchholz <mrb@eng.sun.com>
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4594
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4595 * configure.in:
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4596 - Autodetect X defines using xmkmf.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4597 - Compute rpath on *bsd* systems as well.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4598 - rewrite PRINT_VAR m4 macro.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4599 - detect sizes of void* and long long for future use by unex*.c
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4600
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4601 1997-06-18 Martin Buchholz <mrb@eng.sun.com>
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4602
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4603 * */Makefile.in.in: Another rewrite
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4604 Make makefiles immune from being mangled by various cpp
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4605 implementations by quoting non-preprocessor directive lines.
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4606 - random cleanup
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4607 - Use $(RM) and $(pwd) macros consistently
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4608 - Add dependencies for balloon-help source files
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4609 - Use getcwd by default instead of getwd.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4610 * lwlib/config.h: Now includes src/config.h
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4611 * lwlib/*.c: Use config.h, but DON'T use Xos.h
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4612 * lib-src/*.c: Fix compiler warnings
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4613 * lisp/version.el:
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4614 - Put version information in version.sh instead of version.el
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4615
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4616 Wed Jun 18 16:41:43 1997 Steven L Baur <steve@altair.xemacs.org>
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4617
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4618 * configure.in (CPP): Remove hardcoding of -L/usr/local/lib
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4619 -I/usr/local/include.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4620
161
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 159
diff changeset
4621 1997-06-14 Steven L Baur <steve@altair.xemacs.org>
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 159
diff changeset
4622
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 159
diff changeset
4623 * XEmacs 20.3-beta7 is released.
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 159
diff changeset
4624
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 159
diff changeset
4625 1997-06-13 MORIOKA Tomohiko <morioka@jaist.ac.jp>
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 159
diff changeset
4626
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 159
diff changeset
4627 * lisp/gnus/smiley.el (smiley-deformed-regexp-alist): Modify
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 159
diff changeset
4628 regexp for horizontal smiley faces.
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 159
diff changeset
4629 (smiley-nosey-regexp-alist): Add horizontal smiley faces.
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 159
diff changeset
4630
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 159
diff changeset
4631 * lisp/leim/quail.el (quail-get-translation): Don't use
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 159
diff changeset
4632 `string-to-vector' for XEmacs.
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 159
diff changeset
4633
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 159
diff changeset
4634 1997-06-13 Gary D. Foster <Gary.Foster@corp.Sun.COM>
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 159
diff changeset
4635
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 159
diff changeset
4636 * lisp/modes/*.el: Removed all "\177" bindings that were
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 159
diff changeset
4637 previously commented out and normalized everything vis a vis
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 159
diff changeset
4638 'backspace and 'delete keysyms.
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 159
diff changeset
4639 * lisp/packages/*.el: Normalized all the "\177" bindings
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4640 * lisp/modes/cperl-mode.el: Created cperl-electric-delete function
161
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 159
diff changeset
4641 which is a "smart" version of the cperl-electric-backspace
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 159
diff changeset
4642 function (it honors the desired delete direction). Bound it to
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 159
diff changeset
4643 'delete and the electric-backspace to 'backspace.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4644 * lisp/packages/pending-del.el: Added cperl-electric-backspace and
161
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 159
diff changeset
4645 cperl-electric-delete to the 'supersede list.
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 159
diff changeset
4646
159
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4647 1997-06-11 Steven L Baur <steve@altair.xemacs.org>
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4648
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4649 * XEmacs 20.3-b6 is released.
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4650
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4651 * configure.in (GNU_MALLOC): Check for (-l)PW instead of (-l)-lPW.
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4652 Suggested by Martin Buchholz <mrb@eng.sun.com>
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4653
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4654 1997-06-11 Martin Buchholz <mrb@eng.sun.com>
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4655
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4656 * src/Makefile.in:
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4657 * lwlib/Makefile.in:
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4658 * lib-src/Makefile.in:
159
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4659 * Makefile.in: More Makefile cleanup
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4660 - add .PHONY targets where necessary
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4661 - remove most builtin rules using .SUFFIXES
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4662 - -lXau only gets used for linking gnuserv binaries
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4663 - No VPATH for root Makefile
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4664 - remove gcc v1 support
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4665 * configure.in:
159
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4666 - A new test to autodetect need to define NARROWPROTO,
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4667 needed by XFree86
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4668 - Consistently use idiom foo=`echo '' $foo | sed -s 's:^ ::' -e ...`
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4669 - Immediately exit if SIZEOF_* tests fail.
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4670 - Check for libPW
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4671 - Use more sophisticated Xpm test that confirms xpm.h and libXpm
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4672 are in sync.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4673 * src/s/linux.h:
159
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4674 * src/m/intel386.h: Yet another attempt to clean up linux defines.
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4675
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4676 1997-06-10 Steven L Baur <steve@altair.xemacs.org>
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4677
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4678 * lib-src/pop.c: Correct incantation for pop.h.
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4679 From Martin Buchholz <mrb@Eng.Sun.COM>
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4680
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4681 Tue Jun 10 15:11:16 1997 Steven L Baur <steve@altair.xemacs.org>
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4682
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4683 * configure.in (beta): Correct test looking for Beta number.
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4684
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4685 1997-06-11 MORIOKA Tomohiko <morioka@jaist.ac.jp>
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4686
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4687 * src/Makefile.in.in, mule/language/misc-lang.el,
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4688 mule/mule-load.el, mule/ipa-hooks.el: Use
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4689 lisp/mule/language/misc-lang.el instead of lisp/mule/ipa-hooks.el;
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4690 mule/ipa-hooks.el was deleted.
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4691
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4692 1997-06-10 MORIOKA Tomohiko <morioka@jaist.ac.jp>
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4693
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4694 * Use lisp/mule/language/thai-util.el instead of
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4695 lisp/mule/thai.el.
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4696
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4697 * lisp/custom/wid-edit.el: Add widget `coding-system' for mule.
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4698
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4699 * lisp/mule/thai-hooks.el, lisp/mule/mule-load.el: Use
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4700 lisp/mule/language/thai.el instead of lisp/mule/thai-hooks.el.
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4701
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4702 * lisp/mule/language/thai.el: modified for XEmacs.
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4703
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4704 1997-06-09 MORIOKA Tomohiko <morioka@jaist.ac.jp>
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4705
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4706 * lisp/mule/mule-load.el, src/Makefile.in.in: Use
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4707 lisp/mule/language/chinese.el, lisp/mule/language/cyrillic.el,
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4708 lisp/mule/language/european.el, lisp/mule/language/greek.el,
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4709 lisp/mule/language/japanese.el and lisp/mule/language/korean.el
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4710 instead of lisp/mule/chinese-hooks.el,
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4711 lisp/mule/cyrillic-hooks.el, lisp/mule/european-hooks.el,
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4712 lisp/mule/greek-hooks.el, lisp/mule/japanese-hooks.el and
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4713 lisp/mule/korean-hooks.el.
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4714
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4715 * lisp/mule/language/*.el was imported from
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4716 Emacs/mule-19.34.94-zeta.
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4717
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4718 * Use lisp/mule/language/china-util.el instead of
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4719 lisp/mule/chinese.el.
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4720
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4721 1997-06-08 MORIOKA Tomohiko <morioka@jaist.ac.jp>
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4722
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4723 * lisp/apel/emu-x20.el (mime-charset-coding-system-alist):
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4724 iso-8859-1, hz-gb-2312, cn-gb-2312, gb2312, cn-big5 and koi8-r
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4725 were defined as coding-system.
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4726
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4727 1997-06-07 MORIOKA Tomohiko <morioka@jaist.ac.jp>
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4728
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4729 * lisp/gnus/smiley.el (smiley-deformed-regexp-alist): Add Japanese
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4730 smiley faces.
3bb7ccffb0c0 Import from CVS: tag r20-3b6
cvs
parents: 157
diff changeset
4731
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4732 1997-06-10 Gary D. Foster <Gary.Foster@corp.sun.com>
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4733
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4734 * lisp/modes/view-less.el: Changed \177 bindings to 'delete
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4735 * lisp/modes/help.el: Changed \177 bindings to 'delete
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4736
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4737 1997-06-10 Gary D. Foster <Gary.Foster@corp.sun.com>
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4738
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4739 * lisp/prim/keydefs.el: Changed all 'delete key bindings to point to
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4740 the `backward-or-forward-foo' functions.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4741 * lisp/prim/simple.el:
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4742 - Renamed `delete-erases-forward' to `delete-key-deletes-forward'.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4743 - Removed `backspace-or-delete-hook'
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4744 - Renamed `backspace-or-delete' to `backward-or-forward-delete-char'
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4745 - Added functions: `backward-or-forward-kill-word'
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4746 `backward-or-forward-kill-sentence'
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4747 `backward-or-forward-kill-sexp'
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4748 - Removed the zmacs hacks from all the `b-or-f-foo' functions and
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4749 began playing nicely with pending-del.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4750 * lisp/modes/cc-mode.el:
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4751 * lisp/modes/cperl-mode.el: Fixed references to delete functions
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4752 to use the new names.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4753
157
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
4754 1997-06-09 Steven L Baur <steve@altair.xemacs.org>
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
4755
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
4756 * XEmacs 20.3-b5 is released.
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 155
diff changeset
4757
155
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4758 1997-06-05 Steven L Baur <steve@altair.xemacs.org>
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4759
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4760 * XEmacs 20.3-b4 is released.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4761
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4762 1997-06-04 Martin Buchholz <mrb@eng.sun.com>
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4763
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4764 * src/*/*.h: Remove definitions of HAVE_UNION_WAIT, in accordance
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4765 with new Autoconf 2 mechanisms.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4766 * src/syswait.h:
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4767 * src/sysdep.c:
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4768 * src/process.c: Use only Posix.1 sys/wait.h-defined symbols
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4769
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4770 * src/s/netbsd.h: complete rewrite, use ORDINARY_LINK, #ifdef out
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4771 old cruft that can be obtained from system header files.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4772 * lib-src/getopt*: Synch with FSF, remove compiler warnings.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4773
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4774 * lib-src/b2m.c:
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4775 * src/gifalloc.c:
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4776 * lib-src/gnuslib.c:
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4777 * lib-src/profile.c:
155
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4778 * lib-src/movemail.c: Fix compiler warnings
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4779
155
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4780 * lib-src/Makefile.in.in: Remove unused -DCONFIG_BROKETS flag
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4781 - Fix up compile flags for new etags version
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4782
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4783 * man/xemacs/programs.texi:
155
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4784 * lib-src/etags.c: Upgraded to etags 12.11
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4785
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4786 * src/config.h.in: Fix inline keyword support
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4787
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4788 * configure.in: Use a different mechanism for removing extra white
155
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4789 space. Avoid using foo=`echo $bar`, which loses with various echos.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4790 - new M4 macro XE_SPACE(var, words...)
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4791 - Use autoconf 2's AC_HEADER_SYS_WAIT
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4792 - Check for Xpm-XpmFree instead of Xpm-XpmReadFileToData to avoid
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4793 linking with losing Xpm implementations
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4794 - Check for correct wnn4 lib symbols
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4795 - Only link with inline.o when using gcc
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4796 - Support inline keywords inline, __inline, __inline__
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4797 - Ultrix now implies have_mmap=no
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4798 - Sun sound in non-standard dirs now works
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4799 - --native-sound-lib no longer ignored on HP & SGI
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4800 - gpm configure tests moved after curses configure tests
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4801
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4802 1997-06-04 Gary D. Foster <Gary.Foster@corp.sun.com>
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4803
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4804 * lisp/modes/cc-mode.el: Modified `c-electric-delete' to honor the
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4805 desired delete direction in both normal and "hungry" modes.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4806 * lisp/modes/cperl-mode.el: Modified `cperl-electric-backspace' to
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4807 honor the desired delete direction.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4808
155
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4809 1997-05-30 Martin Buchholz <mrb@eng.sun.com>
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4810
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4811 * configure.in: Automagically compute -R path for gcc
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4812
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4813 1997-05-30 Gary D. Foster <Gary.Foster@corp.sun.com>
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4814
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4815 * lisp/vm/vm-vars.el: Fixed delete key binding to call
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4816 `vm-scroll-down'
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4817
155
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4818 Thu May 29 15:35:07 1997 Martin Buchholz <mrb@eng.sun.com>
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4819
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4820 * configure.in: Add support for Solaris2.6 -z ignore linker flags
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4821
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4822 1997-05-29 Martin Buchholz <mrb@eng.sun.com>
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4823
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4824 * configure.in: Replace standard Autoconf MMAP test with Neal
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4825 Becker's replacement, hacked somewhat.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4826
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4827 1997-05-16 Gary D. Foster <Gary.Foster@corp.sun.com>
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4828
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4829 * lisp/prim/simple.el: Created `backspace-or-delete' function and
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4830 `backspace-or-delete-hook'
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4831 * lisp/prim/keydefs.el: Changed \177 bindings to point to new
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4832 delete function.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4833 * lisp/modes/*.el: Removed conflicting \177 bindings.
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4834 * lisp/modes/cc-mode.el: Modified `c-electric-delete' to use new
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4835 delete bindings.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4836 * lisp/modes/cperl-mode.el: Modified `cperl-electric-backspace' to
163
0132846995bd Import from CVS: tag r20-3b8
cvs
parents: 161
diff changeset
4837 use new delete bindings.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
4838
155
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4839 1997-06-03 MORIOKA Tomohiko <morioka@jaist.ac.jp>
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4840
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4841 * lisp/x11/x-menubar.el (default-menubar): Add menu for Mule.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4842
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4843 * lisp/mule/mule-cmds.el: Menu for XEmacs were moved to
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4844 x11/x-menubar.el.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4845
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4846 1997-06-03 MORIOKA Tomohiko <morioka@jaist.ac.jp>
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4847
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4848 * lisp/leim/quail.el: to avoid compiling warnings about
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4849 overlay.el.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4850
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4851 1997-06-03 MORIOKA Tomohiko <morioka@jaist.ac.jp>
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4852
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4853 * lisp/leim/quail.el: to sync with quail.el of
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4854 Emacs-19.34.94-zeta.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4855
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4856 * lisp/leim/quail/ziranma.el, lisp/leim/quail/tonepy.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4857 lisp/leim/quail/py.el, lisp/leim/quail/qj.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4858 lisp/leim/quail/sw.el, lisp/leim/quail/ccdospy.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4859 lisp/leim/quail/punct.el, lisp/leim/quail/4corner.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4860 lisp/leim/quail/symbol-ksc.el, lisp/leim/quail/ethiopic.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4861 lisp/leim/quail/hanja.el, lisp/leim/quail/quick-cns.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4862 lisp/leim/quail/tsangchi-cns.el, lisp/leim/quail/lrt.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4863 lisp/leim/quail/tsangchi-b5.el, lisp/leim/quail/devanagari.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4864 lisp/leim/quail/japanese.el, lisp/leim/quail/quick-b5.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4865 lisp/leim/quail/punct-b5.el, lisp/leim/quail/qj-b5.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4866 lisp/leim/quail/py-b5.el, lisp/leim/quail/ctlau.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4867 lisp/leim/quail/ctlaub.el, lisp/leim/quail/ecdict.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4868 lisp/leim/quail/array30.el, lisp/leim/quail/hangul3.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4869 lisp/leim/quail/hanja-jis.el, lisp/leim/quail/cyrillic.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4870 lisp/leim/quail/etzy.el, lisp/leim/quail/greek.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4871 lisp/leim/quail/ipa.el, lisp/leim/quail/lao.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4872 lisp/leim/quail/zozy.el, lisp/leim/quail/viqr.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4873 lisp/leim/quail/latin.el, lisp/leim/quail/thai.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4874 lisp/leim/quail/hangul.el: quail of LEIM for Emacs-19.34.94-zeta.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4875
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4876 1997-06-02 MORIOKA Tomohiko <morioka@jaist.ac.jp>
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4877
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4878 * mule/korean.el was abolished because it seems not to be used.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4879
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4880 * mule/japanese.el was abolished because it seems not to be used.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4881
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4882 1997-06-01 MORIOKA Tomohiko <morioka@jaist.ac.jp>
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4883
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4884 * lisp/tm/gnus-mime-old.el was abolished because XEmacs 20.3 has
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4885 Gnus 5.4.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4886
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4887 * lisp/tm/tm-edit.el: updated to 7.108.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4888
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4889 * lisp/tm/tm-view.el: updated to 7.83.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4890
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4891 * lisp/leim/quail.el: modified for XEmacs.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4892
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4893 * lisp/mule/mule-load.el, lisp/mule/mule-process.el: delete
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4894 mule-process.el because it is not used.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4895
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4896 * lisp/mule/european.el was abolished because it seems not to be
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4897 used.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4898
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4899 * lisp/mule/mule-load.el: must load mule-cmds before setting for
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4900 language-environment.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4901
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4902 * lisp/mule/european-hooks.el: Modified for LEIM.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4903
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4904 * lisp/mule/mule-cmds.el: Uncomment key definition for
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4905 `toggle-input-method'.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4906
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4907 * lisp/mule/mule-init.el: Comment out about `mule-keymap' (moved
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4908 to mule-cmds.el).
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4909
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4910 * lisp/mule/mule-cmds.el: Uncomment about `mule-keymap' (moved
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4911 from mule-init.el).
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4912
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4913 * lisp/tl/tl-atype.el: Don't require tl-str.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4914
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4915 * lisp/tl/tl-atype.el: Use atype.el of APEL.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4916
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4917 * lisp/tl/tl-list.el: Use alist.el of APEL.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4918
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4919 1997-05-31 MORIOKA Tomohiko <morioka@jaist.ac.jp>
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4920
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4921 * lisp/tl/richtext.el, lisp/tl/emu-x20.el, lisp/tl/emu-xemacs.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4922 lisp/tl/emu.el, lisp/tl/emu-e19.el: moved to apel/.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4923
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4924 * lisp/tl/file-detect.el, lisp/tl/filename.el: replaced by APEL's.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4925
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4926 * lisp/mu/std11-parse.el, lisp/mu/std11.el: moved to apel/.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4927
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4928 * lisp/leim/quail.el: Add new quail.el (imported from Emacs
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4929 19.34.94-epsilon).
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4930
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4931 * lisp/leim/skk/skkdic.el: delete skkdic.el temporary because
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4932 XEmacs can not compile it.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4933
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4934 * lisp/leim/skk/skkdic.el, lisp/leim/quail/zozy.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4935 lisp/leim/quail/ziranma.el, lisp/leim/quail/viqr.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4936 lisp/leim/quail/tsangchi-cns.el, lisp/leim/quail/tsangchi-b5.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4937 lisp/leim/quail/symbol-ksc.el, lisp/leim/quail/thai.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4938 lisp/leim/quail/tonepy.el, lisp/leim/quail/quick-cns.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4939 lisp/leim/quail/sw.el, lisp/leim/quail/qj-b5.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4940 lisp/leim/quail/qj.el, lisp/leim/quail/quick-b5.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4941 lisp/leim/quail/py-b5.el, lisp/leim/quail/py.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4942 lisp/leim/quail/lao.el, lisp/leim/quail/latin.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4943 lisp/leim/quail/lrt.el, lisp/leim/quail/punct-b5.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4944 lisp/leim/quail/punct.el, lisp/leim/quail/hanja-jis.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4945 lisp/leim/quail/hanja.el, lisp/leim/quail/ipa.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4946 lisp/leim/quail/japanese.el, lisp/leim/quail/hangul3.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4947 lisp/leim/quail/etzy.el, lisp/leim/quail/greek.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4948 lisp/leim/quail/hangul.el, lisp/leim/quail/ethiopic.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4949 lisp/leim/quail/devanagari.el, lisp/leim/quail/ecdict.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4950 lisp/leim/quail/ctlau.el, lisp/leim/quail/ctlaub.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4951 lisp/leim/quail/cyrillic.el, lisp/leim/quail/array30.el,
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4952 lisp/leim/quail/ccdospy.el, lisp/leim/quail/4corner.el: Add LEIM
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4953 elisp files; old lisp/quail was abolished.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4954
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4955 * src/Makefile.in.in: Add mule-cmds.elc.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4956
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4957 * lisp/mule/mule-load.el, lisp/mule/mule-cmds.el: Add mule-cmds.el
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4958 (imported from Emacs-19.34.94-epsilon and comment out a lot to
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4959 avoid conflict with mule-init.el or other XEmacs/mule files).
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4960
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4961 * lisp/prim/simple.el (assoc-ignore-case): New function; imported
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4962 from Emacs-19.34.94-epsilon.
43dd3413c7c7 Import from CVS: tag r20-3b4
cvs
parents: 153
diff changeset
4963
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
4964 1997-05-29 Steven L Baur <steve@altair.xemacs.org>
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
4965
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
4966 * XEmacs 20.3-beta3 is released.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
4967
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
4968 * INSTALL: Delete documentation of mocklisp support.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
4969
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
4970 * configure.in: Delete mocklisp support.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
4971
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
4972 1997-05-29 Martin Buchholz <mrb@eng.sun.com>
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
4973
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
4974 * configure.in: Replace standard Autoconf MMAP test with Neal
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
4975 Becker's replacement, hacked somewhat.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
4976
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
4977 1997-05-28 Martin Buchholz <mrb@eng.sun.com>
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
4978
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
4979 * lisp/prim/files.el (auto-mode-alist): Reorg auto-mode-alist again.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
4980
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
4981 * lib-src/etags.c: Version 12.7 from Francesco.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
4982
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
4983 * configure.in: Juggle link order of X libraries.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
4984 Add support for using zsh to run configure.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
4985 Document --with-tty=no.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
4986 Fix -no-recursion option.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
4987 Recognize and ignore --cache-file option.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
4988 Recognize null values for preprocessor symbols converted to shell
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
4989 variables. This maybe fixes the "-ltermcap" problem.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
4990 Remove spurious blanks from various SUBST-ituted variables.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
4991 Fix conditional creation of gdbinit.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
4992 Conditionally create .sbinit for Sunpro C.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 151
diff changeset
4993
151
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
4994 1997-05-22 Steven L Baur <steve@altair.xemacs.org>
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
4995
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
4996 * XEmacs 20.3-beta2 is released.
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
4997
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
4998 Thu May 22 04:19:09 1997 Martin Buchholz <mrb@eng.sun.com>
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
4999
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
5000 * configure.in: Try to fix all reported bugs with 20.3-b1.
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
5001 Change HAVE_WNN6 to WNN6. WNN6 correctly autodetected.
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
5002 extra-verbose now default on beta builds.
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
5003 extra-verbose now much more verbose.
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
5004 Don't set libs_termcap to " ".
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
5005 Detect -lXm AFTER detecting -lXpm.
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
5006 Use runtime paths before running tests, since AC_TRY_RUN may
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
5007 depend on it.
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
5008 with-xim=motif only default on Solaris.
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
5009 realpath moved from s&m to configure.in.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
5010 xemacs-version.h removed. main_1 now contains $canonical as well,
151
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
5011 for even more useful backtraces.
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
5012 termcap handling rewritten.
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
5013 Create .sbinit for Sun's source browser.
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
5014 Warn user if no XPM support present.
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
5015 Warn user if compiling in error checking.
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
5016
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
5017 * Makefile.in: use MAKE_SUBDIR consistently. Remove references to
151
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
5018 dynodump. Remove core when cleaning. Remove config.log.
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
5019 make distclean now functional.
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
5020
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
5021 Sun May 18 13:03:20 1997 Steven L Baur <steve@altair.xemacs.org>
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
5022
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
5023 * lwlib/Makefile.in.in (distclean): Clean up config.h.
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
5024
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
5025 * Makefile.in (distclean): Remve config.log.
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
5026 remove broken dynodump stuffs.
59463afc5666 Import from CVS: tag r20-3b2
cvs
parents: 149
diff changeset
5027
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 146
diff changeset
5028 Sat May 17 20:30:54 1997 Steven L Baur <steve@altair.xemacs.org>
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 146
diff changeset
5029
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 146
diff changeset
5030 * XEmacs 20.3-b1 is released.
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 146
diff changeset
5031
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 146
diff changeset
5032 Fri May 16 20:38:19 1997 Steven L Baur <steve@altair.xemacs.org>
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 146
diff changeset
5033
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 146
diff changeset
5034 * info/dir (Packages): Update minor version number.
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 146
diff changeset
5035
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 146
diff changeset
5036 * README: Update minor version number.
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 146
diff changeset
5037
146
2af401a6ecca Import from CVS: tag r20-2p1
cvs
parents: 144
diff changeset
5038 Tue May 13 20:35:52 1997 Steven L Baur <steve@altair.xemacs.org>
2af401a6ecca Import from CVS: tag r20-2p1
cvs
parents: 144
diff changeset
5039
2af401a6ecca Import from CVS: tag r20-2p1
cvs
parents: 144
diff changeset
5040 * XEmacs-20.2 is released.
2af401a6ecca Import from CVS: tag r20-2p1
cvs
parents: 144
diff changeset
5041
144
318232e2a3f0 Import from CVS: tag r20-2b6
cvs
parents: 142
diff changeset
5042 Sat May 10 16:14:30 1997 Steven L Baur <steve@altair.xemacs.org>
318232e2a3f0 Import from CVS: tag r20-2b6
cvs
parents: 142
diff changeset
5043
318232e2a3f0 Import from CVS: tag r20-2b6
cvs
parents: 142
diff changeset
5044 * XEmacs 20.2-b6 is released.
318232e2a3f0 Import from CVS: tag r20-2b6
cvs
parents: 142
diff changeset
5045
142
1856695b1fa9 Import from CVS: tag r20-2b5
cvs
parents: 140
diff changeset
5046 Thu May 8 20:22:34 1997 Steven L Baur <steve@altair.xemacs.org>
1856695b1fa9 Import from CVS: tag r20-2b5
cvs
parents: 140
diff changeset
5047
1856695b1fa9 Import from CVS: tag r20-2b5
cvs
parents: 140
diff changeset
5048 * XEmacs 20.2-b5 is released.
1856695b1fa9 Import from CVS: tag r20-2b5
cvs
parents: 140
diff changeset
5049
140
585fb297b004 Import from CVS: tag r20-2b4
cvs
parents: 138
diff changeset
5050 Fri May 2 16:50:02 1997 Steven L Baur <steve@altair.xemacs.org>
585fb297b004 Import from CVS: tag r20-2b4
cvs
parents: 138
diff changeset
5051
585fb297b004 Import from CVS: tag r20-2b4
cvs
parents: 138
diff changeset
5052 * XEmacs 20.2-b4 is released.
585fb297b004 Import from CVS: tag r20-2b4
cvs
parents: 138
diff changeset
5053
585fb297b004 Import from CVS: tag r20-2b4
cvs
parents: 138
diff changeset
5054 Thu May 1 18:13:38 1997 Steven L Baur <steve@altair.xemacs.org>
585fb297b004 Import from CVS: tag r20-2b4
cvs
parents: 138
diff changeset
5055
585fb297b004 Import from CVS: tag r20-2b4
cvs
parents: 138
diff changeset
5056 * configure.in (--with-xim): Don't default it to Motif since it
585fb297b004 Import from CVS: tag r20-2b4
cvs
parents: 138
diff changeset
5057 causes crashes at startup on some systems.
585fb297b004 Import from CVS: tag r20-2b4
cvs
parents: 138
diff changeset
5058
138
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 136
diff changeset
5059 Sun Apr 27 12:25:55 1997 Steven L Baur <steve@altair.xemacs.org>
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 136
diff changeset
5060
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 136
diff changeset
5061 * XEmacs 20.2-b3 is released.
6608ceec7cf8 Import from CVS: tag r20-2b3
cvs
parents: 136
diff changeset
5062
136
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
5063 Wed Apr 23 10:33:58 1997 Steven L Baur <steve@altair.xemacs.org>
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
5064
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
5065 * XEmacs 20.2-b2 is released.
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
5066
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
5067 * configure.in (beta): OPENWINHOME misspelled.
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 134
diff changeset
5068
134
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 131
diff changeset
5069 Sat Apr 19 16:13:16 1997 Steven L Baur <steve@altair.xemacs.org>
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 131
diff changeset
5070
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 131
diff changeset
5071 * XEmacs 20.2-b1 is released.
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 131
diff changeset
5072
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 131
diff changeset
5073 Thu Apr 17 21:33:59 1997 Steven L Baur <steve@altair.xemacs.org>
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 131
diff changeset
5074
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 131
diff changeset
5075 * configure.in (beta): SONY NEWS-OS has /etc/osversion and not
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 131
diff changeset
5076 uname.
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 131
diff changeset
5077
131
869e1851236b Import from CVS: tag xemacs-20-1p4
cvs
parents: 126
diff changeset
5078 Wed Apr 16 17:44:05 1997 Steven L Baur <steve@altair.xemacs.org>
869e1851236b Import from CVS: tag xemacs-20-1p4
cvs
parents: 126
diff changeset
5079
869e1851236b Import from CVS: tag xemacs-20-1p4
cvs
parents: 126
diff changeset
5080 * XEmacs 20.1 is re-released.
869e1851236b Import from CVS: tag xemacs-20-1p4
cvs
parents: 126
diff changeset
5081
126
1370575f1259 Import from CVS: tag xemacs-20-1p1
cvs
parents: 124
diff changeset
5082 Tue Apr 15 21:03:22 1997 Steven L Baur <steve@altair.xemacs.org>
1370575f1259 Import from CVS: tag xemacs-20-1p1
cvs
parents: 124
diff changeset
5083
1370575f1259 Import from CVS: tag xemacs-20-1p1
cvs
parents: 124
diff changeset
5084 * XEmacs 20.1 is released.
1370575f1259 Import from CVS: tag xemacs-20-1p1
cvs
parents: 124
diff changeset
5085
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
5086 Sat Apr 12 20:11:08 1997 Steven L Baur <steve@altair.xemacs.org>
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
5087
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
5088 * XEmacs 20.1-b15 is released.
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
5089
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
5090 Sat Apr 12 09:01:32 1997 Hrvoje Niksic <hniksic@srce.hr>
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
5091 * PROBLEMS: I have cleaned up a bit the PROBLEMS file, by:
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
5092 1) changing it into sections -- there is now a section for building,
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
5093 running and compatibility problems
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
5094
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
5095 2) removing some obviously obsolete entries -- e.g. those pertaining
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
5096 to Emacs 18, etc. --> size is off by 20K
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
5097
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
5098 3) Rearranging the entries by relevance. I have tried to put the most
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
5099 relevant entries in front.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
5100
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
5101 Thu Apr 10 19:07:26 1997 Steven L Baur <steve@altair.xemacs.org>
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
5102
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
5103 * XEmacs 20.1-b14 is released. (Beta 13 was skipped).
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
5104
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 118
diff changeset
5105 Wed Apr 9 22:52:06 1997 Steven L Baur <steve@altair.xemacs.org>
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 118
diff changeset
5106
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 118
diff changeset
5107 * XEmacs 20.1-b12 is released.
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 118
diff changeset
5108
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 118
diff changeset
5109 Sun Apr 6 22:31:00 1997 Tatsuya Ichikawa <ichikawa@hv.epson.co.jp>
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 118
diff changeset
5110
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 118
diff changeset
5111 * configure.in: Cosmetic change to summary print of POP/Kerberos/
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 118
diff changeset
5112 Hesiod options.
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 118
diff changeset
5113
118
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 116
diff changeset
5114 Sat Apr 5 09:11:36 1997 Steven L Baur <steve@altair.xemacs.org>
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 116
diff changeset
5115
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 116
diff changeset
5116 * XEmacs 20.1-b11 is released.
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 116
diff changeset
5117
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 116
diff changeset
5118 Wed Apr 2 15:27:35 1997 Steven L Baur <steve@altair.xemacs.org>
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 116
diff changeset
5119
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
5120 * Makefile.in (install-only): New target. Functionality suggested
118
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 116
diff changeset
5121 by Larry Schwimmer, correct way of doing it suggested by Chuck
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 116
diff changeset
5122 Thompson.
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 116
diff changeset
5123
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 116
diff changeset
5124 * configure.in: Default to "-Olimit 2000" as suggested by Jamie
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 116
diff changeset
5125 Zawinski for SGI cc and Irix 6.
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 116
diff changeset
5126
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 116
diff changeset
5127 Tue Apr 1 12:23:13 1997 Steven L Baur <steve@altair.xemacs.org>
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 116
diff changeset
5128
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 116
diff changeset
5129 * configure.in: Add configuration parameters for Emacs 19.34
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 116
diff changeset
5130 movemail.c (--with-pop, --with-kerberos, --with-hesiod).
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 116
diff changeset
5131
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 116
diff changeset
5132 Fri Mar 28 19:58:41 1997 Steven L Baur <steve@altair.xemacs.org>
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 116
diff changeset
5133
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 116
diff changeset
5134 * configure.in: Remove garbage if [ ... ] constructs and a
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 116
diff changeset
5135 mispatch.
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 116
diff changeset
5136
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5137 Thu Mar 27 18:24:19 1997 Steven L Baur <steve@altair.xemacs.org>
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5138
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5139 * XEmacs 20.1-b10 is released.
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5140
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5141 Wed Mar 26 22:31:10 1997 Steven L Baur <steve@altair.xemacs.org>
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5142
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5143 * Remove vms top-level directory.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
5144
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5145 * XEmacs 19.15 final released to beta testers.
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5146
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5147 Tue Mar 25 19:13:27 1997 Steven L Baur <steve@altair.xemacs.org>
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5148
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5149 * XEmacs 19.15 prefinal released to beta testers.
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5150
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5151 Mon Mar 24 12:28:17 1997 Steven L Baur <steve@altair.xemacs.org>
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5152
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5153 * configure.in (--debug): Correct documentation.
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5154
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5155 Sun Mar 23 17:24:38 1997 Steven L Baur <steve@altair.xemacs.org>
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5156
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5157 * XEmacs 19.15-b104 is released.
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5158
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5159 Sat Mar 22 17:55:15 1997 Darrell Kindred <dkindred@cmu.edu>
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5160
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5161 * configure.in (beta): Add configure support for the -rpath flag
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5162 for IRIX analogous to the Solaris "-R".
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5163
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5164 Sat Mar 22 16:47:08 1997 Steven L Baur <steve@altair.xemacs.org>
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5165
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5166 * info/dir (Packages): Add HM-HTML-Mode to menu.
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5167
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5168 Sat Mar 22 21:27:41 1997 Tomasz J. Cholewo <t.cholewo@ieee.org>
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5169
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 422
diff changeset
5170 * configure.in: Echo only current configuration using 'tee -a'.
116
9f59509498e1 Import from CVS: tag r20-1b10
cvs
parents: 114
diff changeset
5171
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
5172 Fri Mar 21 21:26:01 1997 Steven L Baur <steve@altair.xemacs.org>
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
5173
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
5174 * XEmacs-19.15-b103 is released.
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
5175 * XEmacs-20.0-b9 is released.
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
5176
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
5177 * Makefile.in (top_distclean): Add `Installation' to distclean
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
5178 rule.
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
5179
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
5180 Fri Mar 21 20:05:29 1997 Darrell Kindred <dkindred@cmu.edu>
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
5181
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
5182 * Makefile.in (autoloads): Pass $(MAKE) to update-elc.sh and
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
5183 update-autoloads.sh.
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
5184
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
5185 Thu Mar 20 20:14:16 1997 Steven L Baur <steve@altair.xemacs.org>
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
5186
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
5187 * XEmacs-19.15-b102 is released.
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
5188
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
5189 Tue Mar 18 21:52:36 1997 Steven L Baur <steve@altair.xemacs.org>
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
5190
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
5191 * XEmacs-19.15-b101 is released.
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
5192
112
48d667d6f17f Import from CVS: tag r20-1b8
cvs
parents: 110
diff changeset
5193 Mon Mar 17 19:09:29 1997 Steven L Baur <steve@altair.xemacs.org>
48d667d6f17f Import from CVS: tag r20-1b8
cvs
parents: 110
diff changeset
5194
48d667d6f17f Import from CVS: tag r20-1b8
cvs
parents: 110
diff changeset
5195 * XEmacs-20.1-b8 is released.
48d667d6f17f Import from CVS: tag r20-1b8
cvs
parents: 110
diff changeset
5196 * XEmacs-19.15-b100 is released.
48d667d6f17f Import from CVS: tag r20-1b8
cvs
parents: 110
diff changeset
5197
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
5198 Sat Mar 15 17:15:18 1997 Steven L Baur <steve@altair.xemacs.org>
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
5199
112
48d667d6f17f Import from CVS: tag r20-1b8
cvs
parents: 110
diff changeset
5200 * XEmacs-20.1-b7 is released.
48d667d6f17f Import from CVS: tag r20-1b8
cvs
parents: 110
diff changeset
5201 * XEmacs-19.15-b99 is released.
48d667d6f17f Import from CVS: tag r20-1b8
cvs
parents: 110
diff changeset
5202
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
5203 Thu Mar 13 10:40:11 1997 Steven L Baur <steve@altair.xemacs.org>
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
5204
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
5205 * configure.in: Add sunos4-1-4 header files.
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
5206
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
5207 Wed Mar 12 18:53:08 1997 Steven L Baur <steve@altair.xemacs.org>
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
5208
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
5209 * configure.in: Use new file bsdos3.h with BSDI 3.0.
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
5210
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
5211 Sat Mar 8 15:19:33 1997 Steven L Baur <steve@altair.xemacs.org>
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
5212
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
5213 * XEmacs-20.1-b6 is released.
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
5214 * XEmacs-19.15-b98 is released.
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
5215
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
5216 Wed Mar 5 18:55:36 1997 Steven L Baur <steve@altair.xemacs.org>
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
5217
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
5218 * Makefile.in (install-arch-indep): Offer to compress lisp sources.
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
5219 (gzip-el): New targe for compressed installed lisp sources.
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
5220
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
5221 Tue Mar 4 23:28:37 1997 Martin Buchholz <mrb@eng.sun.com>
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
5222
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
5223 * lib-src/update-elc.sh: VM is compiled after the byte-compiler,
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
5224 but before anything else. More flexible about finding an xemacs
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
5225 to use for byte-compilation (default src/xemacs). Other minor fixes.
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
5226
106
8ff55ebd4be9 Import from CVS: tag r20-1b5
cvs
parents: 104
diff changeset
5227 Mon Mar 3 23:57:56 1997 Steven L Baur <steve@altair.xemacs.org>
8ff55ebd4be9 Import from CVS: tag r20-1b5
cvs
parents: 104
diff changeset
5228
8ff55ebd4be9 Import from CVS: tag r20-1b5
cvs
parents: 104
diff changeset
5229 * XEmacs 20.1-b5 is released.
8ff55ebd4be9 Import from CVS: tag r20-1b5
cvs
parents: 104
diff changeset
5230
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5231 Mon Mar 3 18:09:17 1997 Steven L Baur <steve@altair.xemacs.org>
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5232
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5233 * XEmacs 20.1-b4 is released.
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5234
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5235 Sat Mar 1 15:38:30 1997 Steven L Baur <steve@altair.xemacs.org>
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5236
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5237 * Makefile.in (distclean): Correct typos.
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5238
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5239 * XEmacs 19.15-b96 is released.
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5240
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5241 * configure.in: Symlink site-lisp when using --srcdir.
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5242 Add special handling of lisp directory to allow for multiple
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5243 site-packages files.
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5244
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5245 Fri Feb 28 20:38:46 1997 Steven L Baur <steve@altair.xemacs.org>
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5246
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5247 * Makefile.in (distclean): Create lock and site-lisp directories
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5248 when they don't exist (after being pruned by CVS).
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
5249
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 100
diff changeset
5250 Wed Feb 26 22:12:12 1997 Steven L Baur <steve@altair.xemacs.org>
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 100
diff changeset
5251
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 100
diff changeset
5252 * Makefile.in (top_distclean): Reset src/PURESIZE.h for
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 100
diff changeset
5253 distribution.
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 100
diff changeset
5254
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 100
diff changeset
5255 * XEmacs 20.1-b3 is released.
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 100
diff changeset
5256
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 98
diff changeset
5257 Sun Feb 23 17:10:09 1997 Steven L Baur <steve@altair.xemacs.org>
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 98
diff changeset
5258
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 98
diff changeset
5259 * XEmacs 20.1-b2 is released.
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 98
diff changeset
5260
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 98
diff changeset
5261 Sat Feb 22 14:29:44 1997 Steven L Baur <steve@altair.xemacs.org>
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 98
diff changeset
5262
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 98
diff changeset
5263 * XEmacs 19-15-b'95 is released.
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 98
diff changeset
5264
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 100
diff changeset
5265 Fri Feb 21 22:29:51 1997 Martin Buchholz <mrb@eng.sun.com>
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 100
diff changeset
5266
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 100
diff changeset
5267 * lwlib/xlwscrollbar.c : Fix many scrollbar bugs:
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 100
diff changeset
5268 - "knob" renamed to "slider"
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 100
diff changeset
5269 - leftmost pixel wasn't sensitive to button clicks, while righmost
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 100
diff changeset
5270 pixel was.
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 100
diff changeset
5271 - many glitches fixed if Emacs*XlwScrollBar.ArrowPosition:same:
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 100
diff changeset
5272 - goobers on top of up-arrow removed.
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 100
diff changeset
5273 - up-arrow would not always be redrawn when necessary
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 100
diff changeset
5274 - slider drag would be `off' by size of up-arrow
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 100
diff changeset
5275 - horizontal and vertical scrollbars didn't use exactly the same
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 100
diff changeset
5276 dimensions.
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 100
diff changeset
5277 - slider was never drawn if XlwScrollBar.shadowThickness was 0.
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 100
diff changeset
5278 - Now up- and down-arrows actually work near beginning/end of buffer!
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents: 100
diff changeset
5279
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 98
diff changeset
5280 Thu Feb 20 12:40:57 1997 Jan Vroonhof <vroonhof@math.ethz.ch>
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 98
diff changeset
5281
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 98
diff changeset
5282 * configure.in (with_xauth): Attempted correction of test for
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 98
diff changeset
5283 libXmu on SunOS.
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 98
diff changeset
5284
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
5285 Sat Feb 15 14:11:03 1997 Steven L Baur <steve@altair.xemacs.org>
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
5286
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
5287 * XEmacs 20.1-b1 is released.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
5288 * XEmacs 19.15-b94 is released.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
5289
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
5290 Fri Feb 14 23:23:03 1997 Steven L Baur <steve@altair.xemacs.org>
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
5291
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
5292 * README: ``This directory tree holds version 19.13 ...'' ???
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
5293
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
5294 Sun Feb 9 16:15:55 1997 Steven L Baur <steve@altair.xemacs.org>
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
5295
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
5296 * XEmacs 19.15-b93 is released.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
5297 XEmacs 20.0 is released to the 'net.
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 96
diff changeset
5298
96
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 94
diff changeset
5299 Fri Feb 7 19:21:34 1997 Steven L Baur <steve@altair.xemacs.org>
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 94
diff changeset
5300
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 94
diff changeset
5301 * XEmacs 20.0try3 is released.
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 94
diff changeset
5302
94
1040fe1366ac Import from CVS: tag xemacs-20-0f2
cvs
parents: 88
diff changeset
5303 Wed Feb 5 18:03:06 1997 Steven L Baur <steve@altair.xemacs.org>
1040fe1366ac Import from CVS: tag xemacs-20-0f2
cvs
parents: 88
diff changeset
5304
96
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 94
diff changeset
5305 * XEmacs 20.0try2 is released.
94
1040fe1366ac Import from CVS: tag xemacs-20-0f2
cvs
parents: 88
diff changeset
5306
96
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 94
diff changeset
5307 Mon Feb 3 19:39:08 1997 Steven L Baur <steve@altair.xemacs.org>
94
1040fe1366ac Import from CVS: tag xemacs-20-0f2
cvs
parents: 88
diff changeset
5308
1040fe1366ac Import from CVS: tag xemacs-20-0f2
cvs
parents: 88
diff changeset
5309 * XEmacs 19.15-b92 is released.
1040fe1366ac Import from CVS: tag xemacs-20-0f2
cvs
parents: 88
diff changeset
5310
88
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 84
diff changeset
5311 Sat Feb 1 18:17:38 1997 Steven L Baur <steve@altair.xemacs.org>
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 84
diff changeset
5312
96
dbb370e3c29e Import from CVS: tag r20-0final
cvs
parents: 94
diff changeset
5313 * XEmacs 20.0try1 is released.
94
1040fe1366ac Import from CVS: tag xemacs-20-0f2
cvs
parents: 88
diff changeset
5314 * XEmacs 19.15-b91 AKA XEmacs '97 NOT! is released.
88
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 84
diff changeset
5315
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 84
diff changeset
5316 Sat Feb 1 00:00:48 1997 Steven L Baur <steve@altair.xemacs.org>
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 84
diff changeset
5317
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 84
diff changeset
5318 * PROBLEMS: Updated from beta test bug reports.
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 84
diff changeset
5319 Put in outline-mode/outl-mouse-minor-mode by default.
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 84
diff changeset
5320
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 84
diff changeset
5321 Wed Jan 29 19:59:41 1997 Steven L Baur <steve@altair.xemacs.org>
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 84
diff changeset
5322
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 84
diff changeset
5323 * CHANGES-beta: XEmacs 20.0-b93 is released.
821dec489c24 Import from CVS: tag r20-0
cvs
parents: 84
diff changeset
5324
84
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 82
diff changeset
5325 Sat Jan 25 15:43:59 1997 Steven L Baur <steve@altair.xemacs.org>
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 82
diff changeset
5326
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 82
diff changeset
5327 * CHANGES-beta: XEmacs 20.0-b92 is released.
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 82
diff changeset
5328
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 82
diff changeset
5329 Fri Jan 24 09:54:01 1997 Steven L Baur <steve@altair.xemacs.org>
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 82
diff changeset
5330
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 82
diff changeset
5331 * lwlib/xlwmenu.c (massage_resource_name): Changed comparison of
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 82
diff changeset
5332 char and pointer.
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 82
diff changeset
5333
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 82
diff changeset
5334 Thu Jan 23 10:39:34 1997 Martin Buchholz <mrb@eng.sun.com>
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 82
diff changeset
5335
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 82
diff changeset
5336 * lib-src/update-elc.sh (ignore_dirs): Quoting portability.
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 82
diff changeset
5337
82
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
5338 Wed Jan 22 21:07:17 1997 Steven L Baur <steve@altair.xemacs.org>
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
5339 * XEmacs 20.0-b91 (prerelease 2) is released.
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
5340
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
5341 * configure.in (--with-scrollbars): Add Athena3d as a toolkit
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
5342 type.
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
5343
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
5344 * lwlib/lwlib-Xaw.c (xaw_update_one_widget): Let Athena 3d have 0
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
5345 borderwidth.
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
5346 (xaw_scrollbar_scroll): Use SCROLLBAR_LINE_UP and
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
5347 SCROLLBAR_LINE_DOWN since that's current the only to get to the
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
5348 bottom of the buffer. :-(
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
5349
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
5350 Tue Jan 21 20:01:19 1997 Steven L. Baur <steve@altair.xemacs.org>
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
5351
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
5352 * configure.in (beta): Add LWLIB_USES_ATHENA for odd
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
5353 configurations that use both Motif and Athena.
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
5354
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
5355 Wed Jan 15 12:55:19 1997 Steven L Baur <steve@altair.xemacs.org>
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
5356
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
5357 * info/dir (Gnus): Updated spelling and info.
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
5358
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
5359 Mon Jan 13 13:37:27 1997 Steven L Baur <steve@altair.xemacs.org>
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
5360
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
5361 * configure.in: Remove assignment of NON_GNU_CPP for irix-6.0.
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
5362
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
5363 Mon Jan 13 00:36:01 1997 Martin Buchholz <mrb@eng.sun.com>
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
5364
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
5365 * lib-src/make-docfile.c (scan_lisp_file): eliminate doc-string
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
5366 warnings for ccl-read-*
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
5367
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5368 Sat Jan 11 12:05:31 1997 Steven L Baur <steve@altair.xemacs.org>
82
6a378aca36af Import from CVS: tag r20-0b91
cvs
parents: 80
diff changeset
5369
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5370 * XEmacs 20.0 beta90 (prerelease 1) is released.
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5371 * XEmacs 19.15 beta90 (prerelease 1) is released.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
5372
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5373 Tue Jan 7 08:45:16 1997 Steven L Baur <steve@altair.xemacs.org>
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5374
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5375 * configure.in (LIBS): Revise test for XFree86 (look for XF86Config).
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5376
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 76
diff changeset
5377 Sat Jan 4 14:52:57 1997 Steven L Baur <steve@altair.xemacs.org>
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 76
diff changeset
5378 * XEmacs 20.0 beta 34 is released.
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 76
diff changeset
5379 * XEmacs 19.15 beta 7 is released.
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 76
diff changeset
5380
177
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 175
diff changeset
5381 Fri Jan 3 15:18:59 1997 Jeff Miller <jmiller@smart.net>
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 76
diff changeset
5382
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 76
diff changeset
5383 * lwlib/Makefile.in.in: lwlib is required if X11 is used.
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 76
diff changeset
5384
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5385 Wed Jan 1 08:30:48 1997 Martin Buchholz <mrb@eng.sun.com>
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5386
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
5387 * src/emacs.c: Make sure
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
5388 `./temacs -batch -l loadup.el run-temacs <emacs-args>'
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5389 works properly
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5390
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5391 * src/Makefile.in.in (rtcmacs): Add support for RTC, Sun's
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5392 competitor to Purify.
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5393
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5394 * man/lispref/symbols.texi: Fix up bit vector documentation
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5395 * man/lispref/sequences.texi: Fix up bit vector documentation
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5396
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5397 * lisp/sunpro/sunpro-load.el: Only preload mime-setup for Sun.
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5398
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5399 * lisp/prim/update-elc.el: Don't rely on autoloads.
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5400
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5401 Tue Dec 31 09:46:13 1996 Martin Buchholz <mrb@eng.sun.com>
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5402
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5403 * lisp/prim/auto-autoloads.el: New, completely program-generated, file
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5404 * lib-src/update-autoloads.sh: Rewritten to use auto-autoloads.el.
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5405 * lisp/utils/autoload.el: Reorganization of autoload mechanism:
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5406 Errors during autoload generation are just that - errors.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
5407
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5408 Generated autoloads are now in a separate file of their own.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
5409
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5410 Reliability of autoload generation greatly increased.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
5411
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5412 Distribution smaller by about 100k.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
5413
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5414 `make autoloads' is still the preferred mechanism for update.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
5415
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5416 Autoloads are always regenerated completely from scratch. This
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5417 avoids errors with obsolete or corrupted autoload entries.
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5418
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5419 Caching of autoload entries using timestamps has been eliminated.
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
5420
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5421 Files that have no autoloads no longer have a comment placed into
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5422 the generated autoloads file.
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5423
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5424 There was a bug where autoload entries would sometimes end up
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5425 being inserted into the *middle* of other autoload entries,
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5426 thereby corrupting them.
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5427
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5428 * src/event-Xt.c: Remove SUNOS_GCC_L0_BUG kludge.
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5429
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5430 Sun Dec 29 05:37:43 1996 Martin Buchholz <mrb@eng.sun.com>
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5431
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5432 * lib-src/update-autoloads.sh: Make sure that `make autoloads'
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5433 doesn't use the autoload facility to load `autoload';
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5434 load it explicity instead.
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5435
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5436 * lib-src/update-elc.sh (ignore_dirs): ignore SCCS, CVS, RCS dirs
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5437
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5438 * man/Makefile: Reinstate hyperbole & oo-browser manuals
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5439
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5440 * lisp/modes/mail-abbrevs.el: Apply patch originated from Noah Friedman
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5441
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5442 * src/mule-charset.c: Use lower case for charset registry, to
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5443 match XLFD.
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5444
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5445 * Makefile.in: replace list of info files with *.info* - one less
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5446 maintenance headache
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5447
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5448 * man/oo-browser.texi: Fix TeXability
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5449
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5450 * man/hyperbole.texi: Fix TeXability
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5451
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5452 * man/vhdl-mode.texi: Fix TeXability
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5453
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5454 * lisp/prim/loaddefs.el: Wholesale housecleaning
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5455 `make autoloads' should finally work.
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5456
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5457 * lib-src/emacsclient.c (main): ANSIfication, compiler warning removal
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5458
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5459 * lisp/mule/mule-files.el: Add support for multi-lingual info files.
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5460
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5461 * lib-src/update-elc.sh: `make all-elc' was updating files in
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5462 `special' directories without using the Makefiles
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5463 designed for that purpose.
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5464 - make sure ilisp isn't remade every time through `make all-elc'.
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5465
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5466 * info/dir (Packages): Add Japanese TM info files
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5467
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5468 * src/inline.c: Allow compilation with `gcc -g'
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5469
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5470 * src/syntax.c (word_constituent_p): Allow compilation with `gcc -g'
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5471
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5472 * src/lread.c: Don't put `...' immediately after a filename, so
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5473 that various tools can recognize the filename as such.
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5474
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5475 * src/event-Xt.c (x_to_emacs_keysym): Fix crash when
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 382
diff changeset
5476 --with-xim=xlib and key event on window frame.
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5477 Change return foo to return (foo) when return is a macro.
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5478
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5479 * src/editfns.c (Ffollowing_char): docstring fixes.
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5480
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5481 * man/tm/Makefile: Add support for Japanese TM info (but not dvi) files.
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5482 This Makefile is no longer officially broken.
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5483
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5484 * info/dir: Add Japanese tm documents.
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5485
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5486 * man/tm/tm-vm-en.texi: Make document TeX-friendly.
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5487
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5488 * lib-src/update-autoloads.sh (EMACS): Don't rely on non-portable
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5489 xargs -i flag.
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5490
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5491 * lisp/mule/mule-files.el (file-coding-system-alist): Make sure
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5492 the `binary' coding system is used for .gz and .Z extensions.
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5493
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5494 * man/viper.texi: Viper version 2.90
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5495
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5496 * man/ediff.texi: Ediff Version 2.62
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5497
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5498 * lisp/packages/ispell.el (ispell-word): Avoid using strings with
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5499 define-key, for compatibility with loaddefs.el
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5500
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5501 * lisp/modes/eiffel3.el: Make compatible with update-autoloads.
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5502
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5503 * lisp/ilisp/Makefile (elc): Add target to avoid re-compilation.
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5504
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5505 * lib-src/update-elc.sh: XEmacs sometimes re-byte-compiled elisp
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5506 files in dirs that have their own Makefiles.
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
5507
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 76
diff changeset
5508 Sun Dec 29 17:02:49 1996 Steven L Baur <steve@altair.xemacs.org>
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 76
diff changeset
5509
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 76
diff changeset
5510 * Makefile.in (install-arch-indep): Force compression with `gzip -f'.
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 76
diff changeset
5511
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 76
diff changeset
5512 * lib-src/update-elc.sh (NUMTOCOMPILE): Ignore CVS directories.
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 76
diff changeset
5513
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 76
diff changeset
5514 * Makefile.in (install-arch-indep): Catch .info-[0-9]* files for
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 76
diff changeset
5515 installation.
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 76
diff changeset
5516
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 76
diff changeset
5517 Sat Dec 28 15:33:27 1996 Steven L Baur <steve@altair.xemacs.org>
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 76
diff changeset
5518
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 76
diff changeset
5519 * XEmacs 20.0 beta 33 is released.
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 76
diff changeset
5520 * XEmacs 19.15 beta 6 is released.
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 76
diff changeset
5521
76
c0c698873ce1 Import from CVS: tag r20-0b33
cvs
parents: 74
diff changeset
5522 Fri Dec 27 01:02:41 1996 Martin Buchholz <mrb@eng.sun.com>
c0c698873ce1 Import from CVS: tag r20-0b33
cvs
parents: 74
diff changeset
5523
c0c698873ce1 Import from CVS: tag r20-0b33
cvs
parents: 74
diff changeset
5524 * Makefile.in (install-arch-indep): Simplify installation of info
c0c698873ce1 Import from CVS: tag r20-0b33
cvs
parents: 74
diff changeset
5525 pages.
c0c698873ce1 Import from CVS: tag r20-0b33
cvs
parents: 74
diff changeset
5526
c0c698873ce1 Import from CVS: tag r20-0b33
cvs
parents: 74
diff changeset
5527 Sat Dec 21 15:20:20 1996 Steven L Baur <steve@altair.xemacs.org>
c0c698873ce1 Import from CVS: tag r20-0b33
cvs
parents: 74
diff changeset
5528 * XEmacs 20.0-b32 released.
c0c698873ce1 Import from CVS: tag r20-0b33
cvs
parents: 74
diff changeset
5529
c0c698873ce1 Import from CVS: tag r20-0b33
cvs
parents: 74
diff changeset
5530 * XEmacs 19.15-b5 released.
c0c698873ce1 Import from CVS: tag r20-0b33
cvs
parents: 74
diff changeset
5531
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
5532 Wed Dec 18 20:22:08 1996 Martin Buchholz <mrb@eng.sun.com>
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
5533
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
5534 * configure.in: Reformat. Fix shared include file rename
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
5535 problem.
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
5536
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
5537 * configure: Reformat. Fix shared include file rename problem.
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
5538
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
5539 * dynodump/dynodump.c (__EXTENSIONS__): Define it.
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
5540
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
5541 Thu Dec 12 13:19:00 1996 Joseph J Nuspl <nuspl@nvwls.cc.purdue.edu>
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
5542
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
5543 * Makefile.in (install-arch-indep): Install infofiles gzipped by
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
5544 default.
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
5545
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
5546 Tue Dec 10 19:25:25 1996 Steven L Baur <steve@altair.xemacs.org>
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
5547
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
5548 * CHANGES-beta: XEmacs 20.0-b31 is released.
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 72
diff changeset
5549
72
b9518feda344 Import from CVS: tag r20-0b31
cvs
parents:
diff changeset
5550 Tue Dec 10 18:33:19 1996 Rod Whitby <rwhitby@asc.sps.mot.com>
b9518feda344 Import from CVS: tag r20-0b31
cvs
parents:
diff changeset
5551
b9518feda344 Import from CVS: tag r20-0b31
cvs
parents:
diff changeset
5552 * info/vhdl-mode.info: New file.
b9518feda344 Import from CVS: tag r20-0b31
cvs
parents:
diff changeset
5553
b9518feda344 Import from CVS: tag r20-0b31
cvs
parents:
diff changeset
5554 * info/dir (Packages): Add vhdl-mode documentation.
b9518feda344 Import from CVS: tag r20-0b31
cvs
parents:
diff changeset
5555
b9518feda344 Import from CVS: tag r20-0b31
cvs
parents:
diff changeset
5556 Tue Dec 10 18:27:02 1996 Martin Buchholz <mrb@Eng.Sun.COM>
b9518feda344 Import from CVS: tag r20-0b31
cvs
parents:
diff changeset
5557
b9518feda344 Import from CVS: tag r20-0b31
cvs
parents:
diff changeset
5558 * configure: Make shared/dynamic flags work much more logically.
b9518feda344 Import from CVS: tag r20-0b31
cvs
parents:
diff changeset
5559
b9518feda344 Import from CVS: tag r20-0b31
cvs
parents:
diff changeset
5560 Tue Dec 10 09:17:22 1996 David Worenklein <dcw@gcm.com>
b9518feda344 Import from CVS: tag r20-0b31
cvs
parents:
diff changeset
5561
b9518feda344 Import from CVS: tag r20-0b31
cvs
parents:
diff changeset
5562 * configure.in (machine): Patch to make newly renamed shared
b9518feda344 Import from CVS: tag r20-0b31
cvs
parents:
diff changeset
5563 link include files work.
b9518feda344 Import from CVS: tag r20-0b31
cvs
parents:
diff changeset
5564
b9518feda344 Import from CVS: tag r20-0b31
cvs
parents:
diff changeset
5565 Sat Dec 7 16:28:10 1996 Martin Buchholz <mrb@Eng.Sun.COM>
b9518feda344 Import from CVS: tag r20-0b31
cvs
parents:
diff changeset
5566
b9518feda344 Import from CVS: tag r20-0b31
cvs
parents:
diff changeset
5567 * configure.in: Configure for POSIX getcwd if available.
b9518feda344 Import from CVS: tag r20-0b31
cvs
parents:
diff changeset
5568
b9518feda344 Import from CVS: tag r20-0b31
cvs
parents:
diff changeset
5569 Thu Dec 5 11:56:05 1996 Joseph J Nuspl <nuspl@nvwls.cc.purdue.edu>
b9518feda344 Import from CVS: tag r20-0b31
cvs
parents:
diff changeset
5570
b9518feda344 Import from CVS: tag r20-0b31
cvs
parents:
diff changeset
5571 * configure.in (LIBS): Fix typo in dialog box test.