Mercurial > hg > xemacs-beta
annotate ChangeLog @ 5050:6f2158fa75ed
Fix quick-build, use asserts() in place of ABORT()
-------------------- ChangeLog entries follow: --------------------
ChangeLog addition:
2010-02-20 Ben Wing <ben@xemacs.org>
* configure.ac (XE_COMPLEX_ARG):
Correct doc of --quick-build: It also doesn't check for Lisp shadows.
src/ChangeLog addition:
2010-02-20 Ben Wing <ben@xemacs.org>
* EmacsFrame.c:
* EmacsFrame.c (EmacsFrameRecomputeCellSize):
* alloca.c (i00afunc):
* buffer.c:
* buffer.c (MARKED_SLOT):
* buffer.c (complex_vars_of_buffer):
* cm.c:
* cm.c (cmcheckmagic):
* console.c:
* console.c (MARKED_SLOT):
* device-x.c:
* device-x.c (x_get_visual_depth):
* emacs.c (sort_args):
* eval.c (throw_or_bomb_out):
* event-stream.c:
* event-stream.c (Fadd_timeout):
* event-stream.c (Fadd_async_timeout):
* event-stream.c (Frecent_keys):
* events.c:
* events.c (Fdeallocate_event):
* events.c (event_pixel_translation):
* extents.c:
* extents.c (process_extents_for_insertion_mapper):
* fns.c (Fbase64_encode_region):
* fns.c (Fbase64_encode_string):
* fns.c (Fbase64_decode_region):
* fns.c (Fbase64_decode_string):
* font-lock.c:
* font-lock.c (find_context):
* frame-x.c:
* frame-x.c (x_wm_mark_shell_size_user_specified):
* frame-x.c (x_wm_mark_shell_position_user_specified):
* frame-x.c (x_wm_set_shell_iconic_p):
* frame-x.c (x_wm_set_cell_size):
* frame-x.c (x_wm_set_variable_size):
* frame-x.c (x_wm_store_class_hints):
* frame-x.c (x_wm_maybe_store_wm_command):
* frame-x.c (x_initialize_frame_size):
* frame.c (delete_frame_internal):
* frame.c (change_frame_size_1):
* free-hook.c (check_free):
* free-hook.c (note_block_input):
* free-hook.c (log_gcpro):
* gccache-gtk.c (gc_cache_lookup):
* gccache-x.c:
* gccache-x.c (gc_cache_lookup):
* glyphs-gtk.c:
* glyphs-gtk.c (init_image_instance_from_gdk_pixmap):
* glyphs-x.c:
* glyphs-x.c (extract_xpm_color_names):
* insdel.c:
* insdel.c (move_gap):
* keymap.c:
* keymap.c (keymap_lookup_directly):
* keymap.c (keymap_delete_inverse_internal):
* keymap.c (accessible_keymaps_mapper_1):
* keymap.c (where_is_recursive_mapper):
* lisp.h:
* lstream.c (make_lisp_buffer_stream_1):
* macros.c:
* macros.c (pop_kbd_macro_event):
* mc-alloc.c (remove_page_from_used_list):
* menubar-x.c:
* menubar-x.c (set_frame_menubar):
* ralloc.c:
* ralloc.c (obtain):
* ralloc.c (relinquish):
* ralloc.c (relocate_blocs):
* ralloc.c (resize_bloc):
* ralloc.c (r_alloc_free):
* ralloc.c (r_re_alloc):
* ralloc.c (r_alloc_thaw):
* ralloc.c (init_ralloc):
* ralloc.c (Free_Addr_Block):
* scrollbar-x.c:
* scrollbar-x.c (x_update_scrollbar_instance_status):
* sunplay.c (init_device):
* unexnt.c:
* unexnt.c (read_in_bss):
* unexnt.c (map_in_heap):
* window.c:
* window.c (real_window):
* window.c (window_display_lines):
* window.c (window_display_buffer):
* window.c (set_window_display_buffer):
* window.c (unshow_buffer):
* window.c (Fget_lru_window):
if (...) ABORT(); ---> assert();
More specifically:
if (x == y) ABORT (); --> assert (x != y);
if (x != y) ABORT (); --> assert (x == y);
if (x > y) ABORT (); --> assert (x <= y);
etc.
if (!x) ABORT (); --> assert (x);
if (x) ABORT (); --> assert (!x);
DeMorgan's Law's applied and manually simplified:
if (x && !y) ABORT (); --> assert (!x || y);
if (!x || y >= z) ABORT (); --> assert (x && y < z);
Checked to make sure that assert() of an expression with side
effects ensures that the side effects get executed even when
asserts are disabled, and add a comment about this being a
requirement of any "disabled assert" expression.
* depend:
* make-src-depend:
* make-src-depend (PrintDeps):
Fix broken code in make-src-depend so it does what it was always
supposed to do, which was separate out config.h and lisp.h and
all the files they include into separate variables in the
depend part of Makefile so that quick-build can turn off the
lisp.h/config.h/text.h/etc. dependencies of the source files, to
speed up recompilation.
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Sat, 20 Feb 2010 05:05:54 -0600 |
parents | 2ade80e8c640 |
children | b72f27a08ed5 c97dc3b6de63 |
rev | line source |
---|---|
5050
6f2158fa75ed
Fix quick-build, use asserts() in place of ABORT()
Ben Wing <ben@xemacs.org>
parents:
5016
diff
changeset
|
1 2010-02-20 Ben Wing <ben@xemacs.org> |
6f2158fa75ed
Fix quick-build, use asserts() in place of ABORT()
Ben Wing <ben@xemacs.org>
parents:
5016
diff
changeset
|
2 |
6f2158fa75ed
Fix quick-build, use asserts() in place of ABORT()
Ben Wing <ben@xemacs.org>
parents:
5016
diff
changeset
|
3 * configure.ac (XE_COMPLEX_ARG): |
6f2158fa75ed
Fix quick-build, use asserts() in place of ABORT()
Ben Wing <ben@xemacs.org>
parents:
5016
diff
changeset
|
4 Correct doc of --quick-build: It also doesn't check for Lisp shadows. |
6f2158fa75ed
Fix quick-build, use asserts() in place of ABORT()
Ben Wing <ben@xemacs.org>
parents:
5016
diff
changeset
|
5 |
5016
2ade80e8c640
enable more warnings and fix them
Ben Wing <ben@xemacs.org>
parents:
4991
diff
changeset
|
6 2010-02-08 Ben Wing <ben@xemacs.org> |
2ade80e8c640
enable more warnings and fix them
Ben Wing <ben@xemacs.org>
parents:
4991
diff
changeset
|
7 |
2ade80e8c640
enable more warnings and fix them
Ben Wing <ben@xemacs.org>
parents:
4991
diff
changeset
|
8 * configure: |
2ade80e8c640
enable more warnings and fix them
Ben Wing <ben@xemacs.org>
parents:
4991
diff
changeset
|
9 * configure.ac (TAB): |
2ade80e8c640
enable more warnings and fix them
Ben Wing <ben@xemacs.org>
parents:
4991
diff
changeset
|
10 Various warnings that used to be present had mistakenly gotten |
2ade80e8c640
enable more warnings and fix them
Ben Wing <ben@xemacs.org>
parents:
4991
diff
changeset
|
11 turned off. Turn them back on. |
2ade80e8c640
enable more warnings and fix them
Ben Wing <ben@xemacs.org>
parents:
4991
diff
changeset
|
12 |
4991
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
13 2010-02-06 Ben Wing <ben@xemacs.org> |
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
14 |
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
15 * configure: |
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
16 * configure.ac (AC_LANG): |
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
17 * configure.ac (TAB): |
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
18 Add AC_LANG(C++) defs in a way very similar to AC_LANG(C), inserting |
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
19 our own flags, compiler, etc. |
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
20 |
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
21 When using g++, if we found ndbm, check whether we can compile a |
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
22 file using g++ and ndbm.h, calling some DBM routines. Currently, this |
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
23 fails because the prototypes in ndbm.h are incomplete, omitting the |
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
24 arguments, which doesn't work with g++. When ndbm.h is bad, we don't |
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
25 include it and instead provide our own prototypes; otherwise, we |
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
26 define TRUST_NDBM_H_PROTOTYPES, which signals to use the ones in |
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
27 ndbm.h. |
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
28 |
4961
b90f8cf474e0
Change Xft warning in configure.ac to make filtering it more safe
Ben Wing <ben@xemacs.org>
parents:
4957
diff
changeset
|
29 2010-01-31 Ben Wing <ben@xemacs.org> |
b90f8cf474e0
Change Xft warning in configure.ac to make filtering it more safe
Ben Wing <ben@xemacs.org>
parents:
4957
diff
changeset
|
30 |
b90f8cf474e0
Change Xft warning in configure.ac to make filtering it more safe
Ben Wing <ben@xemacs.org>
parents:
4957
diff
changeset
|
31 * configure.ac (TAB): |
b90f8cf474e0
Change Xft warning in configure.ac to make filtering it more safe
Ben Wing <ben@xemacs.org>
parents:
4957
diff
changeset
|
32 Say "This Xft feature" rather than just "This feature" to make it |
b90f8cf474e0
Change Xft warning in configure.ac to make filtering it more safe
Ben Wing <ben@xemacs.org>
parents:
4957
diff
changeset
|
33 possible to more safely filter out the warning in my `runcc' |
b90f8cf474e0
Change Xft warning in configure.ac to make filtering it more safe
Ben Wing <ben@xemacs.org>
parents:
4957
diff
changeset
|
34 script without the possibility of filtering out genuinely |
b90f8cf474e0
Change Xft warning in configure.ac to make filtering it more safe
Ben Wing <ben@xemacs.org>
parents:
4957
diff
changeset
|
35 important warnings. |
b90f8cf474e0
Change Xft warning in configure.ac to make filtering it more safe
Ben Wing <ben@xemacs.org>
parents:
4957
diff
changeset
|
36 * configure: Regenerate. |
b90f8cf474e0
Change Xft warning in configure.ac to make filtering it more safe
Ben Wing <ben@xemacs.org>
parents:
4957
diff
changeset
|
37 |
4944
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
38 2010-01-23 Ben Wing <ben@xemacs.org> |
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
39 |
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
40 * configure: |
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
41 * configure.ac (XE_COMPLEX_ARG): |
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
42 Expand the help for --with-debug to describe more specifically what |
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
43 exactly gets turned on. Expand the help for --with-error-checking |
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
44 to describe all the possible arguments, including `all', `none', |
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
45 `noFOO', multiple arguments, etc. |
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
46 |
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
47 Change so that `--with-error-checking' is the same as |
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
48 `--with-error-checking=all'. Currently, `--with-error-checking' has |
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
49 no effect at all! It just means "leave all error-checking for |
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
50 specific classes to their default values", which are "maybe", and |
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
51 get converted to "yes" or "no" depending on whether we are running |
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
52 a beta XEmacs. |
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
53 |
4943 | 54 2010-01-24 Ben Wing <ben@xemacs.org> |
55 | |
56 * configure: Rebuild. | |
57 | |
4932 | 58 2010-01-24 Ben Wing <ben@xemacs.org> |
59 | |
60 * aclocal.m4 (XE_SHLIB_STUFF): | |
61 Use -export-all-symbols instead of -export-dynamic on PE targets | |
62 (Cygwin and MinGW). | |
63 | |
64 * configure.ac (XE_EXPAND_VARIABLE): | |
65 * configure.ac (TAB): | |
66 Create variable XEMACS_CC_GPP to check whether we're running g++. | |
67 Don't just check for an executable called `g++' -- it might be | |
68 called g++-4 or whatever. Instead, check for either named `g++*' | |
69 or claiming to be g++ when called with --version. Rewrite code do | |
70 use the variable. | |
71 | |
72 Add -fno-strict-aliasing to optimization flags when GCC and | |
73 optimized, and in all cases with g++, since under these circumstances | |
74 strict aliasing is otherwise assumed, and XEmacs can't easily be | |
75 made to respect its restrictions. | |
76 | |
77 * configure: Regenerate. | |
78 | |
79 | |
80 | |
4916
a6c778975d7d
split USE_XFT into HAVE_XFT/USE_XFT
Ben Wing <ben@xemacs.org>
parents:
4887
diff
changeset
|
81 2010-02-01 Ben Wing <ben@xemacs.org> |
a6c778975d7d
split USE_XFT into HAVE_XFT/USE_XFT
Ben Wing <ben@xemacs.org>
parents:
4887
diff
changeset
|
82 |
a6c778975d7d
split USE_XFT into HAVE_XFT/USE_XFT
Ben Wing <ben@xemacs.org>
parents:
4887
diff
changeset
|
83 * configure: |
a6c778975d7d
split USE_XFT into HAVE_XFT/USE_XFT
Ben Wing <ben@xemacs.org>
parents:
4887
diff
changeset
|
84 * configure.ac (TAB): |
a6c778975d7d
split USE_XFT into HAVE_XFT/USE_XFT
Ben Wing <ben@xemacs.org>
parents:
4887
diff
changeset
|
85 USE_XFT* -> HAVE_XFT*. |
a6c778975d7d
split USE_XFT into HAVE_XFT/USE_XFT
Ben Wing <ben@xemacs.org>
parents:
4887
diff
changeset
|
86 |
4878
3a4e815c821d
commit ChangeLog for PROBLEMS change
Ben Wing <ben@xemacs.org>
parents:
4851
diff
changeset
|
87 2010-01-14 Ben Wing <ben@xemacs.org> |
3a4e815c821d
commit ChangeLog for PROBLEMS change
Ben Wing <ben@xemacs.org>
parents:
4851
diff
changeset
|
88 |
3a4e815c821d
commit ChangeLog for PROBLEMS change
Ben Wing <ben@xemacs.org>
parents:
4851
diff
changeset
|
89 * PROBLEMS: |
3a4e815c821d
commit ChangeLog for PROBLEMS change
Ben Wing <ben@xemacs.org>
parents:
4851
diff
changeset
|
90 Add description of crash on recent Cygwin 1.7 when using C++, NEWGC |
3a4e815c821d
commit ChangeLog for PROBLEMS change
Ben Wing <ben@xemacs.org>
parents:
4851
diff
changeset
|
91 and optimization. |
3a4e815c821d
commit ChangeLog for PROBLEMS change
Ben Wing <ben@xemacs.org>
parents:
4851
diff
changeset
|
92 |
4865
6c0bb4d2c23a
Always use our rint(), for rounding consistency with the bignum code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4851
diff
changeset
|
93 2010-01-16 Aidan Kehoe <kehoea@parhasard.net> |
6c0bb4d2c23a
Always use our rint(), for rounding consistency with the bignum code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4851
diff
changeset
|
94 |
6c0bb4d2c23a
Always use our rint(), for rounding consistency with the bignum code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4851
diff
changeset
|
95 * configure: Regenerate, now we no longer look for rint(). |
6c0bb4d2c23a
Always use our rint(), for rounding consistency with the bignum code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4851
diff
changeset
|
96 |
4939
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
97 2010-01-20 Ben Wing <ben@xemacs.org> |
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
98 |
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
99 * Makefile.in.in: |
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
100 * Makefile.in.in (GENERATED_HEADERS): |
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
101 * Makefile.in.in (.PHONY): |
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
102 * Makefile.in.in (src/.gdbinit): |
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
103 * configure: |
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
104 * configure.ac (TAB): |
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
105 etc/gdbinit.in has been moved to src/.gdbinit.in.in. Reflect |
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
106 this -- generate src/.gdbinit.in from src/.gdbinit.in.in, and |
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
107 use the normal mechanism for doing so instead of copying it |
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
108 specially. |
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
109 |
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
110 Add target for `config-changed' and pass down to `src'. |
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
111 Move some PHONY declarations to just before the actual targets. |
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
112 |
4957 | 113 2010-01-16 Aidan Kehoe <kehoea@parhasard.net> |
114 | |
115 * configure: Regenerate, now we no longer look for rint(). | |
116 | |
4848
bde90bc762f2
Remove support for non-pdump on Cygwin.
Jerry James <james@xemacs.org>
parents:
4842
diff
changeset
|
117 2010-01-13 Jerry James <james@xemacs.org> |
bde90bc762f2
Remove support for non-pdump on Cygwin.
Jerry James <james@xemacs.org>
parents:
4842
diff
changeset
|
118 |
bde90bc762f2
Remove support for non-pdump on Cygwin.
Jerry James <james@xemacs.org>
parents:
4842
diff
changeset
|
119 * configure.ac: Update comment about Cygwin and pdump. |
bde90bc762f2
Remove support for non-pdump on Cygwin.
Jerry James <james@xemacs.org>
parents:
4842
diff
changeset
|
120 |
4842
1d775c6304d1
Use with-FOO consistently instead of enable-FOO
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
121 2010-01-13 Ben Wing <ben@xemacs.org> |
1d775c6304d1
Use with-FOO consistently instead of enable-FOO
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
122 |
4850
2727d0d8ef07
Fix executable permissions on source files
Ben Wing <ben@xemacs.org>
parents:
4842
diff
changeset
|
123 * Makefile.in.in (fix-perms): |
2727d0d8ef07
Fix executable permissions on source files
Ben Wing <ben@xemacs.org>
parents:
4842
diff
changeset
|
124 Add target for fix-perms. Run it to correct permissions. |
2727d0d8ef07
Fix executable permissions on source files
Ben Wing <ben@xemacs.org>
parents:
4842
diff
changeset
|
125 |
4842
1d775c6304d1
Use with-FOO consistently instead of enable-FOO
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
126 * INSTALL: |
1d775c6304d1
Use with-FOO consistently instead of enable-FOO
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
127 * PROBLEMS: |
1d775c6304d1
Use with-FOO consistently instead of enable-FOO
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
128 * configure: |
1d775c6304d1
Use with-FOO consistently instead of enable-FOO
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
129 * configure.ac (XE_COMPLEX_ARG): |
1d775c6304d1
Use with-FOO consistently instead of enable-FOO
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
130 * configure.ac (XE_EXPAND_VARIABLE): |
1d775c6304d1
Use with-FOO consistently instead of enable-FOO
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
131 * configure.ac (TAB): |
1d775c6304d1
Use with-FOO consistently instead of enable-FOO
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
132 Rename all instances of enable-FOO to with-FOO. enable-FOO has long |
1d775c6304d1
Use with-FOO consistently instead of enable-FOO
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
133 been aliased to with-FOO and we still preserve this, but formerly |
1d775c6304d1
Use with-FOO consistently instead of enable-FOO
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
134 we randomly used enable-FOO but with-BAR. |
1d775c6304d1
Use with-FOO consistently instead of enable-FOO
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
135 |
4835
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4803
diff
changeset
|
136 2010-01-11 Ben Wing <ben@xemacs.org> |
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4803
diff
changeset
|
137 |
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4803
diff
changeset
|
138 * configure: |
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4803
diff
changeset
|
139 * configure.ac (TAB): |
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4803
diff
changeset
|
140 Add check for cygwin_conv_path(). |
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4803
diff
changeset
|
141 |
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4803
diff
changeset
|
142 2010-01-11 Ben Wing <ben@xemacs.org> |
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4803
diff
changeset
|
143 |
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4803
diff
changeset
|
144 * configure: |
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4803
diff
changeset
|
145 * configure.ac (TAB): |
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4803
diff
changeset
|
146 Define USE_GPLUSPLUS when compiling with g++. |
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4803
diff
changeset
|
147 |
4803
5d120deb60ca
Enable rudimentary support for valgrind, including functions that tell valgrind
Jerry James <james@xemacs.org>
parents:
4790
diff
changeset
|
148 2010-01-06 Jerry James <james@xemacs.org> |
5d120deb60ca
Enable rudimentary support for valgrind, including functions that tell valgrind
Jerry James <james@xemacs.org>
parents:
4790
diff
changeset
|
149 |
5d120deb60ca
Enable rudimentary support for valgrind, including functions that tell valgrind
Jerry James <james@xemacs.org>
parents:
4790
diff
changeset
|
150 * configure.ac: Add --with-valgrind option. |
5d120deb60ca
Enable rudimentary support for valgrind, including functions that tell valgrind
Jerry James <james@xemacs.org>
parents:
4790
diff
changeset
|
151 * configure: Regenerate. |
5d120deb60ca
Enable rudimentary support for valgrind, including functions that tell valgrind
Jerry James <james@xemacs.org>
parents:
4790
diff
changeset
|
152 |
4790
bc4f2511bbea
Remove support for the OffiX drag-and-drop protocol. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
4785
diff
changeset
|
153 2009-12-21 Jerry James <james@xemacs.org> |
bc4f2511bbea
Remove support for the OffiX drag-and-drop protocol. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
4785
diff
changeset
|
154 |
bc4f2511bbea
Remove support for the OffiX drag-and-drop protocol. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
4785
diff
changeset
|
155 * INSTALL: Remove references to OffiX. |
bc4f2511bbea
Remove support for the OffiX drag-and-drop protocol. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
4785
diff
changeset
|
156 * configure.ac: Remove support for OffiX drag-and-drop. |
bc4f2511bbea
Remove support for the OffiX drag-and-drop protocol. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
4785
diff
changeset
|
157 * configure: Regenerate. |
bc4f2511bbea
Remove support for the OffiX drag-and-drop protocol. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
4785
diff
changeset
|
158 |
4785
d6cfba1cc388
Remove the lib-src/yow binary, which is currently unused anyway. See message
Jerry James <james@xemacs.org>
parents:
4782
diff
changeset
|
159 2009-12-21 Jerry James <james@xemacs.org> |
d6cfba1cc388
Remove the lib-src/yow binary, which is currently unused anyway. See message
Jerry James <james@xemacs.org>
parents:
4782
diff
changeset
|
160 |
d6cfba1cc388
Remove the lib-src/yow binary, which is currently unused anyway. See message
Jerry James <james@xemacs.org>
parents:
4782
diff
changeset
|
161 * INSTALL: Replace reference to yow. |
d6cfba1cc388
Remove the lib-src/yow binary, which is currently unused anyway. See message
Jerry James <james@xemacs.org>
parents:
4782
diff
changeset
|
162 |
4782
1523f1d28be1
Remove more obsolete files. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4781
diff
changeset
|
163 2009-12-18 Jerry James <james@xemacs.org> |
1523f1d28be1
Remove more obsolete files. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4781
diff
changeset
|
164 |
1523f1d28be1
Remove more obsolete files. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4781
diff
changeset
|
165 * INSTALL: Remove reference to rcs-checkin. |
1523f1d28be1
Remove more obsolete files. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4781
diff
changeset
|
166 |
4781
8a653fbe5c27
Add copyright and GPL v2 or later notices to Andy Piper's contributions, with
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
167 2009-12-18 Jerry James <james@xemacs.org> |
8a653fbe5c27
Add copyright and GPL v2 or later notices to Andy Piper's contributions, with
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
168 |
8a653fbe5c27
Add copyright and GPL v2 or later notices to Andy Piper's contributions, with
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
169 * build-msw-release.sh: Add copyright and GPL v2 or later header |
8a653fbe5c27
Add copyright and GPL v2 or later notices to Andy Piper's contributions, with
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
170 with permission of Andy Piper. |
8a653fbe5c27
Add copyright and GPL v2 or later notices to Andy Piper's contributions, with
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
171 |
4769
5460287a3327
Remove support for pre-X11R5 systems, including systems without Xmu. See
Jerry James <james@xemacs.org>
parents:
4762
diff
changeset
|
172 2009-12-09 Jerry James <james@xemacs.org> |
5460287a3327
Remove support for pre-X11R5 systems, including systems without Xmu. See
Jerry James <james@xemacs.org>
parents:
4762
diff
changeset
|
173 |
5460287a3327
Remove support for pre-X11R5 systems, including systems without Xmu. See
Jerry James <james@xemacs.org>
parents:
4762
diff
changeset
|
174 * INSTALL: Remove description of --without-xmu option. |
5460287a3327
Remove support for pre-X11R5 systems, including systems without Xmu. See
Jerry James <james@xemacs.org>
parents:
4762
diff
changeset
|
175 * configure.ac: Remove --with[out]-xmu option. Issue informative |
5460287a3327
Remove support for pre-X11R5 systems, including systems without Xmu. See
Jerry James <james@xemacs.org>
parents:
4762
diff
changeset
|
176 error message if libXmu cannot be found. Change all Xmu-related |
5460287a3327
Remove support for pre-X11R5 systems, including systems without Xmu. See
Jerry James <james@xemacs.org>
parents:
4762
diff
changeset
|
177 tests to assume Xmu is present. |
5460287a3327
Remove support for pre-X11R5 systems, including systems without Xmu. See
Jerry James <james@xemacs.org>
parents:
4762
diff
changeset
|
178 * configure: Regenerate. |
5460287a3327
Remove support for pre-X11R5 systems, including systems without Xmu. See
Jerry James <james@xemacs.org>
parents:
4762
diff
changeset
|
179 |
4762
53f27fcd3cd9
Make configure --with-database={dbm|gdbm} work again.
Mike Alexander <mta@umich.edu>
parents:
4759
diff
changeset
|
180 2009-12-01 Mike Alexander <mta@umich.edu> |
53f27fcd3cd9
Make configure --with-database={dbm|gdbm} work again.
Mike Alexander <mta@umich.edu>
parents:
4759
diff
changeset
|
181 |
53f27fcd3cd9
Make configure --with-database={dbm|gdbm} work again.
Mike Alexander <mta@umich.edu>
parents:
4759
diff
changeset
|
182 * configure.ac: Make --with-database={dbm|gdbm} work again, it's |
53f27fcd3cd9
Make configure --with-database={dbm|gdbm} work again.
Mike Alexander <mta@umich.edu>
parents:
4759
diff
changeset
|
183 testing $ndbm_h_found which is never set. |
53f27fcd3cd9
Make configure --with-database={dbm|gdbm} work again.
Mike Alexander <mta@umich.edu>
parents:
4759
diff
changeset
|
184 * configure: ditto |
53f27fcd3cd9
Make configure --with-database={dbm|gdbm} work again.
Mike Alexander <mta@umich.edu>
parents:
4759
diff
changeset
|
185 |
4759
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4753
diff
changeset
|
186 2009-11-10 Jerry James <james@xemacs.org> |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4753
diff
changeset
|
187 |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4753
diff
changeset
|
188 * Makefile.in.in: Remove dynodump support. Delete out-of-date comment |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4753
diff
changeset
|
189 about Xenix. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4753
diff
changeset
|
190 * aclocal.m4: Remove support for old operating systems. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4753
diff
changeset
|
191 * configure.ac: Remove support for old machines and operating systems. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4753
diff
changeset
|
192 Remove support for dynodump. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4753
diff
changeset
|
193 (COFF_ENCAPSULATE) Remove, unused. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4753
diff
changeset
|
194 * configure: Regenerate. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4753
diff
changeset
|
195 * dynodump: Remove. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4753
diff
changeset
|
196 |
4753
dd933a82720c
Describe duplicate symbols warning.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4738
diff
changeset
|
197 2009-11-18 Stephen J. Turnbull <stephen@xemacs.org> |
dd933a82720c
Describe duplicate symbols warning.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4738
diff
changeset
|
198 |
dd933a82720c
Describe duplicate symbols warning.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4738
diff
changeset
|
199 * PROBLEMS: Describe duplicate symbol warnings on Mac OS X. |
dd933a82720c
Describe duplicate symbols warning.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4738
diff
changeset
|
200 |
4738
a6f27e2b3d84
Move functionality of s/darwin.h to configure.ac and config.h.in.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4735
diff
changeset
|
201 2009-11-11 Stephen Turnbull <stephen@xemacs.org> |
a6f27e2b3d84
Move functionality of s/darwin.h to configure.ac and config.h.in.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4735
diff
changeset
|
202 |
a6f27e2b3d84
Move functionality of s/darwin.h to configure.ac and config.h.in.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4735
diff
changeset
|
203 * configure.ac (SYSTEM_MALLOC): Use system malloc on darwin. |
a6f27e2b3d84
Move functionality of s/darwin.h to configure.ac and config.h.in.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4735
diff
changeset
|
204 (USE_PARAM_H): #include <sys/param.h> to do needed #defines. |
a6f27e2b3d84
Move functionality of s/darwin.h to configure.ac and config.h.in.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4735
diff
changeset
|
205 |
4735
80d74fed5399
Remove "old" GNU malloc in src/malloc.c, and all references to it. Drop the
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
206 2009-11-09 Jerry James <james@xemacs.org> |
80d74fed5399
Remove "old" GNU malloc in src/malloc.c, and all references to it. Drop the
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
207 |
4759
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4753
diff
changeset
|
208 * configure.ac: Don't define GNU_MALLOC, as there is no longer an |
4735
80d74fed5399
Remove "old" GNU malloc in src/malloc.c, and all references to it. Drop the
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
209 "old" GNU malloc. |
80d74fed5399
Remove "old" GNU malloc in src/malloc.c, and all references to it. Drop the
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
210 |
4708
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4699
diff
changeset
|
211 2009-10-05 Jerry James <james@xemacs.org> |
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4699
diff
changeset
|
212 |
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4699
diff
changeset
|
213 * configure.ac: Check for external giflib instead of using builtin |
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4699
diff
changeset
|
214 gif support. Remove "(builtin)" from relevant strings. |
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4699
diff
changeset
|
215 |
4699
0e1461b592ce
Check for gdbm/ndbm.h, too.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4663
diff
changeset
|
216 2009-07-31 Stephen Turnbull <stephen@xemacs.org> |
0e1461b592ce
Check for gdbm/ndbm.h, too.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4663
diff
changeset
|
217 |
0e1461b592ce
Check for gdbm/ndbm.h, too.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4663
diff
changeset
|
218 * configure.ac (HAVE_DBM): Use gdbm/ndbm.h if needed. |
0e1461b592ce
Check for gdbm/ndbm.h, too.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4663
diff
changeset
|
219 Thanks to Karl Kleinpaste for the report. |
0e1461b592ce
Check for gdbm/ndbm.h, too.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4663
diff
changeset
|
220 |
4663
5220dbba8ccd
Don't install silly symlinks when $(prefix) != $(exec_prefix).
Mike Sperber <sperber@deinprogramm.de>
parents:
4661
diff
changeset
|
221 2009-07-28 Mike Sperber <mike@xemacs.org> |
5220dbba8ccd
Don't install silly symlinks when $(prefix) != $(exec_prefix).
Mike Sperber <sperber@deinprogramm.de>
parents:
4661
diff
changeset
|
222 |
5220dbba8ccd
Don't install silly symlinks when $(prefix) != $(exec_prefix).
Mike Sperber <sperber@deinprogramm.de>
parents:
4661
diff
changeset
|
223 * Makefile.in.in: Don't install silly symlinks when $(prefix) != |
5220dbba8ccd
Don't install silly symlinks when $(prefix) != $(exec_prefix).
Mike Sperber <sperber@deinprogramm.de>
parents:
4661
diff
changeset
|
224 $(exec_prefix). |
5220dbba8ccd
Don't install silly symlinks when $(prefix) != $(exec_prefix).
Mike Sperber <sperber@deinprogramm.de>
parents:
4661
diff
changeset
|
225 |
4661
24224362882c
Expand @PREFIX@ in paths.h.
Mike Sperber <sperber@deinprogramm.de>
parents:
4660
diff
changeset
|
226 2009-07-28 Mike Sperber <mike@xemacs.org> |
24224362882c
Expand @PREFIX@ in paths.h.
Mike Sperber <sperber@deinprogramm.de>
parents:
4660
diff
changeset
|
227 |
24224362882c
Expand @PREFIX@ in paths.h.
Mike Sperber <sperber@deinprogramm.de>
parents:
4660
diff
changeset
|
228 * configure.ac: Expand @PREFIX@ in paths.h. |
24224362882c
Expand @PREFIX@ in paths.h.
Mike Sperber <sperber@deinprogramm.de>
parents:
4660
diff
changeset
|
229 |
4660
32be564c53dd
More accurate tests for explicitly-set paths.
Mike Sperber <sperber@deinprogramm.de>
parents:
4656
diff
changeset
|
230 2009-07-28 Mike Sperber <mike@xemacs.org> |
32be564c53dd
More accurate tests for explicitly-set paths.
Mike Sperber <sperber@deinprogramm.de>
parents:
4656
diff
changeset
|
231 |
32be564c53dd
More accurate tests for explicitly-set paths.
Mike Sperber <sperber@deinprogramm.de>
parents:
4656
diff
changeset
|
232 * configure.ac: More accurate tests if paths have been set |
32be564c53dd
More accurate tests for explicitly-set paths.
Mike Sperber <sperber@deinprogramm.de>
parents:
4656
diff
changeset
|
233 explicitly on the configure command line. |
32be564c53dd
More accurate tests for explicitly-set paths.
Mike Sperber <sperber@deinprogramm.de>
parents:
4656
diff
changeset
|
234 |
4656
79d1a0524b5f
Use correct separator when registering options to _AC_USER_OPTS.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
235 2009-07-26 Stephen J. Turnbull <stephen@xemacs.org> |
79d1a0524b5f
Use correct separator when registering options to _AC_USER_OPTS.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
236 |
79d1a0524b5f
Use correct separator when registering options to _AC_USER_OPTS.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
237 * configure.ac (XE_MERGED_ARG): Use correct separator when |
79d1a0524b5f
Use correct separator when registering options to _AC_USER_OPTS.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
238 registering options to _AC_USER_OPTS. |
79d1a0524b5f
Use correct separator when registering options to _AC_USER_OPTS.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
239 |
4636
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4614
diff
changeset
|
240 2009-05-18 Stephen J. Turnbull <stephen@xemacs.org> |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4614
diff
changeset
|
241 |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4614
diff
changeset
|
242 * XEmacs 21.5.29 "garbanzo" is released. |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4614
diff
changeset
|
243 |
4614
afbfad080ddd
The URLs in our current config.guess and config.sub files are obsolete.
Jerry James <james@xemacs.org>
parents:
4588
diff
changeset
|
244 2009-02-11 Jerry James <james@xemacs.org> |
afbfad080ddd
The URLs in our current config.guess and config.sub files are obsolete.
Jerry James <james@xemacs.org>
parents:
4588
diff
changeset
|
245 |
afbfad080ddd
The URLs in our current config.guess and config.sub files are obsolete.
Jerry James <james@xemacs.org>
parents:
4588
diff
changeset
|
246 * config.guess: |
afbfad080ddd
The URLs in our current config.guess and config.sub files are obsolete.
Jerry James <james@xemacs.org>
parents:
4588
diff
changeset
|
247 * config.sub: Update to 2009-02-03 versions. |
afbfad080ddd
The URLs in our current config.guess and config.sub files are obsolete.
Jerry James <james@xemacs.org>
parents:
4588
diff
changeset
|
248 |
4588
6a6689b96f00
Adopt Martin's suggestion of "char **argv" throughout configure.ac.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4543
diff
changeset
|
249 2009-01-31 Stephen J. Turnbull <stephen@xemacs.org> |
6a6689b96f00
Adopt Martin's suggestion of "char **argv" throughout configure.ac.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4543
diff
changeset
|
250 |
6a6689b96f00
Adopt Martin's suggestion of "char **argv" throughout configure.ac.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4543
diff
changeset
|
251 * configure.ac: Adopt Martin's suggestion of declaring argv as |
6a6689b96f00
Adopt Martin's suggestion of "char **argv" throughout configure.ac.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4543
diff
changeset
|
252 char ** (from <18643.15864.667930.542671@gargle.gargle.HOWL>). |
6a6689b96f00
Adopt Martin's suggestion of "char **argv" throughout configure.ac.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4543
diff
changeset
|
253 |
4543
fe64f1351cbd
Fix my syntax errors.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4542
diff
changeset
|
254 2008-12-29 Stephen J. Turnbull <stephen@xemacs.org> |
fe64f1351cbd
Fix my syntax errors.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4542
diff
changeset
|
255 |
fe64f1351cbd
Fix my syntax errors.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4542
diff
changeset
|
256 * configure.ac (xemacs_cc_cc_mismatch): Fix my syntax errors. |
fe64f1351cbd
Fix my syntax errors.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4542
diff
changeset
|
257 |
4542
9b3f398ebfb7
Add terminating newline to .hgignore.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4537
diff
changeset
|
258 2008-12-29 Stephen J. Turnbull <stephen@xemacs.org> |
9b3f398ebfb7
Add terminating newline to .hgignore.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4537
diff
changeset
|
259 |
9b3f398ebfb7
Add terminating newline to .hgignore.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4537
diff
changeset
|
260 * .hgignore: Add terminating newline to .hgignore. |
9b3f398ebfb7
Add terminating newline to .hgignore.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4537
diff
changeset
|
261 |
4537
7ca6d57ce12d
Clarify syntax in configure.ac following Vladimir Ivanovic's change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4536
diff
changeset
|
262 2008-12-27 Aidan Kehoe <kehoea@parhasard.net> |
7ca6d57ce12d
Clarify syntax in configure.ac following Vladimir Ivanovic's change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4536
diff
changeset
|
263 |
7ca6d57ce12d
Clarify syntax in configure.ac following Vladimir Ivanovic's change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4536
diff
changeset
|
264 * configure.ac: Vladimir Ivanovic's change of 2008-09-17 was |
7ca6d57ce12d
Clarify syntax in configure.ac following Vladimir Ivanovic's change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4536
diff
changeset
|
265 effective, but not correct. The original issue was that m4 |
7ca6d57ce12d
Clarify syntax in configure.ac following Vladimir Ivanovic's change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4536
diff
changeset
|
266 stripped [], so "char *v[]" in configure.ac became "char *v" in |
7ca6d57ce12d
Clarify syntax in configure.ac following Vladimir Ivanovic's change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4536
diff
changeset
|
267 configure. His change to configure.ac rendered the declaration |
7ca6d57ce12d
Clarify syntax in configure.ac following Vladimir Ivanovic's change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4536
diff
changeset
|
268 "char **v[]", which is effective but confusing; this change |
7ca6d57ce12d
Clarify syntax in configure.ac following Vladimir Ivanovic's change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4536
diff
changeset
|
269 renders it "char **v". |
7ca6d57ce12d
Clarify syntax in configure.ac following Vladimir Ivanovic's change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4536
diff
changeset
|
270 * configure: Regenerate. |
7ca6d57ce12d
Clarify syntax in configure.ac following Vladimir Ivanovic's change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4536
diff
changeset
|
271 |
4513
51fa2a054060
Give better pointers to package documentation.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4475
diff
changeset
|
272 2008-10-25 Stephen J. Turnbull <stephen@xemacs.org> |
51fa2a054060
Give better pointers to package documentation.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4475
diff
changeset
|
273 |
51fa2a054060
Give better pointers to package documentation.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4475
diff
changeset
|
274 * INSTALL: Give better pointers to package documentation. |
51fa2a054060
Give better pointers to package documentation.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4475
diff
changeset
|
275 |
4510
bd1fbed783dd
Improve g++ detection.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
3975
diff
changeset
|
276 2008-10-25 Stephen J. Turnbull <stephen@xemacs.org> |
bd1fbed783dd
Improve g++ detection.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
3975
diff
changeset
|
277 |
bd1fbed783dd
Improve g++ detection.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
3975
diff
changeset
|
278 * configure.ac (xemacs_cc_cc_mismatch): Improve g++ detection. |
bd1fbed783dd
Improve g++ detection.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
3975
diff
changeset
|
279 |
4536
0ed907d0f1e9
configure,configure.ac: Fixed two typos in args of main: char *v -> char **v
"Vladimir G. Ivanovic" <vgivanovic@comcast.net>
parents:
4514
diff
changeset
|
280 2008-09-17 Vladimir G. Ivanovic <vladimir@acm.org> |
0ed907d0f1e9
configure,configure.ac: Fixed two typos in args of main: char *v -> char **v
"Vladimir G. Ivanovic" <vgivanovic@comcast.net>
parents:
4514
diff
changeset
|
281 |
0ed907d0f1e9
configure,configure.ac: Fixed two typos in args of main: char *v -> char **v
"Vladimir G. Ivanovic" <vgivanovic@comcast.net>
parents:
4514
diff
changeset
|
282 * configure: Fixed two typos in args of main: char *v -> char **v |
0ed907d0f1e9
configure,configure.ac: Fixed two typos in args of main: char *v -> char **v
"Vladimir G. Ivanovic" <vgivanovic@comcast.net>
parents:
4514
diff
changeset
|
283 * configure.ac: Fixed two typos in args of main: char *v -> char **v |
0ed907d0f1e9
configure,configure.ac: Fixed two typos in args of main: char *v -> char **v
"Vladimir G. Ivanovic" <vgivanovic@comcast.net>
parents:
4514
diff
changeset
|
284 |
4496
772c80e0e180
with-xft defaults to xft being used with a default setting.
Mats Lidell <matsl@xemacs.org>
parents:
4475
diff
changeset
|
285 2008-08-03 Mats Lidell <matsl@xemacs.org> |
772c80e0e180
with-xft defaults to xft being used with a default setting.
Mats Lidell <matsl@xemacs.org>
parents:
4475
diff
changeset
|
286 |
4497
f863b2ee146f
Rename xft_gauge to xft_gauges.
Mats Lidell <matsl@xemacs.org>
parents:
4496
diff
changeset
|
287 * configure.ac: Fix typo xft_gauge to xft_gauges |
f863b2ee146f
Rename xft_gauge to xft_gauges.
Mats Lidell <matsl@xemacs.org>
parents:
4496
diff
changeset
|
288 |
4496
772c80e0e180
with-xft defaults to xft being used with a default setting.
Mats Lidell <matsl@xemacs.org>
parents:
4475
diff
changeset
|
289 * configure.ac (XE_COMPLEX_ARG): Use different defaults for |
772c80e0e180
with-xft defaults to xft being used with a default setting.
Mats Lidell <matsl@xemacs.org>
parents:
4475
diff
changeset
|
290 with-xft and without-xft. |
772c80e0e180
with-xft defaults to xft being used with a default setting.
Mats Lidell <matsl@xemacs.org>
parents:
4475
diff
changeset
|
291 |
4475
86283c809984
autoconf 2.62 compatibility, #370
"Ville Skyttä <scop@xemacs.org>"
parents:
4455
diff
changeset
|
292 2008-07-06 Ville Skyttä <scop@xemacs.org> |
86283c809984
autoconf 2.62 compatibility, #370
"Ville Skyttä <scop@xemacs.org>"
parents:
4455
diff
changeset
|
293 |
86283c809984
autoconf 2.62 compatibility, #370
"Ville Skyttä <scop@xemacs.org>"
parents:
4455
diff
changeset
|
294 * configure.ac (xe_fst): |
86283c809984
autoconf 2.62 compatibility, #370
"Ville Skyttä <scop@xemacs.org>"
parents:
4455
diff
changeset
|
295 New, to replace m4_fst which disappeared in autoconf 2.62 (#370). |
86283c809984
autoconf 2.62 compatibility, #370
"Ville Skyttä <scop@xemacs.org>"
parents:
4455
diff
changeset
|
296 (XE_EXPAND_COMPLEX_OPTIONS): Use xe_fst. |
86283c809984
autoconf 2.62 compatibility, #370
"Ville Skyttä <scop@xemacs.org>"
parents:
4455
diff
changeset
|
297 |
4455
49f8ed034500
Fix path-configuration glitches:
Mike Sperber <sperber@deinprogramm.de>
parents:
4450
diff
changeset
|
298 2008-05-12 Michael Sperber <mike@xemacs.org> |
49f8ed034500
Fix path-configuration glitches:
Mike Sperber <sperber@deinprogramm.de>
parents:
4450
diff
changeset
|
299 |
49f8ed034500
Fix path-configuration glitches:
Mike Sperber <sperber@deinprogramm.de>
parents:
4450
diff
changeset
|
300 * configure.ac: |
49f8ed034500
Fix path-configuration glitches:
Mike Sperber <sperber@deinprogramm.de>
parents:
4450
diff
changeset
|
301 A number of the checks that tried to determine whether an explicit |
49f8ed034500
Fix path-configuration glitches:
Mike Sperber <sperber@deinprogramm.de>
parents:
4450
diff
changeset
|
302 path was specified were wrong. |
49f8ed034500
Fix path-configuration glitches:
Mike Sperber <sperber@deinprogramm.de>
parents:
4450
diff
changeset
|
303 Also, add an AC_SUBST for INFOPATH. |
49f8ed034500
Fix path-configuration glitches:
Mike Sperber <sperber@deinprogramm.de>
parents:
4450
diff
changeset
|
304 |
4449
13ce402e1736
Call AC_SUBST on SHEBANG_PATHNAME, for #! support.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4448
diff
changeset
|
305 2008-05-07 Aidan Kehoe <kehoea@parhasard.net> |
13ce402e1736
Call AC_SUBST on SHEBANG_PATHNAME, for #! support.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4448
diff
changeset
|
306 |
13ce402e1736
Call AC_SUBST on SHEBANG_PATHNAME, for #! support.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4448
diff
changeset
|
307 * configure.ac (XE_EXPAND_VARIABLE): Call AC_SUBST on |
13ce402e1736
Call AC_SUBST on SHEBANG_PATHNAME, for #! support.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4448
diff
changeset
|
308 SHEBANG_PATHNAME, as suggested by Michael Sperber in |
13ce402e1736
Call AC_SUBST on SHEBANG_PATHNAME, for #! support.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4448
diff
changeset
|
309 y9ly7aj1wfc.fsf@deinprogramm.de. |
13ce402e1736
Call AC_SUBST on SHEBANG_PATHNAME, for #! support.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4448
diff
changeset
|
310 * Makefile.in.in: Regenerate. |
13ce402e1736
Call AC_SUBST on SHEBANG_PATHNAME, for #! support.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4448
diff
changeset
|
311 * configure: Ditto. |
13ce402e1736
Call AC_SUBST on SHEBANG_PATHNAME, for #! support.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4448
diff
changeset
|
312 |
4448
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4401
diff
changeset
|
313 2008-01-20 Aidan Kehoe <kehoea@parhasard.net> |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4401
diff
changeset
|
314 |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4401
diff
changeset
|
315 * Makefile.in.in (SHEBANG_PROGNAME): |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4401
diff
changeset
|
316 New variable; a symbol link to the XEmacs binary to tell it it |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4401
diff
changeset
|
317 should read a script from stdin. |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4401
diff
changeset
|
318 * configure.ac (XE_EXPAND_VARIABLE): |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4401
diff
changeset
|
319 Set SHEBANG_PROGNAME. |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4401
diff
changeset
|
320 * configure: |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4401
diff
changeset
|
321 Regenerate. |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4401
diff
changeset
|
322 |
4440
e4225b6d9389
AC_CHECK_LIB needs a function symbol. <87zls98qtk.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4424
diff
changeset
|
323 2008-04-01 Andreas Schwab <schwab@suse.de> |
e4225b6d9389
AC_CHECK_LIB needs a function symbol. <87zls98qtk.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4424
diff
changeset
|
324 |
e4225b6d9389
AC_CHECK_LIB needs a function symbol. <87zls98qtk.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4424
diff
changeset
|
325 Thanks to Mike Fabian for posting a patch to the mainline, to Martin |
e4225b6d9389
AC_CHECK_LIB needs a function symbol. <87zls98qtk.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4424
diff
changeset
|
326 Buchholz for writing the ChangeLog, and to Aidan Kehoe for finding |
e4225b6d9389
AC_CHECK_LIB needs a function symbol. <87zls98qtk.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4424
diff
changeset
|
327 the 2003-01-27 ChangeLog. Tested against Xaw3d. -- stephen |
e4225b6d9389
AC_CHECK_LIB needs a function symbol. <87zls98qtk.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4424
diff
changeset
|
328 |
e4225b6d9389
AC_CHECK_LIB needs a function symbol. <87zls98qtk.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4424
diff
changeset
|
329 * configure.ac (athena_3d): |
e4225b6d9389
AC_CHECK_LIB needs a function symbol. <87zls98qtk.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4424
diff
changeset
|
330 AC_CHECK_LIB must always take a function as |
e4225b6d9389
AC_CHECK_LIB needs a function symbol. <87zls98qtk.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4424
diff
changeset
|
331 argument, never a global variable. Some linkers can tell the |
e4225b6d9389
AC_CHECK_LIB needs a function symbol. <87zls98qtk.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4424
diff
changeset
|
332 difference. So change: |
e4225b6d9389
AC_CHECK_LIB needs a function symbol. <87zls98qtk.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4424
diff
changeset
|
333 threeDClassRec ==> XawSme3dComputeTopShadowRGB |
e4225b6d9389
AC_CHECK_LIB needs a function symbol. <87zls98qtk.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4424
diff
changeset
|
334 |
4424
42711a251efd
Look for all x86 machines to determine which write barrier to use on MacOSX.
Marcus Crestani <crestani@informatik.uni-tuebingen.de>
parents:
4420
diff
changeset
|
335 2008-02-15 Marcus Crestani <crestani@xemacs.org> |
42711a251efd
Look for all x86 machines to determine which write barrier to use on MacOSX.
Marcus Crestani <crestani@informatik.uni-tuebingen.de>
parents:
4420
diff
changeset
|
336 |
42711a251efd
Look for all x86 machines to determine which write barrier to use on MacOSX.
Marcus Crestani <crestani@informatik.uni-tuebingen.de>
parents:
4420
diff
changeset
|
337 * configure.ac: Look for all x86 machines to determine which write |
42711a251efd
Look for all x86 machines to determine which write barrier to use on MacOSX.
Marcus Crestani <crestani@informatik.uni-tuebingen.de>
parents:
4420
diff
changeset
|
338 barrier to use on MacOSX. |
42711a251efd
Look for all x86 machines to determine which write barrier to use on MacOSX.
Marcus Crestani <crestani@informatik.uni-tuebingen.de>
parents:
4420
diff
changeset
|
339 * configure : Rebuild. |
42711a251efd
Look for all x86 machines to determine which write barrier to use on MacOSX.
Marcus Crestani <crestani@informatik.uni-tuebingen.de>
parents:
4420
diff
changeset
|
340 |
4420
6ed8c4ccc17e
Update install-sh to version with a clear license.
Jerry James <james@xemacs.org>
parents:
4419
diff
changeset
|
341 2008-02-12 Jerry James <james@xemacs.org> |
6ed8c4ccc17e
Update install-sh to version with a clear license.
Jerry James <james@xemacs.org>
parents:
4419
diff
changeset
|
342 |
6ed8c4ccc17e
Update install-sh to version with a clear license.
Jerry James <james@xemacs.org>
parents:
4419
diff
changeset
|
343 * install.sh: Rename to install-sh and update to latest FSF version. |
6ed8c4ccc17e
Update install-sh to version with a clear license.
Jerry James <james@xemacs.org>
parents:
4419
diff
changeset
|
344 |
4412
2f000e022a8b
Fix misspelling of option 'gdbm'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4401
diff
changeset
|
345 2008-01-25 Stephen J. Turnbull <stephen@xemacs.org> |
2f000e022a8b
Fix misspelling of option 'gdbm'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4401
diff
changeset
|
346 |
2f000e022a8b
Fix misspelling of option 'gdbm'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4401
diff
changeset
|
347 * configure.ac (--with-database): 'gnudbm' -> 'gdbm' in docstrings. |
2f000e022a8b
Fix misspelling of option 'gdbm'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4401
diff
changeset
|
348 |
4419
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4412
diff
changeset
|
349 2008-01-25 Michael Sperber <mike@xemacs.org> |
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4412
diff
changeset
|
350 |
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4412
diff
changeset
|
351 * Makefile.in.in: |
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4412
diff
changeset
|
352 * configure.ac: |
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4412
diff
changeset
|
353 * version.sh.in: Use Mercurial tip hash to identify version |
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4412
diff
changeset
|
354 instead of old CVS method. |
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4412
diff
changeset
|
355 |
4401
01970033faa6
Configure fixes from Hans de Graaff, as used in Gentoo.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4374
diff
changeset
|
356 2008-01-17 Aidan Kehoe <kehoea@parhasard.net> |
01970033faa6
Configure fixes from Hans de Graaff, as used in Gentoo.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4374
diff
changeset
|
357 |
01970033faa6
Configure fixes from Hans de Graaff, as used in Gentoo.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4374
diff
changeset
|
358 * configure.ac: |
01970033faa6
Configure fixes from Hans de Graaff, as used in Gentoo.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4374
diff
changeset
|
359 If using a version of the gdbm library that sticks dbm_open in |
01970033faa6
Configure fixes from Hans de Graaff, as used in Gentoo.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4374
diff
changeset
|
360 libgdbm_compat.so, also link to that library. |
01970033faa6
Configure fixes from Hans de Graaff, as used in Gentoo.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4374
diff
changeset
|
361 Correct a thinko with DBM version 4 checks. Both from Hans de |
01970033faa6
Configure fixes from Hans de Graaff, as used in Gentoo.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4374
diff
changeset
|
362 Graaff, in |
01970033faa6
Configure fixes from Hans de Graaff, as used in Gentoo.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4374
diff
changeset
|
363 http://mid.gmane.org/20050812092756.6850.qmail@graaff.xs4all.nl |
01970033faa6
Configure fixes from Hans de Graaff, as used in Gentoo.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4374
diff
changeset
|
364 and |
01970033faa6
Configure fixes from Hans de Graaff, as used in Gentoo.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4374
diff
changeset
|
365 http://mid.gmane.org/pan.2007.06.24.10.10.57@gentoo.org; thank you |
01970033faa6
Configure fixes from Hans de Graaff, as used in Gentoo.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4374
diff
changeset
|
366 Hans! |
01970033faa6
Configure fixes from Hans de Graaff, as used in Gentoo.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4374
diff
changeset
|
367 * configure: |
01970033faa6
Configure fixes from Hans de Graaff, as used in Gentoo.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4374
diff
changeset
|
368 Regenerate. |
01970033faa6
Configure fixes from Hans de Graaff, as used in Gentoo.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4374
diff
changeset
|
369 |
4374
4939bde48d12
Fix incorrect comment convention.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4361
diff
changeset
|
370 2008-01-01 Stephen J. Turnbull <stephen@xemacs.org> |
4939bde48d12
Fix incorrect comment convention.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4361
diff
changeset
|
371 |
4939bde48d12
Fix incorrect comment convention.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4361
diff
changeset
|
372 * Makefile.in.in (mkpkgdir): Fix incorrect comment convention. |
4939bde48d12
Fix incorrect comment convention.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4361
diff
changeset
|
373 |
4361
146742e30f05
Ensure LATE_PACKAGES_DIRECTORIES is a trivial search path.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4357
diff
changeset
|
374 2007-12-26 Stephen J. Turnbull <stephen@xemacs.org> |
146742e30f05
Ensure LATE_PACKAGES_DIRECTORIES is a trivial search path.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4357
diff
changeset
|
375 |
146742e30f05
Ensure LATE_PACKAGES_DIRECTORIES is a trivial search path.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4357
diff
changeset
|
376 * Makefile.in.in (mkpkgdir): Ensure only one late package directory. |
146742e30f05
Ensure LATE_PACKAGES_DIRECTORIES is a trivial search path.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4357
diff
changeset
|
377 |
4357
3af63264d320
Make check-available-packages announce where to install packages.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4354
diff
changeset
|
378 2007-12-26 Stephen J. Turnbull <stephen@xemacs.org> |
3af63264d320
Make check-available-packages announce where to install packages.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4354
diff
changeset
|
379 |
3af63264d320
Make check-available-packages announce where to install packages.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4354
diff
changeset
|
380 * Makefile.in.in (check-available-packages): Say where to install. |
4361
146742e30f05
Ensure LATE_PACKAGES_DIRECTORIES is a trivial search path.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4357
diff
changeset
|
381 (mkpkgdir): |
4357
3af63264d320
Make check-available-packages announce where to install packages.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4354
diff
changeset
|
382 |
4354
232d873b9705
Add support for installing bundled patches.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4338
diff
changeset
|
383 2007-12-23 Stephen J. Turnbull <stephen@xemacs.org> |
232d873b9705
Add support for installing bundled patches.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4338
diff
changeset
|
384 |
232d873b9705
Add support for installing bundled patches.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4338
diff
changeset
|
385 * Makefile.in.in (mkpkgdir): |
232d873b9705
Add support for installing bundled patches.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4338
diff
changeset
|
386 (check-available-packages): |
232d873b9705
Add support for installing bundled patches.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4338
diff
changeset
|
387 (install-bootstrap-packages): |
232d873b9705
Add support for installing bundled patches.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4338
diff
changeset
|
388 (install-nonmule-packages): |
232d873b9705
Add support for installing bundled patches.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4338
diff
changeset
|
389 (install-all-packages): |
232d873b9705
Add support for installing bundled patches.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4338
diff
changeset
|
390 New targets supporting bundled packages. |
232d873b9705
Add support for installing bundled patches.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4338
diff
changeset
|
391 |
232d873b9705
Add support for installing bundled patches.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4338
diff
changeset
|
392 * .hgignore: Ignore tarballs in etc/bundled-packages/. |
232d873b9705
Add support for installing bundled patches.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4338
diff
changeset
|
393 |
4338
528c4d906843
Sync config.guess and config.sub with the latest upstream versions.
james@localhost.localdomain
parents:
4328
diff
changeset
|
394 2007-12-08 Jerry James <james@xemacs.org> |
528c4d906843
Sync config.guess and config.sub with the latest upstream versions.
james@localhost.localdomain
parents:
4328
diff
changeset
|
395 |
528c4d906843
Sync config.guess and config.sub with the latest upstream versions.
james@localhost.localdomain
parents:
4328
diff
changeset
|
396 * config.guess: |
528c4d906843
Sync config.guess and config.sub with the latest upstream versions.
james@localhost.localdomain
parents:
4328
diff
changeset
|
397 * config.sub: Sync with the latest upstream versions. |
528c4d906843
Sync config.guess and config.sub with the latest upstream versions.
james@localhost.localdomain
parents:
4328
diff
changeset
|
398 |
4328
dfd878799ef0
Autoconfiscate the recent fontconfig spelling change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4152
diff
changeset
|
399 2007-12-12 Aidan Kehoe <kehoea@parhasard.net> |
dfd878799ef0
Autoconfiscate the recent fontconfig spelling change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4152
diff
changeset
|
400 |
dfd878799ef0
Autoconfiscate the recent fontconfig spelling change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4152
diff
changeset
|
401 * configure.ac : |
dfd878799ef0
Autoconfiscate the recent fontconfig spelling change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4152
diff
changeset
|
402 Check for FcConfigGetRescanInterval, FcConfigSetRescanInterval. |
dfd878799ef0
Autoconfiscate the recent fontconfig spelling change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4152
diff
changeset
|
403 * configure : |
dfd878799ef0
Autoconfiscate the recent fontconfig spelling change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4152
diff
changeset
|
404 Rebuild. |
dfd878799ef0
Autoconfiscate the recent fontconfig spelling change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4152
diff
changeset
|
405 |
4152 | 406 2007-08-27 Mike Sperber <mike@xemacs.org> |
407 | |
408 * configure.ac: Try to use pkg-config for finding Xft includes and | |
409 libraries. If that fails, search also in /usr/local. | |
410 | |
4118 | 411 2007-08-12 Mike Sperber <mike@xemacs.org> |
412 | |
413 * Makefile.in.in (datarootdir): Add. | |
414 * configure.ac (infodir): Now in terms of $(datarootdir). | |
415 (mandir): Ditto, making it usually point to $(prefix)/share/man, | |
416 conformant with the GNU Coding Standards. | |
417 | |
4092 | 418 2007-07-31 Mike Sperber <mike@xemacs.org> |
419 | |
420 * configure.ac: Don't divert `share' to `lib' for datadir. | |
421 Also, define AC_DATAROOTDIR_CHECKED to shut up autoconf. | |
422 | |
3975 | 423 2007-05-21 Stephen J. Turnbull <stephen@xemacs.org> |
424 | |
425 * XEmacs 21.5.28 "fuki" is released. | |
426 | |
3961 | 427 2007-05-18 Stephen J. Turnbull <stephen@xemacs.org> |
428 | |
429 * configure.ac (error-checking): Move comma misplaced by sorting. | |
430 * configure: Regenerate. | |
431 | |
3959 | 432 2007-05-18 Stephen J. Turnbull <stephen@xemacs.org> |
433 | |
434 * configure.ac (error-checking): Reorder arguments and sync doctring. | |
435 | |
3863 | 436 2007-03-14 Stephen J. Turnbull <stephen@xemacs.org> |
437 | |
438 * PROBLEMS: describe crash when inserting or displaying a TAB. | |
439 Thanks to Aidan Kehoe for the diagnosis. | |
440 | |
3862 | 441 2006-12-24 Stephen J. Turnbull <stephen@xemacs.org> |
442 | |
443 * configure.ac (ar): Sun has it but hides it; check for it. | |
444 (ssize_t): Use the modern check and document todo. | |
445 | |
3830 | 446 2007-02-16 Stephen J. Turnbull <stephen@xemacs.org> |
447 | |
448 * configure.ac (canna): | |
449 Move #define of CANNA_NEW_WCHAR_AWARE to config.h. | |
450 Use -DCANNA_NEW_WCHAR_AWARE since check for RK.h fails otherwise. | |
451 Refactor into loops over orthogonal tweaks (prefix and define). | |
452 Use have_canna to track detection success, not with_canna. | |
453 Add AC_MSG_WARNs documenting autoconf's bogosity (ours, too). | |
454 | |
3773 | 455 2007-01-01 Malcolm Purvis <malcolmp@xemacs.org> |
456 | |
457 * aclocal.m4 (XE_SHLIB_STUFF): Use $EGREP instead of egrep. | |
458 | |
3765 | 459 2006-12-28 Malcolm Purvis <malcolmp@xemacs.org> |
460 | |
461 * configure.ac: Ensure ac_configure_args contains a leading space | |
462 to work around problems with 'config.status --recheck' under | |
463 autoconf 2.60 and 2.61. | |
464 | |
3764 | 465 2006-12-27 Malcolm Purvis <malcolmp@xemacs.org> |
466 | |
467 * configure.ac (XE_MERGED_ARG): Register --enable and --with forms | |
468 with the option checking list. | |
469 | |
3752 | 470 2006-12-19 Stephen J. Turnbull <stephen@xemacs.org> |
471 | |
472 * Makefile.in.in (${srcdir}/configure): Generated from configure.ac. | |
473 | |
3739 | 474 2006-12-06 Dr. Volker Zell <Dr.Volker.Zell@oracle.com> |
475 | |
476 * configure.ac: Check for u_int*_t typedefs. | |
477 | |
4010 | 478 2006-12-06 Dr. Volker Zell <Dr.Volker.Zell@oracle.com> |
479 | |
480 * configure.ac: Avoid using Motif for cygwin. | |
3738 | 481 |
3729 | 482 2006-11-23 Mike Sperber <mike@xemacs.org> |
483 | |
484 * configure.ac (XE_EXPAND_VARIABLE): Fully expand the various | |
485 directories before comparing them for figuring out which of them | |
486 are user-defined. Use XE_EPXAND_VARIABLE macro created for this | |
487 purpose where applicable. | |
488 | |
4010 | 489 2006-12-07 Rick Rankin <rick.rankin@yahoo.com> |
3727 | 490 |
491 * configure.ac: Add new library name for cygwin's xpm. | |
492 | |
4010 | 493 2006-12-07 Rick Rankin <rick.rankin@yahoo.com> |
3727 | 494 |
495 * configure.ac: Add new library name for cygwin's xpm. | |
496 | |
3683 | 497 2006-10-30 Malcolm Purvis <malcolmp@xemacs.org> |
498 * configure.ac (XE_CDR): m4_cdr differs in autoconf 2.59 and 2.60. | |
499 (XE_EXPAND_COMPLEX_OPTIONS): Use XE_CDR, not m4_cdr. | |
500 | |
3520 | 501 2006-07-18 Marcus Crestani <crestani@xemacs.org> |
502 | |
503 * configure.ac: Intel-based Macs can use POSIX-style write | |
504 barrier. Use $machine to determine this. | |
505 | |
3518 | 506 2006-07-20 Stephen J. Turnbull <stephen@xemacs.org> |
507 | |
508 * configure.ac (system-packages,legacy-packages): Fix help strings. | |
509 | |
510 * configure.in: cvs remove. | |
511 * configure.usage: cvs remove. | |
512 | |
3494 | 513 2006-06-20 Jerry James <james@xemacs.org> |
514 | |
515 * configure.ac: When gcc is used, capture the values of __GNUC__ | |
516 and __GNUC_MINOR__. Use them to conditionally add warning flags | |
517 that are not supported by all versions of gcc. | |
518 | |
3481 | 519 2006-06-23 Stephen J. Turnbull <stephen@xemacs.org> |
520 | |
521 * configure.ac (Build Makefile.in's from Makefile.in.in's): | |
522 Create $srcdir/src/depend if it's missing. | |
523 | |
3443 | 524 2006-06-05 Jerry James <james@xemacs.org> |
525 | |
526 * configure.ac: Change "if -z" to "if test -z". | |
527 | |
3418 | 528 2006-05-23 Stephen J. Turnbull <stephen@xemacs.org> |
529 | |
530 * configure.ac: Look for debugger init file templates in etc/, not | |
531 src/. Debugger init files depend on config.h; recreate on every | |
532 configure. Support XCOMM convention. Update FSF copyright. | |
533 | |
3406 | 534 2006-05-17 Malcolm Purvis <malcolmp@xemacs.org> |
535 | |
536 * PROBLEMS: Add entry concerning X errors when using ssh. | |
537 | |
3404 | 538 2006-05-17 Stephen J. Turnbull <stephen@xemacs.org> |
539 | |
540 * PROBLEMS: X11R7 loses x11/bitmaps/gray. | |
541 | |
3402 | 542 2006-05-16 Stephen J. Turnbull <stephen@xemacs.org> |
543 | |
544 * XEmacs 21.5.27 "fiddleheads" is released. | |
545 | |
3395 | 546 2006-04-06 Jerry James <james@xemacs.org> |
547 | |
548 * COPYING: Update to latest upstream version. | |
549 | |
3354 | 550 2006-04-15 Stephen J. Turnbull <stephen@xemacs.org> |
551 | |
552 * configure.ac: Add stubs for fontconfig configuration. | |
553 | |
3323 | 554 2006-03-31 Stephen J. Turnbull <stephen@xemacs.org> |
555 | |
556 * XEmacs 21.5.26 "endive" is released. | |
557 | |
3322 | 558 2006-03-31 Stephen J. Turnbull <stephen@xemacs.org> |
559 | |
560 Miscellaneous doc cleanup, parts 2-4: move CHANGES-msw, | |
561 TODO.ben-mule-21-5, README.ben-mule-21-5, and | |
562 README.ben-separate-stderr to Internals Manual. | |
563 | |
564 * CHANGES-msw: Removed. | |
565 * TODO.ben-mule-21-5: Removed. | |
566 * README.ben-mule-21-5: Removed. | |
567 * README.ben-separate-stderr: Removed. | |
568 | |
569 2006-03-29 Stephen J. Turnbull <stephen@xemacs.org> | |
570 | |
571 Miscellaneous doc cleanup, part 1: move CHANGES-ben-mule to | |
572 Internals Manual. | |
573 | |
574 * CHANGES-ben-mule: Removed. | |
575 | |
576 * ChangeLog: | |
577 * lib-src/ChangeLog: | |
578 * lisp/ChangeLog: | |
579 * lwlib/ChangeLog: | |
580 * man/ChangeLog: | |
581 * man/internals/internals.texi: | |
582 * modules/ChangeLog: | |
583 * netinstall/ChangeLog: | |
584 * nt/ChangeLog: | |
585 * nt/installer/Wise/ChangeLog: | |
586 * src/ChangeLog: | |
587 * tests/ChangeLog: | |
588 Update the Great Mule Merge placeholders to point to Internals | |
589 Manual node "The Great Mule Merge of March 2002". | |
590 N.B. Self-referencing log entries were *not* added to other logs. | |
4010 | 591 |
3317 | 592 2006-03-30 Jerry James <james@xemacs.org> |
593 | |
594 * configure.ac: Fix for -Kalloca detection, also broken by the | |
595 recent autoconf updates. Thanks to Ilya Golubev. | |
596 | |
3316 | 597 2006-03-30 Jerry James <james@xemacs.org> |
598 | |
599 * configure.ac: Fix FOR_MSW XPM test, broken by previous update. | |
600 | |
3312 | 601 2006-03-27 Jerry James <james@xemacs.org> |
602 | |
603 * aclocal.m4: Updates for autoconf 2.59. | |
604 * configure.ac: Ditto. Also, don't bother checking for inttypes.h | |
605 and unistd.h explicitly, since AC_HEADER_STDC does that. | |
606 | |
3309 | 607 2006-03-27 Jerry James <james@xemacs.org> |
608 | |
609 * configure.ac: Repair ALSA detection. | |
610 | |
3308 | 611 2006-03-24 Jerry James <james@xemacs.org> |
612 | |
613 * configure.ac: Autodetect ALSA support and report it if detected. | |
614 | |
3263 | 615 2006-02-22 Marcus Crestani <crestani@xemacs.org> |
616 | |
617 * configure.ac: Remove mc-alloc, replace it with newgc, adjust | |
618 output and comments. | |
619 | |
3259 | 620 2006-02-26 Stephen J. Turnbull <stephen@xemacs.org> |
621 | |
622 * XEmacs 21.5.25 "eggplant" is released. | |
623 | |
3248 | 624 2006-02-18 Stephen J. Turnbull <stephen@xemacs.org> |
625 | |
626 * configure.ac (Mule): Mark broken test with ####. | |
627 | |
628 2006-02-18 Stephen J. Turnbull <stephen@xemacs.org> | |
629 | |
630 * configure.ac (Mule): Remove obsolete comment on XIM. | |
631 | |
3228 | 632 2006-01-30 Vin Shelton <acs@xemacs.org> |
633 | |
634 * configure.ac: Simplify cygwin include and no-X Xpm handling. | |
635 As of cygwin-1.5.19 (if you're using /bin/gcc), | |
636 'gcc -print-file-name=libc.a' (effectively) returns '/lib' | |
637 instead of '/usr/lib', so we'll use 'gcc -print-search-dirs' | |
638 instead. | |
639 | |
3186 | 640 2005-12-29 Mike Sperber <mike@xemacs.org> |
641 | |
642 * Makefile.in.in (top-distclean-noconfig): Don't delete | |
643 site-packages xemacs-packages mule-packages site-lisp---those are | |
644 supposed to stick around. | |
645 | |
3179 | 646 2005-11-25 Mike Sperber <mike@xemacs.org> |
647 | |
4010 | 648 * CHANGES-beta: |
3179 | 649 * configure.ac: Zap --with-package-prefix; instead, add |
650 --with-user-packages/--with-early-packages, | |
651 --with-system-packages/--with-late-packages, and | |
652 --with-legacy-packages/--with-last-packages. | |
653 | |
654 2005-12-13 Mike Sperber <mike@xemacs.org> | |
655 | |
656 * configure.ac: Move the checks for the Xft-associated library out | |
657 of a conditional. | |
658 | |
3166 | 659 2005-12-23 Stephen J. Turnbull <stephen@xemacs.org> |
660 | |
661 * configure.ac (Xft): Fix typo preventing report of Xft buffers. | |
662 Remove now-irrelevant comments. | |
663 | |
3161 | 664 2005-12-22 Stephen J. Turnbull <stephen@xemacs.org> |
665 | |
666 * configure.ac: Three typos fixed. | |
667 | |
4010 | 668 2005-12-13 Mike Sperber <mike@xemacs.org> |
3158 | 669 |
670 * configure.ac: Move the checks for the Xft-associated | |
671 library out of a conditional. | |
672 | |
3150 | 673 2005-12-18 Stephen J. Turnbull <stephen@xemacs.org> |
674 | |
675 * XEmacs 21.5.24 "dandelion" is released. | |
676 | |
3149 | 677 2005-12-19 Stephen J. Turnbull <stephen@xemacs.org> |
678 | |
679 * configure.ac (XE_COMPLEX_ARG): Substitute '_' for '-' in default | |
680 variable names. | |
681 | |
3147 | 682 2005-12-09 Malcolm Purvis <malcolmp@xemacs.org> |
683 | |
684 * configure.ac (XE_EXPAND_COMPLEX_OPTION): | |
685 * configure.ac (XE_INIT_COMPLEX_OPTION): | |
686 * configure.ac (XE_PARSE_COMPLEX_OPTION): | |
687 * configure.ac (XE_COMPLEX_ARG): | |
688 With the help of Stephen Turnbull rewrote the option processing to | |
689 give more consistent under the various combinations of all, none, | |
690 no, yes, --without, --with, etc that can occur. | |
691 | |
3102 | 692 2005-11-27 Marcus Crestani <crestani@xemacs.org> |
693 | |
694 * configure.ac: Remove vdb-fake warning, die if POSIX checks fail. | |
695 | |
3098 | 696 2005-11-27 Stephen J. Turnbull <stephen@xemacs.org> |
697 | |
698 * configure.ac (XE_COMPLEX_ARG[xft]): Default everything off; | |
699 change doc. | |
700 | |
3097 | 701 2005-11-27 Stephen J. Turnbull <stephen@xemacs.org> |
702 | |
703 * configure.ac (XE_COMPLEX_ARG[xft]): Remove merge detritus and | |
704 regenerate configure to fix syntax error. | |
705 | |
3094 | 706 2005-11-26 Stephen J. Turnbull <stephen@xemacs.org> |
707 | |
708 Merge Xft. | |
709 | |
710 2005-03-05 Malcolm Purvis <malcolmp@xemacs.org> | |
711 | |
712 * configure.ac: Correct the filename of the old copy of configure. | |
713 | |
714 2005-03-05 Malcolm Purvis <malcolmp@xemacs.org> | |
715 | |
716 * config.guess: | |
717 * config.sub: Sync with the latest upstream versions. | |
718 * configure.ac: Use --verbose for --extra-verbose. Better | |
719 quoting of arguments. Internal shell vars statr with '_' to avoid | |
720 name clashes. Pick up the latest changes to configure.in. | |
721 Improve the testing of Athena 3d widgets. | |
722 | |
723 2005-02-20 Stephen J. Turnbull <stephen@xemacs.org> | |
724 | |
725 * configure.ac (athena): Spells as 3d, not xaw3d, in declaration. | |
726 (sound): quickfix: AC_DEFINE, not AC_DEFINE_UNQUOTED, at top level. | |
727 | |
728 2005-02-19 Stephen J. Turnbull <stephen@xemacs.org> | |
729 | |
730 * configure.ac (XE_EXPAND_COMPLEX_OPTION): Use same name in comment. | |
731 (XEmacs keyword option support): | |
732 (XEmacs complex option support): | |
733 Move long header comments to internals.texi(The configure Script). | |
734 | |
735 2005-02-03 Stephen J. Turnbull <stephen@xemacs.org> | |
736 | |
737 * configure.ac: Trap --with-style flags, now --enable. | |
738 | |
739 2005-02-03 Stephen J. Turnbull <stephen@xemacs.org> | |
740 | |
741 * configure.ac (Autodetect native sound): | |
742 Handle NetBSD per Aidan's patch. | |
743 | |
744 2005-02-11 Malcolm Purvis <malcolmp@xemacs.org> | |
745 | |
746 * configure.ac: Added keyword option support. Converted database, | |
747 sound, athena, xim, bignum, error-checking, menubars, scrollbars, | |
748 dialogs and widgets command line arguments to use keyword option | |
749 and complex option macros. | |
750 | |
751 2005-02-09 Malcolm Purvis <malcolmp@xemacs.org> | |
752 | |
753 * configure.ac (XE_COMPLEX_OPTION): | |
754 * configure.ac (XE_COMPLEX_OPTION_HELP_STRING): | |
755 * configure.ac (XE_COMPLEX_ARG_WITH): | |
756 * configure.ac (XE_COMPLEX_ARG_ENABLE): | |
757 Rewritten complex option support with a simpler API and support | |
758 for --enable as well a --with. | |
759 | |
760 2005-02-02 Malcolm Purvis <malcolmp@xemacs.org> | |
761 | |
762 * configure.ac Align with the current mainline version of | |
763 configure.in. | |
764 | |
765 2005-02-01 Stephen J. Turnbull <stephen@xemacs.org> | |
766 | |
767 * configure.ac (Xrender, fontconfig, and Xft): | |
768 Check /usr/include/freetype2. | |
769 | |
770 2005-01-30 Stephen J. Turnbull <stephen@xemacs.org> | |
771 | |
772 * configure.ac (AC_COPYRIGHT): Update. | |
773 (progname): Restore and improve documentation. | |
774 | |
775 (XE_INIT_COMPLEX_OPTION): | |
776 (XE_APPEND_COMPLEX_OPTION_DEFAULT): | |
777 (XE_PARSE_COMPLEX_OPTION): | |
778 (XE_CLEANUP_COMPLEX_OPTION): | |
779 (XE_COMPLEX_OPTION_HELP_STRING): Support complex options. | |
780 (--with-xft): Add Xft support using the complex option support. | |
781 | |
782 (--with-xface): | |
783 (--with-zlib): | |
784 (--with-xmu): | |
785 (--with-purify): | |
786 (--with-quantify): | |
787 (--with-toolbars): | |
788 (--with-tty): | |
789 (--with-xfs): | |
790 (--with-canna): | |
791 (--with-wnn): | |
792 (--with-wnn6): | |
793 (--with-ldap): | |
794 (--with-postgresql): | |
795 (--with-infodock): | |
796 (--with-native-sound-lib): | |
797 (--with-netinstall): | |
798 (--with-site-includes): | |
799 (--with-site-libraries): | |
800 (--with-site-prefixes): | |
801 (--with-package-prefix): | |
802 (--with-package-path): | |
803 (--enable-external-widget): | |
804 (--enable-kkcc): | |
805 (--enable-union-type): | |
806 (--enable-pdump): | |
807 (--enable-debug): | |
808 (--enable-memory-usage-stats): | |
809 (--enable-error-checking): | |
810 (--with-rel-alloc): | |
811 (--with-dlmalloc): | |
812 (--with-debug-malloc): | |
813 (--with-system-malloc): | |
814 Improve (including add) help strings. | |
815 | |
816 (--with-athena): | |
817 (--with-xim): | |
818 (--with-mail-locking): | |
819 (--enable-bignum): | |
820 (--enable-menubars): | |
821 (--enable-scrollbars): | |
822 (--enable-dialogs): | |
823 (--enable-widgets): | |
824 Fix `eval "$FEATURE=\"$val\"" bug. | |
4010 | 825 |
3094 | 826 2005-01-29 Stephen J. Turnbull <stephen@xemacs.org> |
827 | |
828 * INSTALL (CONFIGURATION OPTIONS): | |
829 Insert Malcolm's notes on autoconf 2.59 support. | |
830 | |
831 2005-01-04 Malcolm Purvis <malcolmp@xemacs.org> | |
832 | |
833 * aclocal.m4: Changes to support autoconf 2.59 | |
834 * config.guess: | |
835 * config.sub: Upgraded to the version in from automake 1.9 | |
836 * configure.ac: Rewritten for autoconf 2.59 support. | |
837 | |
838 2004-12-10 Stephen J. Turnbull <stephen@xemacs.org> | |
839 | |
840 * configure.usage: Various minor improvements. | |
841 | |
842 2004-12-09 Stephen J. Turnbull <stephen@xemacs.org> | |
843 | |
844 * configure.in: Update FSF's copyright. Support --with-xft=LIST | |
845 syntax. Try to find a directory containing freetype/ftheader.h. | |
846 | |
847 * configure.usage (--with-xft): Update. | |
848 | |
849 2004-11-20 Stephen J. Turnbull <stephen@xemacs.org> | |
850 | |
851 Xft branch based on "Xft reloaded #3" patch by Eric Knauel and | |
852 Mathias Neuebaur, and other contributors. | |
853 | |
854 * configure.in: | |
855 * configure.usage: | |
856 Implement and document switches for configuring Xft. | |
857 | |
3092 | 858 2005-11-21 Marcus Crestani <crestani@xemacs.org> |
859 | |
860 Incremental Garbage Collector | |
4010 | 861 |
3092 | 862 * configure.ac: Add newgc option; if newgc, turn on kkcc and |
863 mc-alloc. Add checks for write barrier, determine which write | |
864 barrier to use. Add vdb option to override write barrier | |
865 auto-detection. Generate .gdbinit and .dbxrc. | |
866 | |
3083 | 867 2005-11-22 Ben Wing <ben@xemacs.org> |
868 | |
869 * dynodump/Makefile.in.in (mostlyclean): | |
870 Ignore errors from rm during clean. | |
871 | |
872 2005-11-22 Ben Wing <ben@xemacs.org> | |
873 | |
874 * Makefile.in.in (top-mostlyclean): | |
875 * Makefile.in.in (top-clean): | |
876 * Makefile.in.in (top-distclean-noconfig): | |
877 * Makefile.in.in (top-distclean): | |
878 * Makefile.in.in (top-realclean-noconfig): | |
879 * Makefile.in.in (top-extraclean-noconfig): | |
880 * Makefile.in.in (TAGS tags): | |
881 Ignore errors from rm during clean, to prevent problems trying to | |
882 remove lock/CVS. | |
883 | |
3074 | 884 2005-11-08 Malcolm Purvis <malcolmp@xemacs.org> |
885 | |
886 * Makefile.in.in: Install PROBLEMS into .../etc | |
887 * PROBLEMS: Update description of MacOS X stack size limit. | |
888 | |
3073 | 889 2005-11-08 Malcolm Purvis <malcolmp@xemacs.org> |
890 | |
891 * configure.ac : Reorganised the option list so that the help | |
892 output looks like configure.usage from 21.4 | |
893 | |
3072 | 894 2005-11-16 Stephen J. Turnbull <stephen@xemacs.org> |
895 | |
896 * configure.ac (checks for typedefs): TODO comment. | |
897 | |
3062 | 898 2005-11-13 Ben Wing <ben@xemacs.org> |
899 | |
900 * dynodump/Makefile.in.in: | |
901 * dynodump/Makefile.in.in (.PHONY): | |
902 Add targets distclean-noconfig, realclean-noconfig, extraclean-noconfig. | |
903 Do some refactoring for cleanliness. | |
904 | |
905 2005-11-13 Ben Wing <ben@xemacs.org> | |
906 | |
907 * Makefile.in.in: | |
908 * Makefile.in.in (beta): | |
909 * Makefile.in.in (FRC.mostlyclean FRC.clean FRC.distclean FRC.realclean FRC.extraclean FRC.tags): | |
910 * Makefile.in.in (.PHONY): | |
911 * Makefile.in.in (top-mostlyclean): | |
912 * Makefile.in.in (mostlyclean): | |
913 * Makefile.in.in (top-clean): | |
914 * Makefile.in.in (clean): | |
915 * Makefile.in.in (distclean): | |
916 * Makefile.in.in (realclean): | |
917 Add targets distclean-noconfig, realclean-noconfig, extraclean-noconfig. | |
918 *-noconfig targets are like the base targets they're based off of, but | |
919 don't delete Makefiles and certain other files needed to rebuild the | |
920 Makefiles as necessary. Refactor things to be more consistent. | |
921 Top-level `elcclean' is an alias for `realclean-noconfig' and is used | |
922 by target `beta'. `realclean-noconfig' (and, by extension, `realclean' | |
923 and `extraclean') remove the .elc files. | |
924 | |
3060 | 925 2005-11-13 Ben Wing <ben@xemacs.org> |
926 | |
927 * configure.ac (win32 native sound): | |
928 Dependent on operating system, not on window system. | |
929 | |
3050 | 930 2005-11-07 Stephen J. Turnbull <stephen@xemacs.org> |
931 | |
932 * configure.ac (AC_INIT): Use it correctly. | |
933 | |
934 2005-11-07 Stephen J. Turnbull <stephen@xemacs.org> | |
935 | |
936 * configure.ac (PostgreSQL): Check for link against SSL+crypto. | |
937 | |
938 2005-11-07 Stephen J. Turnbull <stephen@xemacs.org> | |
939 | |
940 * INSTALL: Add map from old options as appendix. | |
941 | |
942 2005-11-07 Stephen J. Turnbull <stephen@xemacs.org> | |
943 | |
944 * INSTALL: Various minor improvements. | |
945 | |
3031 | 946 2005-10-26 Stephen J. Turnbull <stephen@xemacs.org> |
947 | |
948 * XEmacs 21.5.23 "daikon" is released. | |
949 | |
3019 | 950 2005-10-25 Malcolm Purvis <malcolmp@xemacs.org> |
951 | |
952 * configure.ac: Prefer Xaw to Motif on Linux, Mac and BSD. From | |
953 21.4. | |
954 * configure.ac (XE_PARSE_COMPLEX_OPTION): Remove debugging. | |
955 Fix broken --with-<complex>=no. | |
956 | |
3018 | 957 2005-10-20 Malcolm Purvis <malcolmp@xemacs.org> |
958 | |
959 * INSTALL: Reflect changes in the configure options. Update MacOS | |
960 X X11 installation instructions to reflect the changes in recent | |
961 OS releases. | |
962 | |
3003 | 963 2005-10-15 Malcolm Purvis <malcolmp@xemacs.org> |
964 | |
965 * configure.ac: Added XE_MERGED_ARG to alias all local --enable | |
966 and --with options. Configure can only be built with autoconf | |
967 2.59. Prevent many unwanted blank lines from appearing in | |
968 configure. | |
969 | |
2992 | 970 2005-10-13 Ben Wing <ben@xemacs.org> |
971 | |
972 * configure.ac (XE_COMPLEX_ARG_ENABLE): | |
973 Break lines. | |
974 * configure.ac (TAB): | |
975 Rewrite optimization help to be accurate. Setting | |
976 `--with-cflags-optimization=""' will now unilaterally turn off | |
977 optimization; setting it to something non-null unilaterally turns it | |
978 on. | |
979 | |
2973 | 980 2005-09-22 Stephen J. Turnbull <stephen@xemacs.org> |
981 | |
982 * configure.ac (Canna): Configure as module if appropriate. | |
983 | |
984 * Makefile.in.in (modules/canna): Add dependency on lib-src (ellcc). | |
985 | |
2940 | 986 2005-09-18 Mike Alexander <mta@arbortext.com> |
987 | |
988 * configure.ac: Fix the cygwin, non-X build by adding XPM header | |
989 and library files to XE_CFLAGS. Patch from Rick Rankin. | |
990 | |
2938 | 991 2005-09-17 Malcolm Purvis <malcolmp@xemacs.org> |
992 | |
993 * configure.in: Replace with warning to use autoconf 2.59. | |
994 * configure.ac: Removed warning about the use of autoconf 2.59. | |
995 | |
2931 | 996 2005-09-14 Stephen J. Turnbull <stephen@xemacs.org> |
997 | |
998 * XEmacs 21.5.22 "cucumber" is released. | |
999 | |
2867 | 1000 2005-07-20 Didier Verna <didier@xemacs.org> |
1001 | |
1002 * CHANGES-beta: Remove the face aliasing feature announcement. | |
1003 | |
2865 | 1004 2005-07-19 Didier Verna <didier@xemacs.org> |
1005 | |
1006 * CHANGES-beta: Announce the face aliasing feature. | |
1007 | |
2791 | 1008 2005-05-28 Stephen J. Turnbull <stephen@xemacs.org> |
1009 | |
1010 * XEmacs 21.5.21 "corn" is released. | |
1011 | |
2790 | 1012 2005-05-28 Stephen J. Turnbull <stephen@xemacs.org> |
1013 | |
1014 * configure.ac: Explain how to turn off KKCC, too. | |
1015 | |
1016 2005-05-19 Marcus Crestani <crestani@xemacs.org> | |
1017 | |
1018 * configure: | |
1019 * configure.ac: Enable new allocator and KKCC by default. | |
1020 | |
1021 2005-05-27 Stephen J. Turnbull <stephen@xemacs.org> | |
1022 | |
1023 * CHANGES-beta: Update for release. | |
1024 | |
2741 | 1025 2005-04-22 Malcolm Purvis <malcolmp@xemacs.org> |
1026 | |
1027 * configure.ac: Make srcdir absolute before calling | |
1028 AC_CONFIG_AUX_DIR_DEFAULT, include X headers for shape.h, | |
1029 terminate checking lines when testing for dynamic libraries. | |
1030 * configure: Regenerated. | |
1031 | |
2720 | 1032 2005-04-01 Marcus Crestani <crestani@xemacs.org> |
1033 | |
1034 The new allocator. | |
1035 | |
1036 New configure flag: `MC_ALLOC': | |
1037 | |
1038 * configure.ac (XE_COMPLEX_ARG_ENABLE): Add `--enable-mc-alloc' as | |
1039 a new configure flag. | |
1040 * configure.in (AC_INIT_PARSE_ARGS): Add `--mc-alloc' as a new | |
1041 configure flag. | |
1042 * configure.usage: Add description for `mc-alloc'. | |
1043 | |
1044 DUMP_IN_EXEC: | |
1045 | |
1046 * Makefile.in.in: Condition the installation of a separate dump | |
1047 file on !DUMP_ON_EXEC. | |
1048 * configure.ac (XE_COMPLEX_ARG_ENABLE): Add | |
1049 `--enable-dump-in-exec' as a new configure flag. | |
1050 * configure.ac: DUMP_IN_EXEC is define as default for PDUMP but | |
1051 not default for MC_ALLOC. | |
1052 * configure.in (AC_INIT_PARSE_ARGS): Add `--dump-in-exec' as a | |
1053 new configure flag. | |
1054 * configure.in: DUMP_IN_EXEC is define as default for PDUMP but | |
1055 not default for MC_ALLOC. | |
1056 * configure.usage: Add description for `dump-in-exec'. | |
1057 | |
2705 | 1058 2005-03-31 Jerry James <james@xemacs.org> |
1059 | |
1060 * configure.ac: Aidan's 2005-03-30 patch, but against | |
1061 configure.ac. | |
1062 | |
2701 | 1063 2005-03-30 Aidan Kehoe <kehoea@parhasard.net> |
1064 | |
1065 * configure: #include <X11/Intrinsic.h.> -> #include | |
2865 | 1066 <X11/Intrinsic.h>, thank you Robert Delius Royar. |
1067 | |
2694 | 1068 2005-03-15 Jerry James <james@xemacs.org> |
1069 | |
1070 * configure.ac: Include <X11/Intrinsic.h> when checking for | |
1071 <Xaw/XawInit.h> usability. | |
1072 | |
2692 | 1073 2005-03-23 Vin Shelton <acs@xemacs.org> |
1074 | |
1075 * configure.in: Remove -fno-gnu-linker option from Solaris | |
1076 dynodump builds; it doesn't do anything. | |
1077 | |
1078 Don't use 'head -1' - it's deprecated by coreutils-5.3.0 on some | |
1079 platforms. | |
1080 | |
2680 | 1081 2005-03-24 Aidan Kehoe <kehoea@parhasard.net> |
1082 | |
2865 | 1083 * configure: Regenerate. |
2680 | 1084 * configure.ac (XE_COMPLEX_ARG_ENABLE): --OPTION -> --with-OPTION |
2865 | 1085 in various docstrings and error messages. |
2680 | 1086 |
2667 | 1087 2005-03-15 Stephen J. Turnbull <stephen@xemacs.org> |
1088 | |
1089 * configure.ac (--with-cflags-optimization): | |
1090 (--with-cflags-debugging): | |
1091 If the user specifies them, use them, and don't make her beg. | |
1092 * configure.ac (Autodetect PNG): PNG & TIFF need -lz in AC_CHECK_LIB. | |
1093 | |
1094 2005-03-15 Malcolm Purvis <malcolmp@xemacs.org> | |
1095 | |
2865 | 1096 * configure.ac: Fix problems with OpenBSD /bin/sh. |
2667 | 1097 |
2663 | 1098 2005-03-13 Aidan Kehoe <kehoea@parhasard.net> |
1099 | |
1100 * configure.ac (TAB): Check $ac_cv_build, not $canonical, when | |
1101 working out whether to link against libossaudio.so on NetBSD. | |
1102 | |
2653 | 1103 2005-03-11 Stephen J. Turnbull <stephen@xemacs.org> |
1104 | |
1105 * XEmacs 21.5.20 "cilantro" is released. | |
1106 | |
2651 | 1107 2005-03-07 Malcolm Purvis <malcolmp@xemacs.org> |
1108 | |
1109 * .cvsignore: Added autom4te.cache. | |
1110 * aclocal.m4: Changes to support autoconf 2.59 | |
1111 * config.guess: | |
1112 * config.sub: Upgraded to the latest upstream version | |
1113 * configure.ac: Rewritten for autoconf 2.59 support. | |
1114 | |
2648 | 1115 2005-03-06 Malcolm Purvis <malcolmp@xemacs.org> |
1116 | |
1117 * INSTALL: | |
1118 * PROBLEMS: Change configure arguments to the new autoconf 2.5 | |
1119 style configure. | |
1120 | |
2625 | 1121 2005-03-01 Aidan Kehoe <kehoea@parhasard.net> |
1122 | |
2865 | 1123 * configure: Regenerated. |
2625 | 1124 * configure.in (XE_COMPUTE_RUNPATH): Check for the availability of |
2628 | 1125 XtRegisterDrawable. |
2625 | 1126 |
2609 | 1127 2005-02-22 Adrian Aichner <adrian@xemacs.org> |
1128 | |
1129 * info/dir: Update to content generated by Info-rebuild-dir. | |
1130 | |
2602 | 1131 2005-02-21 Stephen J. Turnbull <stephen@xemacs.org> |
1132 | |
1133 * version.sh (XEMACS_RELEASE_DATE): New version info variable. | |
1134 | |
3094 | 1135 * configure.in (XEMACS_RELEASE_DATE): |
1136 * configure.ac (XEMACS_RELEASE_DATE): | |
1137 Use it. | |
1138 | |
1139 * configure.ac (sound): | |
1140 AC_DEFINE_UNQUOTED seems OK, if it's not m4-quoted. | |
2602 | 1141 |
2594 | 1142 2005-02-18 Stephen J. Turnbull <stephen@xemacs.org> |
1143 | |
1144 * XEmacs 21.5.19 "chives" is released. | |
1145 | |
2593 | 1146 2005-02-17 Stephen J. Turnbull <stephen@xemacs.org> |
1147 | |
1148 * CHANGES-beta: Update. | |
1149 | |
2564 | 1150 2005-02-03 Ben Wing <ben@xemacs.org> |
1151 | |
1152 * BUGS, README.packages: Delete, incorporate into FAQ. | |
1153 * README: Incorporate into FAQ. Delete everything but text | |
1154 pointing to FAQ. | |
1155 | |
2553 | 1156 2005-02-03 Jerry James <james@xemacs.org> |
1157 | |
1158 * configure.in: g++ 3.4.2 doesn't like -Wmissing-prototypes or | |
1159 -Wstrict-prototypes. | |
1160 | |
2536 | 1161 2005-01-31 Ben Wing <ben@xemacs.org> |
1162 | |
1163 * GETTING.GNU.SOFTWARE: Delete. | |
1164 * Makefile.in.in (SOURCES): | |
1165 Delete GETTING.GNU.SOFTWARE from SOURCES. | |
1166 * PROBLEMS: | |
1167 Delete reference to check_cygwin_setup.sh. | |
1168 | |
2512 | 1169 2005-01-26 Ben Wing <ben@xemacs.org> |
1170 | |
1171 * configure.in (AC_INIT_PARSE_ARGS): | |
1172 * configure.in (CANONICALIZE_PATH): | |
1173 * configure.in (TAB): | |
1174 * configure.usage: | |
1175 Add --with-optimization, cflags-optimization, | |
1176 cflags-debugging. Separate out optimization and debugging arguments. | |
1177 Document. | |
1178 | |
2491 | 1179 2005-01-21 Aidan Kehoe <kehoea@parhasard.net> |
1180 | |
1181 * configure: | |
2865 | 1182 * configure.in (XE_COMPUTE_RUNPATH): |
2491 | 1183 NetBSD can use Linux's sound API, but it needs an extra library at |
1184 link time to do so. | |
1185 | |
2427 | 1186 2004-12-07 Malcolm Purvis <malcolmp@xemacs.org> |
1187 | |
1188 * INSTALL: A POSIX compatible Make is no longer required for builds. | |
1189 * Makefile.in.in (RECURSIVE_MAKE): Removed. | |
1190 * Makefile.in.in (RECURSIVE_MAKE_ARGS): New. | |
1191 * configure.in (RECURSIVE_MAKE): Removed. | |
1192 * configure.in (RECURSIVE_MAKE_ARGS): New. | |
1193 Always refer to make as $(MAKE) and use $(RECURSIVE_MAKE_ARGS) for | |
1194 other parameters. This allows -j to work in GNU Make while | |
1195 removing need for POSIX compatible make on all systems. | |
1196 | |
2420 | 1197 2004-12-05 Ben Wing <ben@xemacs.org> |
1198 | |
1199 * README.packages: | |
1200 Fix error in specifying standard package location. | |
1201 Document --package-prefix. | |
1202 | |
2416 | 1203 2004-12-05 Ben Wing <ben@xemacs.org> |
1204 | |
1205 * configure.usage: | |
1206 * configure.in (AC_INIT_PARSE_ARGS): | |
1207 * configure.in (TAB): | |
1208 * configure.in (XE_COMPUTE_RUNPATH): | |
1209 * configure: | |
1210 Support --package-prefix and mmdf and pop arguments to --mail-locking. | |
1211 Document in configure.usage. | |
1212 | |
2389 | 1213 2004-11-12 Marcus Crestani <crestani@informatik.uni-tuebingen.de> |
1214 | |
1215 * configure: | |
1216 * configure.in: Make pdump default for Cygwin. | |
1217 | |
2388 | 1218 2004-11-12 Marcus Crestani <crestani@informatik.uni-tuebingen.de> |
1219 | |
1220 * Makefile.in.in (install-arch-dep): Fix installation for Cygwin. | |
1221 | |
2367 | 1222 2004-10-26 Ben Wing <ben@xemacs.org> |
1223 | |
1224 * configure.in (AC_INIT_NOTICE): | |
1225 * configure.in (TAB): | |
1226 * configure.in (XE_COMPUTE_RUNPATH): | |
1227 Turn off -Winline and -Wchar-subscripts. | |
1228 Use the right set of cflags when compiling modules. | |
1229 Rewrite ldap configuration to separate the inclusion of lber | |
1230 (needed in recent Cygwin) from the basic checks for the | |
1231 needed libraries. | |
1232 add a function for MAKE_JUNK_C; initially code was added to | |
1233 generate xemacs.def using this, but it will need to be rewritten. | |
1234 add an rm -f for junk.c to avoid weird Cygwin bug with cp -f onto | |
1235 an existing file. | |
1236 Sort list of auto-detected functions and eliminate unused checks for | |
1237 stpcpy, setlocale and getwd. | |
1238 Add autodetection of Cygwin scanf problems | |
1239 | |
2346 | 1240 2004-10-22 Stephen J. Turnbull <stephen@xemacs.org> |
1241 | |
1242 * XEmacs 21.5.18 "chestnut" is released. | |
1243 | |
2345 | 1244 2004-10-22 Stephen J. Turnbull <stephen@xemacs.org> |
1245 | |
1246 * CHANGES-beta: Update for release. | |
1247 | |
2315 | 1248 2004-09-29 Jerry James <james@xemacs.org> |
1249 | |
1250 * configure.in: Don't use -Wunused-parameter with g++. | |
1251 | |
2300 | 1252 2004-09-21 Malcolm Purvis <malcolmp@xemacs.org> |
1253 | |
1254 * configure.in: Unused parameter and variables warnings are GCC 3 | |
1255 or greater. | |
1256 | |
2286 | 1257 2004-09-14 Jerry James <james@xemacs.org> |
1258 | |
1259 * configure.in (TAB): Add unused parameter and variables warnings | |
1260 to gcc CFLAGS. | |
1261 | |
2283 | 1262 2004-09-20 Jerry James <james@xemacs.org> |
1263 | |
1264 * INSTALL: Update Canna description to reflect recent changes. | |
1265 | |
2263 | 1266 2004-09-11 Malcolm Purvis <malcolmp@xemacs.org> |
1267 | |
1268 * configure.in Check for sys/resource.h, sys/vlimit.h, getrlimit() | |
1269 and vlimit(). | |
1270 | |
2259 | 1271 2004-09-10 Malcolm Purvis <malcolmp@xemacs.org> |
1272 | |
1273 * INSTALL: A POSIX compatible Make is required for builds. | |
1274 * Makefile.in.in: Enable support for parallel builds. | |
1275 | |
2216 | 1276 2004-08-12 "Johann 'Myrkraverk' Oskarsson" <myrkraverk@users.sourceforge.net> |
1277 | |
1278 * config.guess: Identify PlayStation2. | |
1279 | |
2131 | 1280 2004-06-16 Stephen J. Turnbull <stephen@xemacs.org> |
1281 | |
1282 * configure.in: Character classes in globs don't work, die when | |
1283 GTK is mixed with other toolkits, protect comma in quoted message. | |
1284 | |
2128 | 1285 2004-06-14 Stephen J. Turnbull <stephen@xemacs.org> |
1286 | |
1287 * configure.in (Autodetection of Gdk libraries and includes): | |
1288 Don't allow mixing of GTK with other toolkits. | |
1289 | |
1290 2004-06-12 Stephen J. Turnbull <stephen@xemacs.org> | |
1291 | |
1292 * configure.in: Improve style of WARNINGs. | |
1293 | |
1294 2004-05-20 Stephen J. Turnbull <stephen@xemacs.org> | |
1295 | |
1296 * configure.in (HAVE_GPM): Die if GPM requested but not found. | |
1297 | |
2079 | 1298 2004-05-10 Jerry James <james@xemacs.org> |
1299 | |
1300 * aclocal.m4: Typo fix. | |
1301 * configure.in (XE_COMPUTE_RUNPATH): Add checks for shl_load and | |
1302 LTDL; unify the OS-specific checks into a case statement. | |
1303 | |
2050 | 1304 2004-04-30 Jerry James <james@xemacs.org> |
1305 | |
1306 * configure.in: Turn ICC warning 147 into an error to get a good | |
1307 XRegisterIMInstantiateCallback prototype. | |
1308 | |
2048 | 1309 2004-04-28 Jerry James <james@xemacs.org> |
1310 | |
1311 * configure.in: Get version information for both icc and icpc. | |
1312 | |
2029 | 1313 2004-04-08 Stephen J. Turnbull <stephen@xemacs.org> |
1314 | |
1315 * configure.in (GTK setup): Warn if other toolkits requested. | |
1316 | |
1317 2004-03-31 Stephen J. Turnbull <stephen@xemacs.org> | |
1318 | |
1319 * configure.in (Compiler feature macros): Kaarthik Sivakumar says | |
1320 _POSIX_C_SOURCE should be defined for FreeBSD 4.5 to 4.9 at least. | |
1321 | |
1322 2004-03-31 Stephen J. Turnbull <stephen@xemacs.org> | |
1323 | |
1324 * Makefile.in.in (install-arch-indep): make gzip-el now saves ~4MB. | |
1325 | |
2016 | 1326 2003-12-07 Olivier Galibert <galibert@pobox.com> |
1327 | |
1328 * Makefile.in.in: Don't install the dmp file when it's in the | |
1329 executable. | |
1330 | |
2009 | 1331 2004-04-12 Kaarthik Sivakumar <kaarthik@comcast.net> |
1332 | |
1333 * configure.in: Check for libmp dependencies before checking for | |
1334 the existence of the move function. | |
1335 | |
2006 | 1336 2004-03-04 Malcolm Purvis <malcolmpurvis@optushome.com.au> |
1337 | |
1338 * configure.in (src/Makefile): No longer include a special linker | |
1339 script for PowerPC Linux. Thanks to Stefan Bruda for reporting | |
1340 this bug. | |
1341 | |
1998 | 1342 2004-04-08 Stephen J. Turnbull <stephen@xemacs.org> |
1343 | |
1344 * configure.in (Compiler-specific hacks): Restore warning flags | |
1345 for XEMACS_CC if gcc. Report warning flags at compute time. | |
1346 | |
1997 | 1347 2004-04-07 Jerry James <james@xemacs.org> |
1348 | |
1349 * configure.in: FreeBSD MP needs -lcrypto. | |
1350 | |
1989 | 1351 2004-04-06 Jerry James <james@xemacs.org> |
1352 | |
1353 * configure.in: Change test -e to test -r for portability. | |
1354 | |
1985 | 1355 2004-04-06 Stephen J. Turnbull <turnbull@sk.tsukuba.ac.jp> |
1356 | |
1357 * configure.in (use_number_lib): Accepts no to disable bignums. | |
1358 * configure.usage: Document the "no" value. | |
1359 | |
1984 | 1360 2004-04-05 Jerry James <james@xemacs.org> |
1361 | |
1362 * configure.in (use_number_lib): New. Values are "gmp" or "mp". | |
1363 * configure.in: Use it. Report it. Check for size of a double. | |
1364 * configure.usage: Tell how to use use-number-lib. | |
1365 | |
1964 | 1366 2004-03-22 Stephen J. Turnbull <stephen@xemacs.org> |
1367 | |
1368 * XEmacs 21.5.17 "chayote" is released. | |
1369 | |
1955 | 1370 2004-03-18 Stephen J. Turnbull <turnbull@sk.tsukuba.ac.jp> |
1371 | |
1372 * configure.in (Compiler feature macros): Define _POSIX_C_SOURCE | |
1373 for FreeBSD 4.9 to shut up viteno's compiler, and _XOPEN_SOURCE to | |
1374 500 since apparently we'll use it if available. | |
1375 | |
1376 2004-03-05 Stephen J. Turnbull <stephen@xemacs.org> | |
1377 | |
1378 * configure.in (libc detection): Fix progress message. | |
1379 | |
1922 | 1380 2004-02-21 Stephen J. Turnbull <stephen@xemacs.org> |
1381 | |
1382 * configure.in (CFLAGS): Do XE_CFLAGS before adding warning flags to | |
1383 CFLAGS. Thanks to Jerry James for reporting the bug. | |
1384 | |
1916 | 1385 2004-02-18 Stephen J. Turnbull <stephen@xemacs.org> |
1386 | |
1387 * configure.in (AC_INIT_PARSE_ARGS): Use Solaris-compatible `for'. | |
1922 | 1388 Thanks to Vin Shelton for noticing the bug, and Hrvoje Niksic for |
1389 the more elegant fix. | |
1916 | 1390 |
1889 | 1391 2004-01-28 Stephen J. Turnbull <stephen@xemacs.org> |
1392 | |
1393 * configure.in: Use XE_CFLAGS for XEMACS_CC. | |
1394 Kludge: warn about CC and XEMACS_CC not from same vendor (gcc only). | |
1395 Various comment fixups. | |
1396 Delete dead code for finding srcdir. | |
1397 | |
1398 * Makefile.in.in (clean): Force deletion of generated Lisp load files. | |
1399 | |
1400 2003-11-06 Stephen J. Turnbull <stephen@xemacs.org> | |
1401 | |
1402 * configure.in: Report cc and libc version info. Detection code | |
1403 by Valdis Kletnieks <Valdis.Kletnieks@vt.edu>. Tweaked for Debian. | |
1404 | |
1871 | 1405 2004-01-20 Jerry James <james@xemacs.org> |
1406 | |
1407 * configure.in: The icc compiler pretends to be gcc. It isn't. | |
1408 | |
1800 | 1409 2003-11-18 Jerry James <james@xemacs.org> |
1410 | |
1411 * configure.in: Check for the typeof extension. | |
1412 | |
1756 | 1413 2003-10-15 Jerry James <james@xemacs.org> |
1414 | |
1415 * aclocal.m4: Add icc (Intel compiler) support. | |
1416 * configure.in: Ditto. | |
1417 | |
1740 | 1418 2003-10-11 Jerry James <james@xemacs.org> |
1419 | |
1420 * configure.in: installexe.sh is under srcdir, not blddir. | |
1421 | |
1716 | 1422 2003-09-26 Steve Youngs <youngs@xemacs.org> |
1423 | |
1424 * XEmacs 21.5.16 "celeriac" is released. | |
1425 | |
1707 | 1426 2003-09-21 Jerry James <james@xemacs.org> |
1427 | |
1428 * configure.in: Remove detection of GNU DLD. | |
1429 * configure: Regenerate. | |
1430 | |
4010 | 1431 2003-09-20 Rodney Sparapani <rsparapa@mcw.edu> |
1697 | 1432 |
1433 * PROBLEMS: Propose bash as an alternative to buggy Solaris | |
1434 /bin/sh. | |
1435 | |
1696 | 1436 2003-09-20 Steve Youngs <youngs@xemacs.org> |
1437 | |
1438 * configure: Re-generate after Martin's configure.in patch. | |
1439 | |
1440 2003-09-20 Martin Buchholz <martin@xemacs.org> | |
1441 | |
1442 * configure.in: XEmacs failed to build on Solaris9. | |
1443 Solaris9 comes with /usr/demo/SOUND, but no headers or libraries | |
1444 therein. | |
1445 | |
1692 | 1446 2003-09-18 Steve Youngs <youngs@xemacs.org> |
1447 | |
1448 * configure: Re-generate after Martin's configure.in patch. | |
1449 | |
1450 2003-09-13 Martin Buchholz <martin@xemacs.org> | |
1451 | |
1452 * configure.in (OS_RELEASE): Add support for SunOS 5.10. | |
1453 On current OSes produced by Sun, `uname -r' prints "5.9". | |
1454 It seems likely that on future OSes, `uname -r' will print "5.10". | |
1455 We need to accept multi-digit release numbers. | |
1456 | |
1678 | 1457 2003-05-10 Andrew Begel <abegel@CS.Berkeley.EDU> |
1458 | |
1459 * aclocal.m4 (XE_SHLIB_STUFF): Use -bundle when testing the | |
1460 ability to build shared libraries, but use -bundle_loader in | |
1461 ellcc. Properly handle other flags for MacOS X. | |
2865 | 1462 |
1665 | 1463 2003-09-03 Steve Youngs <youngs@xemacs.org> |
1464 | |
1465 * XEmacs 21.5.15 "celery" is released. | |
1466 | |
1651 | 1467 2003-08-28 Jerry James <james@xemacs.org> |
1468 | |
1469 * configure.in: Link modules with -lstdc++ if g++ is used. | |
1470 | |
1648 | 1471 2003-08-28 Steve Youngs <youngs@xemacs.org> |
1472 | |
1473 * README.packages: Update. | |
1474 | |
1633 | 1475 2003-08-18 Jerry James <james@xemacs.org> |
1476 | |
1477 * Makefile.in.in (GENERATED_HEADERS): Add xemacs.def. | |
1478 * Makefile.in.in: Regenerate if xemacs.def.in.in is touched. | |
1479 * aclocal.m4 (XE_SHLIB_STUFF): Allow modules with Cygwin. | |
1480 * aclocal.m4 (cygwin_warn): Removed. | |
1481 * configure.in (XE_COMPUTE_RUNPATH): Process xemacs.def.in.in. | |
1482 | |
1617 | 1483 2003-08-12 Stephen J. Turnbull <stephen@xemacs.org> |
1484 | |
1485 * configure.usage (Window System): `lucid' option often means `Motif'. | |
1486 | |
1546 | 1487 2003-06-13 Stephen J. Turnbull <stephen@xemacs.org> |
1488 | |
1489 * configure.usage (--cflags-warning): Change underscore to hyphen. | |
1490 | |
1510 | 1491 2003-06-01 Steve Youngs <youngs@xemacs.org> |
1492 | |
1493 * XEmacs 21.5.14 "cassava" is released. | |
1494 | |
1491 | 1495 2003-05-20 Jerry James <james@xemacs.org> |
1496 | |
1497 * configure.in: Add src to MAKE_SUBDIR early for module builds for | |
1498 MacOSX and Windows; thanks to Andrew Begel. Set module makefile | |
1499 variables appropriately if --with-modules=no is specified. | |
1500 | |
1501 * configure: Regenerate. | |
1502 | |
1473 | 1503 2003-05-10 Steve Youngs <youngs@xemacs.org> |
1504 | |
1505 * XEmacs 21.5.13 "cauliflower" is released. | |
1506 | |
1470 | 1507 2003-05-10 Steve Youngs <youngs@xemacs.org> |
1508 | |
1509 * Revert this patch: | |
1510 2003-05-01 Andrew Begel <abegel@CS.Berkeley.EDU> | |
1511 | |
1512 * configure.in: Move module detection to after src/ is added to | |
1513 MAKE_SUBDIR. On MacOS X, building modules requires xemacs to | |
1514 already be built. | |
1515 * aclocal.m4 (XE_SHLIB_STUFF): Properly define ellcc flags for | |
1516 MacOS X. | |
1517 It was stopping certain libs from making their way into the | |
2865 | 1518 Makefiles. |
1470 | 1519 |
1520 * configure: Regenerate. | |
1521 | |
1464 | 1522 2003-05-09 Stephen J. Turnbull <stephen@xemacs.org> |
1523 | |
1524 * configure.in: Revert Steve Youngs's patch, and set default for | |
1525 ESD in the Defaults section. Improve comments. | |
1526 | |
1527 * configure: Regenerate. | |
1528 | |
1462 | 1529 2003-05-07 Steve Youngs <youngs@xemacs.org> |
1530 | |
1531 * configure.in: Default ESD sound to off. | |
1532 | |
1533 * configure.usage (--with-sound): Document ESD defaulting to off. | |
1534 | |
1535 * configure: Regenerate. | |
1536 | |
1457 | 1537 2003-05-05 Steve Youngs <youngs@xemacs.org> |
1538 | |
1539 * CHANGES.beta: Update. | |
1540 | |
1454 | 1541 2003-05-04 Steve Youngs <youngs@xemacs.org> |
1542 | |
1543 * configure: Regenerate. | |
1544 | |
1545 2003-05-04 Martin Buchholz <martin@xemacs.org> | |
1546 | |
1547 * configure.in: Don't look for Motif if it's already present in | |
1548 $x_includes and $x_libraries. | |
1549 | |
1452 | 1550 2003-05-01 Andrew Begel <abegel@CS.Berkeley.EDU> |
1551 | |
1552 * configure.in: Move module detection to after src/ is added to | |
1553 MAKE_SUBDIR. On MacOS X, building modules requires xemacs to | |
1554 already be built. | |
1555 * aclocal.m4 (XE_SHLIB_STUFF): Properly define ellcc flags for | |
1556 MacOS X. | |
1557 | |
1442 | 1558 2003-05-02 Stephen J. Turnbull <stephen@xemacs.org> |
1559 | |
1560 * configure.in (darwin): Collect random kludges in one place. | |
1561 (cygwin): Check for intptr_t in <sys/types.h>. | |
1562 (Berkeley db): Handle 4.1 functions decorated with version info. | |
1563 | |
1441 | 1564 2003-04-28 Stephen J. Turnbull <stephen@xemacs.org> |
1565 | |
1566 * PROBLEMS (Windows): New: auxiliary programs for Windows. | |
1567 | |
1568 2003-03-04 Stephen J. Turnbull <stephen@xemacs.org> | |
1569 | |
1570 * Makefile.in.in (TAGS tags): Make DEFUNed functions be tags. | |
1571 Patch by Martin Buchholz <martin@xemacs.org>. | |
1572 <15410.44105.753590.169241@gargle.gargle.HOWL> | |
1573 | |
1431 | 1574 2003-04-24 Steve Youngs <youngs@xemacs.org> |
1575 | |
1576 * XEmacs 21.5.12 "carrot" is released. | |
1577 | |
1427 | 1578 2003-04-24 Steve Youngs <youngs@xemacs.org> |
1579 | |
1580 * configure.in: Fix for building on openbsd. | |
1581 From Gregory Steuck <greg@nest.cx> | |
1582 | |
1583 * configure: Regenerate | |
1584 | |
1389 | 1585 2003-03-27 Stephen J. Turnbull <stephen@xemacs.org> |
1586 | |
1587 * PROBLEMS: Global substitution of .Xresources for .Xdefaults. | |
1588 | |
1384 | 1589 2003-03-25 Jerry James <james@eecs.ku.edu> |
1590 | |
1591 * configure.in: Add Andrew Begel's shared library support for | |
1592 MacOS X. | |
1593 | |
1375 | 1594 2003-03-18 Stephen J. Turnbull <stephen@xemacs.org> |
1595 | |
1596 * INSTALL: Give location of Darwin X11 downloads. | |
1597 | |
1349 | 1598 2003-02-09 Ville Skyttä <scop@xemacs.org> |
1599 | |
1600 * configure: Remove pkgdir and all references to it (unused). | |
1601 * configure.in: Ditto. | |
1602 * Makefile.in.in: Ditto. | |
1603 | |
1338 | 1604 2003-03-03 Stephen J. Turnbull <stephen@xemacs.org> |
1605 | |
1606 * INSTALL: Reorganize, synch to configure.usage. | |
1607 | |
1332 | 1608 2003-03-01 Ben Wing <ben@xemacs.org> |
1609 | |
1610 * PROBLEMS: | |
1611 * PROBLEMS (Note): | |
1612 * PROBLEMS (http): | |
1613 * PROBLEMS (IMPORTANT): | |
1614 Include nt/PROBLEMS and update. Add note about incremental | |
1615 linking badness. | |
1616 | |
1330 | 1617 2003-02-28 Ben Wing <ben@xemacs.org> |
1618 | |
1619 * Makefile.in.in (mostlyclean): | |
1620 * Makefile.in.in (clean): | |
1621 * Makefile.in.in (top_distclean): | |
1622 * Makefile.in.in (distclean): | |
1623 Move src deletions to src/Makefile.in.in. | |
1624 | |
1318 | 1625 2003-02-20 Ben Wing <ben@xemacs.org> |
1626 | |
1627 * PROBLEMS: | |
1628 * PROBLEMS (event-stream.c): Removed. | |
1629 * PROBLEMS (ABSTRACT): | |
1630 * PROBLEMS (patch.): | |
1631 * PROBLEMS (Note): | |
1632 Add comment about Cygwin, unexec and sysmalloc. | |
1633 Move some non-general stuff out of general. | |
1634 Make a section for x86. | |
2865 | 1635 |
1318 | 1636 * configure.in (AC_INIT_NOTICE): |
1637 * configure.in (XE_COMPUTE_RUNPATH): | |
1638 Add check for broken alloca in funcalls. | |
1639 | |
1314 | 1640 2003-02-19 Ben Wing <ben@xemacs.org> |
1641 | |
1642 * Makefile.in.in: | |
1643 * Makefile.in.in (GENERATED_HEADERS): | |
1644 * Makefile.in.in (GENERATED_LISP): Removed. | |
1645 * Makefile.in.in (.NO_PARALLEL): | |
1646 * Makefile.in.in (beta): | |
1647 * Makefile.in.in (dist): | |
1648 * Makefile.in.in (batch): Removed. | |
1649 * Makefile.in.in (batch_packages): Removed. | |
1650 * Makefile.in.in (check): New. | |
1651 * Makefile.in.in (finder): Removed. | |
1652 * Makefile.in.in (check-features): New. | |
1653 * Makefile.in.in (.PHONY): | |
1654 * Makefile.in.in (install-only): | |
1655 * Makefile.in.in (tagslisp): | |
1656 * Makefile.in.in (info): | |
1657 Major surgery. Move all stuff related to building anything in the | |
1658 src/ directory into src/. Simplify the dependencies -- everything | |
1659 in src/ is dependent on the single entry `src' in MAKE_SUBDIRS. | |
1660 Remove weirdo targets like `all-elc[s]', dump-elc[s], etc. | |
1661 | |
1307 | 1662 2003-02-16 Steve Youngs <youngs@xemacs.org> |
1663 | |
1664 * XEmacs 21.5.11 "cabbage" is released. | |
1665 | |
1303 | 1666 2003-02-15 Ben Wing <ben@xemacs.org> |
1667 | |
1668 * Makefile.in.in (batch_packages): Run update-elc-2 with -no-autoloads | |
1669 to avoid multiple autoload-loading problem. | |
1670 * configure.usage (--error-checking): Document quick-build better. | |
1671 | |
1294 | 1672 2003-01-28 Martin Buchholz <martin@xemacs.org> |
1673 | |
1674 * configure.in (opsys): (AIX specific) | |
1675 Use opsys=aix4-2 for AIX 5 and all future versions. | |
1676 | |
1283 | 1677 2003-02-10 Stephen J. Turnbull <stephen@xemacs.org> |
1678 | |
1679 * INSTALL: Recommend Mule, deprecate stripped binaries. | |
1680 | |
1259 | 1681 2003-02-05 Stephen J. Turnbull <stephen@xemacs.org> |
1682 | |
1683 * configure.in (DLSYM_NEEDS_UNDERSCORE): Define on darwin. | |
1684 | |
1685 * configure.in: Fix --srcdir processing. | |
1686 | |
1245 | 1687 2003-01-31 Stephen J. Turnbull <stephen@xemacs.org> |
1688 | |
1689 * PROBLEMS: Collect Motif information in one place. | |
1690 | |
1232 | 1691 2002-10-19 Stephen Turnbull <stephen@xemacs.org> |
1692 | |
1693 * Makefile.in.in (clean): Delete auto-autoloads.e* and custom-load.* | |
1694 in lisp, lisp/mule, and modules. | |
1695 | |
1222 | 1696 2003-01-14 Jerry James <james@xemacs.org> |
1697 | |
1698 * PROBLEMS: Describe Steve Youngs' problem with the PostgreSQL | |
1699 module and --error-checking=all. | |
1700 | |
1214 | 1701 2003-01-13 Ilya Golubev <golubev@xemacs.org> |
1702 | |
1703 * etc/photos/golubev.png, etc/photos/golubevm.png: New. | |
1704 | |
4010 | 1705 2003-01-12 Mike Sperber <mike@xemacs.org> |
1202 | 1706 |
1707 * configure.in: Check for strupr and strlwr. | |
1708 | |
1709 2002-12-16 Ben Wing <ben@xemacs.org> | |
1710 | |
1711 * INSTALL (Rationale): | |
1712 * configure.in (XE_COMPUTE_RUNPATH): | |
1713 * configure.usage (Usage): | |
1714 * configure.usage (--xemacs-compiler): | |
1715 * configure.usage (--srcdir): | |
1716 * configure.usage (--with-prefix): | |
1717 * configure.usage (--bindir): New. | |
1718 * configure.usage (--datadir): New. | |
1719 * configure.usage (--statedir): New. | |
1720 * configure.usage (--libdir): New. | |
1721 * configure.usage (--infodir): New. | |
1722 * configure.usage (--mandir): New. | |
1723 * configure.usage (--lispdir): New. | |
1724 * configure.usage (--sitelispdir): New. | |
1725 * configure.usage (--etcdir): New. | |
1726 * configure.usage (--lockdir): New. | |
1727 * configure.usage (--archlibdir): New. | |
1728 * configure.usage (--docdir): New. | |
1729 * configure.usage (--moduledir): New. | |
1730 * configure.usage (--with-site-lisp): New. | |
1731 * configure.usage (--with-site-modules): New. | |
1732 * configure.usage (--package-path): New. | |
1733 * configure.usage (--infopath): New. | |
1734 * configure.usage (--with-xmu): | |
1735 * configure.usage (--with-tty): | |
1736 * configure.usage (--with-gif): | |
1737 * configure.usage (--native-sound-lib): | |
1738 * configure.usage (--with-xim): New. | |
1739 * configure.usage (--with-clash-detection): New. | |
1740 * configure.usage (--with-database): | |
1741 * configure.usage (--mail-locking): | |
1742 * configure.usage (--with-ipv6-cname): Removed. | |
1743 * configure.usage (--error-checking): | |
1744 Redo usage message more logically, fix some problems. In configure, | |
1745 when outputting the compilation options, put in a big ugly warning | |
1746 about using union-type, since it's been known to trigger so many | |
1747 compiler bugs, invariably leading to weird crashes. | |
1748 | |
1187 | 1749 2003-01-04 Steve Youngs <youngs@xemacs.org> |
1750 | |
1751 * XEmacs 21.5.10 "burdock" is released. | |
1752 | |
1157 | 1753 2002-07-08 Andy Piper <andy@xemacs.org> |
1754 | |
1755 * Makefile.in.in (src/sheap-adjust.h): reset back to zero. Making | |
1756 this anything other than zero was misguided. | |
1757 | |
1155 | 1758 2002-12-04 Stephen J. Turnbull <stephen@xemacs.org> |
1759 | |
1760 * configure.in: Make --pdump default per opsys; move Darwin's | |
1761 setting and change Linux's default to yes. | |
1762 | |
1123 | 1763 2002-11-27 Ben Wing <ben@xemacs.org> |
1764 | |
1765 * configure.in (CANONICALIZE_PATH): | |
1766 * configure.in (TAB): | |
1767 Check for GCC version and only use -Wpacked in v3. | |
1768 | |
1117 | 1769 2002-10-14 Jerry James <james@xemacs.org> |
1770 | |
1771 * configure.in: Remove LISP_FLOAT_TYPE definition. | |
1772 | |
1111 | 1773 2002-11-17 Ben Wing <ben@xemacs.org> |
1774 | |
1775 * aclocal.m4 (cygwin_warn): New. | |
1776 Disable shared library modules under Cygwin for the moment, | |
1777 since we need some more tricky coding done and I don't have the | |
1778 time right now. | |
1779 | |
1780 * configure.in: | |
1781 * configure.in (need_modules_common): New. | |
1782 * configure.in (quoted_arguments): | |
1783 * configure.in (stack_trace_eye_catcher): | |
1784 * configure.in (CPP): | |
1785 * configure.in (CFLAGS): New. | |
1786 * configure.in (bitmapdir): | |
1787 * configure.in (ldap_libs): | |
1788 * configure.in (postgresql_libs): | |
1789 * configure.in (all_widgets): | |
1790 * configure.in (SUBDIR_MAKEFILES): | |
1791 * configure.in (RECURSIVE_MAKE): | |
1792 * configure.in (null_string): | |
1793 * configure.in (Mail): | |
1794 * configure.usage (--cflags): | |
1795 * configure.usage (--cflags_warning): New. | |
1796 | |
1797 Make sure we use the compiler in --xemacs-compiler to compile | |
1798 the modules, too, or we will get link errors when trying to do | |
1799 a C++ build. | |
1800 | |
1801 Create a directory modules/common, in which is code common to all | |
1802 the module Makefiles and configure.ac's. We create a separate | |
1803 directory because we may be building in a separate source tree, | |
1804 and need a way of accessing the common code (at least in the case | |
1805 of the Makefile). Either we create symlinks for all necessary | |
1806 files or one just for the directory -- the latter is more robust. | |
1807 | |
1808 Add code to create the symlink for modules/common as necessary. | |
1809 When creating the modules Makefiles, append the common code. | |
1810 | |
1811 Check for wcslen/wcscmp; apparently missing sometimes in Cygwin and | |
1812 G++ v3. | |
1813 | |
1814 Output correct compiler name in messages. | |
1815 | |
1816 Separate warning flags from other C flags so that user-specified | |
1817 --cflags doesn't disable warnings. | |
1818 | |
1100 | 1819 2002-11-12 Stephen J. Turnbull <stephen@xemacs.org> |
1820 | |
1821 * PROBLEMS (Running/Linux): Lesstif 0.93.36 info, from F. McIngvale. | |
1822 | |
1823 2002-11-12 Stephen J. Turnbull <stephen@xemacs.org> | |
1098 | 1824 |
1825 * PROBLEMS: Typo fix. | |
1826 | |
1092 | 1827 2002-10-31 John Paul Wallington <jpw@shootybangbang.com> |
1828 | |
2865 | 1829 * info/dir (File): button1 on a highlighted word doesn't |
1092 | 1830 follow that cross-reference. |
1831 | |
1832 2002-10-31 Stephen J. Turnbull <stephen@xemacs.org> | |
1833 | |
1834 * PROBLEMS (Running/IRIX): Irix 6.5 coredumps. Thanks, Valdis. | |
1835 | |
1836 2002-10-19 Stephen Turnbull <stephen@xemacs.org> | |
1837 | |
1838 * Makefile.in.in (clean): Delete auto-autoloads.e* and custom-load.* | |
1839 in lisp, lisp/mule, and modules. | |
1840 ChangeLog: Fix my bogus email addresses. | |
1841 | |
1070 | 1842 2002-10-25 Stephen J. Turnbull <stephen@xemacs.org> |
1843 | |
1844 * configure.in (Check for POSIX functions): New section head. | |
1845 getaddrinfo is detected on HP-UX 11.XX, but appears to be | |
1846 non-functional. Disable it. Based on work by Darryl Okahata. | |
2865 | 1847 |
1092 | 1848 2002-10-18 Stephen J. Turnbull <stephen@xemacs.org> |
1058 | 1849 |
1850 * PROBLEMS (Running/Cygwin): "No cygXpm-noX" fatal error. | |
1851 | |
1092 | 1852 2002-10-17 Stephen J. Turnbull <stephen@xemacs.org> |
1056 | 1853 |
1854 * PROBLEMS (Missing charsets): Remove ambiguity. | |
1855 | |
1045 | 1856 2002-10-10 Stephen J. Turnbull <stephen@xemacs.org> |
1857 | |
1858 * INSTALL (PREREQUISITES): Recommend Texinfo 4.2. | |
1859 | |
1042 | 1860 2002-09-27 Stephen J. Turnbull <stephen@xemacs.org> |
1861 | |
1862 * PROBLEMS (Running, General): Missing charset in FontSet warnings. | |
1863 | |
1036 | 1864 2002-10-08 Stephen J. Turnbull <stephen@xemacs.org> |
1865 | |
1866 * PROBLEMS (MacOS/X): Describe stack limitation. | |
1867 (Digital Unix): Generalize to all regexp-using applications. | |
1868 * INSTALL (PREQUISITES): Mention MacOS/X stack limitation. | |
1869 (PROBLEMS): Point to PROBLEMS file for build notes. | |
1870 Thanks to Skip Montanaro for the report. | |
1871 | |
1011 | 1872 2002-09-20 Steve Youngs <youngs@xemacs.org> |
1873 | |
1874 * Makefile.in.in (TAGS tags): Descend into the modules directory | |
1875 as well. | |
1876 | |
1009 | 1877 2002-09-20 Stephen J. Turnbull <stephen@xemacs.org> |
1878 | |
1879 * PROBLEMS: AIX memcpy MACRO/#ifdef USE_KKCC lossage. Thx, Valdis! | |
1880 | |
997 | 1881 2002-08-08 Jerry James <james@xemacs.org> |
1882 | |
1883 * Makefile.in.in (install-arch-dep): Install internal modules and | |
1884 the corresponding autoload file. | |
1885 * configure: Regenerate. | |
1886 * configure.in: Detect module support early. | |
1887 Define variables to be substituted in internal Makefiles. | |
1888 Use ldap_libs instead of LIBS for LDAP libraries. | |
1889 Use postgresql_libs instead of LIBS for PostgreSQL libraries. | |
1890 Introduce ld_libs_module for seamless module/no-module support. | |
1891 | |
981 | 1892 2002-08-30 Steve Youngs <youngs@xemacs.org> |
1893 | |
1894 * XEmacs 21.5.9 "brussels sprouts" is released. | |
1895 | |
975 | 1896 2002-08-16 Steve Youngs <youngs@xemacs.org> |
1897 | |
1898 * version.sh (xemacs_extra_name): New var to identify XEmacs | |
1899 version > release < next release. ie, release+cvs. | |
1900 | |
2865 | 1901 * configure.in: Test for xemacs_extra_name. |
975 | 1902 |
1903 * configure: Re-generate. | |
1904 | |
974 | 1905 2002-08-22 Ville Skyttä <ville.skytta@xemacs.org> |
1906 | |
1907 * configure.usage: Reorder usage message to clarify what widgets | |
1908 are supported and what aren't. | |
1909 | |
957 | 1910 2002-08-10 Stephen J. Turnbull <stephen@xemacs.org> |
1911 | |
1912 * PROBLEMS (General advice): Define runtime and build problems. | |
1913 | |
1914 2002-07-24 Stephen J. Turnbull <stephen@xemacs.org> | |
1915 | |
1916 * PROBLEMS (Running, Linux): Rewrite "Hannibal Lecter" ld stuff. | |
1917 | |
933 | 1918 2002-07-27 Steve Youngs <youngs@xemacs.org> |
1919 | |
1920 * XEmacs 21.5.8 "broccoli" is released. | |
1921 | |
4010 | 1922 2002-07-09 Mike Sperber <mike@xemacs.org> |
925 | 1923 |
2865 | 1924 * configure.usage: |
925 | 1925 * configure.in: Add --use-kkcc option for new GC algorithms. |
1926 | |
917 | 1927 2002-06-04 Jerry James <james@xemacs.org> |
1928 | |
1929 * configure.usage: Identify --with-modules as autodetecting. | |
1930 | |
915 | 1931 2002-07-04 Stephen J. Turnbull <stephen@xemacs.org> |
1932 | |
1933 * PROBLEMS: Add two basic configuration questions. | |
1934 | |
4010 | 1935 2002-07-08 Mike Sperber <mike@xemacs.org> |
911 | 1936 |
1937 * configure.in: Test for wchar.h. | |
1938 | |
894 | 1939 2002-07-02 Stephen J. Turnbull <stephen@xemacs.org> |
1940 | |
1941 * XEmacs 21.5.7 "broccoflower" is released. | |
1942 | |
892 | 1943 2002-07-02 Stephen J. Turnbull <stephen@xemacs.org> |
1944 | |
1945 * PROBLEMS (Running XEmacs; General): Xref FAQ Q3.10.6. | |
1946 | |
864 | 1947 2002-05-22 Andy Piper <andy@xemacs.org> |
1948 | |
1949 * build-msw-release.sh (TMPINSTALL): install to a tmpdir so that | |
1950 xemacs can be running while we build a dist. | |
1951 | |
1952 2002-05-07 Andy Piper <andy@xemacs.org> | |
1953 | |
1954 * configure.in: undo autoconf 2.5x change. | |
1955 | |
1956 2002-04-26 Andy Piper <andy@xemacs.org> | |
1957 | |
1958 * configure.in: make sure that a combined X and windows build gets | |
1959 widgets. | |
1960 | |
1961 2002-04-26 Andy Piper <andy@xemacs.org> | |
1962 | |
1963 * configure.in: update to support autoconf 2.5x from Andreas | |
1964 Schwab <schwab@suse.de> and/or Werner Fink <werner@suse.de>. | |
1965 | |
1966 2002-05-04 Stephen J. Turnbull <stephen@xemacs.org> | |
1967 | |
1968 * etc/sample.init.el: Fix comment typo about resize-minibuffer. | |
1969 | |
1970 * etc/sample.init.el: Add description of initialization process, | |
1971 the custom.el file, and code to load custom.el early instead of | |
1972 late. | |
1973 | |
1974 2002-04-22 Hrvoje Niksic <hniksic@xemacs.org> | |
1975 | |
1976 * etc/photos/hniksic.png, etc/photos/hniksic.png: Update. | |
1977 | |
1978 2002-04-25 Mike Fabian <mfabian@suse.de> | |
1979 | |
1980 * configure.in: add option moduledir as mentioned in ./configure | |
1981 --help | |
1982 | |
1983 2001-04-21 Martin Buchholz <martin@xemacs.org> | |
1984 | |
1985 * configure.in: Detect MacOS/X "Darwin". | |
1986 Thanks to Greg Parker <gparker@cs.stanford.edu>. | |
2865 | 1987 |
864 | 1988 2002-03-30 Steve Youngs <youngs@xemacs.org> |
1989 | |
1990 * etc/package-index.LATEST.pgp: Update to current reality. | |
1991 | |
1992 2002-02-28 Stephen J. Turnbull <stephen@xemacs.org> | |
1993 | |
1994 * etc/TUTORIAL.se: New from Mats Lidell. | |
1995 | |
1996 2002-01-07 Jan Vroonhof <jan@xemacs.org> | |
1997 | |
1998 * configure.in: Make explicit "--with-widgets" mean "=yes". | |
1999 If "--with-widgets=yes" autodetect athena. | |
2000 | |
2001 2001-12-29 Steve Youngs <youngs@xemacs.org> | |
2002 | |
2003 * etc/package-index.LATEST.pgp: Update. | |
2004 | |
2005 2001-12-13 William M. Perry <wmperry@gnu.org> | |
2006 | |
2007 * configure.in (GTK): add -Wno-shadow. | |
2865 | 2008 |
864 | 2009 2002-01-23 Jarl Friis <jarl@diku.dk> |
2010 | |
2011 * etc/BETA (http): Informing of xemacs-patches mailing list. Added | |
2012 note on patch etiquette. | |
2013 | |
853 | 2014 2001-03-26 Paul Stodghill <stodghil@cs.cornell.edu> |
2015 | |
2016 * configure.in: Don't #define __STDC__ in confdefs.h | |
2017 | |
846 | 2018 2002-02-28 Malcolm Purvis <malcolmpurvis@optushome.com.au> |
2019 | |
2020 * configure.in: Protect nocomboreloc linker arguments to avoid | |
2021 problem on the ppc. | |
2022 | |
845 | 2023 2002-05-17 Stephen J. Turnbull <stephen@xemacs.org> |
2024 | |
2025 * PROBLEMS: Describe "Hannibal Lecter" crash on Linux. Reorder | |
2026 Linux runtime issues section. | |
2027 * INSTALL: Improve description of mail locking. | |
2028 | |
835 | 2029 2002-05-04 Stephen J. Turnbull <stephen@xemacs.org> |
2030 | |
2031 * PROBLEMS (General): Decribe failed AUTH with EFS. | |
2032 | |
828 | 2033 2002-04-23 Olivier Galibert <galibert@pobox.com> |
2034 | |
2035 * configure.in: Fix the "error checking" warning. | |
2036 | |
826 | 2037 2002-05-05 Ben Wing <ben@xemacs.org> |
2038 | |
2039 * README.packages: Update info about --package-path. | |
2040 | |
814 | 2041 2002-04-14 Ben Wing <ben@xemacs.org> |
2042 | |
2043 * TODO.ben-mule-21-5: | |
2044 * TODO.ben-mule-21-5 (Priority): New. | |
2045 Update. | |
2046 | |
808 | 2047 2002-04-05 Stephen J. Turnbull <stephen@xemacs.org> |
2048 | |
2049 * XEmacs 21.5.6 "bok choi" is released. | |
2050 | |
803 | 2051 2002-04-05 Stephen J. Turnbull <stephen@xemacs.org> |
2052 | |
2053 * CHANGES-beta: Update for release. | |
2054 | |
801 | 2055 2002-03-31 Ben Wing <ben@xemacs.org> |
2056 | |
2057 * Makefile.in.in (all): | |
2058 * Makefile.in.in (finder): | |
2059 * Makefile.in.in (Makefile): | |
2060 * Makefile.in.in (SOURCES): | |
2061 Try to make the Makefile notice if its source Makefile.in.in is | |
2062 changed, and regenerate and run itself. | |
2063 | |
2064 Use a bigger default SHEAP_ADJUSTMENT on Cygwin; otherwise you | |
2065 can't compile under Mule if a Lisp file has changed. (can't run | |
2066 temacs) | |
2067 | |
2068 * TODO.ben-mule-21-5 (bugs): update. | |
2069 | |
800 | 2070 2002-03-31 Ben Wing <ben@xemacs.org> |
2071 | |
2072 * TODO.ben-mule-21-5 (bugs): Update. | |
2865 | 2073 |
800 | 2074 * configure.in (USAGE_ERROR): |
2075 * configure.in (CANONICALIZE_PATH): | |
2076 * configure.in (XE_COMPUTE_RUNPATH): | |
2077 Fix for new error-checking types. | |
2078 | |
793 | 2079 2002-03-28 Ben Wing <ben@xemacs.org> |
2080 | |
2081 * etc/ChangeLog: New file. | |
2082 | |
2083 Separated out all entries for etc/ into their own ChangeLog. | |
2084 Includes entries for the following files: | |
2085 | |
2086 etc/BABYL, etc/BETA, etc/CHARSETS, etc/DISTRIB, etc/Emacs.ad, | |
2087 etc/FTP, etc/GNUS-NEWS, etc/GOATS, etc/HELLO, etc/INSTALL, | |
2088 etc/MACHINES, etc/MAILINGLISTS, etc/MSDOS, etc/MYTHOLOGY, etc/NEWS, | |
2089 etc/OXYMORONS, etc/PACKAGES, etc/README, etc/TUTORIAL, | |
2090 etc/TUTORIAL.de, etc/TUTORIAL.ja, etc/TUTORIAL.ko, etc/TUTORIAL.se, | |
2091 etc/aliases.ksh, etc/altrasoft-logo.xpm, etc/check_cygwin_setup.sh, | |
2092 etc/custom/example-themes/europe-theme.el, | |
2093 etc/custom/example-themes/ex-custom-file, | |
2094 etc/custom/example-themes/example-theme.el, etc/e/eterm.ti, | |
2095 etc/edt-user.doc, etc/enriched.doc, etc/etags.1, etc/gnuserv.1, | |
2096 etc/gnuserv.README, etc/package-index.LATEST.gpg, | |
2097 etc/package-index.LATEST.pgp, etc/photos/jan.png, etc/recycle.xpm, | |
2098 etc/refcard.tex, etc/sample.Xdefaults, etc/sample.emacs, | |
2099 etc/sgml/CATALOG, etc/sgml/HTML32.dtd, etc/skk/SKK.tut.E, | |
2100 etc/smilies/Face_ase.xbm, etc/smilies/Face_ase2.xbm, | |
2101 etc/smilies/Face_ase3.xbm, etc/smilies/Face_smile.xbm, | |
2102 etc/smilies/Face_weep.xbm, etc/sounds, etc/toolbar, | |
2103 etc/toolbar/workshop-cap-up.xpm, etc/xemacs-ja.1, etc/xemacs.1, | |
2104 etc/yow.lines, etc\BETA, etc\NEWS, etc\README, etc\TUTORIAL, | |
2105 etc\TUTORIAL.de, etc\check_cygwin_setup.sh, etc\sample.init.el, | |
2106 etc\unicode\README, etc\unicode\mule-ucs\*, etc\unicode\other\* | |
2107 | |
2108 2002-03-24 Ben Wing <ben@xemacs.org> | |
2109 | |
2110 * TODO.ben-mule-21-5 (bugs): | |
2111 * TODO.ben-mule-21-5 (Signaling): New. | |
2112 Add stuff from Frank Schmitt. | |
2113 | |
788 | 2114 2002-03-20 Ben Wing <ben@xemacs.org> |
2115 | |
2116 * TODO.ben-mule-21-5: | |
2117 * TODO.ben-mule-21-5 (bugs): | |
2118 Create bug list for latest problems. | |
2119 | |
781 | 2120 2002-03-18 Ben Wing <ben@xemacs.org> |
2121 | |
2122 * README (http): | |
2123 Include a long, long description of the suggested directory layout | |
2124 for developing XEmacs. This should probably go as part of a | |
2125 larger document, a "Getting Started with Developing XEmacs". #### | |
2126 Does such a document exist? | |
2127 | |
2128 2002-03-18 Ben Wing <ben@xemacs.org> | |
2129 | |
2130 * Some ChangeLog entries from stuff that got applied long ago | |
2131 never got checked in, due to the nasty SCCS "oops, i forgot again | |
2132 ..." bug. | |
2133 | |
2134 2001-05-04 Ben Wing <ben@xemacs.org> | |
2135 | |
2136 * PROBLEMS: | |
2137 * PROBLEMS (Note): | |
2138 Correct general info about init file. | |
2139 Fix up Cygwin, Windows sections. | |
2140 | |
777 | 2141 2002-03-15 Ben Wing <ben@xemacs.org> |
2142 | |
2143 * configure.in (XE_COMPUTE_RUNPATH): | |
2144 check for sys/times.h. | |
2145 | |
776 | 2146 2002-03-15 Ben Wing <ben@xemacs.org> |
2147 | |
2148 * Makefile.in.in (batch): | |
2149 * Makefile.in.in (batch_packages): | |
2150 * Makefile.in.in (finder): | |
2151 * Makefile.in.in (check-features): | |
2152 * Makefile.in.in (install): | |
2153 Use -no-packages to avoid problems with package files shadowing | |
2154 core files (e.g. unicode.el in mule-ucs). | |
2155 | |
774 | 2156 2002-03-12 Ben Wing <ben@xemacs.org> |
2157 | |
3322 | 2158 * The Great Mule Merge of March 2002: |
2159 see node by that name in the Internals Manual. | |
774 | 2160 |
768 | 2161 2002-03-05 Stephen J. Turnbull <stephen@xemacs.org> |
2162 | |
2163 * XEmacs 21.5.5 "beets" is released. | |
2164 | |
762 | 2165 2002-03-05 Stephen J. Turnbull <stephen@xemacs.org> |
2166 | |
2167 * CHANGES-beta: Prune pre-21.5 information. | |
2168 | |
726 | 2169 2002-01-07 Jan Vroonhof <jan@xemacs.org> |
2170 | |
2171 * configure.in: Make explicit "--with-widgets" mean "=yes". | |
2172 If "--with-widgets=yes" autodetect athena. | |
2173 | |
725 | 2174 2002-01-08 Stephen J. Turnbull <stephen@xemacs.org> |
2175 | |
2176 * XEmacs 21.5.4 "bamboo" is released. | |
2177 | |
724 | 2178 2001-05-17 Andrew Begel <abegel@eecs.berkeley.edu> |
2179 | |
2180 * aclocal.m4 (LTLD): Don't use "gcc", use the ld reported by gcc. | |
2181 | |
2182 2001-08-19 Charles Wilson <cwilson@ece.gatech.edu> | |
2183 | |
2184 * configure.in (for graphics libraries): Detect Cygwin xpm-nox. | |
2185 | |
2186 2001-04-14 Gordon Sadler <gbsadler1@lcisp.com> | |
2187 | |
2188 * configure.in: Add GTK_CFLAGS to CPPFLAGS for glade.h check. | |
2189 | |
2190 2001-07-01 Alexey Mahotkin <alexm@hsys.msk.ru> | |
2191 | |
2192 * configure.in (option processing): with_widgets=m is ambiguous; | |
2193 don't allow it. | |
2194 (AC_CHECKING for the Athena widgets): Don't check for Athena when | |
2195 with_widgets=no. | |
2196 | |
2197 2001-07-22 Stephen J. Turnbull <stephen@xemacs.org> | |
2198 | |
2199 * configure.usage: Various documentation improvements. | |
2200 | |
2201 * configure.in (--with-ipv6-cname): New Boolean option. Defaults on. | |
2202 * configure.usage: | |
2203 * PROBLEMS (IPv6 CNAME lookup): | |
2204 Document it. | |
2205 | |
721 | 2206 2002-01-02 Adrian Aichner <adrian@xemacs.org> |
2207 | |
2208 * info/dir (File): Reword entry for Emodules according to | |
2209 ../man/emodules.texi. | |
2210 | |
705 | 2211 2001-12-18 Adrian Aichner <adrian@xemacs.org> |
2212 | |
2213 * info\.cvsignore: Correct pattern to match all info files. | |
2214 | |
701 | 2215 2001-12-16 Adrian Aichner <adrian@xemacs.org> |
2216 | |
2217 * info\.cvsignore: Info files are generated, so let's ignore them | |
2218 all. | |
2219 | |
699 | 2220 2001-12-15 Adrian Aichner <adrian@xemacs.org> |
2221 | |
2222 * info\dir (File): Update version to 21.5. | |
2223 | |
668 | 2224 2001-08-29 Jered Floyd <jered@MIT.EDU> |
2225 | |
2226 * configure.in (moduledir,sitemoduledir,archlibdir): | |
2227 Place arch-specific files under ${libdir}, not under ${datadir}. | |
2228 | |
667 | 2229 2001-09-25 Didier Verna <didier@xemacs.org> |
2230 | |
2231 * configure.ac: new. Autoconf 2.5x guard. | |
2232 | |
708 | 2233 2001-11-21 Robert Pluim <rpluim@bigfoot.com> |
2234 | |
2235 * PROBLEMS (Sun/Solaris): Document fix for Motif related crashes | |
2236 | |
2237 2001-12-15 Stephen J. Turnbull <stephen@xemacs.org> | |
2238 | |
2239 * configure.in (Miscellaneous Flags): test for -z nocombreloc, | |
2240 instead of -z combreloc, to avoid confusing Solaris. | |
2241 | |
2242 2001-11-24 Stephen J. Turnbull <stephen@xemacs.org> | |
2243 | |
2244 * configure.usage: Makefile.in -> Makefile.in.in. | |
2245 | |
2246 2001-11-21 Stephen J. Turnbull <stephen@xemacs.org> | |
2247 | |
2248 * Makefile.in.in: HP-UX needs LDFLAGS. From Lutz Jaenicke | |
2249 <Lutz.Jaenicke@aet.TU-Cottbus.DE>. | |
2250 | |
2251 2001-11-17 Stephen J. Turnbull <stephen@xemacs.org> | |
2252 | |
2253 * configure.in: Fix typos in comments. | |
2254 * (Miscellaneous flags): Use -z nocombreloc if supported and !pdump. | |
2255 * (Installation): Suggest pdump instead of -z nocomboreloc. | |
2256 * configure.usage: Document --quick-build. | |
2257 | |
2258 2001-10-30 Stephen J. Turnbull <stephen@xemacs.org> | |
2259 | |
2260 * configure.in: Typo in reference to with_ipv6_cname. | |
2261 | |
2262 2001-10-30 Stephen J. Turnbull <stephen@xemacs.org> | |
2263 | |
2264 * configure.in: Initialize with_ipv6_cname=no. | |
2265 * configure.usage: Document it. | |
2266 | |
2267 2001-10-05 Stephen J. Turnbull <stephen@xemacs.org> | |
2268 | |
2269 * configure.in: Document that autoconf 2.5x is unsupported. | |
2270 | |
664 | 2271 2001-09-17 Ben Wing <ben@xemacs.org> |
2272 | |
2273 * configure.in (TAB): | |
2274 * configure.in (XE_COMPUTE_RUNPATH): | |
2275 Don't use -Wshadow when compiling with g++ or you get buried in | |
2276 silly warnings. This patch was already applied but somehow got | |
2277 unapplied. Stephen? | |
2278 | |
2279 2001-06-24 Ben Wing <ben@xemacs.org> | |
2280 | |
2281 * configure.in (TAB): Don't use -Wshadow when compiling with | |
2282 g++ or you get buried in silly warnings. | |
2283 * configure.in (XE_COMPUTE_RUNPATH): Fix compile problems when | |
2284 compiling --with-msw, --with-x=no, --with-tty=no. | |
2285 | |
654 | 2286 2001-09-07 Stephen J. Turnbull <stephen@xemacs.org> |
2287 | |
2288 * XEmacs 21.5.3 "asparagus" is released. | |
2289 | |
642 | 2290 2001-08-02 Peter Brown <rendhalver@users.sourceforge.net> |
2291 | |
2292 * configure.usage (--with-dialogs): added lucid to list of options | |
2293 * configure.usage (--with-widgets): added lucid to list of options | |
2294 * configure.usage (--with-dragndrop): added GTK to list of protocols | |
2295 * configure.usage (--mail-locking): added `locking' or `mmdf' to | |
2296 list of options syncing options documentation with those in | |
2297 configure.in | |
2298 | |
641 | 2299 2001-07-28 Stephen J. Turnbull <stephen@xemacs.org> |
2300 | |
2301 * XEmacs 21.5.2 "artichoke" is released. | |
2302 | |
623 | 2303 2001-06-21 Ben Wing <ben@xemacs.org> |
2304 | |
2305 * README: | |
2306 * README (http): | |
2307 * README (ftp): | |
2308 Rewrite. | |
2309 | |
598 | 2310 2001-05-29 Martin Buchholz <martin@xemacs.org> |
2311 | |
2312 * Makefile.in.in: `make distclean' would fail if srcdir != blddir. | |
2313 Remove SUBDIR_DISTCLEAN until such a time as the module subdir is | |
2314 properly integrated into the build system. | |
2315 Only create ${moduledir} and ${sitemoduledir} if HAVE_SHLIB. | |
2316 | |
594 | 2317 2001-05-30 Ben Wing <ben@xemacs.org> |
2318 | |
2319 * configure.in (AC_INIT_PARSE_ARGS): | |
2320 * configure.in (USAGE_ERROR): | |
2321 * configure.in (XE_COMPUTE_RUNPATH): | |
2322 Fix problems detecting both native and Linux sound on Cygwin | |
2323 when compiled with --with-msw=no. | |
2324 | |
2325 Rearrange file-coding handling a bit to avoid warning when | |
2326 compiling with Mule. | |
2327 | |
2328 2001-05-28 Martin Buchholz <martin@xemacs.org> | |
2329 | |
2330 * configure.in (--xemacs-compiler): New. | |
2331 * configure.usage: | |
2332 * INSTALL: | |
2333 Document XEMACS_CC and corresponding compiler option --xemacs-compiler. | |
2334 Explain how to build xemacs using a C++ compiler. | |
2335 | |
585 | 2336 2001-05-29 Martin Buchholz <martin@xemacs.org> |
2337 | |
2338 * configure.in: Remove stray backslash. | |
2339 | |
582 | 2340 2001-05-26 Ben Wing <ben@xemacs.org> |
2341 | |
2342 * configure.in (XE_COMPUTE_RUNPATH): | |
2343 rewrite warning output so that it doesn't happen by default -- | |
2344 you should only get warnings when something is actively wrong, | |
2345 not just because a feature is not present. | |
2346 | |
567 | 2347 2001-05-06 Karl M. Hegbloom <karlheg@hegbloom.net> |
2348 | |
2349 * configure.in: See if mkstemp is available for movemail.c | |
2350 | |
559 | 2351 2001-05-23 Ben Wing <ben@xemacs.org> |
2352 | |
2353 * configure.in (AC_INIT_PARSE_ARGS): | |
2354 * configure.in (TAB): | |
2355 * configure.in (XE_COMPUTE_RUNPATH): | |
2356 add some support for eventually turning on file coding by | |
2357 default. Fix numerous places where AC_MSG_WARN had quotes | |
2358 around its arg, which is bad. Replace with []. Same for | |
2359 AC_MSG_ERROR. | |
2360 | |
2361 2001-05-15 Steve Youngs <youngs@xemacs.org> | |
667 | 2362 * configure.in: |
557 | 2363 If no native dumper (UNEXEC) is defined, simply use pdump. |
2364 If no SYSTEM_TYPE is defined, choose an appopriate default. | |
2365 | |
554 | 2366 2001-05-10 Paul Stodghill <stodghil@cs.cornell.edu> |
2367 | |
2368 * configure.in: Reverse the order of Windows and Linux sound tests | |
2369 so that Cygwin will find Windows first. | |
2370 | |
559 | 2371 2001-05-14 Martin Buchholz <martin@xemacs.org> |
2372 | |
2373 * configure.in (XE_REALLOC_NULLPTR_BUG): New. | |
541 | 2374 |
535 | 2375 2001-05-11 Martin Buchholz <martin@xemacs.org> |
2376 | |
667 | 2377 * configure.in: |
535 | 2378 Check for sys/ptyio.h on HPUX, else for pty.h or perhaps sys/pty.h |
2379 | |
532 | 2380 2001-05-10 Ben Wing <ben@xemacs.org> |
2381 | |
2382 * Makefile.in.in (all): | |
2383 * Makefile.in.in (configure): | |
2384 * Makefile.in.in (finder): | |
2385 remove autoload targets. | |
2386 | |
4010 | 2387 2001-04-26 Malcolm Purvis <malcolmpurvis@optushome.com.au> |
527 | 2388 |
2389 * configure.in: Check gtk version validity only when gtk-config | |
2390 exists. | |
2391 | |
4010 | 2392 2001-05-09 Martin Buchholz <martin@xemacs.org> |
522 | 2393 |
2394 * XEmacs 21.5.1 "anise" is released. | |
2395 | |
505 | 2396 2001-05-04 Martin Buchholz <martin@xemacs.org> |
2397 | |
667 | 2398 * configure.in (opsys): |
505 | 2399 Use lower-case `uname -s` as the default value for opsys. |
2400 The previous code effectively did the non-sensical | |
2401 opsys=$canonical because [] magically disappear in configure.in. | |
2402 | |
472 | 2403 2001-04-18 Martin Buchholz <martin@xemacs.org> |
2404 | |
2405 * XEmacs 21.5.0 "alfalfa" is released. | |
2406 | |
464 | 2407 2001-03-26 Paul Stodghill <stodghil@cs.cornell.edu> |
2408 | |
2409 * configure.in: Don't #define __STDC__ in confdefs.h | |
2410 | |
2411 2001-03-30 Stephen J. Turnbull <stephen@xemacs.org> | |
2412 | |
2413 * configure.usage: Document --with-file-coding. | |
2414 | |
2415 * configure.in: | |
2416 * configure: | |
2417 Fix typo, add -Wsign-compare if GCC, run autoconf. | |
2418 | |
2419 2001-03-23 Stephen J. Turnbull <stephen@xemacs.org> | |
2420 | |
2421 * PROBLEMS (Problems with running XEmacs): | |
2422 Document TMPDIR lossage in gnuserv/gnuclient. | |
2423 | |
4010 | 2424 2001-03-21 Martin Buchholz <martin@xemacs.org> |
462 | 2425 |
2426 * XEmacs 21.2.46 "Urania" is released. | |
2427 | |
2428 2001-03-19 Andy Piper <andy@xemacs.org> | |
2429 | |
2430 * configure.in: default rel-alloc to off under cygwin | |
2431 | |
2432 2001-03-15 Stephen J. Turnbull <stephen@xemacs.org> | |
2433 | |
2434 * ChangeLog: Fix CVS commit breakage from GTK merge, log GTK merge. | |
2435 | |
2436 * CHANGES-beta: | |
2437 * configure.in: | |
2438 Fix gratuitous whitespace changes from GTK merge. | |
2439 | |
2440 * configure.usage: Untabify --with-{gtk,gnome}. | |
2441 | |
2442 2001-03-12 Andy Piper <andy@xemacs.org> | |
2443 | |
2444 * configure.in: only pick up mingw directory. | |
2445 | |
2446 2001-03-02 Ben Wing <ben@xemacs.org> | |
2447 | |
2448 * info\dir: Update to 21.4; clean up descriptions of manuals; | |
2449 replace misnomer "Local Packages" with more correct "Other | |
2450 Documentation". | |
2451 | |
2452 2001-03-09 William M. Perry <wmperry@aventail.com> | |
2453 | |
2454 * CHANGES-beta: | |
2455 * configure.in: | |
2456 * configure.usage: | |
2457 The Great GTK Merge. | |
2458 | |
2459 2001-02-23 Andy Piper <andy@xemacs.org> | |
2460 | |
2461 * configure.usage (--with-netinstall): add docs. | |
2462 | |
2463 * configure.in: with_netinstall is a new option. Default to off. | |
2464 | |
4010 | 2465 2001-02-23 Martin Buchholz <martin@xemacs.org> |
460 | 2466 |
2467 * XEmacs 21.2.45 "Thelxepeia" is released. | |
2468 | |
2469 2001-02-13 Martin Buchholz <martin@xemacs.org> | |
2470 | |
2471 * aclocal.m4: Fix module support for AIX cc. | |
2472 Support possible future OSes irix7, aix5, osf[56]. | |
2473 | |
2474 2001-02-12 Martin Buchholz <martin@xemacs.org> | |
2475 | |
2476 * configure.in: No need for NON_GNU_CPP on SCO. | |
2477 | |
2478 2001-02-09 Martin Buchholz <martin@xemacs.org> | |
2479 | |
2480 * configure.in: Prefer utime to utimes - it's more standard. | |
2481 Remove explicit checking for struct utimbuf. | |
2482 Remove explicit checking for <utime.h>. | |
2483 Combined into one simpler test for utime. | |
2484 Add explicit check for utimes, if utime not found. | |
2485 | |
4010 | 2486 2001-02-08 Martin Buchholz <martin@xemacs.org> |
458 | 2487 |
2488 * XEmacs 21.2.44 "Thalia" is released. | |
2489 | |
4010 | 2490 2001-01-16 Mike Sperber <mike@xemacs.org> |
458 | 2491 |
2492 * configure.in: Remove bogus path variable definitions. | |
2493 Reflect the fact that specifying --datadir also affects docdir and | |
2494 archlibdir. | |
2495 | |
2496 2001-02-06 Martin Buchholz <martin@xemacs.org> | |
2497 | |
2498 * configure.in: Only use -Wpointer-arith on non-glibc systems. | |
2499 | |
2500 2001-02-02 Martin Buchholz <martin@xemacs.org> | |
2501 | |
2502 * configure.in (wnn): Make sure wnn/commonhd.h can be #included, | |
2503 for the sake of gcc 2.97 fixincludes, which breaks it. | |
2504 | |
2505 2001-01-27 Martin Buchholz <martin@xemacs.org> | |
2506 | |
2507 * configure.in: Check for util.h for NetBSD's openpty. | |
2508 | |
2509 2001-01-28 Martin Buchholz <martin@xemacs.org> | |
2510 | |
2511 * config.sub: Upgrade to offical version 2001-01-12. | |
2512 * config.guess: Upgrade to offical version 2001-01-17. | |
2513 | |
4010 | 2514 2001-01-26 Martin Buchholz <martin@xemacs.org> |
456 | 2515 |
2516 * XEmacs 21.2.43 "Terspichore" is released. | |
2517 | |
2518 2001-01-21 Steve Youngs <youngs@xemacs.org> | |
2519 | |
2520 * README.packages: Doc fix. | |
2521 | |
2522 2001-01-17 Steve Youngs <youngs@xemacs.org> | |
2523 | |
2524 * README.packages: Update. | |
2525 | |
4010 | 2526 2001-01-20 Martin Buchholz <martin@xemacs.org> |
454 | 2527 |
2528 * XEmacs 21.2.42 "Poseidon" is released. | |
2529 | |
2530 2001-01-18 Martin Buchholz <martin@xemacs.org> | |
2531 | |
2532 * PROBLEMS (Sun/Solaris): Yet another microimprovement. | |
2533 | |
2534 2001-01-17 Martin Buchholz <martin@xemacs.org> | |
2535 | |
2536 * PROBLEMS (Sun/Solaris): Replace --with-gnu-ld=no with | |
2537 --with-ld=/usr/ccs/bin/ld | |
2538 | |
2539 2001-01-16 Robert Pluim <rpluim@bigfoot.com> | |
2540 | |
2541 * PROBLEMS (SunOS/Solaris): Document workaround for GNU ld bug on | |
2542 Solaris. Half mine, half Raymond Toy, half Martin Buchholz. | |
2543 | |
2544 2001-01-16 Didier Verna <didier@xemacs.org> | |
2545 | |
2546 * NEWS: document the modeline horizontal scrolling feature. | |
2547 | |
4010 | 2548 2001-01-17 Martin Buchholz <martin@xemacs.org> |
452 | 2549 |
2550 * XEmacs 21.2.41 "Polyhymnia" is released. | |
2551 | |
2552 2001-01-16 Martin Buchholz <martin@xemacs.org> | |
2553 | |
2554 * PROBLEMS: Document MIPSpro ICE problem workaround. | |
2555 | |
2556 2001-01-06 Golubev I. N. <gin@mo.msk.ru> | |
2557 | |
2558 * configure.in: check for dlopen by linking program with | |
2559 <dlfcn.h>. | |
2560 | |
2561 2001-01-08 Andy Piper <andy@xemacs.org> | |
2562 | |
2563 * configure.in: add extra_includes and populate appropriately for | |
2564 cygwin and mingw. | |
2565 | |
2566 2000-12-28 Andy Piper <andy@xemacs.org> | |
2567 | |
2568 * configure.in: allow --with-widgets=msw | |
2569 | |
4010 | 2570 2001-01-08 Martin Buchholz <martin@xemacs.org> |
450 | 2571 |
2572 * XEmacs 21.2.40 is released. | |
2573 | |
2574 2000-12-26 Stephen J. Turnbull <stephen@xemacs.org> | |
2575 | |
2576 * PROBLEMS (Running/Linux): Rehabilitate Mandrake; tip for color-gcc. | |
2577 | |
2578 2000-12-20 Stephen J. Turnbull <stephen@xemacs.org> | |
2579 | |
2580 * PROBLEMS (Linux): document Mandrake policy, how to get Meta on | |
2581 Alt, and getaddrinfo() blocking trying to get localhost's CNAME. | |
2582 | |
4010 | 2583 2000-07-20 Kazuyuki IENAGA <ienaga@xemacs.org> |
450 | 2584 |
2585 * configure.in: use input-method-xlib.o for USE_XFONTSET instead | |
2586 of input-method-xfs.o. | |
2587 | |
2588 * configure: ditto | |
2589 | |
4010 | 2590 2000-12-31 Martin Buchholz <martin@xemacs.org> |
448 | 2591 |
2592 * XEmacs 21.2.39 is released. | |
2593 | |
4011 | 2594 2000-02-02 Daiki Ueno <ueno@ueda.info.waseda.ac.jp> |
448 | 2595 |
2596 * configure.in: Added check if the berkdb has db_create or not. | |
2597 | |
2598 2000-10-11 Yoshiki Hayashi <yoshiki@xemacs.org> | |
2599 | |
2600 * configure.in: Fix broken gcc detection for 2.7.2. | |
2601 | |
2602 2000-12-11 Andy Piper <andy@xemacs.org> | |
2603 | |
2604 * configure.in (XE_COMPUTE_RUNPATH): add netinstall as a subdirectory. | |
2605 | |
2606 * netinstall: new net installer for MS-Windows. | |
2607 | |
4010 | 2608 2000-12-05 Martin Buchholz <martin@xemacs.org> |
446 | 2609 |
2610 * XEmacs 21.2.38 is released. | |
2611 | |
454 | 2612 2000-11-26 Bjrn Torkelsson <torkel@hpc2n.umu.se> |
446 | 2613 |
2614 * configure.in: Only show message about DnD API if compiling with DnD | |
2615 | |
2616 2000-11-09 Martin Buchholz <martin@xemacs.org> | |
2617 | |
2618 * configure.in: Autodetect elf.h. | |
2619 | |
4010 | 2620 2000-11-14 Martin Buchholz <martin@xemacs.org> |
444 | 2621 |
2622 * XEmacs 21.2.37 is released. | |
2623 | |
2624 2000-10-19 Stephen J. Turnbull <stephen@xemacs.org> | |
2625 | |
2626 * README.packages: Add "uninstalled package" FAQ. | |
2627 | |
2628 2000-11-01 Martin Buchholz <martin@xemacs.org> | |
2629 | |
2630 * configure.in: Handle alloca with Compaq C on Alpha Linux. | |
2631 | |
2632 2000-10-27 Martin Buchholz <martin@xemacs.org> | |
2633 | |
2634 * configure.in: Oops, _getpt ==> _getpty | |
2635 | |
2636 2000-10-23 Yoshiki Hayashi <yoshiki@xemacs.org> | |
2637 | |
2638 * Makefile.in.in: Remove lockdir related things. | |
2639 | |
2640 2000-10-11 Martin Buchholz <martin@xemacs.org> | |
2641 | |
2642 * configure.in: | |
2643 Remove checking for XFree86. Use feature tests instead! | |
2644 Add check for XRegisterIMInstantiateCallback. | |
2645 Add check for XRegisterIMInstantiateCallback's prototype. | |
2646 | |
2647 2000-10-08 Karl M. Hegbloom <karlheg@debian.org> | |
2648 | |
2649 * configure.in: Typo - missing paren. | |
2650 | |
2651 2000-10-10 Martin Buchholz <martin@xemacs.org> | |
2652 | |
454 | 2653 * configure.in: |
444 | 2654 Use stropts.h, not sys/stropts.h. |
2655 Use strtio.h, not sys/strtio.h. | |
2656 | |
2657 2000-10-06 Martin Buchholz <martin@xemacs.org> | |
2658 | |
2659 * configure.in: Pretend that DEC OSF >= 5 is really DEC OSF 4. | |
2660 | |
4010 | 2661 2000-10-04 Martin Buchholz <martin@xemacs.org> |
442 | 2662 |
2663 * XEmacs 21.2.36 is released. | |
2664 | |
2665 2000-09-27 Martin Buchholz <martin@xemacs.org> | |
2666 | |
2667 * configure.in: Big signal/process handling overhaul. | |
2668 Autoconfiscate lots of functions and headers: | |
2669 getpt _getpt grantpt unlockpt ptsname killpg tcgetpgrp | |
2670 openpty pty.h libutil.h sys/stropts.h sys/strtio.h isastream | |
2671 | |
2672 2000-09-19 Martin Buchholz <martin@xemacs.org> | |
2673 | |
2674 * *: Spelling mega-patch | |
2675 | |
2676 2000-09-16 Martin Buchholz <martin@xemacs.org> | |
2677 | |
2678 * configure.in: Remove strcasecmp. | |
2679 | |
2680 2000-09-16 Martin Buchholz <martin@xemacs.org> | |
2681 | |
2682 * configure.in: Add -Kalloca to $c_switch_system when using | |
2683 Unixware native compiler (if necessary). | |
2684 | |
2685 2000-09-15 Martin Buchholz <martin@xemacs.org> | |
2686 | |
2687 * configure.in: Prevent spurious "No" in configure output when not | |
2688 using gcc. Oh, and it's "no", not "No". Oh, and it's "yes", not "Yes". | |
2689 | |
2690 2000-09-14 Martin Buchholz <martin@xemacs.org> | |
2691 | |
2692 * configure.in: Save 2 sed process invocations per Makefile. | |
2693 | |
2694 2000-08-22 SL Baur <steve@turbolinux.co.jp> | |
2695 | |
2696 * configure.in (after_morecore_hook_exists): Don't add /usr/shlib | |
2697 to link path if compiling on Alpha/Linux. | |
2698 | |
2699 2000-09-01 Martin Buchholz <martin@xemacs.org> | |
2700 | |
2701 * Makefile.in.in (depend): cd to the correct directory. | |
2702 | |
2703 2000-08-31 Martin Buchholz <martin@xemacs.org> | |
2704 | |
2705 * configure.in: with_widgets is incompatible with X11 R4. | |
2706 | |
2707 * configure.in: Make Balloon Help conditional on finding shape.h | |
2708 | |
2709 2000-08-09 Vin Shelton <acs@xemacs.org> | |
2710 | |
2711 * configure.in: Check for UNIX98 PTYs. Patch from Florian Weimer | |
2712 <Florian.Weimer@RUS.Uni-Stuttgart.DE>. | |
2713 | |
2714 2000-07-31 Yoshiki Hayashi <yoshiki@xemacs.org> | |
2715 | |
2716 * configure.usage: Remove lockdir document. | |
2717 | |
2718 2000-07-31 Martin Buchholz <martin@xemacs.org> | |
2719 | |
2720 * configure.in: | |
2721 Make knowledge of machine and opsys optional. | |
2722 Make existence of s&m files optional. | |
2723 Rely on configure alone if s&m files not found. | |
2724 | |
2725 * configure.in: | |
2726 Use only configure-time tests to detect getloadavg(). | |
2727 Don't check for kstat.h if we have getloadavg(). | |
2728 Check for sys/loadavg.h if we have getloadavg(). | |
2729 | |
2730 2000-07-15 Ben Wing <ben@xemacs.org> | |
2731 | |
2732 * Makefile.in.in (configure): | |
2733 all-elcs target now uses update-elc-2.el not update-elc.sh | |
2734 | |
4010 | 2735 2000-07-19 Martin Buchholz <martin@xemacs.org> |
442 | 2736 |
2737 * XEmacs 21.2.35 is released. | |
2738 | |
2739 2000-07-13 Martin Buchholz <martin@xemacs.org> | |
2740 | |
2741 * configure.in: --with-menubars=yes should not be an error. | |
2742 | |
2743 * configure.in: "compiling in support for Athena" message was | |
2744 sometimes lying. | |
2745 | |
2746 2000-07-12 Martin Buchholz <martin@xemacs.org> | |
2747 | |
2748 * configure.in: Rewrite xmkmf symbol detection to avoid | |
2749 redefinition of symbols we've already defined. | |
2750 Also, handle xmkmf symbols with values other than 1. | |
2751 | |
2752 2000-07-12 Martin Buchholz <martin@xemacs.org> | |
2753 | |
454 | 2754 * configure.in: |
442 | 2755 Make sure Unix98 socklen_t is defined. |
2756 Use ANSI C mode `-std1' with DEC C instead of `-std'. | |
2757 | |
2758 2000-07-09 Martin Buchholz <martin@xemacs.org> | |
2759 | |
454 | 2760 * configure.in: |
442 | 2761 Replace SMART_INCLUDE with a dumber, but more reliable method. |
2762 2000-07-10 Martin Buchholz <martin@xemacs.org> | |
2763 | |
454 | 2764 * modules/zlib/Makefile: |
2765 * modules/sample/Makefile: | |
2766 * modules/ldap/Makefile: | |
2767 * modules/base64/Makefile: | |
2768 * Makefile.in.in: | |
442 | 2769 rm -f ==> $(RM) |
2770 define SHELL=/bin/sh | |
2771 | |
2772 2000-07-09 Martin Buchholz <martin@xemacs.org> | |
2773 | |
2774 * configure.in: PostgreSQL rewrite. | |
2775 - Don't look for postgreSQL in /usr/local. | |
2776 - Simplify detection code. | |
2777 - Don't use SMART_INCLUDE. | |
2778 - Don't autodetect if --with-postgresql=no. | |
2779 | |
2780 2000-07-08 Ben Wing <ben@xemacs.org> | |
2781 | |
2782 * configure.usage: addl doc for graphics libs, with-msw. | |
2783 | |
2784 2000-07-09 Martin Buchholz <martin@xemacs.org> | |
2785 | |
2786 * configure.in: sh builtin `test' uses `=', not `=='. | |
2787 | |
2788 2000-07-08 Ben Wing <ben@xemacs.org> | |
2789 | |
2790 * configure.in: add -lcomdlg32 for cygwin. | |
454 | 2791 |
442 | 2792 2000-07-05 Craig Lanning <lanning@scra.org> |
2793 | |
2794 * aclocal.m4 (can_build_shared): | |
2795 First pass at module support for cygwin and mingw. | |
454 | 2796 |
442 | 2797 * configure: |
2798 * configure (xe_check_libs): | |
2799 * configure (acfindx): | |
2800 * configure (ac_x_includes): | |
2801 * configure (ac_x_libraries): | |
2802 * configure (ac_cv_lib_dnet_dnet_ntoa): | |
2803 * configure (xe_msg_checking): | |
2804 * configure (xe_runpath_dir): | |
2805 * configure (xetest): | |
2806 * configure (ac_err): | |
2807 * configure (ac_safe): | |
2808 * configure (with_xmu): | |
2809 * configure (bitmapdir): | |
2810 * configure (with_xauth): | |
2811 * configure (libs_xauth): | |
2812 * configure (with_cde): | |
2813 * configure (with_ldap): | |
2814 * configure (with_ldap_krbdes): | |
2815 * configure (save_c_switch_site): | |
2816 * configure (with_postgresql): | |
2817 * configure (with_xface): | |
2818 * configure (with_jpeg): | |
2819 * configure (with_png): | |
2820 * configure (with_tiff): | |
2821 * configure (athena_lib): | |
2822 * configure (have_motif): | |
2823 * configure (all_widgets): | |
2824 * configure (with_xim): | |
2825 * configure (with_xfs): | |
2826 * configure (with_wnn): | |
2827 * configure (with_canna): | |
2828 * configure (extra_objs): | |
2829 * configure (ac_cv_c_inline): | |
2830 * configure (have_esd_config): | |
2831 * configure (c_switch_site): | |
2832 * configure (with_ncurses): | |
2833 * configure (with_gpm): | |
2834 * configure (xealias): | |
2835 * configure (xehost_os): | |
2836 * configure (can_build_shared): | |
2837 * configure (xcldf): | |
2838 * configure (LTLD): | |
2839 * configure (ld_dynamic_link_flags): | |
2840 * configure (Mail): | |
2841 * configure.in: | |
2842 * configure.in (after_morecore_hook_exists): | |
2843 * configure.in (xetest): | |
2844 * configure.in (emacs_cv_localtime_cache): | |
2845 * configure.in (Mail): | |
2846 * configure.in: | |
2847 Clean up configure support for cygwin and mingw. | |
2848 | |
4010 | 2849 2000-06-27 Darryl Okahata <darrylo@soco.agilent.com> |
442 | 2850 |
2851 * PROBLEMS: Document broken native audio for recent patches and | |
2852 releases of HP-UX. | |
2853 | |
2854 2000-06-10 Ben Wing <ben@xemacs.org> | |
2855 | |
2856 * Makefile.in.in (install-arch-dep): | |
2857 WINDOWSNT -> WIN32_NATIVE. | |
2858 __CYGWIN32__ -> CYGWIN. | |
2859 | |
2860 2000-06-01 Andreas Jaeger <aj@suse.de> | |
2861 | |
2862 * configure.in: Recognize s390. | |
2863 | |
2864 * config.guess: New version from GNU config archive. | |
2865 * config.sub: Likewise. | |
2866 | |
4010 | 2867 2000-05-28 Martin Buchholz <martin@xemacs.org> |
442 | 2868 |
2869 * XEmacs 21.2.34 is released. | |
2870 | |
2871 2000-05-15 Yoshiki Hayashi <yoshiki@xemacs.org> | |
2872 | |
2873 * configure.in: | |
2874 Do not define DOUG_LEA_MALLOC when using other malloc scheme. | |
2875 Remove unused variable use_minimal_tagbits. | |
2876 | |
2877 2000-05-02 Yoshiki Hayashi <yoshiki@xemacs.org> | |
2878 | |
2879 * configure.in: Remove lockdir. | |
2880 | |
4010 | 2881 2000-05-01 Martin Buchholz <martin@xemacs.org> |
442 | 2882 |
2883 * XEmacs 21.2.33 is released. | |
2884 | |
2885 2000-04-27 Katsumi Yamaoka <yamaoka@jpl.org> | |
2886 | |
2887 * configure.in: Use ORDINARY_LD instead of "\$(ORDINARY_LD)" for | |
2888 the value of LD. | |
2889 | |
2890 2000-04-26 Ben Wing <ben@xemacs.org> | |
2891 | |
2892 * configure.in: add support for --quick-build. Remove --no-doc-file, | |
2893 subsumed. | |
2894 | |
2895 2000-04-19 Martin Buchholz <martin@xemacs.org> | |
2896 | |
454 | 2897 * configure.in: |
442 | 2898 * src/config.h.in: |
2899 Rewrite SMART_INCLUDE implementation to actually work. | |
2900 Be paranoid - Avoid use of spaces in these macro definitions. | |
454 | 2901 Leave alloca() definition at start of compilation unit, |
442 | 2902 as AIX requests. |
2903 Rename SMART_INCLUDE_MACRO to SMART_INCLUDE_INDIRECTIONS. | |
2904 | |
2905 2000-04-13 Yoshiki Hayashi <yoshiki@xemacs.org> | |
2906 | |
2907 * configure.in: Enable clash-detection by default. | |
2908 * configure.usage: Update documentation. | |
2909 | |
2910 2000-04-06 Andy Piper <andy@xemacs.org> | |
2911 | |
2912 * configure.in: fix typo. | |
2913 | |
2914 2000-04-03 Yoshiki Hayashi <yoshiki@xemacs.org> | |
2915 | |
2916 * configure.in : Fix printing error check warning even if | |
2917 it is not compiled in. | |
2918 | |
2919 2000-02-19 Jan Vroonhof <vroonhof@math.ethz.ch> | |
2920 | |
2921 * xemacs/configure.in: Do a normal link when compiling with | |
2922 --pdump. Don't try compiling an unexec object file. | |
454 | 2923 |
442 | 2924 2000-03-27 Didier Verna <didier@xemacs.org> |
2925 | |
2926 * configure.in: reorganize the output by topic. | |
2927 New configure test to define the proper SMART_INCLUDE macro. | |
2928 | |
2929 * configure.usage: slightly rearanged some options. | |
2930 | |
2931 2000-03-25 Didier Verna <didier@xemacs.org> | |
2932 | |
2933 * configure.in: rename `foo_h_path' to `foo_h_file' for variables | |
2934 representing real headers and not directories. This applies to | |
2935 `db_h_path', `curses_h_path', `term_h_path', `tt_c_h_path' and | |
2936 `soundcard_h_path'. | |
2937 | |
2938 2000-03-21 Didier Verna <didier@xemacs.org> | |
2939 | |
2940 * configure.in: try to find postgresql headers at different places | |
2941 and define POSTGRES_H_PATH as appropriate. | |
2942 | |
2943 2000-03-22 Andy Piper <andy@xemacs.org> | |
2944 | |
2945 * config.h.in: add ERROR_CHECK_GLYPHS. | |
2946 | |
2947 * configure.in: add error_check_glyphs. | |
2948 | |
4010 | 2949 2000-03-20 Martin Buchholz <martin@xemacs.org> |
442 | 2950 |
2951 * XEmacs 21.2.32 is released. | |
2952 | |
2953 2000-03-15 Olivier Galibert <galibert@pobox.com> | |
2954 | |
2955 * configure.in: Add dumper.o object when pdumping. | |
2956 | |
2957 2000-02-20 Olivier Galibert <galibert@pobox.com> | |
2958 | |
2959 * Makefile.in.in: Add pdump install support | |
2960 | |
2961 * configure.in: Add EMACS_PROGNAME config.h variable. | |
2962 | |
2963 2000-03-10 SL Baur <steve@musashimaru.m17n.org> | |
2964 | |
2965 * configure.usage: document --with-postgresql flag. | |
2966 | |
2967 2000-03-06 SL Baur <steve@musashimaru.m17n.org> | |
2968 | |
2969 * configure.in: add autodetection of PostgreSQL runtime libraries | |
2970 | |
2971 2000-03-09 Yoshiki Hayashi <yoshiki@xemacs.org> | |
2972 | |
2973 * aclocal.m4 (XE_SHLIB_STUFF): Define ld_shlibs to yes | |
2974 when C compiler can produce shared libraries. | |
2975 | |
2976 2000-02-26 Martin Buchholz <martin@xemacs.org> | |
2977 | |
2978 * configure.in: Unconditionally define SHELL, to allow working | |
2979 with (unreleased) autoconf 2.14.1, found on Mandrake 7.0 systems. | |
2980 | |
4010 | 2981 2000-02-23 Martin Buchholz <martin@xemacs.org> |
442 | 2982 |
2983 * XEmacs 21.2.31 is released. | |
2984 | |
4010 | 2985 2000-02-21 Martin Buchholz <martin@xemacs.org> |
442 | 2986 |
2987 * XEmacs 21.2.30 is released. | |
2988 | |
2989 2000-02-20 Martin Buchholz <martin@xemacs.org> | |
2990 | |
2991 * configure.in: Enforce use of autoconf version >= 2.13. | |
2992 | |
2993 * configure.in: Fix OS release test on Solaris. | |
2994 | |
2995 2000-02-19 Marcus Thiessel <marcus@xemacs.org> | |
2996 | |
2997 * PROBLEMS: Update email address. Describe more HP Motif errors. | |
2998 | |
2999 2000-02-19 Jan Vroonhof <vroonhof@math.ethz.ch> | |
3000 | |
3001 * configure.in: Split Solaris version test in two parts. In the | |
3002 Bourne shell the "-a" operator does NOT short-circuit. | |
3003 | |
3004 1999-12-15 Jan Vroonhof <jan@xemacs.org> | |
3005 | |
3006 * (configure.in): Autodetect broken gcc versions. Patch from WM | |
3007 Perry with tiny tweaks by Yoshiki Hayashi and yours truly. | |
3008 | |
3009 2000-02-17 Martin Buchholz <martin@xemacs.org> | |
3010 | |
3011 * configure.in: Autodetect sys/param.h. Reorganize | |
3012 AC_CHECK_HEADERS call. | |
3013 * src/config.h.in: Add HAVE_SYS_PARAM_H. | |
3014 | |
3015 2000-02-16 Martin Buchholz <martin@xemacs.org> | |
3016 | |
3017 * configure.in: Test for arm simply using arm* instead of arm-* | |
3018 | |
4010 | 3019 2000-02-16 Martin Buchholz <martin@xemacs.org> |
442 | 3020 |
3021 * XEmacs 21.2.29 is released. | |
3022 | |
3023 2000-02-16 Martin Buchholz <martin@xemacs.org> | |
3024 | |
3025 * configure.in: Don't use rel_alloc if malloc() calls mmap(). | |
3026 Discover this by looking for M_MMAP_THRESHOLD. | |
3027 | |
3028 * configure.in: Don't define POSIX_C_SOURCE on Solaris, due to | |
3029 bugs in (at least) Solaris 2.5 headers. | |
3030 | |
3031 2000-01-29 Craig Lanning <CraigL@DyCon.com> | |
3032 | |
3033 * configure.in: Fix detection of XPM on systems without X11. | |
3034 | |
3035 2000-02-11 Martin Buchholz <martin@xemacs.org> | |
3036 | |
3037 * configure.in: | |
3038 * src/config.h.in: | |
3039 Define _POSIX_C_SOURCE, _XOPEN_SOURCE, _XOPEN_SOURCE_EXTENDED, | |
3040 but only on tested Operating systems - Linux && SunOS >= 5.5. | |
3041 | |
3042 2000-02-09 Valdis Kletnieks <Valdis.Kletnieks@vt.edu> | |
3043 | |
3044 * aclocal.m4: Support dlls on aix[34]. | |
3045 | |
3046 2000-02-09 Martin Buchholz <martin@xemacs.org> | |
3047 | |
3048 * .cvsignore: Ignore gmon.out | |
3049 | |
3050 2000-02-08 Martin Buchholz <martin@xemacs.org> | |
3051 | |
3052 * configure.in: Sync Berkeley db autodetection with src/database.c | |
3053 | |
3054 2000-02-07 Martin Buchholz <martin@xemacs.org> | |
3055 | |
3056 * configure.in: check for XConvertCase. | |
3057 | |
4010 | 3058 2000-02-07 Martin Buchholz <martin@xemacs.org> |
440 | 3059 |
3060 * XEmacs 21.2.28 is released. | |
3061 | |
4010 | 3062 2000-01-27 URA Hiroshi <ura@hiru.aoba.yokohama.jp> |
442 | 3063 |
440 | 3064 * configure.in: added getaddrinfo and getnameinfo to AC_FUNC. |
3065 | |
3066 2000-01-26 Martin Buchholz <martin@xemacs.org> | |
3067 | |
3068 * configure.in: Backout the /etc/ld.so.conf patch of 2000-01-18. | |
3069 | |
3070 2000-01-24 Martin Buchholz <martin@xemacs.org> | |
3071 | |
3072 * configure.in: Always use our own realpath(), not the system one. | |
3073 | |
3074 2000-01-25 Martin Buchholz <martin@xemacs.org> | |
3075 | |
3076 * configure.in: Default Drag-N-Drop to "no" | |
3077 | |
3078 1999-12-28 Max Matveev <max@melbourne.sgi.com> | |
3079 | |
3080 * configure.in: add new machine type for IRIX 6.[2-5] to | |
3081 switch from using unexelf.o to unexelfsgi.o for just those | |
3082 versions of IRIX. | |
3083 In the ideal world it would be handled by the s/irix6-0.h but | |
3084 since machine config is included AFTER OS config, I had to add a | |
3085 new machine type. | |
3086 | |
3087 2000-01-22 Andy Piper <andy@xemacs.org> | |
3088 | |
3089 * configure.in: add winspool to windows libraries. | |
3090 | |
3091 2000-01-22 Martin Buchholz <martin@xemacs.org> | |
3092 | |
3093 * configure.in: Add more warnings to default gcc flags. | |
3094 | |
3095 2000-01-20 Daniel Pittman <daniel@danann.net> | |
3096 | |
3097 * configure.in: Find Athena headers hidden in even more obscure | |
3098 places. That is, search Xaw3D/ as well as X11/Xaw3D/. | |
3099 | |
3100 2000-01-19 Martin Buchholz <martin@xemacs.org> | |
3101 | |
3102 * configure.in: Add support for NetWinders. | |
3103 Patch by Sean MacLennan <seanm@netwinder.org> | |
3104 | |
3105 2000-01-18 Martin Buchholz <martin@xemacs.org> | |
3106 | |
3107 * configure.in: Use /etc/ld.so.conf at link-time, if available. | |
3108 | |
4010 | 3109 2000-01-18 Martin Buchholz <martin@xemacs.org> |
438 | 3110 |
3111 * XEmacs 21.2.27 is released. | |
3112 | |
3113 2000-01-14 Martin Buchholz <martin@xemacs.org> | |
3114 | |
3115 * configure.in: Create a .dbxrc in the src directory, like .gdbinit. | |
3116 | |
3117 * configure.in: Add `tests' symlink to make it easier to find | |
3118 automated tests directory. | |
3119 | |
3120 2000-01-14 Andy Piper <andy@xemacs.org> | |
3121 | |
3122 * configure.in: for cygwin 1.0 we must pick up the mingw32 headers | |
3123 before the cygwin headers. | |
3124 | |
3125 2000-01-08 Martin Buchholz <martin@xemacs.org> | |
3126 | |
442 | 3127 * configure.in: |
438 | 3128 - Allow find-tag to work in the build directory. |
3129 - rename src/gdbinit to src/.gdbinit, so that gdb can find it. | |
3130 - Less verbose messages when creating .sbinit, .gdbinit, TAGS. | |
3131 | |
4010 | 3132 2000-01-07 Marcus Thiessel <marcus@xemacs.org> |
438 | 3133 |
3134 * config.sub: Upgrade to 1.169, imported from autoconf's CVS | |
3135 * config.guess: Upgrade to 1.158, imported from autoconf's CVS | |
3136 | |
3137 2000-01-03 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
3138 | |
3139 * configure.usage (--mail-locking): | |
3140 * configure.in: Handle --mail-locking option correctly in | |
3141 preparation for the movemail locking overhaul. | |
3142 | |
3143 2000-01-05 Daniel Pittman <daniel@danann.net> | |
3144 | |
3145 * configure.in (Installation): Report which Athena header/library | |
3146 combo is being used. | |
3147 | |
4010 | 3148 1999-12-31 Martin Buchholz <martin@xemacs.org> |
436 | 3149 |
3150 * XEmacs 21.2.26 is released. | |
3151 | |
4010 | 3152 1999-12-24 Martin Buchholz <martin@xemacs.org> |
434 | 3153 |
3154 * XEmacs 21.2.25 is released. | |
3155 | |
3156 1999-12-17 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
3157 | |
3158 * README: Remove msdos part. | |
3159 | |
3160 1999-12-17 Martin Buchholz <martin@xemacs.org> | |
3161 | |
3162 * configure.in: Oops. xpm doesn't actually depend on X11. | |
3163 I got confused by the name (like others get confused by `xemacs'?) | |
3164 | |
4010 | 3165 1999-12-14 Martin Buchholz <martin@xemacs.org> |
432 | 3166 |
3167 * XEmacs 21.2.24 is released. | |
3168 | |
3169 1999-12-13 Martin Buchholz <martin@xemacs.org> | |
3170 | |
442 | 3171 * configure.in: |
432 | 3172 * configure.usage: |
3173 - Autodetect NAS. Change Docs accordingly. | |
3174 | |
3175 * configure.in: Warn if configure --with-xpm --without-x11. | |
3176 | |
3177 1999-12-09 Martin Buchholz <martin@xemacs.org> | |
3178 | |
3179 * configure.in: Clean up sound support. | |
3180 - variable `old_nas' was used but never set. | |
3181 - change `with_esd' to `with_esd_sound' for consistency. | |
3182 - Don't trust the output of `esd-config --libs`; test it. | |
3183 - Add `esd-config --cflags` to c_switch_site. | |
3184 - Die if ESD sound requested, but not available. | |
3185 - ESD is not dependent on X, therefore use LIBS, not libs_x. | |
3186 | |
3187 1999-12-07 Martin Buchholz <martin@xemacs.org> | |
3188 | |
3189 * configure.in (--with-sound): Variable with_esd was mispelled. | |
3190 | |
4010 | 3191 1999-12-07 Martin Buchholz <martin@xemacs.org> |
430 | 3192 |
3193 * XEmacs 21.2.23 is released. | |
3194 | |
3195 1999-11-30 Martin Buchholz <martin@xemacs.org> | |
3196 | |
3197 * configure.in: Fix module support. | |
3198 --with-modules=yes was completely broken. | |
3199 AC_DEFINE(HAVE_DLFCN_H) was invoked twice. | |
3200 Remove linking test for _dlopen - seems totally bogus. | |
3201 Die if --with-modules=yes but no module support found. | |
3202 Do nothing, not even msg, if --with-modules=no. | |
3203 | |
3204 1999-11-17 Isaac Hollander <ysh@mindspring.com> | |
3205 | |
3206 * Makefile.in.in: add and use TAR macro. Sometimes tar only copies | |
3207 symlinks instead of the actual files | |
3208 | |
3209 1999-11-30 Martin Buchholz <martin@xemacs.org> | |
3210 | |
3211 * aclocal.m4: Shared library support for hpux >= version 11 | |
3212 | |
3213 1999-11-29 Martin Buchholz <martin@xemacs.org> | |
3214 | |
3215 * Makefile.in.in (beta): `make beta' should rebuild info. | |
3216 | |
4010 | 3217 1999-11-29 XEmacs Build Bot <builds@cvs.xemacs.org> |
428 | 3218 |
3219 * XEmacs 21.2.22 is released | |
3220 | |
4010 | 3221 1999-11-28 Martin Buchholz <martin@xemacs.org> |
426 | 3222 |
3223 * XEmacs 21.2.21 is released. | |
3224 | |
3225 1999-11-26 Martin Buchholz <martin@xemacs.org> | |
3226 | |
442 | 3227 * configure.in: |
426 | 3228 Add configure support for Unix 98 type ssize_t. |
3229 | |
3230 1999-11-27 Martin Buchholz <martin@xemacs.org> | |
3231 | |
3232 * Makefile.in.in: | |
3233 Make sure config.values.sh is up to date. | |
3234 Use $(SHELL) instead of sh or /bin/sh consistently. | |
3235 Delegate `depend' target to src/Makefile.in.in. | |
3236 | |
3237 1999-10-27 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
3238 | |
3239 * INSTALL: Update configure option. | |
3240 | |
3241 1999-10-12 Alexandre Oliva <oliva@lsd.ic.unicamp.br> | |
442 | 3242 |
426 | 3243 * configure.in (native_sound_lib, *-sgi-*): Check for audio.h. |
3244 (LIBS): Check for libCsup. | |
3245 | |
3246 1999-10-24 Jan Vroonhof <vroonhof@math.ethz.ch> | |
3247 | |
3248 * config.h.in: define HAVE_ESD_SOUND | |
3249 | |
3250 * configure.in: Add support for esd sound. --with-sound | |
3251 now accepts a list of options. | |
3252 * configure.usage (--native-sound-lib): ditto. | |
3253 | |
3254 1999-11-17 Martin Buchholz <martin@xemacs.org> | |
3255 | |
442 | 3256 * Makefile.in.in (install-arch-dep): |
426 | 3257 Fix `make install' if prefix != exec_prefix. |
3258 | |
3259 1999-11-15 Martin Buchholz <martin@xemacs.org> | |
3260 | |
3261 * configure.in: | |
3262 - Accept --with-database=gdbm as an alias for | |
3263 --with-database=gnudbm. | |
3264 - rename with_database_gnudbm to with_database_gdbm. | |
3265 | |
3266 * aclocal.m4 (ld_dynamic_link_flags): Just use empty value for | |
3267 ld_dynamic_link_flags on Solaris. Else CC gives us: | |
3268 CC: Warning: Option -Wl,-Bdynamic passed to ld, if ld is invoked, ignored otherwise | |
3269 /usr/ccs/bin/ld: illegal option -- W | |
3270 | |
3271 | |
4010 | 3272 1999-11-10 XEmacs Build Bot <builds@cvs.xemacs.org> |
424 | 3273 |
3274 * XEmacs 21.2.20 is released | |
3275 | |
4011 | 3276 1999-09-21 Martin Buchholz <martin@xemacs.org> |
424 | 3277 * configure.in: Autodetect Unix98 PTY |
3278 | |
3279 1999-08-30 Robert Pluim <rpluim@bigfoot.com> | |
3280 | |
3281 * README.packages: Add description of package-get-provider | |
3282 | |
3283 1999-10-22 Vin Shelton <acs@xemacs.org> | |
3284 | |
3285 * INSTALL: Added more information about README.packages, and | |
3286 re-numbered some bullets. | |
3287 | |
3288 1999-10-24 Jan Vroonhof <vroonhof@math.ethz.ch> | |
3289 | |
3290 * INSTALL: Update disk requirements. Refer to README.packages | |
3291 | |
3292 1999-10-21 Andy Piper <andy@xemacs.org> | |
3293 | |
3294 * configure.in (all_widgets): Only use xaw3d if we really have it. | |
3295 | |
3296 1999-10-06 Andy Piper <andy@xemacs.org> | |
3297 | |
3298 * Makefile.in.in: use WINDOWSNT for mingw install. | |
3299 | |
3300 1999-09-25 Andy Piper <andy@xemacs.org> | |
3301 | |
3302 * configure.in: check for Xaw3d and use in preference to Xaw | |
3303 | |
3304 1999-09-21 Martin Buchholz <martin@xemacs.org> | |
3305 | |
3306 * Makefile.in.in: All Makefiles should #include config.h | |
3307 | |
3308 1999-09-19 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
3309 | |
3310 * configure.in (EMACS_CONFIGURATION): Use $configuration, not | |
442 | 3311 $canonical, so that installation paths and dynamic path setup will |
424 | 3312 stay in synch. |
3313 | |
3314 1999-09-20 Andy Piper <andy@xemacs.org> | |
3315 | |
3316 * Makefile.in.in: use __CYGWIN32__ and __MINGW32__ to predicate | |
3317 installation linkage. | |
3318 | |
3319 1999-08-29 Andreas Jaeger <aj@arthur.rhein-neckar.de> | |
3320 | |
3321 * configure.in (machine): Recognize MIPS/Linux. | |
3322 | |
3323 1999-08-27 Jan Vroonhof <vroonhof@math.ethz.ch> | |
3324 | |
442 | 3325 * modules/zlib/Makefile (distclean): |
3326 * modules/ldap/Makefile (distclean): | |
3327 * modules/sample/Makefile (distclean): | |
424 | 3328 * modules/base64/Makefile (distclean): new target |
3329 | |
3330 * Makefile.in.in (top_distclean): Add package directories | |
3331 (SUBDIR_DISTCLEAN): New variable, add module directories | |
3332 | |
3333 1999-09-01 Martin Buchholz <martin@xemacs.org> | |
3334 | |
3335 * configure.in: Warn, but otherwise ignore, obsolete arguments. | |
3336 | |
3337 1999-08-20 Olivier Galibert <galibert@pobox.com> | |
442 | 3338 |
424 | 3339 * configure.in: Add --pdump option. |
3340 * configure.usage: Ditto. | |
442 | 3341 |
424 | 3342 1999-08-04 Andy Piper <andy@xemacs.org> |
3343 | |
3344 * configure.in: report widget usage correctly. beef up setting. | |
3345 | |
3346 * Makefile.in.in: fix install-arch-dep for mingw32. | |
3347 | |
3348 1999-07-28 Andy Piper <andy@xemacs.org> | |
3349 | |
3350 * config.h.in: add new LWLIB defines. | |
3351 | |
3352 * configure.in: fix definitions of widget defines with various | |
3353 toolkit options. | |
3354 | |
4010 | 3355 1999-07-30 XEmacs Build Bot <builds@cvs.xemacs.org> |
422 | 3356 |
3357 * XEmacs 21.2.19 is released | |
3358 | |
3359 1999-07-28 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
3360 | |
3361 * configure.in: Removed superfluous call to AC_FUNC_MMAP. | |
3362 | |
3363 1999-03-07 Gregory Neil Shapiro <gshapiro@sendmail.org> | |
3364 | |
3365 * configure.in: Check for Kerberos and the need for the DES | |
3366 library before checking for LDAP in case LDAP requires these | |
3367 libraries. | |
3368 | |
3828 | 3369 1999-07-26 SL Baur <steve@xemacs.org> |
422 | 3370 |
3371 * configure.in: Rename --with-shlib to --with-modules for | |
3372 consistency with the other two options that use that name. | |
3373 | |
3374 * configure.usage (--with-modules): Document it. | |
3375 | |
3828 | 3376 1999-07-22 SL Baur <steve@xemacs.org> |
422 | 3377 |
3378 * configure.in: add sco7 support | |
3379 From Bob Weiner <weiner@beopen.com> | |
3380 | |
3828 | 3381 1999-07-22 SL Baur <steve@xemacs.org> |
422 | 3382 |
3383 * Makefile.in.in (install-arch-dep): Install config.values into | |
3384 docdir. | |
3385 From Karl M. Hegbloom <karlheg@cathcart.sysc.pdx.edu> | |
3386 | |
3828 | 3387 1999-07-21 SL Baur <steve@xemacs.org> |
422 | 3388 |
3389 * Makefile.in.in (inststaticdir): New variable. | |
3390 (instvardir): Ditto. | |
3391 (install-arch-dep): Use them. | |
3392 | |
3393 * configure.in (sitelispdir): Need to use ${PROGNAME}. | |
3394 (sitemoduledir): Ditto. | |
3395 (inststaticdir): New variable. | |
3396 (instvardir): Ditto. | |
3397 (infodir): Use them. | |
3398 (lispdir): Ditto. | |
3399 (moduledir): Ditto. | |
3400 (pkgdir): Ditto. | |
3401 (etcdir): Ditto. | |
3402 (lockdir): Ditto. | |
3403 (archlibdir): Ditto. | |
3404 | |
3828 | 3405 1999-07-14 SL Baur <steve@xemacs.org> |
422 | 3406 |
3407 * InfoDock 4.0.8 is released | |
3408 | |
4010 | 3409 1999-07-13 XEmacs Build Bot <builds@cvs.xemacs.org> |
420 | 3410 |
3411 * XEmacs 21.2.18 is released | |
3412 | |
3828 | 3413 1999-07-06 SL Baur <steve@xemacs.org> |
420 | 3414 |
3415 * config.guess (main): Synch with newer config.guess for HP | |
3416 support. | |
3417 From Marcus Thiessel <marcus@xemacs.org> | |
3418 | |
3419 1999-06-25 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
3420 | |
3421 * configure.in (with_prefix): Added --with-prefix, defaults to | |
442 | 3422 yes, to control whether the value of --prefix is compiled into the |
420 | 3423 binary. |
3424 | |
3425 1999-07-03 Andy Piper <andy@xemacs.org> | |
3426 | |
3427 * configure.usage (--with-widgets): add. | |
3428 | |
3429 1999-07-02 Andy Piper <andy@xemacs.org> | |
3430 | |
3431 * configure.in: Make sure we get motif in lwlib if we have widgets | |
3432 and motif. | |
3433 | |
3828 | 3434 1999-06-25 SL Baur <steve@xemacs.org> |
420 | 3435 |
3436 * configure.in (version): Fix --with-infodock test. | |
3437 | |
3438 1999-06-15 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
3439 | |
3440 * configure.in: --prefix and --exec-prefix are now only compiled | |
3441 into the binary if user-defined. | |
3442 | |
3443 1999-03-23 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
3444 | |
3445 * configure.in: Made docdir configurable. | |
3446 | |
3447 * Makefile.in (docdir): Added variable for custom DOC directory. | |
3448 | |
4010 | 3449 1999-06-22 XEmacs Build Bot <builds@cvs.xemacs.org> |
418 | 3450 |
3451 * XEmacs 21.2.17 is released | |
3452 | |
3453 1999-06-13 Oscar Figueiredo <oscar@xemacs.org> | |
3454 | |
3455 * configure.in (with_ldap): Check libldap independently of liblber | |
3456 Do not test alternate library names such as libldap10 | |
3457 Test the presence of a variety of LDAP API functions which were | |
3458 formerly assumed to be present according to dubious heuristics | |
3459 | |
4010 | 3460 1999-06-11 XEmacs Build Bot <builds@cvs.xemacs.org> |
416 | 3461 |
3462 * XEmacs 21.2.16 is released | |
3463 | |
3464 1999-06-04 SL Baur <steve@steve1.m17n.org> | |
3465 | |
3466 * configure.in (CPP): Correct test for locating $site_prefix | |
3467 include directories. | |
3468 | |
4010 | 3469 1999-06-04 XEmacs Build Bot <builds@cvs.xemacs.org> |
414 | 3470 |
3471 * XEmacs 21.2.15 is released | |
3472 | |
3473 1999-06-01 Gunnar Evermann <ge204@eng.cam.ac.uk> | |
3474 | |
3475 * README.packages: fix typos: user pacakge hierarchy is ~/.xemacs | |
3476 From: Eric Veldhuyzen <eric@terra.nu> | |
3477 | |
3478 1999-05-25 Jan Vroonhof <jan@xemacs.org> | |
3479 | |
3480 * configure.in: For non-beta's use x.y.z format for version strings. | |
3481 | |
3482 1999-06-03 SL Baur <steve@xemacs.org> | |
3483 | |
3484 * version.sh: add emacs_is_beta initialization | |
3485 | |
3486 * configure.in: Implement patch levels in version number | |
3487 From Jan Vroonhof <vroonhof@math.ethz.ch> | |
3488 | |
3489 * configure.in: | |
3490 * configure.usage: | |
3491 * config.h.in: Rename session option to wmcommand. | |
3492 From Oliver Graf <ograf@rhein-zeitung.de> | |
3493 | |
3494 1999-05-16 Mike McEwan <mike@lotusland.demon.co.uk> | |
3495 | |
3496 * info/dir: Add `emodules.info' entry to the top info dir. | |
3497 | |
3498 1999-05-31 SL Baur <steve@steve1.m17n.org> | |
3499 | |
3500 * configure.in (CPP): Don't check for include subdirectories in | |
442 | 3501 site-prefix directories. This check loses in valid configurations |
414 | 3502 like /usr/jp in TurboLinux. Conditionally add include directory to |
3503 site switches. | |
3504 | |
3505 1999-05-14 Hrvoje Niksic <hniksic@srce.hr> | |
3506 | |
3507 * configure.in (quoted_arguments): Support | |
3508 --error-checking=byte-code. | |
3509 | |
4010 | 3510 1999-05-14 XEmacs Build Bot <builds@cvs.xemacs.org> |
398 | 3511 |
3512 * XEmacs 21.2.14 is released | |
3513 | |
3514 1999-05-11 SL Baur <steve@altair.xemacs.org> | |
3515 | |
3516 * version.sh (infodock_build_version): Synch InfoDock version. | |
3517 | |
3518 1999-05-06 Hrvoje Niksic <hniksic@srce.hr> | |
3519 | |
442 | 3520 * aclocal.m4 (ld_dynamic_link_flags): Change -Bexport to -Bdynamic |
398 | 3521 for Solaris. |
3522 | |
3523 1999-05-03 Hrvoje Niksic <hniksic@srce.hr> | |
3524 | |
3525 * configure.in (xemacs_betaname): Don't generate Installation.el. | |
3526 | |
3527 * Makefile.in.in (top_distclean): Don't remove Installation.el. | |
3528 | |
3529 1999-04-29 Andy Piper <andy@xemacs.org> | |
3530 | |
3531 * configure.in: add mingw32 as a target platform. add nt process | |
3532 support options. | |
3533 | |
3534 1998-09-04 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
3535 | |
3536 * configure.in: Delete mule-coding.o. | |
3537 | |
3538 1999-04-22 Gunnar Evermann <ge204@eng.cam.ac.uk> | |
3539 | |
3540 * lwlib/xlwmenu.c (string_width_u): Initialise chars before | |
3541 calling XmStringGetLtoR | |
3542 (string_draw_u): ditto and check return value of XmStringGetLtoR() | |
3543 | |
3544 1999-04-05 Olivier Galibert <galibert@pobox.com> | |
3545 | |
3546 * Makefile.in.in (GENERATED_HEADERS): Don't generate | |
3547 puresize-adjust.h anymore | |
3548 | |
3549 * configure.usage: Remove everything gung-ho or purespace related | |
3550 | |
3551 * configure.in: Ditto | |
3552 | |
3553 1999-04-17 Hrvoje Niksic <hniksic@srce.hr> | |
3554 | |
3555 * configure.in: Check for getloadavg(). | |
3556 | |
4010 | 3557 1999-03-12 XEmacs Build Bot <builds@cvs.xemacs.org> |
396 | 3558 |
3559 * XEmacs 21.2.13 is released | |
3560 | |
3561 1999-03-09 SL Baur <steve@xemacs.org> | |
3562 | |
3563 * Makefile.in.in (LC_ALL): Try very, very hard to build in C locale. | |
3564 | |
4010 | 3565 1999-03-05 XEmacs Build Bot <builds@cvs.xemacs.org> |
394 | 3566 |
3567 * XEmacs 21.2.12 is released | |
3568 | |
3569 1999-03-04 Martin Buchholz <martin@xemacs.org> | |
3570 | |
3571 * Makefile.in.in (top_distclean): Remove confdefs.h as well. | |
3572 | |
3573 1999-03-03 Martin Buchholz <martin@xemacs.org> | |
3574 | |
3575 * configure.in: | |
3576 `uname -v` -> "`uname -v`": | |
3577 backquoted expressions need additional double | |
3578 quotes to be a single token. | |
3579 Use separate if's to avoid extra process invocations. | |
3580 | |
3581 1999-01-05 Gunnar Evermann <ge204@eng.cam.ac.uk> | |
3582 | |
442 | 3583 * PROBLEMS: Document crashes on SPARC with gcc 2.8.1. |
394 | 3584 |
4010 | 3585 1999-03-01 XEmacs Build Bot <builds@cvs.xemacs.org> |
392 | 3586 |
3587 * XEmacs 21.2.11 is released | |
3588 | |
3589 1999-02-16 Andy Piper <andy@xemacs.org> | |
3590 | |
3591 * PROBLEMS: add entries for building under Cygwin. | |
3592 | |
3593 1999-02-14 Jan Vroonhof <vroonhof@math.ethz.ch> | |
3594 | |
3595 * README.packages: Clear up that mule-sumo packages is used _in | |
3596 addition_ to the normal sumo. | |
3597 | |
3598 1999-02-16 Martin Buchholz <martin@xemacs.org> | |
3599 | |
3600 * configure.usage: Move quantify/purify into debug flags section | |
3601 | |
3602 1999-02-10 Martin Buchholz <martin@xemacs.org> | |
3603 | |
442 | 3604 * configure.in: |
392 | 3605 - Fixup xfs comments and redundant option checking |
3606 | |
442 | 3607 * configure.in: |
3608 * INSTALL: | |
392 | 3609 * lisp/paths.el: |
3610 - improved automounter tmp directory support. | |
3611 - support 4 (!) empirically discovered automounter conventions | |
3612 | |
3613 1999-02-10 Martin Buchholz <martin@xemacs.org> | |
3614 | |
442 | 3615 * lwlib/lwlib.h: |
3616 - redo CONST hacking to deal with X11 R4, which was | |
392 | 3617 broken in a previous patch. |
3618 | |
3619 1999-02-10 Martin Buchholz <martin@xemacs.org> | |
3620 | |
442 | 3621 * configure.in: |
392 | 3622 - irix uses -rpath |
3623 | |
3624 1999-02-10 Martin Buchholz <martin@xemacs.org> | |
3625 | |
442 | 3626 * configure.in: |
392 | 3627 - Check for XOpenIM before using xim=xlib |
3628 - only use XmIm if $have_motif = yes | |
3629 | |
3630 1999-02-10 Martin Buchholz <martin@xemacs.org> | |
3631 | |
3632 * configure.in. Port to BSDI BSD/OS 4.0. | |
3633 | |
3634 1999-01-07 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
3635 | |
3636 * configure.in: Warn if using Motif dialog boxes on AIX 4.3. | |
3637 | |
4010 | 3638 1999-02-05 XEmacs Build Bot <builds@cvs.xemacs.org> |
390 | 3639 |
3640 * XEmacs 21.2.10 is released | |
3641 | |
4010 | 3642 1999-02-02 XEmacs Build Bot <builds@cvs.xemacs.org> |
388 | 3643 |
3644 * XEmacs 21.2.9 is released | |
3645 | |
3646 1999-01-21 Andy Piper <andy@xemacs.org> | |
3647 | |
3648 * configure.in: make xface detection specifc to a window system in | |
3649 general rather than just X. | |
3650 | |
4010 | 3651 1999-18-10 Andy Piper <andy@xemacs.org> |
388 | 3652 |
3653 * configure.in: remove -O3 prevention on cygwin - current versions | |
3654 cope ok now. remove dll prevention on cygwin - the new module | |
3655 code checks correctly. | |
442 | 3656 |
388 | 3657 1999-01-10 J. Kean Johnston <jkj@sco.com> |
3658 | |
442 | 3659 * configure.in: Added moduledir as the path where loadable modules |
388 | 3660 are stored. Added --with-site-modules and --moduledir options. |
3661 - Ensure the SCO OpenServer compiles with --dynamic by default | |
3662 - Check for dlfcn.h for dynamic loader | |
3663 - Renamed dll.o to emodules.o and changed dynamic loader tests | |
3664 - Renabled code that deals with site-lisp so that it is handled | |
3665 correctly when a user specifies --with-site-lisp. | |
3666 | |
3667 * aclocal.m4: Replaced entire file with more complete DLL tests | |
3668 by way of libtool. | |
3669 | |
3670 * config.usage: Removed TAB characters which caused it to be | |
3671 displayed incorrectly on terminals where TAB != 8. | |
3672 - Added help text to describe --with-site-modules and --moduledir. | |
3673 | |
3674 * INSTALL: Updated documentation to describe module directories | |
3675 | |
3676 * Makefile.in.in: Added moduledir, sitemoduledir macros. | |
3677 - Make those directories at install time. | |
3678 | |
4010 | 3679 1998-12-28 Martin Buchholz <martin@xemacs.org> |
386 | 3680 |
3681 * XEmacs 21.2.8 is released. | |
3682 | |
3683 1998-12-28 Martin Buchholz <martin@xemacs.org> | |
3684 | |
3685 * PROBLEMS: Document Linux GNU Libc 2.0 I18N crashes. | |
3686 | |
4010 | 3687 1998-12-24 Martin Buchholz <martin@xemacs.org> |
384 | 3688 |
3689 * XEmacs 21.2.7 is released. | |
3690 | |
3691 1998-12-20 Martin Buchholz <martin@xemacs.org> | |
3692 | |
3693 * configure.in: Redo DBM support | |
3694 - die if dbm support requested, but not provided. | |
3695 - properly check for libgdbm, then libc, then libdbm | |
3696 - properly check for ndbm.h | |
3697 - comments improved | |
3698 - XE_DIE should always prefix messages with Error: for clarity | |
3699 | |
3700 1998-12-07 Martin Buchholz <martin@xemacs.org> | |
3701 | |
3702 * xemacs.mak (TEMACS_OBJS): | |
3703 (DOC_SRC4): | |
3704 - Remove pure.c, pure.obj | |
3705 | |
3706 1998-12-06 Martin Buchholz <martin@xemacs.org> | |
3707 | |
3708 * Makefile.in.in (distclean): | |
3709 * dynodump/Makefile.in.in (distclean): | |
3710 * src/Makefile.in.in (distclean): | |
3711 * lib-src/Makefile.in.in (distclean): | |
3712 * lwlib/Makefile.in.in (distclean): | |
3713 - Make sure GNUmakefile is deleted. | |
3714 | |
3715 1998-12-17 Andy Piper <andy@xemacs.org> | |
3716 | |
3717 * configure.in (all_widgets): remove gui.o addition - its always | |
3718 in the makefile now. | |
3719 | |
3720 * configure.in: add gui-msw.o to msw objects. | |
3721 | |
382 | 3722 1998-12-16 Andy Piper <andy@xemacs.org> |
3723 | |
3724 * XEmacs 21.2.6 is released | |
3725 | |
4010 | 3726 1998-12-05 XEmacs Build Bot <builds@cvs.xemacs.org> |
380 | 3727 |
3728 * XEmacs 21.2.5 is released | |
3729 | |
377 | 3730 1998-11-28 SL Baur <steve@altair.xemacs.org> |
3731 | |
3732 * XEmacs 21.2-beta4 is released. | |
3733 | |
3734 1998-11-27 SL Baur <steve@altair.xemacs.org> | |
3735 | |
3736 * configure.in: Linux/Arm Support. | |
3737 From James LewisMoss <dres@ioa.com> | |
3738 | |
3739 1998-11-27 Takeshi Hagiwara <hagiwara@ie.niigata-u.ac.jp> | |
3740 | |
3741 * configure.in: | |
3742 Fix the realpath() problem of UnixWare2.1.3. | |
3743 Patches for NEC's sysv4.2 machine. | |
3744 | |
3745 1998-11-09 Kazuyuki IENAGA <ienaga@jsys.co.jp> | |
3746 | |
3747 * configure.in: Check if there's wnn4.2 or wnn6 specific library | |
3748 installed. The Wnn library will be checked if the --with-wnn | |
3749 and/or --with-wnn6 was specified compulsory. | |
3750 | |
3751 1998-07-28 Jan Vroonhof <vroonhof@math.ethz.ch> | |
3752 | |
3753 * configure.in (CPP): Too many spaces im run-patch flag detection. | |
3754 | |
375 | 3755 1998-10-15 SL Baur <steve@altair.xemacs.org> |
3756 | |
3757 * XEmacs 21.2-beta3 is released. | |
3758 | |
3759 1998-10-13 Andy Piper <andyp@parallax.co.uk> | |
3760 | |
3761 * configure.in: enable drag and drop support by default if mswindows is | |
3762 detected. | |
3763 | |
3764 1998-10-09 Kevin Oberman <oberman@es.net> | |
3765 | |
3766 * config.sub: Fix for Alpha architecture | |
3767 | |
3768 1998-10-05 Andy Piper <andyp@parallax.co.uk> | |
3769 | |
3770 * configure.in: don't enable shared lib support for cygwin unless | |
3771 explititly told to. | |
3772 | |
373 | 3773 1998-09-29 SL Baur <steve@altair.xemacs.org> |
3774 | |
3775 * XEmacs 21.2-beta2 is released. | |
3776 | |
3777 1998-09-09 Gunnar Evermann <Gunnar.Evermann@nats.informatik.uni-hamburg.de> | |
3778 | |
3779 * lwlib/xlwmenu.c: | |
3780 * lwlib/xlwscrollbar: fix for Motif >=2.0 | |
3781 Patch provided by Glenn Barry <gtb@eng.sun.com> | |
3782 | |
3783 * PROBLEMS: XEmacs 21.0 now works on HP-UX 11.0 | |
3784 | |
3785 1998-09-02 Andy Piper <andyp@parallax.co.uk> | |
3786 | |
3787 * configure.in: check for cygwin32/version.h. | |
3788 | |
3789 1998-08-31 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
3790 | |
3791 * PROBLEMS: Added AIX 4.3 note. | |
3792 | |
3793 * configure.in: Better detection of AIX 4.3. | |
3794 AIX xlc can do -g and -Ox at the same time. | |
3795 | |
3796 1998-08-17 P. E. Jareth Hein <jareth@camelot.co.jp> | |
3797 | |
3798 * configure.in: Alter configure so that it checks for mismatched PNG | |
3799 header/libs, screams a little louder on old/mismatched library | |
3800 conditions for both PNG and XPM, stop screaming if png is not found and | |
3801 no window-system is selected, and fixed a bug in the XPM checking. | |
3802 | |
3803 1998-08-07 P. E. Jareth Hein <jareth@camelot.co.jp> | |
3804 | |
3805 * configure.usage (--without-gif): Modify text to reflect status | |
3806 of GIF support | |
3807 | |
3808 1998-08-04 P. E. Jareth Hein <jareth@camelot.co.jp> | |
3809 | |
3810 * configure.in: add back in the support for the in-core GIF | |
3811 code, change the required PNG library version to 1.0.2, and add | |
3812 a warning if PNG not found, since PNG images are now distributed | |
3813 as part of the core. Also minor wording changes in things reported | |
3814 to the user. | |
3815 | |
3816 1998-07-28 Kai Haberzettl <khaberz@synnet.de> | |
3817 | |
3818 * BETA: Update mailing-list address for build-reports | |
3819 | |
3820 1998-08-01 SL Baur <steve@altair.xemacs.org> | |
3821 | |
3822 * Makefile.in (TAGS tags): Add variable `tagslisp' so a TAGS file | |
3823 can built that includes package lisp. | |
3824 | |
3825 1998-07-23 Martin Buchholz <martin@xemacs.org> | |
3826 | |
3827 * configure.in: | |
3828 - support multiple flavors of alpha, (XEmacs treats them identically) | |
3829 - Fix AC_TRY_RUN so that actions have access to $? | |
3830 - Identify DEC C compilers. Add default optimization CFLAGS and | |
3831 always use -std. | |
3832 - Use an extensible method for adding support for future compilers. | |
3833 - Have SunPro C use that same extensible method. | |
3834 - Make sol2 always use `-R', Linux and DEC OSF always use `-rpath' | |
3835 | |
304 | 3836 1998-07-19 SL Baur <steve@altair.xemacs.org> |
3837 | |
371 | 3838 * XEmacs 21.2-beta1 is released. |
304 | 3839 |
3840 1998-07-18 SL Baur <steve@altair.xemacs.org> | |
3841 | |
3842 * config.guess: Synched with latest FSF version. | |
3843 | |
454 | 3844 1998-07-12 Bjrn Torkelsson <torkel@hpc2n.umu.se> |
304 | 3845 |
384 | 3846 * Makefile.in: added LDFLAGS. |
304 | 3847 |
300 | 3848 1998-07-12 SL Baur <steve@altair.xemacs.org> |
3849 | |
371 | 3850 * README: Bump version numbers. |
3851 * info/dir: Ditto. | |
3852 * version.sh: Ditto. | |
3853 | |
793 | 3854 * XEmacs 21.0-pre5 is released. |
300 | 3855 |
3856 1998-07-10 SL Baur <steve@altair.xemacs.org> | |
3857 | |
3858 * configure.in (with_offix): Default --with-offix to off. | |
3859 | |
298 | 3860 1998-07-09 SL Baur <steve@altair.xemacs.org> |
3861 | |
300 | 3862 * configure.in: Handle multiple database libraries. |
3863 From Gregory Neil Shapiro <gshapiro@sendmail.org> | |
3864 | |
298 | 3865 * XEmacs 21.0-pre4 is released. |
3866 | |
3867 * configure.in: Fix test for InfoDock sources. | |
3868 | |
4010 | 3869 1998-07-09 Oliver Graf <ograf@fga.de> |
298 | 3870 |
3871 * configure.usage: added warning to --with-offix | |
3872 | |
3873 1998-06-28 SL Baur <steve@altair.xemacs.org> | |
3874 | |
3875 * configure.in: Berkeley DB autodetection fixes | |
3876 From Martin Buchholz <martin@xemacs.org> | |
3877 | |
296 | 3878 1998-06-19 SL Baur <steve@altair.xemacs.org> |
3879 | |
3880 * XEmacs 21.0-pre3 is released. | |
3881 | |
4010 | 3882 1998-06-20 Kazuyuki IENAGA <ienaga@jsys.co.jp> |
296 | 3883 |
3884 * configure.in: Added check if the berkdb has db_open or not. | |
3885 (With fixes from Martin Buchholz) | |
3886 | |
294 | 3887 1998-06-19 SL Baur <steve@altair.xemacs.org> |
3888 | |
3889 * XEmacs 21.0-pre2 is released. | |
3890 | |
3891 1998-06-18 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
3892 | |
3893 * configure.in: Added -lC for static linking under AIX 4.2. | |
3894 | |
292 | 3895 1998-06-14 SL Baur <steve@altair.xemacs.org> |
3896 | |
3897 * XEmacs 21.0-pre1 is released. | |
3898 | |
290 | 3899 1998-06-11 SL Baur <steve@altair.xemacs.org> |
3900 | |
292 | 3901 * XEmacs 21.0-beta43 is released. |
290 | 3902 |
4010 | 3903 1998-06-04 Oliver Graf <ograf@fga.de> |
290 | 3904 |
3905 * tests/Dnd/README: a step-by-step test run | |
3906 * tests/Dnd/droptest.el: some clarifications | |
3907 * tests/Dnd/droptest.sh: created, creates test files | |
3908 | |
4010 | 3909 1998-06-01 Oliver Graf <ograf@fga.de> |
290 | 3910 |
3911 * configure.in (summary): added experimental to dragndrop option | |
3912 * configure.usage: added experimental note to --with-dragndrop | |
3913 * tests/Dnd/droptest.el: extra start-drag-region function | |
3914 changed the experimental- stuff | |
3915 | |
3916 1998-06-07 SL Baur <steve@altair.xemacs.org> | |
3917 | |
3918 * lwlib/xlwmenu.c: Add room for the 0 byte sentinel. | |
3919 | |
3920 1998-06-05 Colin Rafferty <colin@xemacs.org> | |
3921 | |
3922 * lwlib/xlwmenu.c: Made newchars be as large as it needs to be. | |
3923 | |
288 | 3924 1998-06-01 SL Baur <steve@altair.xemacs.org> |
3925 | |
3926 * XEmacs 21.0-beta42 is released. | |
3927 | |
3928 1998-05-29 Andy Piper <andyp@parallax.co.uk> | |
3929 | |
3930 * configure.in: don't use -O3 for cygwin. | |
3931 | |
3932 1998-05-28 P. E. Jareth Hein <jareth@camelot-soft.com> | |
3933 | |
3934 * configure.in: Switch from giflib to gifreader for | |
3935 our GIF image support (no other mods needed) | |
3936 | |
290 | 3937 1998-05-28 Oliver Graf <ograf@fga.de> |
288 | 3938 |
3939 * configure.in: only one DnD protocol, CDE has priority over OffiX | |
3940 | |
3941 * tests/Dnd/README: some changes reflecting recent modifications | |
3942 * tests/Dnd/dragtest.el: removed | |
3943 * tests/Dnd/droptest.el: cosmetics and comments | |
3944 | |
290 | 3945 1998-05-26 Oliver Graf <ograf@fga.de> |
288 | 3946 |
3947 * tests/Dnd/droptest.el: adapted to CDE extensions | |
3948 | |
290 | 3949 1998-05-25 Hans Guenter Weigand <hgweigand@wiesbaden.netsurf.de> |
3950 | |
3951 * configure.in: | |
3952 * config.sub: add initial OpenBSD support | |
3953 | |
288 | 3954 1998-05-21 Andy Piper <andyp@parallax.co.uk> |
3955 | |
3956 * configure.in: check for msw dialogs. | |
3957 | |
286 | 3958 1998-05-23 SL Baur <steve@altair.xemacs.org> |
3959 | |
3960 * XEmacs 21.0-beta41 is released. | |
3961 | |
3962 1998-05-17 SL Baur <steve@altair.xemacs.org> | |
3963 | |
3964 * configure.in (CPP): Change -O2 to -O3. | |
3965 Suggested by Martin Buchholz <martin@xemacs.org> | |
3966 | |
284 | 3967 1998-05-15 SL Baur <steve@altair.xemacs.org> |
3968 | |
3969 * XEmacs 21.0-beta40 is released. | |
3970 | |
3971 1998-05-13 SL Baur <steve@altair.xemacs.org> | |
3972 | |
3973 * configure.in (ZSH_VERSION): zsh-3.1.2 (and zsh-3.0.4) drops core | |
3974 on the `unset CDPATH' if running as sh. | |
3975 | |
4010 | 3976 1998-05-12 Oliver Graf <ograf@fga.de> |
284 | 3977 |
3978 * tests/Dnd/droptest.el: some CDE adaptions (untested) | |
3979 | |
3980 1998-05-11 Martin Buchholz <martin@xemacs.org> | |
3981 | |
3982 * configure.in: | |
3983 Add some more comments. | |
3984 If using bash, use Posix mode and unset CDPATH. | |
3985 Be more careful checking feature dependencies. | |
3986 Introduce XE_CHECK_FEATURE_DEPENDENCY. | |
3987 Undo the gross hack of multiple `echo >> $tempcname' | |
3988 by using here documents instead. (Might break mswindows, tho...) | |
3989 Be more careful autodetecting tooltalk. | |
3990 | |
3991 * PROBLEMS: | |
3992 Document problems with Solaris 2.6 + XSUNTRANSPORT | |
3993 | |
384 | 3994 * Makefile.in: |
284 | 3995 * lwlib/Makefile.in.in: |
3996 * modules/Makefile.in: | |
3997 - Adjust for luser's CDPATH being set to something weird. | |
3998 - Take into account bash 2.02's tendency to print the cwd when | |
3999 using CDPATH. Always use `cd ./foo' instead of `cd foo'. | |
4000 - fix the run-temacs target to use $(DUMPENV) | |
4001 - fix the run-puremacs target to use $(DUMPENV) | |
4002 - fix the `depend' target to properly $(RM) the right files | |
4003 - Generate a better TAGS file for XEmacs' lisp code using | |
4004 hand-crafted regexps. | |
4005 - Use standard coding conventions for modules/Makefile.in | |
4006 | |
4010 | 4007 1998-05-12 Kazuyuki IENAGA <ienaga@jsys.co.jp> |
284 | 4008 |
4009 * configure.in: some people claimed that they can't stop | |
4010 linking wnn6 library if they set --with-wnn6=no. | |
4011 | |
4010 | 4012 1998-05-11 Oliver Graf <ograf@fga.de> |
284 | 4013 |
4014 * tests/Dnd/droptest.el: adapted to new calling conventions | |
4015 also showing the new possibilities | |
4016 * tests/Dnd/README: changed to new protocol | |
4017 | |
4010 | 4018 1998-05-11 SAKIYAMA Nobuo <nobuo@db3.so-net.or.jp> |
284 | 4019 |
4020 * Fix for HAVE_MULTICAST check. | |
4021 | |
282 | 4022 1998-05-09 SL Baur <steve@altair.xemacs.org> |
4023 | |
4024 * XEmacs 21.0-beta39 is released. | |
4025 | |
4010 | 4026 1998-05-06 Oliver Graf <ograf@fga.de> |
282 | 4027 |
4028 * configure.in: added autodetection for the Drag'n'Drop API | |
4029 if some DnD protocol is found, HAVE_DRAGNDROP will be defined | |
4030 and dragdrop.o is added to extra_objs | |
4031 * configure.usage: added with-dragndrop, added (*) to with-offix | |
4032 * tests/Dnd/droptest.el: complete overhaul, no it's a real test | |
4033 | |
4010 | 4034 1998-05-04 Oliver Graf <ograf@fga.de> |
282 | 4035 |
4036 * tests/Dnd/droptest.el: changed to test new protocol | |
4037 * tests/Dnd/README.OffiX: removed | |
4038 * tests/Dnd/README: created, info about new protocol | |
4039 * tests/Dnd/dragtest.el: comment change | |
4040 | |
280 | 4041 1998-05-02 SL Baur <steve@altair.xemacs.org> |
4042 | |
4043 * XEmacs 21.0-beta38 is released. | |
4044 | |
4045 1998-04-29 SL Baur <steve@altair.xemacs.org> | |
4046 | |
4047 * configure.in: Use `PROGNAME' for all generated paths. | |
4048 | |
4049 * Makefile.in: Change `progname' to `PROGNAME' for consistency. | |
4050 | |
4051 1998-04-27 SL Baur <steve@altair.xemacs.org> | |
4052 | |
384 | 4053 * configure.in (progname): Parameterize program name on `progname' |
280 | 4054 and add --with-infodock. |
4055 | |
4056 1998-04-26 SL Baur <steve@altair.xemacs.org> | |
4057 | |
4058 * Makefile.in: Religiously use ${progname} instead of hardcoded | |
4059 `xemacs'. | |
4060 CPPFLAGS was being set correctly in ${subdir}/Makefiles and | |
4061 overridden by the empty one set in the toplevel Makefile. | |
4062 | |
278 | 4063 1998-04-25 SL Baur <steve@altair.xemacs.org> |
4064 | |
4065 * XEmacs-21.0-beta37 is released. | |
4066 | |
4067 1998-04-25 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
4068 | |
4069 * configure.in: Sychronized ..._USER_DEFINED variables with | |
4070 datadir setting. | |
4071 | |
4072 * Makefile.in (mkdir): No longer create sitelispdir. | |
4073 | |
4074 Sat Apr 24 1998 Andy Piper <andyp@parallax.co.uk> | |
4075 | |
371 | 4076 * configure.in: make graphic libraries tests be dependant on a |
278 | 4077 window system not X11 only. |
4078 | |
4079 Fri Apr 24 19:38:19 1998 Andy Piper <andyp@parallax.co.uk> | |
4080 | |
4081 * configure.in: check for our special select in msw. | |
4082 | |
4083 1998-04-22 Marcus Thiessel <marcus_thiessel@hp.com> | |
4084 | |
4085 * PROBLEMS: add answers to some FAQ concerning hpux. | |
4086 | |
4087 Wed Apr 22 12:59:35 1998 Andy Piper <andyp@parallax.co.uk> | |
4088 | |
4089 * configure.in: enable checking for special mswindows select() | |
4090 | |
4091 1998-04-21 Martin Buchholz <martin@xemacs.org> | |
4092 | |
4093 * configure.in: Isolate incomprehensible cma_open/pthreads checking | |
4094 to decosf* | |
4095 | |
4096 1998-04-21 Marcus Thiessel <marcus_thiessel@hp.com> | |
4097 | |
4098 * configure.in: /usr/{include,lib}/Motif2.1 added to search path for X11 | |
4099 libs and includes. | |
4100 | |
4101 1998-04-22 Itay Ben-Yaacov <pezz@www-mail.huji.ac.il> | |
4102 | |
4103 * configure.in: check for xpm does not depend anymore on having X. | |
4104 if libXpm exists, and is of the FOR_MSW flavor, define FOR_MSW. | |
4105 | |
4106 1998-04-19 Oscar Figueiredo <Oscar.Figueiredo@di.epfl.ch> | |
4107 | |
4108 * info/dir: Fixed the explanatory notes for | |
4109 `Info-default-directory-list' removal and the new automatic dir | |
4110 rebuilding facility. Reindented the menu. Added an entry for | |
384 | 4111 term.info |
278 | 4112 |
4113 1998-04-20 SL Baur <steve@altair.xemacs.org> | |
4114 | |
4115 * configure.in (LISPDIR): Removed configuration option for | |
4116 site-lisp. | |
4117 | |
4118 1998-04-19 SL Baur <steve@altair.xemacs.org> | |
4119 | |
4120 * configure.in (version): snarf InfoDock version number. | |
4121 | |
276 | 4122 1998-04-18 SL Baur <steve@altair.xemacs.org> |
4123 | |
4124 * XEmacs-21.0-beta36 is released. | |
4125 | |
4126 Fri Apr 17 12:59:35 1998 Andy Piper <andyp@parallax.co.uk> | |
4127 | |
4128 * configure.in: enable install pre-processing for mswindows | |
4129 | |
4130 Fri Apr 17 12:59:35 1998 Andy Piper <andyp@parallax.co.uk> | |
384 | 4131 |
276 | 4132 * Makefile.in.in: add install_pp to install incantation. |
4133 | |
4134 * installexe.sh: new file. Add .exe to install targets if the | |
4135 result is executable. | |
4136 | |
4137 Fri Apr 17 12:59:35 1998 Andy Piper <andyp@parallax.co.uk> | |
384 | 4138 |
276 | 4139 * Makefile.in: add install_pp to install incantation. |
4140 | |
4010 | 4141 1998-04-14 Itay Ben-Yaacov <pezz@www-mail.huji.ac.il> |
276 | 4142 |
4143 * configure.in: Large echo split into a few smaller ones, | |
4144 so the cygnus sh.exe does not crash. | |
4145 | |
4146 Thu Apr 16 12:59:35 1998 Andy Piper <andyp@parallax.co.uk> | |
4147 | |
4148 * configure.in: enable toolbar checking for mswindows build | |
4149 | |
4150 1998-04-06 Martin Buchholz <martin@xemacs.org> | |
4151 | |
384 | 4152 * config.h.in: Add _SVID_SOURCE to list of xmkmf #defines. |
276 | 4153 Used (at least) by RedHat 4.2. |
4154 | |
4155 1998-04-11 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
4156 | |
4157 * configure.in: Re-instated src/paths.h generation from | |
4158 src/paths.h.in. | |
4159 | |
4160 * Makefile.in (top_distclean): Remove site-lisp on `make | |
4161 distclean'. | |
4162 | |
274 | 4163 1998-04-10 SL Baur <steve@altair.xemacs.org> |
4164 | |
4165 * XEmacs 21.0-beta35 is released. | |
4166 | |
4167 1998-04-10 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
4168 | |
4169 * configure.usage: Clarified --package-path documentation. | |
4170 | |
4171 1998-04-07 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
4172 | |
4173 * configure.in: Now generates src/paths.h from src/paths.h.in.in. | |
4174 Removed defaults for infopath and package-path. | |
4175 | |
4176 * Makefile.in (src/paths.h): ... is now generated from | |
4177 src/paths.h.in.in. Moved generation of paths.h to configure. | |
4178 | |
4179 * paths.h.in: Removed. | |
4180 | |
4181 * paths.h.in.in: Created. | |
4182 | |
4183 1998-04-06 Martin Buchholz <martin@xemacs.org> | |
4184 | |
4185 * configure.in: png was still being used if png_version < 0.96 | |
4186 | |
4187 * configure.in: Fixed magic to handle AIX, X11R6, and gcc. | |
4188 | |
4189 1998-04-05 Amir J. Katz <amir@ndsoft.com> | |
4190 | |
4191 * INSTALL (Rationale): Offix support comment is wrong. To disable, | |
4192 one must use --with-offix=no and not --without-offix | |
4193 | |
4194 1998-04-05 SL Baur <steve@altair.xemacs.org> | |
4195 | |
4196 * configure.in (CPP): ppc.ldscript sits in $srcdir/src not $srcdir. | |
4197 | |
272 | 4198 1998-04-04 SL Baur <steve@altair.xemacs.org> |
4199 | |
4200 * XEmacs 21.0-beta34 is released. | |
4201 | |
4202 1998-04-03 Martin Buchholz <martin@xemacs.org> | |
4203 | |
4204 * configure.in: | |
4205 checking whether gettimeofday accepts one or two arguments... two | |
4206 | |
4207 1998-04-03 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
4208 | |
4209 * configure.in: Fixed magic to handle AIX and MIT X11R6. | |
4210 | |
4211 1998-04-02 Martin Buchholz <martin@xemacs.org> | |
4212 | |
4213 * configure.in: Add magic -T $srcdir/ppc.ldscript on Linux powerpc | |
4214 | |
4215 1998-04-01 Martin Buchholz <martin@xemacs.org> | |
4216 | |
4217 * tests/database.el (test-database): Temporary files (the databases | |
4218 that were created) should be deleted. | |
4219 | |
4220 * Makefile.in (testdir): Remove gnumake-specific syntax. | |
4221 (src/Makefile): src/Makefile depends on src/depend. | |
4222 | |
4223 1998-03-29 Martin Buchholz <martin@xemacs.org> | |
4224 | |
4225 * configure.in: Check for -lz, -lgz unconditionally. Too many | |
4226 system linkers don't properly die when there are cascaded link | |
4227 dependencies, so we can't rely on the linker for that. The only | |
384 | 4228 downside is that we might link with an extra unneeded library. If |
272 | 4229 you really really care about this, you can go fix it. |
4230 | |
4231 * configure.in: Enhance PANIC msg to make it clear that | |
4232 --with-FEATURE is going to die if FEATURE is not installed. | |
4233 | |
4234 1998-03-27 Martin Buchholz <martin@xemacs.org> | |
4235 | |
4236 * configure.in: $debug was not properly dependent on $beta | |
384 | 4237 |
4238 * configure.in: Move offix configuration out of src/Makefile.in.in | |
272 | 4239 into configure.in. |
4240 | |
4241 * configure.in: Reorganize xpm detection code. | |
4242 | |
384 | 4243 * configure.in: XIM default to ON if Motif which is not Lesstif is |
272 | 4244 found. |
4245 | |
4246 * configure.in: Keep auto-generated makefile dependencies out of | |
4247 src/Makefile.in.in by using AC_OUTPUT file concatenation support. | |
4248 | |
4249 1998-03-26 Martin Buchholz <martin@xemacs.org> | |
4250 | |
4251 * configure.in: Fix up cflags handling. Specifically, configure | |
4252 --cflags='' would fail to be recognized. | |
4253 | |
4254 * configure.in: Fix up png detection. Link with png_read_image to | |
4255 make sure -lz is required. Test for png >- 0.96 via header file. | |
4256 | |
4257 1998-03-21 Martin Buchholz <martin@xemacs.org> | |
4258 | |
4259 * configure.in (XE_GCC_WRAP_LDFLAGS) | |
4260 Rename to XE_PROTECT_LINKER_FLAGS. Rewrite. | |
4261 | |
4262 * configure.in: Make sure BSD always links in libz.a | |
4263 BSD's stupid linker can't detect cascaded lib dependencies | |
4264 | |
4265 * configure.in: Autodetect lesstif. define have_lesstif. | |
4266 Don't use motif-xim with lesstif, at least by default. | |
4267 | |
4268 1998-03-30 SL Baur <steve@altair.xemacs.org> | |
4269 | |
4270 * version.sh: Add InfoDock version number variables. | |
4271 | |
4272 1998-03-30 Amir J. Katz <amir@ndsoft.com> | |
4273 | |
4274 * info/dir: Replaced string '20.5' with '21.0' | |
4275 | |
269 | 4276 1998-03-24 SL Baur <steve@altair.xemacs.org> |
4277 | |
4278 * XEmacs 21.0-beta33 is released. | |
4279 | |
4010 | 4280 1998-03-26 Didier Verna <didier@xemacs.org> |
269 | 4281 |
4282 * configure.in, Makefile.in: Removed infopath_user_defined---we | |
4283 always want to propagate it. | |
4284 | |
4285 * configure.usage: Synched with configure.in. | |
4286 | |
4287 1998-03-25 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
4288 | |
4289 * configure.usage, INSTALL: Synched with the new path layout. | |
4290 | |
4291 * Makefile.in (src/paths.h): Replaced packagepath with | |
4292 package_path to make configure happy. | |
4293 | |
4294 * configure.in: Made default setting for packagepath conform to | |
4295 what packages.el builds at run-time: XEmacs-version-specific paths | |
4296 before site-specific ones. | |
4297 Added default setting for pkgdir. | |
4298 Changed --packagepath back to --package-path. | |
4299 | |
267 | 4300 1998-03-24 SL Baur <steve@altair.xemacs.org> |
4301 | |
4302 * XEmacs 21.0-beta32 is released. | |
4303 | |
4304 1998-03-23 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
4305 | |
4306 * configure.in: Extended package path by version-specific | |
4307 hierarchies. Changed allow-site-lisp to inhibit-site-lisp. | |
4308 | |
4309 1998-03-22 SL Baur <steve@altair.xemacs.org> | |
4310 | |
4311 * Makefile.in (distclean): Remove packages and mule-packages if they | |
4312 have been linked into place. | |
4313 | |
4314 1998-03-22 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
4315 | |
4316 * <Today>: The Big Path Searching Overhaul. | |
4317 | |
4318 * Makefile.in, configure.in: Now pass all configure-specified paths | |
4319 into the binary in a uniform way. | |
4320 | |
4321 1998-03-20 SL Baur <steve@altair.xemacs.org> | |
4322 | |
4323 * configure.in (have_libmcheck): Add test for glibc's malloc | |
4324 checker. | |
4325 - Fix HP/UX dynamic linking flag. | |
4326 | |
4327 1998-03-19 SL Baur <steve@altair.xemacs.org> | |
4328 | |
4329 * configure.in (quoted_arguments): Fix unquoted variable in | |
4330 error-checking test. | |
4331 - fix bogus substitution. | |
384 | 4332 |
267 | 4333 1998-03-17 SL Baur <steve@altair.xemacs.org> |
4334 | |
4335 * configure.in: In -lpng test, look for png_set_strip_alpha. | |
4336 Suggested by William M. Perry <wmperry@aventail.com> | |
4337 | |
265 | 4338 1998-03-16 SL Baur <steve@altair.xemacs.org> |
4339 | |
4340 * XEmacs 21.0 beta31 is released. | |
4341 | |
4342 1998-03-16 P. E. Jareth Hein <jareth@camelot-soft.com> | |
4343 | |
4344 * configure.usage (Usage): Correct information about gif, tiff | |
4345 and WNN entries | |
4346 | |
4347 1998-03-13 SL Baur <steve@altair.xemacs.org> | |
4348 | |
4349 * configure.in: typo fix in sed command. | |
4350 From P. E. Jareth Hein <jareth@camelot-soft.com> | |
4351 | |
4352 * configure.in (all_widgets): Check for snprintf(). | |
4353 | |
4354 1998-03-11 P. E. Jareth Hein <jareth@camelot-soft.com> | |
4355 | |
4356 * configure.in: New gif support | |
4357 | |
4358 1998-03-10 SL Baur <steve@altair.xemacs.org> | |
4359 | |
4360 * configure.in (have_glibc): Don't define _GNU_SOURCE for glibc. | |
4361 | |
4362 Mon Mar 09 13:00:55 1998 Andy Piper <andyp@parallax.co.uk> | |
4363 | |
4364 * configure.in: don't add libc to link list for dlopen ordinary | |
4365 link takes care of this. check for dlfcn.h | |
4366 | |
4367 1998-03-10 SL Baur <steve@altair.xemacs.org> | |
4368 | |
4369 * configure.in: Examine each directory of X11 include path for | |
4370 inclusion into BITMAPDIR. | |
4371 | |
4372 1998-03-09 SL Baur <steve@altair.xemacs.org> | |
4373 | |
4374 * aclocal.m4: Add legalese. | |
4375 | |
4376 Mon Mar 09 13:00:55 1998 Andy Piper <andyp@parallax.co.uk> | |
4377 | |
4378 * configure.in: make sure we have ndbm.h as well as libgdbm.a for | |
4379 database support. | |
4380 | |
4381 * configure.in: move msw checking after x checking so that | |
4382 auto-detection works. | |
4383 | |
4384 1998-03-09 SL Baur <steve@altair.xemacs.org> | |
4385 | |
4386 * configure.in: New DLL support. | |
4387 * aclocal.m4: New file. | |
4388 From William M. Perry <wmperry@aventail.com> | |
4389 | |
4390 1998-03-08 SL Baur <steve@altair.xemacs.org> | |
4391 | |
4392 * configure.in (xemacs_betaname): Align messages for minimal | |
4393 tagbits and indexed lrecords. | |
4394 Suggested by Andreas Jaeger <aj@arthur.rhein-neckar.de> | |
4395 | |
263 | 4396 1998-03-07 SL Baur <steve@altair.xemacs.org> |
4397 | |
4398 * XEmacs 20.5-beta30 is released. | |
4399 | |
4400 1998-03-05 SL Baur <steve@altair.xemacs.org> | |
4401 | |
4402 * PROBLEMS: Update wording of x86 GCC 2.7 problems. | |
4403 | |
4404 Wed Mar 04 08:55:12 1998 Andy Piper <andyp@parallax.co.uk> | |
4405 | |
4406 * configure.in: add a --with-msw option. Make X and msw work | |
4407 together if the user asks. | |
4408 | |
4409 1998-03-02 SL Baur <steve@altair.xemacs.org> | |
4410 | |
4411 * PROBLEMS: Update documentation of gcc bugs that impact XEmacs. | |
4412 | |
4413 1998-03-01 SL Baur <steve@altair.xemacs.org> | |
4414 | |
4415 * configure.in: Add substitutable variable ld_dynamic_link_flags | |
4416 for special required linker flags for building DLL capable | |
4417 binaries. | |
4418 | |
261 | 4419 1998-02-28 SL Baur <steve@altair.xemacs.org> |
4420 | |
4421 * Makefile.in (top_distclean): Remove Installation.el. | |
4422 (xemacs): New target. Formerly it was `all:'. | |
4423 (all): New default, dist: is now superfluous. | |
4424 | |
4425 1998-02-27 SL Baur <steve@altair.xemacs.org> | |
4426 | |
4427 * configure.in (GNU_MALLOC): add --with-dlmalloc to allow | |
4428 selective use of Doug Lea malloc in Linux C Library and GNU C Library. | |
4429 (Installation): Add XEmacs version and generate `Installation.el'. | |
4430 | |
4431 1998-02-26 SL Baur <steve@altair.xemacs.org> | |
4432 | |
4433 * configure.in (with_ldap: Fix -lldap autodection. | |
4434 Suggested by Oscar Figueiredo <Oscar.Figueiredo@di.epfl.ch> | |
4435 (Installation): Only keep the last configuration. | |
4436 | |
259 | 4437 1998-02-25 SL Baur <steve@altair.xemacs.org> |
4438 | |
4439 * XEmacs 20.5-beta28 is released. | |
4440 | |
4441 * configure.in (with_session): Fix reporting of the setting. | |
4442 (with_database_gnudbm): Correctly report setting. | |
4443 | |
4444 1998-02-24 SL Baur <steve@altair.xemacs.org> | |
4445 | |
4446 * configure.usage: Restore documentation of graphics library | |
4447 flags. | |
4448 From Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
4449 | |
4450 1998-02-19 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
4451 | |
4452 * PROBLEMS: Tell of the `gpm' SIGTSTP bug and `C-z' on the Linux | |
4453 console. | |
4454 | |
4455 1998-02-23 SL Baur <steve@altair.xemacs.org> | |
4456 | |
4457 * XEmacs 20.4 is released to the beta testers. | |
4458 | |
4459 1998-02-21 SL Baur <steve@altair.xemacs.org> | |
4460 | |
384 | 4461 * configure.in (after_morecore_hook_exists): Modify dlmalloc tests |
259 | 4462 to also test for Linux libc5. |
4463 | |
255 | 4464 1998-02-19 SL Baur <steve@altair.xemacs.org> |
4465 | |
257 | 4466 * XEmacs 20.5-beta27 is released. |
4467 * XEmacs-20.4-pre4 is released. | |
4468 | |
4469 * configure.in (doug_lea_malloc): Requires USE_MINIMAL_TAGBITS. | |
4470 (--with-gung): Implement it. | |
4471 | |
4472 * configure.usage (--with-gung): Document. Turns on | |
4473 USE_MINIMAL_TAGBITS and USE_INDEXED_LRECORD_IMPLEMENTATION. | |
4474 (--with-term): Remove. | |
384 | 4475 |
255 | 4476 * XEmacs-20.5-beta26 is released. |
4477 | |
4478 1998-02-18 SL Baur <steve@altair.xemacs.org> | |
4479 | |
4480 * XEmacs-20.4-pre3 is released. | |
4481 | |
4482 * Makefile.in: use better feedback while rebuilding finder database. | |
4483 Suggested by Stephen J. Turnbull <turnbull@sk.tsukuba.ac.jp> | |
4484 | |
4485 1998-02-15 SL Baur <steve@altair.xemacs.org> | |
4486 | |
4487 * configure.in (doug_lea_malloc): Add checking for Doug Lea | |
4488 Malloc. | |
4489 | |
253 | 4490 1998-02-14 SL Baur <steve@altair.xemacs.org> |
4491 | |
255 | 4492 * configure.in (OFFIX_O): Don't use OffiX if no real Xmu support. |
4493 Suggested by Pekka Marjola <pema@iki.fi> | |
4494 | |
4495 * XEmacs-20.4-pre2 is released. | |
253 | 4496 * XEmacs-20.5-beta25 is released. |
4497 | |
4498 1998-02-13 SL Baur <steve@altair.xemacs.org> | |
4499 | |
4500 * INSTALL: Update for Cygwin and Microsoft Windows. | |
4501 | |
4502 * README: Update for Microsoft Windows. | |
4503 | |
251 | 4504 1998-02-09 SL Baur <steve@altair.xemacs.org> |
4505 | |
253 | 4506 * XEmacs 20.4-pre1 is released. |
251 | 4507 * XEmacs 20.5-beta24 is released. |
4508 | |
4509 Wed Jan 28 13:41:22 1998 Andy Piper <andyp@parallax.co.uk> | |
4510 | |
4511 * configure.in: add mule-coding target which defines MULE_CODING, | |
4512 nothing uses it as yet. add gif objects to msw support. define | |
4513 const_is_losing=no for msw. make msw not selected if tty selected. | |
4514 add -lshell32 for dnd support. check for a.out.h rather than | |
4515 coff.h | |
4516 | |
4517 * lib-src/make-docfile.c: add cygwin support and generalise the | |
4518 remaining open calls. IMHO this should really include sysfile.h. | |
4519 | |
249 | 4520 1998-02-03 SL Baur <steve@altair.xemacs.org> |
4521 | |
4522 * XEmacs 20.5-beta23 is released. | |
4523 | |
247 | 4524 1998-01-27 SL Baur <steve@altair.xemacs.org> |
4525 | |
4526 * XEmacs 20.5-beta22 is released. | |
4527 | |
245 | 4528 1998-01-25 SL Baur <steve@altair.xemacs.org> |
4529 | |
4530 * XEmacs 20.5-beta21 is released. | |
4531 | |
4532 Wed Jan 21 10:49:47 1998 Andy Piper <andyp@parallax.co.uk> | |
4533 | |
4534 * configure.in: check for coff.h | |
4535 | |
4536 1998-01-21 Hrvoje Niksic <hniksic@srce.hr> | |
4537 | |
4538 * configure.in: Added support for `--with-shlib'. | |
4539 | |
243 | 4540 1998-01-18 SL Baur <steve@altair.xemacs.org> |
4541 | |
4542 * XEmacs 20.5-beta20 is released. | |
4543 | |
4544 1998-01-13 Martin Buchholz <martin@xemacs.org> | |
4545 | |
384 | 4546 * configure.usage: |
243 | 4547 Remove doc for configure-time INFOPATH, no longer used. |
4548 | |
4549 * configure.in: | |
4550 * src/config.h.in: | |
4551 Define HAVE_INVERSE_HYPERBOLIC using 1 configure test, not 3. | |
4552 | |
384 | 4553 * lwlib/lwlib.h: |
4554 * lwlib/lwlib.c: | |
4555 * lwlib/lwlib-config.c: | |
4556 * lwlib/lwlib-Xm.c: | |
4557 * lwlib/lwlib-Xaw.c: | |
4558 * lwlib/lwlib-Xlw.c: | |
4559 * lwlib/config.h.in: | |
243 | 4560 * src/menubar-x.c: |
4561 Prepend LWLIB_ to (SCROLLBARS|MENUBARS|DIALOGS)_(MOTIF|LUCID|ATHENA). | |
4562 Maintain only one set of variables. | |
4563 | |
4564 * Makefile.in (install-arch-dep): Simplify. | |
384 | 4565 Replace construct `test -d $dir && foo' with |
243 | 4566 `if test -d $dir; then foo; fi' |
4567 | |
384 | 4568 * lwlib/xlwmenu.c: |
4569 * lwlib/xlwscrollbar.c: | |
4570 * lwlib/lwlib-Xlw.c: | |
4571 * lwlib/lwlib-Xm.c: | |
243 | 4572 Always assume presence of limits.h (ANSI). |
4573 | |
241 | 4574 1998-01-12 SL Baur <steve@altair.xemacs.org> |
4575 | |
243 | 4576 * INSTALL: Updated for recent Mule/package changes. |
4577 | |
241 | 4578 * XEmacs 20.5-beta19 is released. |
4579 | |
4580 1998-01-12 Damon Lipparelli <lipp@primus.com> | |
4581 | |
4582 * Makefile.in: Yow! Fixed paths to install dirs when --prefix != | |
4583 --exec-prefix. | |
4584 | |
239 | 4585 1998-01-10 SL Baur <steve@altair.xemacs.org> |
4586 | |
4587 * XEmacs 20.5-beta18 is released. | |
4588 | |
442 | 4589 1998-01-08 Didier Verna <didier@xemacs.org> |
239 | 4590 |
4591 * configure.in: Get rid of INFOPATH for configure time. | |
4592 * configure.usage (Usage): Ditto. | |
4593 | |
4594 1998-01-09 SL Baur <steve@altair.xemacs.org> | |
4595 | |
4596 * Makefine.in: Correct reported amount of disk savings from | |
4597 compression. | |
4598 From Markus Linnala <maage@cs.tut.fi> | |
4599 | |
4600 Thu Jan 08 09:42:36 1998 <andyp@parallax.co.uk> | |
4601 | |
4602 * configure.in: detect and set scrollbars and menubars with | |
4603 MS-Windows more appropriately. Check for sys/un.h to use in | |
4604 gnuserv. | |
4605 | |
4606 1998-01-07 SL Baur <steve@altair.xemacs.org> | |
4607 | |
4608 * Makefile.in (progname): Cleanly parameterize XEmacs-specific | |
4609 naming. | |
4610 | |
4611 1998-01-05 Glynn Clements <glynn@sensei.co.uk> | |
4612 | |
4613 * lwlib/xlwmenu.c (push_button_draw): use inactive_gc instead of | |
4614 inactive_button_gc for menu entries. | |
4615 (remap_menubar): ignore the enabled status | |
4616 | |
237 | 4617 1998-01-04 SL Baur <steve@altair.xemacs.org> |
4618 | |
4619 * XEmacs 20.5-beta17 is released. | |
4620 | |
4621 * Makefile.in (finder): Use -vanilla. | |
4622 (lisp/finder-inf.el): Ditto. | |
4623 (check-features): New target. Do a sanity check prior to | |
4624 installation. | |
4625 | |
235 | 4626 1997-01-03 SL Baur <steve@altair.xemacs.org> |
4627 | |
4628 * XEmacs 20.5-beta16 is released. | |
4629 | |
233 | 4630 1997-12-30 SL Baur <steve@altair.xemacs.org> |
4631 | |
4632 * XEmacs 20.5-beta15 is released. | |
4633 | |
4634 1997-12-29 SL Baur <steve@altair.xemacs.org> | |
4635 | |
4636 * Makefile.in (${SUBDIR}): Remove bogus .RECURSIVE dependency. | |
4637 | |
231 | 4638 1997-12-27 SL Baur <steve@altair.xemacs.org> |
4639 | |
4640 * XEmacs 20.5-beta14 is released. | |
4641 | |
4010 | 4642 1997-12-23 Andy Piper <andyp@parallax.co.uk> |
231 | 4643 |
4644 * configure.in: support for *-pc-cygwin32 config | |
4645 | |
229 | 4646 1997-12-25 SL Baur <steve@altair.xemacs.org> |
4647 | |
4648 * XEmacs 20.5-beta13 is released. | |
4649 | |
227 | 4650 1997-12-20 SL Baur <steve@altair.xemacs.org> |
4651 | |
4652 * XEmacs 20.5-beta 12 is released. | |
4653 | |
4654 1997-12-19 SL Baur <steve@altair.xemacs.org> | |
4655 | |
384 | 4656 * configure.in (bitmapdir): Reenable --with-session by default for |
227 | 4657 testing. |
4658 | |
4659 1997-12-17 SL Baur <steve@altair.xemacs.org> | |
4660 | |
4661 * info/dir (File): Skk and Gnats are packaged. | |
4662 | |
4663 * PROBLEMS (Note): Update version numbers. | |
4664 | |
4665 * info/dir (File): Update version number. | |
4666 | |
225 | 4667 1997-12-16 SL Baur <steve@altair.xemacs.org> |
4668 | |
227 | 4669 * XEmacs 20.5-beta11 is released. |
225 | 4670 |
4671 1997-12-14 SL Baur <steve@altair.xemacs.org> | |
4672 | |
4673 * configure.in: Don't bypass graphics library detection | |
4674 if the `--with-imagick' option is given to configure. | |
4675 : Print autodetected graphics libraries to be linked with Imagick. | |
4676 | |
4677 * Makefile.in (lisp/finder-inf.el): Reverse previous change. | |
4678 | |
4679 1997-12-14 Olivier Galibert <olivier.galibert@mines.u-nancy.fr> | |
4680 | |
4681 * Makefile.in (install-arch-indep): Build info files if needed. | |
4682 | |
223 | 4683 1997-12-13 SL Baur <steve@altair.xemacs.org> |
4684 | |
225 | 4685 * Makefile.in (lisp/finder-inf.el): Add dependency on src/. |
4686 | |
227 | 4687 * XEmacs 20.5-beta10 is released. |
223 | 4688 |
4689 1997-12-12 SL Baur <steve@altair.xemacs.org> | |
4690 | |
4691 * configure.in (CPP): Don't add special CFLAGS for ix86/Linux. | |
4692 | |
4693 1997-12-10 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
4694 | |
4695 * configure.in (autodetect ImageMagick): also look for | |
4696 "X11/magick/magick.h", and if present, define | |
4697 MAGICK_HEADERS_ARE_UNDER_X11 | |
4698 | |
4699 1997-12-11 SL Baur <steve@altair.xemacs.org> | |
4700 | |
4701 * configure.in (imagick_libs): Add autodetection for freetype | |
4702 -lttf library. | |
4703 | |
4010 | 4704 1997-12-09 SL Baur <steve@altair.xemacs.org> |
221 | 4705 |
227 | 4706 * XEmacs 20.5-beta9 is released. |
221 | 4707 |
4010 | 4708 1997-12-06 SL Baur <steve@altair.xemacs.org> |
219 | 4709 |
227 | 4710 * XEmacs 20.5-beta8 is released. |
219 | 4711 |
4712 * info/dir: update for further packaging. | |
4713 * configure.in: remove `tree-x' from XEmacs build. | |
4714 | |
4010 | 4715 1997-11-29 Jeff Miller <jmiller@smart.net> |
219 | 4716 |
4717 * configure.in: motif menubars need xlwmenu.o | |
4718 | |
4719 * updated files in src/ to allow an XEmacs configured for | |
4720 motif menubars to at least compile. Motif menubars are still | |
4721 very broken. | |
4722 | |
4723 1997-12-02 P E Jareth Hein <jareth@camelot-soft.com> | |
4724 | |
4725 * lwlib/xlwscrollbar.c: fixed colormap/visual handling to work | |
4726 properly with the information in the core. | |
4727 | |
4728 * lwlib/xlwmenu.c: fixed colormap/visual handling to work properly with | |
4729 the information in the core, and fixed a potental problem with | |
4730 parentage. | |
4731 | |
4732 1997-12-01 SL Baur <steve@altair.xemacs.org> | |
4733 | |
4734 * configure.in (with_session): Properly display flag in configure | |
4735 status report. | |
4736 | |
4737 1997-11-29 SL Baur <steve@altair.xemacs.org> | |
4738 | |
4739 * configure.usage: Remove documentation of obsolete option | |
4740 --with-gif. | |
4741 | |
217 | 4742 1997-11-27 SL Baur <steve@altair.xemacs.org> |
4743 | |
227 | 4744 * XEmacs 20.5-beta7 is released. |
217 | 4745 |
4746 * configure.in: When testing for -ltiff, fall back on the extra | |
4747 libraries -ljpeg, and -lz since some -ltiff's need them. | |
4748 | |
4749 1997-11-26 SL Baur <steve@altair.xemacs.org> | |
4750 | |
4751 * lwlib/xlwmenu.c (display_menu): Defer incremental menus properly. | |
4752 From Glynn Clements <glynn@sensei.co.uk> | |
4753 | |
4010 | 4754 1997-11-25 Kazuyuki IENAGA <ienaga@jsys.co.jp> |
217 | 4755 |
4756 * configure.in: Improve auto detect of libraries ImageMagick rely | |
4757 on. | |
4758 | |
4010 | 4759 1997-11-23 Jeff Miller <jmiller@smart.net> |
217 | 4760 |
4761 * Energize is dead. Removed ENERGIZE ifdef's from code in lwlib | |
4762 and src. Configure.in modified. --with-energize is no longer a | |
4763 valid configure option. | |
4764 | |
4765 * lwlib/Makefile.in.in removed energize support | |
4766 * lwlib/lwlib-Xm.c removed energize support | |
4767 * lwlib/lwlib-config.c removed energize support | |
4768 | |
4769 * lwlib/energize/* removed | |
4770 | |
4771 1997-11-23 SL Baur <steve@altair.xemacs.org> | |
4772 | |
4773 * Makefile.in: Change references of lisp/utils/finder-inf.el to | |
4774 lisp/finder-inf.el. | |
4775 | |
215 | 4776 1997-11-20 SL Baur <steve@altair.xemacs.org> |
4777 | |
227 | 4778 * XEmacs 20.5-beta6 is released. |
215 | 4779 |
4780 1997-11-21 Stephen Turnbull <turnbull@sk.tsukuba.ac.jp> | |
4781 | |
4782 * configure.usage: Use `--' convention in "usage:" line. | |
4783 | |
4010 | 4784 1997-11-20 Stephen Turnbull <turnbull@sk.tsukuba.ac.jp> |
215 | 4785 |
4786 * configure.in: added `with_xfs' to list of boolean features. | |
4787 | |
4788 1997-11-20 SL Baur <steve@altair.xemacs.org> | |
4789 | |
217 | 4790 * XEmacs 20.3 is released for binary kit building. |
215 | 4791 |
4010 | 4792 1997-11-19 Tor Arntsen <tor@spacetec.no> |
215 | 4793 |
4794 * PROBLEMS: Removed IRIX entry about xemacs core dumps when using | |
4795 xemacs dumped on one machine on another. Problem was fixed by 20.3. | |
4796 | |
4797 1997-11-18 SL Baur <steve@altair.xemacs.org> | |
4798 | |
4799 * configure.usage: New file. | |
4800 | |
4801 * configure.in: Use it instead of monster 10k shell variable. | |
4802 | |
4803 1997-11-17 SL Baur <steve@altair.xemacs.org> | |
4804 | |
4805 * XEmacs 20.3-pre4 is released. | |
4806 | |
4807 1997-11-17 Jens-Ulrik Holger Petersen <petersen@kurims.kyoto-u.ac.jp> | |
4808 | |
4809 * configure.in (infopath): List "/usr/local/" dirs before "/usr/" | |
4810 dirs. | |
4811 | |
4812 1997-11-17 SL Baur <steve@altair.xemacs.org> | |
4813 | |
4814 * configure.in: Initialize infodir off of datadir. | |
4815 | |
4816 * Makefile.in: Force LANG = C for building. | |
4817 | |
4818 1997-11-15 SL Baur <steve@altair.xemacs.org> | |
4819 | |
4820 * XEmacs 20.3-pre3 is released. | |
227 | 4821 * XEmacs 20.5-beta5 is released. |
215 | 4822 |
4010 | 4823 1997-11-13 Marc Paquette <marcpa@cam.org> |
213 | 4824 |
4825 * nt/Todo: added a task for support of lisp packages through | |
4826 the registry. | |
4827 | |
4010 | 4828 1997-11-13 Jonathan Harris <jhar@tardis.ed.ac.uk> |
213 | 4829 |
4830 * Renamed files *w32* to *msw* | |
4831 | |
4832 * Changed 'w32' and 'win32' to 'mswindows', and HAVE_W32GUI to | |
4833 HAVE_MS_WINDOWS. Changed files: | |
4834 cus-edit.el, device.el, faces.el, frame.el, msw-faces.el, | |
4835 msw.init.el, igrep.el, dumped-lisp.el, font.el, hippie-exp.el, | |
4836 sysdep.el, console-msw.c, console-msw.h, console.c, | |
4837 device-msw.c, emacs.c, event-msw.c, event-msw.h, event-stream.c, | |
4838 events.c, events.h, faces.c, frame-msw.c, frame.c, general.c, | |
4839 msw-proc.c, objects-msw.c, objects-msw.h, redisplay-msw.c, | |
384 | 4840 redisplay.c, symsinit.h, |
213 | 4841 |
4842 * Didn't change 'win32' in nt.c, nt.h, ntproc.c | |
4843 | |
4844 * Deleted w32 build directory since nt build directory now handles | |
4845 X and native mswindows builds. | |
4846 | |
215 | 4847 1997-11-11 SL Baur <steve@altair.xemacs.org> |
4848 | |
227 | 4849 * XEmacs 20.5-beta4 is released. |
215 | 4850 |
211 | 4851 1997-11-10 SL Baur <steve@altair.xemacs.org> |
4852 | |
4853 * info/dir: remove packaged entries. | |
4854 From Glynn Clements <glynn@sensei.co.uk> | |
4855 | |
4856 * configure.in: Puke and die if NAS sound is selected without X. | |
4857 | |
209 | 4858 1997-11-08 SL Baur <steve@altair.xemacs.org> |
4859 | |
227 | 4860 * XEmacs 20.5-beta3 is released. |
209 | 4861 * XEmacs 20.3-pre2 is released. |
4862 | |
4863 Wed November 05 23:40:00 1997 <jhar@tardis.ed.ac.uk> | |
4864 | |
4865 * w32/xemacs.mak: moved building the DOC file to after the .elcs. | |
4866 | |
4867 Sun November 01 12:00:00 1997 <jhar@tardis.ed.ac.uk> | |
4868 | |
4869 * Files split from nt to new w32 directory: | |
4870 ChangeLog, README, Todo, paths.h, config.h, inc/*, runemacs.c, | |
4871 xemacs.mak. | |
4872 | |
442 | 4873 1997-11-05 Didier Verna <didier@xemacs.org> |
209 | 4874 |
4875 * configure.in: Added the --site-prefixes options for the configure | |
384 | 4876 script. You give a colon or space separated list of prefixes, and |
209 | 4877 subdirectories include/ and lib/ will be added with -I and -L. |
4878 | |
4010 | 4879 1997-11-05 Martin Buchholz <martin@xemacs.org> |
209 | 4880 |
4881 * configure.in: AIX + gcc fixes. | |
4882 - Don't wrap -B. aixflags changed to start_flags. | |
4883 | |
4884 1997-11-04 SL Baur <steve@altair.xemacs.org> | |
4885 | |
4886 * lwlib/lwlib-Xm.c(update_one_menu_entry): Add missing variable. | |
4887 From Skip Montanaro <skip@calendar.com> | |
4888 | |
4889 1997-11-03 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
4890 | |
4891 * Delete etc/TUTORIAL.th because Thai is not supported yet. | |
4892 | |
4893 1997-11-02 Kyle Jones <kyle_jones@wonderworks.com> | |
4894 | |
4895 * lwlib/lwlib-Xaw.c (xaw_pop_instance): Don't use parent | |
4896 window's coordinates and dimensions to center the | |
4897 dialog box unless its mapped_when_managed property is | |
4898 true. This should avoid the top level widget that the | |
4899 HAVE_SESSION code creates, which is unmapped and | |
4900 useless for this purpose. | |
4901 | |
4902 1997-11-01 SL Baur <steve@altair.xemacs.org> | |
4903 | |
4904 * XEmacs 20.3-pre1 is released. | |
4905 | |
207 | 4906 1997-10-31 SL Baur <steve@altair.xemacs.org> |
4907 | |
209 | 4908 * XEmacs 19.16 is released. |
4909 | |
4910 1997-10-31 SL Baur <steve@altair.xemacs.org> | |
4911 | |
227 | 4912 * XEmacs 20.5-beta2 is released. |
207 | 4913 |
4914 1997-10-30 SL Baur <steve@altair.xemacs.org> | |
4915 | |
4916 * configure.in (xetest): Eliminate tests for PNG, JPEG, | |
4917 TIFF(broken) and replace with test for ImageMagick. | |
4918 | |
4919 1997-10-30 Kyle Jones <kyle_jones@wonderworks.com> | |
384 | 4920 |
207 | 4921 * lwlib/xlwmenu.h: Added string macro declarations for |
4922 titleForeground and highlightForeground properties. | |
4923 | |
4924 * lwlib/xlwmenuP.h: Added struct fields for title and | |
4925 highlight colors. | |
4926 | |
4927 * lwlib/xlwmenu.c: Added initialization and usage code | |
4928 for the new titleForeground and highlightForeground | |
4929 properties. | |
4930 | |
4931 1997-10-28 SL Baur <steve@altair.xemacs.org> | |
4932 | |
4933 * XEmacs 20.3-beta94 is released. | |
4934 | |
4935 1997-10-28 Andreas Jaeger <aj@arthur.rhein-neckar.de> | |
4936 | |
4937 * configure.in: Correct last patch for berkdb. | |
4938 | |
4939 1997-10-28 SL Baur <steve@altair.xemacs.org> | |
4940 | |
4941 * XEmacs 20.3-beta93 is released. | |
4942 | |
4943 1997-10-27 Martin Buchholz <mrb@eng.sun.com> | |
4944 | |
4945 * lib-src/make-path.c: | |
4946 * lib-src/digest-doc.c: | |
4947 * lib-src/gnuslib.c: Always include config.h before system headers | |
4948 * configure.in: Improve AIX configure support | |
4949 - NON_GNU_CC defaults to `xlc' | |
384 | 4950 - CFLAGS defaults to "-O3 -qstrict -qlibansi -qinfo -qro |
207 | 4951 -qmaxmem=20000" |
4952 - check for sin instead of sqrt in -lm to avoid xlc internal error | |
4953 - Detect -li18n for use with Motif | |
4954 - Move weird AIX static linking flags from s&m files to configure.in | |
4955 - use #pragma instead of -ma flag to avoid compiler warnings | |
4956 | |
4957 1997-10-25 Kyle Jones <kyle_jones@wonderworks.com> | |
4958 | |
4959 * lwlib/xlwmenu.c: Use XtRDimension in place of | |
4960 XmRHorizontalDimension in shadowThickness resource | |
4961 declaration. | |
4962 | |
4963 * lwlib/xlwmenu.c (label_button_draw): Use the button_gc | |
4964 color as the foreground for selected entries. | |
4965 | |
4966 * lwlib/xlwmenu.c (push_button_draw): Use the button_gc | |
4967 color as the foreground for selected entries. | |
4968 | |
4969 * lwlib/xlwmenu.c (toggle_decoration_height): Force | |
4970 height to be minimum of 2x the shadow thickness. | |
4971 | |
4972 1997-10-24 Andreas Jaeger <aj@arthur.rhein-neckar.de> | |
4973 | |
4974 * configure.in: Don't choke on Berkeley DB 2.x. | |
4975 | |
4976 1997-10-24 SL Baur <steve@altair.xemacs.org> | |
4977 | |
4978 * XEmacs 20.3-beta92 is released. | |
4979 | |
4980 1997-10-21 SL Baur <steve@altair.xemacs.org> | |
4981 | |
4982 * Makefile.in (lisp/utils/finder-inf.el): Don't force rebuild if | |
4983 it already exists (use `make finder' to force rebuild). | |
4984 | |
4985 1997-10-18 SL Baur <steve@altair.xemacs.org> | |
4986 | |
424 | 4987 * XEmacs 20.3-beta91 is released. |
207 | 4988 |
4989 1997-10-15 Olivier Galibert <olivier.galibert@mines.u-nancy.fr> | |
4990 | |
4991 * configure.in: Removed -Olimit=2000 from cc for IRIX. | |
4992 | |
4993 1997-10-12 Karl M. Hegbloom <karlheg@inetarena.com> | |
4994 | |
4995 * configure.in (null_string): Added AC_SUBST(infodir_user_defined) | |
4996 and removed backquoted echo statement from the infopath report line. | |
4997 | |
4998 1997-10-15 Olivier Galibert <olivier.galibert@mines.u-nancy.fr> | |
4999 | |
5000 * configure.in: Added detection of the declaration of the timezone | |
5001 variable in system files. Defines HAVE_TIMEZONE_DECL if yes. | |
5002 | |
5003 | |
5004 1997-10-15 Olivier Galibert <olivier.galibert@mines.u-nancy.fr> | |
5005 | |
5006 * config.h.in: Add HAVE_TIMEZONE_DECL for detection of declaration | |
5007 of the timezone variable in system headers. | |
5008 | |
5009 * systime.h: Use HAVE_TIMEZONE_DECL. | |
5010 | |
5011 1997-10-14 SL Baur <steve@altair.xemacs.org> | |
5012 | |
5013 * configure.in (all_widgets): Don't allow configuration of | |
5014 --with-mule if Mule lisp hasn't been installed. | |
5015 | |
5016 1997-10-13 SL Baur <steve@altair.xemacs.org> | |
5017 | |
5018 * configure.in: Remove `site-lisp' from list of directories to | |
5019 make symbolic links for. | |
5020 | |
5021 * XEmacs 20.3-beta90 is released. | |
5022 | |
5023 1997-10-12 Glynn Clements <glynn@sensei.co.uk> | |
5024 | |
5025 * info/dir: Cosmetic changes to info/dir | |
5026 | |
205 | 5027 1997-10-12 SL Baur <steve@altair.xemacs.org> |
5028 | |
227 | 5029 * XEmacs 20.5-beta1 is released. |
205 | 5030 |
5031 * XEmacs 19.16-pre9 is released. | |
5032 | |
5033 * XEmacs 19.16-pre8 is released. | |
5034 | |
203 | 5035 1997-10-11 SL Baur <steve@altair.xemacs.org> |
5036 | |
205 | 5037 * XEmacs 20.3-beta28 is released. |
5038 | |
203 | 5039 * Makefile.in (src/paths.h): Update PATH_INFOPATH |
5040 (infopath): New shell variable. | |
5041 (infopath_user_defined): Ditto. | |
5042 | |
5043 * configure.in (infodir_user_defined): Spelling fixes. | |
5044 | |
5045 1997-10-10 Karl M. Hegbloom <karlheg@inetarena.com> | |
5046 | |
5047 * configure.in: added options and option help docs for infopath | |
5048 and lockdir | |
5049 * '' added a line to the report for infopath and lockdir | |
5050 | |
5051 1997-10-10 Karl M. Hegbloom <karlheg@inetarena.com> | |
5052 | |
5053 * Makefile.in.in (INFOPATH): Added variable and put it into | |
5054 DUMPENV. | |
5055 | |
5056 1997-10-11 SL Baur <steve@altair.xemacs.org> | |
5057 | |
5058 * packages/info/localdir: New directory and file. | |
5059 | |
5060 * packages/README: New directory & file. | |
5061 | |
5062 1997-10-10 Martin Buchholz <mrb@eng.sun.com> | |
5063 | |
5064 * Makefile.in: Add `make configure' target | |
5065 | |
5066 1997-10-07 SL Baur <steve@altair.xemacs.org> | |
5067 | |
5068 * XEmacs 19.16-pre7 is released. | |
5069 | |
5070 1997-10-05 Damon Lipparelli <lipp@aa.net> | |
5071 | |
5072 * Makefile.in (install-arch-dep, install-arch-indep): Move the | |
5073 commands for symlink'ing the system-independent bits into the | |
5074 system-dependent directory structure from "install-arch-indep" to | |
5075 "install-arch-dep". | |
5076 | |
5077 1997-10-06 Jens-Ulrik Holger Petersen <petersen@kurims.kyoto-u.ac.jp> | |
5078 | |
5079 * Makefile.in (blddir): variable from "configure". | |
5080 (finder): use it. | |
5081 | |
5082 1997-10-05 SL Baur <steve@altair.xemacs.org> | |
5083 | |
5084 * Makefile.in (GENERATED_LISP): New variable. | |
5085 (all): Force dependency on finder-inf.el. | |
5086 (lisp/utils/finder-inf.el): new rule. | |
5087 | |
5088 1997-10-04 SL Baur <steve@altair.xemacs.org> | |
5089 | |
5090 * XEmacs 19.16-pre6 is released. | |
5091 | |
201 | 5092 1997-10-04 SL Baur <steve@altair.xemacs.org> |
5093 | |
5094 * XEmacs 20.3-beta27 is released. | |
5095 | |
5096 1997-10-03 Damon Lipparelli <lipp@primus.com> | |
5097 | |
5098 * Makefile.in (install-arch-indep): When --prefix != | |
5099 --exec-prefix, symlink the system-independent bits into the | |
5100 system-dependent directory structure (rather than the other way | |
5101 around). | |
5102 | |
5103 1997-10-03 Martin Buchholz <mrb@eng.sun.com> | |
5104 | |
5105 * lib-src/etags.c: etags 12.28 + prototypization | |
384 | 5106 * INSTALL: Better document --site-runtime-libraries |
5107 * src/scrollbar-x.c (x_update_scrollbar_instance_status): | |
201 | 5108 FIX: M-x scroll-left; horizontal scrollbar appears; drag it |
5109 left; scrollbar disappears; keyboard inoperative. | |
5110 * configure.in: Remove left-over references to *_switch_x_* | |
5111 - NAS libaudio is part of $libs_x, not $LIBS | |
5112 | |
199 | 5113 1997-10-02 SL Baur <steve@altair.xemacs.org> |
5114 | |
5115 * XEmacs 20.3-beta26 is released. | |
5116 | |
197 | 5117 1997-09-30 SL Baur <steve@altair.xemacs.org> |
5118 | |
5119 * XEmacs 20.3-beta25 is released. | |
5120 | |
5121 * Makefile.in (install-arch-dep): Install the `Installation' for | |
5122 future reference. | |
5123 | |
5124 * Makefile.in (top_distclean): Remove finder-inf.el*. | |
5125 | |
5126 * configure.in (use_union_type): Default to "yes". | |
5127 | |
5128 1997-09-29 Martin Buchholz <mrb@eng.sun.com> | |
5129 | |
5130 * configure.in: Add tiff autodetection | |
5131 | |
5132 1997-09-29 SL Baur <steve@altair.xemacs.org> | |
5133 | |
5134 * lwlib/xlwmenu.c: Add bounds checking. | |
5135 Check error return on XmStringGetLtoR. | |
5136 | |
195 | 5137 1997-09-27 SL Baur <steve@altair.xemacs.org> |
5138 | |
5139 * XEmacs 20.3-beta24 is released. | |
5140 | |
5141 1997-09-27 Hrvoje Niksic <hniksic@srce.hr> | |
5142 | |
5143 * Makefile.in (custom-loads): New target. | |
5144 | |
5145 1997-09-23 SL Baur <steve@altair.xemacs.org> | |
5146 | |
5147 * lwlib/xlwmenu.c: Fix compilation problem with USE_XFONTSET. | |
5148 From Kazuyuki IENAGA <ienaga@jsys.co.jp> | |
5149 | |
5150 1997-09-22 SL Baur <steve@altair.xemacs.org> | |
5151 | |
5152 * XEmacs 19.16-pre4 is released. | |
5153 | |
193 | 5154 1997-09-20 SL Baur <steve@altair.xemacs.org> |
5155 | |
5156 * XEmacs 20.3-beta23 is released. | |
5157 | |
4010 | 5158 1997-09-19 SL Baur <steve@altair.xemacs.org> |
193 | 5159 |
5160 * XEmacs 19.16-pre3 is released. | |
5161 | |
5162 1997-09-19 Martin Buchholz <mrb@eng.sun.com> | |
5163 | |
5164 * src/redisplay-tty.c: Fix crashes with non-7bit tty escape | |
5165 sequences (needs more testing). | |
384 | 5166 * */Makefile*: |
193 | 5167 - Cleanup man/*/Makefile for consistency. |
5168 - use $(MAKEFINFO), $(TEXI2DVI), etc... | |
5169 - Make combination --with-srcdir + Sun make work properly. | |
384 | 5170 - Change construct: test -d $${dir} || mkdir $${dir} |
193 | 5171 --> if test ! -d $${dir}; then mkdir $${dir}; fi |
5172 * lisp/x11/x-win-sun.el: Fix remaining glitches with | |
5173 re-mappings of Sun function keys. | |
5174 * configure.in: Detect libXaw AFTER libXpm to support libXawXpm. | |
5175 * man/internals/internals.texi: Fix makeinfo compilation error. | |
5176 | |
191 | 5177 1997-09-17 SL Baur <steve@altair.xemacs.org> |
5178 | |
5179 * XEmacs 20.3-beta22 is released. | |
5180 | |
189 | 5181 1997-09-16 SL Baur <steve@altair.xemacs.org> |
5182 | |
5183 * XEmacs 20.3-beta21 is released. | |
5184 | |
5185 * XEmacs 19.16-pre2 is released. | |
5186 | |
187 | 5187 1997-09-13 SL Baur <steve@altair.xemacs.org> |
5188 | |
5189 * XEmacs 20.3-beta20 is released. | |
5190 | |
5191 1997-09-11 Martin Buchholz <mrb@eng.sun.com> | |
5192 | |
5193 * configure.in: Use `PATH' for options that take multiple dirs. | |
5194 - Fix test for $PWD == `pwd` | |
5195 - Prefer autodetected X11R6 to X11 so that broken HP and Linux | |
5196 systems can work. (untested) | |
5197 | |
5198 * lisp/cl/cl.el: Fix `loop' indentation to be same as `defun'. | |
5199 * lisp/prim/dumped-lisp.el: cl-extra and cl-seq always end up | |
5200 being autoloaded - let's make them part of the core. | |
5201 | |
5202 * lisp/x11/x-compose.el: | |
5203 * lisp/x11/x-init.el: | |
5204 * lisp/x11/x-win-sun.el: | |
5205 * lisp/x11/x-winxfree86.el: | |
5206 * src/device-x.c: | |
5207 * src/event-Xt.c: | |
5208 - Yet another rewrite of key handling (not the last, though) | |
5209 - x-keysym-on-keyboard-p is much faster. | |
5210 - x-keysym-on-keyboard-sans-modifiers-p introduced. | |
5211 - x-keysym-hashtable introduced. | |
5212 - allow X11R4 libs to guess keysyms on X11R5 servers. | |
384 | 5213 - A better workaround for the bug that some Xlibs generate |
187 | 5214 Multi_key a adiaeresis when pressing Multi_key a " |
384 | 5215 |
187 | 5216 * src/dgif_lib.c: Make sure size_t is defined before using it. |
5217 | |
5218 1997-09-12 SL Baur <steve@altair.xemacs.org> | |
5219 | |
5220 XEmacs 19.16-pre1 "Queens" is released. | |
5221 | |
5222 1997-09-08 SL Baur <steve@altair.xemacs.org> | |
5223 | |
5224 * configure.in: Reverse package-path. | |
5225 From Colin Rafferty <craffert@ml.com> | |
5226 | |
185 | 5227 1997-09-02 SL Baur <steve@altair.xemacs.org> |
5228 | |
5229 * XEmacs 20.3-beta19 is released. | |
5230 | |
5231 * Makefile.in (finder): New target. | |
5232 | |
5233 1997-08-29 SL Baur <steve@altair.xemacs.org> | |
5234 | |
5235 * XEmacs 19.16-beta91 is released. | |
5236 | |
5237 1997-08-25 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5238 | |
5239 * lisp/apel/emu-x20.el (mime-charset-coding-system-alist): | |
5240 iso-2022-jp-2 is defined as coding-system. | |
5241 | |
5242 * lisp/mule/mule-coding.el: Rename `iso-2022-ss2-{7|8}' -> | |
5243 `iso-2022-{7|8}bit-ss2' to sync with Emacs 20.0.96. | |
5244 | |
5245 (iso-2022-jp-2): New coding system. | |
5246 | |
5247 1997-08-23 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5248 | |
5249 * lisp/prim/about.el (about-maintainer-glyph): Fix problem with | |
5250 jka-compr.el. | |
5251 | |
5252 1997-08-20 SL Baur <steve@altair.xemacs.org> | |
5253 | |
5254 * XEmacs 19.16-beta90 is released. | |
5255 | |
183 | 5256 1997-08-16 SL Baur <steve@altair.xemacs.org> |
5257 | |
5258 * XEmacs 20.3-beta18 is released. | |
5259 | |
181 | 5260 1997-08-09 SL Baur <steve@altair.xemacs.org> |
5261 | |
5262 * XEmacs 20.3-beta17 is released. | |
5263 | |
5264 1997-08-09 Martin Buchholz <mrb@eng.sun.com> | |
5265 | |
5266 * configure.in: | |
5267 - use-system-malloc renamed to with-system-malloc. | |
5268 - config.el reimplemented for improved accuracy. | |
5269 - new variable `blddir' introduced for informational purposes. | |
5270 * lib-src/config.values.in: new config.el implementation | |
5271 * lib-src/config.values.sh: new config.el implementation | |
384 | 5272 * lisp/modes/pascal.el: Sync with GNU Emacs, fix infloop problem |
181 | 5273 (thanks to Espen Skoglund, pascal.el maintainer) |
5274 * src/chartab.c: maintainability improvements. | |
5275 * src/mule-coding.c: FIX for: editing DOS files with ISO2022* | |
5276 coding systems results in extra CR's inserted into file on saving. | |
5277 | |
5278 1997-08-06 SL Baur <steve@altair.xemacs.org> | |
5279 | |
5280 * configure.in: Crash & burn if db-2 is detected. | |
5281 From Soren Dayton <csdayton@cs.uchicago.edu> | |
5282 | |
179 | 5283 1997-07-31 SL Baur <steve@altair.xemacs.org> |
5284 | |
5285 * XEmacs 20.3-beta16 is released. | |
5286 | |
5287 1997-07-31 Martin Buchholz <mrb@eng.sun.com> | |
5288 | |
5289 * configure.in: --with-x11=no --> --with-xface=no | |
5290 * lisp/efs/dired-xemacs.el: Rationalize mouse file functions | |
5291 * src/input-method-xlib.c: Allow xemacs to connect to kinput2 | |
5292 * event-Xt.c: Fix crashes when no input context available. | |
5293 * src/mule-coding.c: Use enum eol_type instead of int consistently | |
5294 * regex.c: Use (void *) 0 instead of NULL in varargs function calls | |
5295 * src/s/freebsd.h: Wrap #include X11/Xlocale.h inside #ifndef | |
5296 NOT_C_CODE | |
5297 | |
177 | 5298 1997-07-26 SL Baur <steve@altair.xemacs.org> |
5299 | |
5300 * XEmacs 20.3-beta15 is released. | |
5301 | |
5302 1997-07-25 SL Baur <steve@altair.xemacs.org> | |
5303 | |
5304 * lwlib/xlwscrollbar.c: Add debug malloc support. | |
5305 * lwlib/xlwmenu.c: Ditto. | |
5306 * lwlib/lwlib-utils.h: Ditto. | |
5307 | |
5308 * configure.in (null_string): Add --use-debug-malloc option. | |
5309 | |
5310 1997-07-21 SL Baur <steve@altair.xemacs.org> | |
5311 | |
5312 * info/dir (Packages): Remove AUCTeX, Gnus and Message manuals. | |
5313 | |
5314 1997-07-20 SL Baur <steve@altair.xemacs.org> | |
5315 | |
5316 * Makefile.in (install-arch-indep): Create required links when | |
5317 prefixdir != execdir. | |
5318 | |
5319 1997-07-19 SL Baur <steve@altair.xemacs.org> | |
175 | 5320 |
5321 * XEmacs 20.3-beta14 is released. | |
5322 | |
5323 1997-07-19 Martin Buchholz <mrb@eng.sun.com> | |
5324 | |
177 | 5325 * src/fns.c (require): Print messages when loading a file as a |
175 | 5326 result of require. |
384 | 5327 |
175 | 5328 * configure.in: |
5329 * lisp/utils/config.el: | |
384 | 5330 * lib-src/config.values: |
175 | 5331 - new file created and installed by building. |
5332 - Allow configuration time values to be queried by the lisp code. | |
5333 | |
5334 * configure.in: | |
5335 - check for alloca in libPW on hpux. | |
5336 - Redo --with-clash-detection | |
5337 - need to check for termios and friends even if with-tty=no. | |
5338 - Always define SIGNALS_VIA_CHARACTERS if HAVE_TERMIOS | |
5339 - better quoting for AIX_SMT_EXP (untested) | |
5340 - gcc flags now default to "-g -O2 -Wall -Wno-switch" | |
5341 | |
5342 * *.[ch]: more warning elimination | |
5343 | |
5344 * src/input-method*.c: | |
5345 * src/s/freebsd.h: | |
5346 - remove freebsd ifdefs from C code. | |
5347 | |
5348 * src/specifier.c: | |
5349 - fix Fdisplay-table-specifier-p | |
5350 | |
173 | 5351 1997-07-13 Steven L Baur <steve@altair.xemacs.org> |
5352 | |
5353 * XEmacs 20.3-beta13 is released. | |
5354 | |
5355 * info/dir (Packages): Integrate texinfo manual for PH. | |
5356 | |
5357 1997-07-10 Hrvoje Niksic <hniksic@srce.hr> | |
5358 | |
5359 * extents.c (print_extent): Print correctly. | |
384 | 5360 |
173 | 5361 1997-07-13 Steven L Baur <steve@altair.xemacs.org> |
5362 | |
5363 * configure.in (CPP): Add -Wall to default gcc CFLAGS. | |
5364 | |
5365 1997-07-11 Martin Buchholz <mrb@eng.sun.com> | |
5366 | |
5367 * *Makefile*: More cleanup. | |
5368 - MAKE CFLAGS=-foo now works with recursive invocations on old makes | |
5369 - Nuke ld_call_shared from s&m files | |
5370 - Nuke src/s/*-static.h | |
5371 - Nuke Solaris and DEC OSF static build support. | |
5372 - Nuke SHORTNAMES | |
5373 - Nuke libmld | |
5374 - CLASH_DETECTION configurable, off by default. | |
5375 | |
5376 * *.[ch]: Warning elimination, code cleanup, some 64-bit | |
5377 safeguarding. | |
5378 | |
5379 * sol2.h: More bullet-proofing for Sun bugs in header files. | |
5380 | |
5381 * lib-src/etags.c: etags version 12.19. | |
5382 | |
5383 * lisp/x11/x-select.el: | |
5384 * src/xselect.c: Try STRING if selection owner couldn't convert | |
384 | 5385 COMPOUND_TEXT. |
173 | 5386 |
5387 * src/*.c: Change defalt to default_, and in general allow | |
5388 doc-snarfing functions to recognize and ignore trailing `_' | |
5389 | |
384 | 5390 * src/*.[ch]: Introduce XVECTOR_DATA and XVECTOR_LENGTH macros and |
173 | 5391 convert source code to use them consistently. |
5392 | |
171 | 5393 1997-07-08 Steven L Baur <steve@altair.xemacs.org> |
5394 | |
5395 * XEmacs 20.3-beta12 is released. | |
5396 | |
5397 1997-07-08 Martin Buchholz <mrb@eng.sun.com> | |
5398 | |
384 | 5399 * configure.in: Set options differently, depending on beta-ness of |
171 | 5400 build tree. |
5401 * *Makefile*: Clean up *clean: targets, esp. Steven's beloved | |
5402 distclean. | |
5403 | |
5404 1997-07-08 Steven L Baur <steve@altair.xemacs.org> | |
5405 | |
5406 * pkg-src/tree-x/Makefile.in.in (xoobr): Pass CFLAGS to the | |
5407 linker. | |
5408 From Olivier Galibert <Olivier.Galibert@mines.u-nancy.fr> | |
5409 | |
5410 1997-07-07 Steven L Baur <steve@altair.xemacs.org> | |
5411 | |
5412 * pkg-src/tree-x/Makefile.in.in (distclean): Add target. | |
5413 | |
5414 1997-07-06 Steven L Baur <steve@altair.xemacs.org> | |
5415 | |
5416 * lwlib/lwlib-Xm.c (xm_update_one_value): Hand application of mrb | |
5417 fix. Restoration of lossage from beta10->beta11 upgrade. | |
5418 | |
5419 * XEmacs 20.3-beta11 is released. | |
5420 | |
5421 1997-07-08 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5422 | |
5423 * lisp/language/english.el: Add quail-british for British. | |
5424 | |
5425 * lisp/language/european.el: Register input-method for various non | |
5426 quail-latin-1 methods. | |
5427 | |
169 | 5428 1997-07-05 Martin Buchholz <mrb@eng.sun.com> |
5429 | |
5430 * lib-src/getopt*.c: Don't redefine const - let configure do that. | |
5431 | |
5432 * configure.in: Better behavior for `configure --with-gcc=no' | |
5433 - Autodetect ulimit.h | |
5434 - Remove broken SunOS4 kludge for libXmu | |
5435 - Autodetect usleep | |
5436 | |
5437 * src/s/sol2.h: Support gcc on various Solaris releases. | |
384 | 5438 |
169 | 5439 * lib-src/*.c: Ansify prototypes. |
5440 | |
5441 * lisp/prim/files.el: Optimize auto-mode-alist. | |
5442 | |
5443 * pkg-src/tree-x/Makefile.in.in: `make distclean' now works | |
5444 - `make install' now works. | |
5445 - dependencies updated. | |
5446 | |
5447 * pkg-src/tree-x/*.[ch]: Fix compile warnings. | |
5448 - Replace uses of XtVa* with non-varargs variants. | |
5449 | |
5450 1997-07-01 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5451 | |
5452 * lisp/modes/image-mode.el: Add `image-maybe-restore' to | |
5453 `change-major-mode-hook'. | |
5454 | |
5455 * lisp/modes/image-mode.el (image-maybe-restore): New function. | |
5456 | |
5457 * src/glyphs.c (make_string_from_file): must protect from | |
5458 `format-alist'. | |
5459 | |
5460 1997-06-30 Steven L Baur <steve@altair.xemacs.org> | |
5461 | |
5462 * pkg-src/tree-x/Makefile.in.in (INSTALL): Add configure written | |
5463 variable. | |
5464 | |
167 | 5465 1997-06-29 Steven L Baur <steve@altair.xemacs.org> |
5466 | |
169 | 5467 * configure.in (CPP): Correct typo `print-lib-gcc-file-name' |
5468 should be `print-libgcc-file-name' | |
5469 From Katsumi Yamaoka <yamaoka@ga.sony.co.jp> | |
384 | 5470 |
167 | 5471 * XEmacs 20.3-beta10 is released. |
5472 | |
5473 1997-06-29 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5474 | |
5475 * lisp/language/chinese.el: Add chinese-isoir165 (CCITT Extended | |
5476 GB). | |
5477 | |
5478 * lisp/language/chinese.el: Modify charset DOC-strings for CNS | |
5479 11643 to be more detailed. | |
5480 | |
5481 * lisp/language/arabic.el: Rename `arabic-0', `arabic-1' and | |
5482 `arabic-2' to `arabic-digit', `arabic-1-column' and | |
5483 `arabic-2-column' to sync with Emacs/mule-19.34.94-zeta. | |
5484 | |
5485 * src/mule-charset.c: Modify charset DOC-strings to be more | |
5486 detailed. | |
5487 | |
5488 Use BOX DRAWINGS characters of JIS X0208. | |
5489 | |
5490 1997-06-28 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5491 | |
5492 * lisp/apel/richtext.el: Add autoload comments for | |
5493 `richtext-encode' and `richtext-decode'. | |
5494 | |
5495 * lisp/prim/format.el (format-alist): Add `text/richtext'. | |
5496 | |
5497 * lisp/tl/chartblxmas.el: New file. | |
5498 | |
5499 * lisp/x11/x-menubar.el (default-menubar): Add "Show character | |
5500 table" for MULE menu. | |
5501 | |
5502 * lisp/apel/emu.el: Check richtext.el is bundled. | |
5503 | |
5504 * lisp/tl/char-table.el (view-charset): New command. | |
5505 | |
5506 * lisp/tl/char-table.el: Rename some functions. | |
5507 | |
5508 * lisp/packages/hexl.el (hexl-mode-exit): Run | |
5509 `hexl-mode-exit-hook'. | |
5510 | |
5511 * lisp/x11/x-menubar.el (default-menubar): Fix "Describe language | |
5512 support" and "Set language environment" of mule menu. | |
5513 | |
5514 * lisp/apel/file-detect.el: Add autoload comments for function | |
5515 `add-path', `add-latest-path', `get-latest-path', | |
5516 `file-installed-p', `exec-installed-p', `module-installed-p' and | |
5517 variable `exec-suffix-list'. | |
5518 | |
5519 * lisp/prim/format.el (format-alist): Add image/jpeg, image/gif, | |
5520 image/png and image/x-xpm. | |
5521 | |
5522 * lisp/modes/image-mode.el: New file. | |
5523 | |
5524 1997-06-27 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5525 | |
5526 * lisp/tm/tm-ew-e.el (tm-eword::encode-string-1): avoid infinite | |
5527 loop caused by long non-encoded-word element. (cf. [tm-en:1356]) | |
5528 | |
5529 (mime/field-encoding-method-alist): Add "Message-ID" as ignored. | |
5530 | |
165 | 5531 1997-06-25 Steven L Baur <steve@altair.xemacs.org> |
5532 | |
5533 * XEmacs 20.3-beta9 is released. | |
5534 | |
5535 * Makefile.in (dist): Make `make dist' work for me. | |
5536 | |
5537 1997-06-25 Martin Buchholz <mrb@eng.sun.com> | |
5538 | |
5539 * configure.in: | |
5540 - Change "t" to tabs in sed commands | |
5541 - Add /g to sed substitition commands when appropriate | |
5542 - Change XtVa[SG]etValue to Xt[SG]etValue | |
5543 - Make version variables into Lisp_Objects. | |
5544 | |
5545 1997-06-19 Martin Buchholz <mrb@eng.sun.com> | |
5546 | |
5547 * src/config.h.in: | |
5548 * configure.in: | |
5549 - Autodetect X defines using xmkmf. | |
5550 - Compute rpath on *bsd* systems as well. | |
5551 - rewrite PRINT_VAR m4 macro. | |
5552 - detect sizes of void* and long long for future use by unex*.c | |
5553 * regex.c: _GNU_SOURCE may be defined by config.h; don't redefine. | |
5554 | |
5555 1997-06-24 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5556 | |
5557 * lisp/language/arabic.el: moved from lisp/mule/arabic-hooks.el. | |
5558 | |
5559 * lisp/mh-e/mh-e.el (mh-get-new-mail): Decode output as | |
5560 `mh-folder-coding-system'. | |
5561 | |
5562 1997-06-24 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5563 | |
5564 * lisp/language/ethio-util.el: imported from | |
5565 Emacs/mule-19.34.94-zeta. | |
5566 | |
5567 * lisp/language/arabic-util.el: moved from lisp/mule/arabic.el; | |
5568 repair Arabic characters. | |
5569 | |
5570 1997-06-24 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5571 | |
5572 * lib-src/update-autoloads.sh: Search lisp/mule/. | |
5573 | |
5574 * lisp/x11/x-menubar.el: Fix "Describe language support" and "Set | |
5575 language environment" of Mule menu. | |
5576 | |
5577 * lisp/language/visual-mode.el: moved from mule/. | |
5578 | |
5579 * lisp/language/ethiopic.el: Modify for XEmacs. | |
5580 | |
5581 * lisp/language/cyrillic.el: Modify DOC-string of koi8-r; Fixed | |
5582 problem of setting for `language-info-alist' about koi8-r. | |
5583 | |
5584 * lisp/mule/auto-autoloads.el: Enable auto-autoloads.el for mule/. | |
5585 | |
5586 * lisp/mule/mule-util.el: New file (imported from | |
5587 Emacs/mule-19.34.94-zeta). | |
5588 | |
5589 * lisp/mule/mule-misc.el: Function `truncate-string-to-width' was | |
5590 moved to mule-util.el. | |
5591 | |
5592 * lisp/prim/dumped-lisp.el, lisp/mule/mule-load.el: | |
5593 lisp/mule/arabic-hooks.el was moved to lisp/language/arabic.el; | |
5594 lisp/mule/arabic.el was moved to lisp/language/arabic-util.el; Use | |
5595 lisp/language/ethiopic.el instead of lisp/mule/ethiopic-hooks.el; | |
5596 Use lisp/language/ethio-util.el instead of lisp/mule/ethiopic.el. | |
5597 | |
5598 * lisp/mule/mule-coding.el (coding-system-docstring): New alias to | |
5599 emulate Emacs/mule-19.34.94-zeta function. | |
5600 | |
5601 * lisp/mule/mule-cmds.el: modified to sync with | |
5602 Emacs/mule-19.34.94-zeta (mule-prefix was changed to "C-x C-m") | |
5603 | |
5604 (set-language-info): Add to "Describe Language Support" and "Set | |
5605 Language Environment" menu. | |
5606 | |
5607 * lisp/mule/mule-charset.el: Function `compose-region' and | |
5608 `decompose-region' were moved to mule-util.el. | |
5609 | |
5610 * lisp/leim/quail.el: modify to sync with latest quail.el of | |
5611 Emacs/mule in ETL. | |
5612 | |
5613 (quail-toggle-mode-temporarily): check `quail-conv-overlay'. | |
5614 | |
5615 (quail-map-p): Use `characterp' instead of `integerp'. | |
5616 | |
163 | 5617 1997-06-21 Steven L Baur <steve@altair.xemacs.org> |
5618 | |
165 | 5619 * Makefile.in: Missing FRC.info. |
5620 (install-arch-dep): Add missing backslash. | |
5621 From Glynn Clements <glynn@sensei.co.uk> | |
5622 | |
163 | 5623 * XEmacs 20.3-beta8 is released. |
5624 | |
4010 | 5625 1997-06-20 Olivier Galibert <Olivier.Galibert@mines.u-nancy.fr> |
163 | 5626 |
5627 * lwlib/lwlib-Xaw.c, lwlib/lwlib-Xlw.c, lwlib/lwlib-Xm.c, | |
5628 lwlib/lwlib.c: Make 64 bit clean. | |
384 | 5629 |
163 | 5630 1997-06-19 Martin Buchholz <mrb@eng.sun.com> |
5631 | |
5632 * configure.in: | |
5633 - Autodetect X defines using xmkmf. | |
5634 - Compute rpath on *bsd* systems as well. | |
5635 - rewrite PRINT_VAR m4 macro. | |
5636 - detect sizes of void* and long long for future use by unex*.c | |
5637 | |
5638 1997-06-18 Martin Buchholz <mrb@eng.sun.com> | |
5639 | |
5640 * */Makefile.in.in: Another rewrite | |
5641 Make makefiles immune from being mangled by various cpp | |
384 | 5642 implementations by quoting non-preprocessor directive lines. |
163 | 5643 - random cleanup |
5644 - Use $(RM) and $(pwd) macros consistently | |
5645 - Add dependencies for balloon-help source files | |
5646 - Use getcwd by default instead of getwd. | |
5647 * lwlib/config.h: Now includes src/config.h | |
5648 * lwlib/*.c: Use config.h, but DON'T use Xos.h | |
5649 * lib-src/*.c: Fix compiler warnings | |
5650 * lisp/version.el: | |
5651 - Put version information in version.sh instead of version.el | |
5652 | |
5653 Wed Jun 18 16:41:43 1997 Steven L Baur <steve@altair.xemacs.org> | |
5654 | |
5655 * configure.in (CPP): Remove hardcoding of -L/usr/local/lib | |
5656 -I/usr/local/include. | |
5657 | |
161 | 5658 1997-06-14 Steven L Baur <steve@altair.xemacs.org> |
5659 | |
5660 * XEmacs 20.3-beta7 is released. | |
5661 | |
5662 1997-06-13 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5663 | |
5664 * lisp/gnus/smiley.el (smiley-deformed-regexp-alist): Modify | |
5665 regexp for horizontal smiley faces. | |
5666 (smiley-nosey-regexp-alist): Add horizontal smiley faces. | |
5667 | |
5668 * lisp/leim/quail.el (quail-get-translation): Don't use | |
5669 `string-to-vector' for XEmacs. | |
5670 | |
5671 1997-06-13 Gary D. Foster <Gary.Foster@corp.Sun.COM> | |
5672 | |
5673 * lisp/modes/*.el: Removed all "\177" bindings that were | |
5674 previously commented out and normalized everything vis a vis | |
5675 'backspace and 'delete keysyms. | |
5676 * lisp/packages/*.el: Normalized all the "\177" bindings | |
384 | 5677 * lisp/modes/cperl-mode.el: Created cperl-electric-delete function |
161 | 5678 which is a "smart" version of the cperl-electric-backspace |
5679 function (it honors the desired delete direction). Bound it to | |
5680 'delete and the electric-backspace to 'backspace. | |
384 | 5681 * lisp/packages/pending-del.el: Added cperl-electric-backspace and |
161 | 5682 cperl-electric-delete to the 'supersede list. |
5683 | |
159 | 5684 1997-06-11 Steven L Baur <steve@altair.xemacs.org> |
5685 | |
5686 * XEmacs 20.3-b6 is released. | |
5687 | |
5688 * configure.in (GNU_MALLOC): Check for (-l)PW instead of (-l)-lPW. | |
5689 Suggested by Martin Buchholz <mrb@eng.sun.com> | |
5690 | |
5691 1997-06-11 Martin Buchholz <mrb@eng.sun.com> | |
5692 | |
384 | 5693 * src/Makefile.in: |
5694 * lwlib/Makefile.in: | |
5695 * lib-src/Makefile.in: | |
159 | 5696 * Makefile.in: More Makefile cleanup |
5697 - add .PHONY targets where necessary | |
5698 - remove most builtin rules using .SUFFIXES | |
5699 - -lXau only gets used for linking gnuserv binaries | |
5700 - No VPATH for root Makefile | |
5701 - remove gcc v1 support | |
384 | 5702 * configure.in: |
159 | 5703 - A new test to autodetect need to define NARROWPROTO, |
5704 needed by XFree86 | |
5705 - Consistently use idiom foo=`echo '' $foo | sed -s 's:^ ::' -e ...` | |
5706 - Immediately exit if SIZEOF_* tests fail. | |
5707 - Check for libPW | |
5708 - Use more sophisticated Xpm test that confirms xpm.h and libXpm | |
5709 are in sync. | |
384 | 5710 * src/s/linux.h: |
159 | 5711 * src/m/intel386.h: Yet another attempt to clean up linux defines. |
5712 | |
5713 1997-06-10 Steven L Baur <steve@altair.xemacs.org> | |
5714 | |
5715 * lib-src/pop.c: Correct incantation for pop.h. | |
5716 From Martin Buchholz <mrb@Eng.Sun.COM> | |
5717 | |
5718 Tue Jun 10 15:11:16 1997 Steven L Baur <steve@altair.xemacs.org> | |
5719 | |
5720 * configure.in (beta): Correct test looking for Beta number. | |
5721 | |
5722 1997-06-11 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5723 | |
5724 * src/Makefile.in.in, mule/language/misc-lang.el, | |
5725 mule/mule-load.el, mule/ipa-hooks.el: Use | |
5726 lisp/mule/language/misc-lang.el instead of lisp/mule/ipa-hooks.el; | |
5727 mule/ipa-hooks.el was deleted. | |
5728 | |
5729 1997-06-10 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5730 | |
5731 * Use lisp/mule/language/thai-util.el instead of | |
5732 lisp/mule/thai.el. | |
5733 | |
5734 * lisp/custom/wid-edit.el: Add widget `coding-system' for mule. | |
5735 | |
5736 * lisp/mule/thai-hooks.el, lisp/mule/mule-load.el: Use | |
5737 lisp/mule/language/thai.el instead of lisp/mule/thai-hooks.el. | |
5738 | |
5739 * lisp/mule/language/thai.el: modified for XEmacs. | |
5740 | |
5741 1997-06-09 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5742 | |
5743 * lisp/mule/mule-load.el, src/Makefile.in.in: Use | |
5744 lisp/mule/language/chinese.el, lisp/mule/language/cyrillic.el, | |
5745 lisp/mule/language/european.el, lisp/mule/language/greek.el, | |
5746 lisp/mule/language/japanese.el and lisp/mule/language/korean.el | |
5747 instead of lisp/mule/chinese-hooks.el, | |
5748 lisp/mule/cyrillic-hooks.el, lisp/mule/european-hooks.el, | |
5749 lisp/mule/greek-hooks.el, lisp/mule/japanese-hooks.el and | |
5750 lisp/mule/korean-hooks.el. | |
5751 | |
5752 * lisp/mule/language/*.el was imported from | |
5753 Emacs/mule-19.34.94-zeta. | |
5754 | |
5755 * Use lisp/mule/language/china-util.el instead of | |
5756 lisp/mule/chinese.el. | |
5757 | |
5758 1997-06-08 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5759 | |
5760 * lisp/apel/emu-x20.el (mime-charset-coding-system-alist): | |
5761 iso-8859-1, hz-gb-2312, cn-gb-2312, gb2312, cn-big5 and koi8-r | |
5762 were defined as coding-system. | |
5763 | |
5764 1997-06-07 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5765 | |
5766 * lisp/gnus/smiley.el (smiley-deformed-regexp-alist): Add Japanese | |
5767 smiley faces. | |
5768 | |
163 | 5769 1997-06-10 Gary D. Foster <Gary.Foster@corp.sun.com> |
384 | 5770 |
163 | 5771 * lisp/modes/view-less.el: Changed \177 bindings to 'delete |
5772 * lisp/modes/help.el: Changed \177 bindings to 'delete | |
5773 | |
5774 1997-06-10 Gary D. Foster <Gary.Foster@corp.sun.com> | |
5775 | |
5776 * lisp/prim/keydefs.el: Changed all 'delete key bindings to point to | |
5777 the `backward-or-forward-foo' functions. | |
5778 * lisp/prim/simple.el: | |
5779 - Renamed `delete-erases-forward' to `delete-key-deletes-forward'. | |
5780 - Removed `backspace-or-delete-hook' | |
5781 - Renamed `backspace-or-delete' to `backward-or-forward-delete-char' | |
5782 - Added functions: `backward-or-forward-kill-word' | |
5783 `backward-or-forward-kill-sentence' | |
5784 `backward-or-forward-kill-sexp' | |
5785 - Removed the zmacs hacks from all the `b-or-f-foo' functions and | |
5786 began playing nicely with pending-del. | |
5787 * lisp/modes/cc-mode.el: | |
5788 * lisp/modes/cperl-mode.el: Fixed references to delete functions | |
5789 to use the new names. | |
384 | 5790 |
157 | 5791 1997-06-09 Steven L Baur <steve@altair.xemacs.org> |
5792 | |
5793 * XEmacs 20.3-b5 is released. | |
5794 | |
155 | 5795 1997-06-05 Steven L Baur <steve@altair.xemacs.org> |
5796 | |
5797 * XEmacs 20.3-b4 is released. | |
5798 | |
5799 1997-06-04 Martin Buchholz <mrb@eng.sun.com> | |
5800 | |
5801 * src/*/*.h: Remove definitions of HAVE_UNION_WAIT, in accordance | |
5802 with new Autoconf 2 mechanisms. | |
5803 * src/syswait.h: | |
5804 * src/sysdep.c: | |
5805 * src/process.c: Use only Posix.1 sys/wait.h-defined symbols | |
5806 | |
5807 * src/s/netbsd.h: complete rewrite, use ORDINARY_LINK, #ifdef out | |
5808 old cruft that can be obtained from system header files. | |
5809 * lib-src/getopt*: Synch with FSF, remove compiler warnings. | |
384 | 5810 |
5811 * lib-src/b2m.c: | |
5812 * src/gifalloc.c: | |
5813 * lib-src/gnuslib.c: | |
5814 * lib-src/profile.c: | |
155 | 5815 * lib-src/movemail.c: Fix compiler warnings |
384 | 5816 |
155 | 5817 * lib-src/Makefile.in.in: Remove unused -DCONFIG_BROKETS flag |
5818 - Fix up compile flags for new etags version | |
5819 | |
384 | 5820 * man/xemacs/programs.texi: |
155 | 5821 * lib-src/etags.c: Upgraded to etags 12.11 |
5822 | |
5823 * src/config.h.in: Fix inline keyword support | |
384 | 5824 |
5825 * configure.in: Use a different mechanism for removing extra white | |
155 | 5826 space. Avoid using foo=`echo $bar`, which loses with various echos. |
5827 - new M4 macro XE_SPACE(var, words...) | |
5828 - Use autoconf 2's AC_HEADER_SYS_WAIT | |
5829 - Check for Xpm-XpmFree instead of Xpm-XpmReadFileToData to avoid | |
5830 linking with losing Xpm implementations | |
5831 - Check for correct wnn4 lib symbols | |
5832 - Only link with inline.o when using gcc | |
5833 - Support inline keywords inline, __inline, __inline__ | |
5834 - Ultrix now implies have_mmap=no | |
5835 - Sun sound in non-standard dirs now works | |
5836 - --native-sound-lib no longer ignored on HP & SGI | |
5837 - gpm configure tests moved after curses configure tests | |
163 | 5838 |
5839 1997-06-04 Gary D. Foster <Gary.Foster@corp.sun.com> | |
5840 | |
384 | 5841 * lisp/modes/cc-mode.el: Modified `c-electric-delete' to honor the |
163 | 5842 desired delete direction in both normal and "hungry" modes. |
384 | 5843 * lisp/modes/cperl-mode.el: Modified `cperl-electric-backspace' to |
163 | 5844 honor the desired delete direction. |
384 | 5845 |
155 | 5846 1997-05-30 Martin Buchholz <mrb@eng.sun.com> |
5847 | |
5848 * configure.in: Automagically compute -R path for gcc | |
5849 | |
163 | 5850 1997-05-30 Gary D. Foster <Gary.Foster@corp.sun.com> |
5851 | |
5852 * lisp/vm/vm-vars.el: Fixed delete key binding to call | |
5853 `vm-scroll-down' | |
384 | 5854 |
155 | 5855 Thu May 29 15:35:07 1997 Martin Buchholz <mrb@eng.sun.com> |
5856 | |
5857 * configure.in: Add support for Solaris2.6 -z ignore linker flags | |
5858 | |
5859 1997-05-29 Martin Buchholz <mrb@eng.sun.com> | |
5860 | |
5861 * configure.in: Replace standard Autoconf MMAP test with Neal | |
5862 Becker's replacement, hacked somewhat. | |
5863 | |
163 | 5864 1997-05-16 Gary D. Foster <Gary.Foster@corp.sun.com> |
5865 | |
5866 * lisp/prim/simple.el: Created `backspace-or-delete' function and | |
5867 `backspace-or-delete-hook' | |
5868 * lisp/prim/keydefs.el: Changed \177 bindings to point to new | |
5869 delete function. | |
5870 * lisp/modes/*.el: Removed conflicting \177 bindings. | |
5871 * lisp/modes/cc-mode.el: Modified `c-electric-delete' to use new | |
5872 delete bindings. | |
384 | 5873 * lisp/modes/cperl-mode.el: Modified `cperl-electric-backspace' to |
163 | 5874 use new delete bindings. |
384 | 5875 |
155 | 5876 1997-06-03 MORIOKA Tomohiko <morioka@jaist.ac.jp> |
5877 | |
5878 * lisp/x11/x-menubar.el (default-menubar): Add menu for Mule. | |
5879 | |
5880 * lisp/mule/mule-cmds.el: Menu for XEmacs were moved to | |
5881 x11/x-menubar.el. | |
5882 | |
5883 1997-06-03 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5884 | |
5885 * lisp/leim/quail.el: to avoid compiling warnings about | |
5886 overlay.el. | |
5887 | |
5888 1997-06-03 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5889 | |
5890 * lisp/leim/quail.el: to sync with quail.el of | |
5891 Emacs-19.34.94-zeta. | |
5892 | |
5893 * lisp/leim/quail/ziranma.el, lisp/leim/quail/tonepy.el, | |
5894 lisp/leim/quail/py.el, lisp/leim/quail/qj.el, | |
5895 lisp/leim/quail/sw.el, lisp/leim/quail/ccdospy.el, | |
5896 lisp/leim/quail/punct.el, lisp/leim/quail/4corner.el, | |
5897 lisp/leim/quail/symbol-ksc.el, lisp/leim/quail/ethiopic.el, | |
5898 lisp/leim/quail/hanja.el, lisp/leim/quail/quick-cns.el, | |
5899 lisp/leim/quail/tsangchi-cns.el, lisp/leim/quail/lrt.el, | |
5900 lisp/leim/quail/tsangchi-b5.el, lisp/leim/quail/devanagari.el, | |
5901 lisp/leim/quail/japanese.el, lisp/leim/quail/quick-b5.el, | |
5902 lisp/leim/quail/punct-b5.el, lisp/leim/quail/qj-b5.el, | |
5903 lisp/leim/quail/py-b5.el, lisp/leim/quail/ctlau.el, | |
5904 lisp/leim/quail/ctlaub.el, lisp/leim/quail/ecdict.el, | |
5905 lisp/leim/quail/array30.el, lisp/leim/quail/hangul3.el, | |
5906 lisp/leim/quail/hanja-jis.el, lisp/leim/quail/cyrillic.el, | |
5907 lisp/leim/quail/etzy.el, lisp/leim/quail/greek.el, | |
5908 lisp/leim/quail/ipa.el, lisp/leim/quail/lao.el, | |
5909 lisp/leim/quail/zozy.el, lisp/leim/quail/viqr.el, | |
5910 lisp/leim/quail/latin.el, lisp/leim/quail/thai.el, | |
5911 lisp/leim/quail/hangul.el: quail of LEIM for Emacs-19.34.94-zeta. | |
5912 | |
5913 1997-06-02 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5914 | |
5915 * mule/korean.el was abolished because it seems not to be used. | |
5916 | |
5917 * mule/japanese.el was abolished because it seems not to be used. | |
5918 | |
5919 1997-06-01 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5920 | |
5921 * lisp/tm/gnus-mime-old.el was abolished because XEmacs 20.3 has | |
5922 Gnus 5.4. | |
5923 | |
5924 * lisp/tm/tm-edit.el: updated to 7.108. | |
5925 | |
5926 * lisp/tm/tm-view.el: updated to 7.83. | |
5927 | |
5928 * lisp/leim/quail.el: modified for XEmacs. | |
5929 | |
5930 * lisp/mule/mule-load.el, lisp/mule/mule-process.el: delete | |
5931 mule-process.el because it is not used. | |
5932 | |
5933 * lisp/mule/european.el was abolished because it seems not to be | |
5934 used. | |
5935 | |
5936 * lisp/mule/mule-load.el: must load mule-cmds before setting for | |
5937 language-environment. | |
5938 | |
5939 * lisp/mule/european-hooks.el: Modified for LEIM. | |
5940 | |
5941 * lisp/mule/mule-cmds.el: Uncomment key definition for | |
5942 `toggle-input-method'. | |
5943 | |
5944 * lisp/mule/mule-init.el: Comment out about `mule-keymap' (moved | |
5945 to mule-cmds.el). | |
5946 | |
5947 * lisp/mule/mule-cmds.el: Uncomment about `mule-keymap' (moved | |
5948 from mule-init.el). | |
5949 | |
5950 * lisp/tl/tl-atype.el: Don't require tl-str. | |
5951 | |
5952 * lisp/tl/tl-atype.el: Use atype.el of APEL. | |
5953 | |
5954 * lisp/tl/tl-list.el: Use alist.el of APEL. | |
5955 | |
5956 1997-05-31 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5957 | |
5958 * lisp/tl/richtext.el, lisp/tl/emu-x20.el, lisp/tl/emu-xemacs.el, | |
5959 lisp/tl/emu.el, lisp/tl/emu-e19.el: moved to apel/. | |
5960 | |
5961 * lisp/tl/file-detect.el, lisp/tl/filename.el: replaced by APEL's. | |
5962 | |
5963 * lisp/mu/std11-parse.el, lisp/mu/std11.el: moved to apel/. | |
5964 | |
5965 * lisp/leim/quail.el: Add new quail.el (imported from Emacs | |
5966 19.34.94-epsilon). | |
5967 | |
5968 * lisp/leim/skk/skkdic.el: delete skkdic.el temporary because | |
5969 XEmacs can not compile it. | |
5970 | |
5971 * lisp/leim/skk/skkdic.el, lisp/leim/quail/zozy.el, | |
5972 lisp/leim/quail/ziranma.el, lisp/leim/quail/viqr.el, | |
5973 lisp/leim/quail/tsangchi-cns.el, lisp/leim/quail/tsangchi-b5.el, | |
5974 lisp/leim/quail/symbol-ksc.el, lisp/leim/quail/thai.el, | |
5975 lisp/leim/quail/tonepy.el, lisp/leim/quail/quick-cns.el, | |
5976 lisp/leim/quail/sw.el, lisp/leim/quail/qj-b5.el, | |
5977 lisp/leim/quail/qj.el, lisp/leim/quail/quick-b5.el, | |
5978 lisp/leim/quail/py-b5.el, lisp/leim/quail/py.el, | |
5979 lisp/leim/quail/lao.el, lisp/leim/quail/latin.el, | |
5980 lisp/leim/quail/lrt.el, lisp/leim/quail/punct-b5.el, | |
5981 lisp/leim/quail/punct.el, lisp/leim/quail/hanja-jis.el, | |
5982 lisp/leim/quail/hanja.el, lisp/leim/quail/ipa.el, | |
5983 lisp/leim/quail/japanese.el, lisp/leim/quail/hangul3.el, | |
5984 lisp/leim/quail/etzy.el, lisp/leim/quail/greek.el, | |
5985 lisp/leim/quail/hangul.el, lisp/leim/quail/ethiopic.el, | |
5986 lisp/leim/quail/devanagari.el, lisp/leim/quail/ecdict.el, | |
5987 lisp/leim/quail/ctlau.el, lisp/leim/quail/ctlaub.el, | |
5988 lisp/leim/quail/cyrillic.el, lisp/leim/quail/array30.el, | |
5989 lisp/leim/quail/ccdospy.el, lisp/leim/quail/4corner.el: Add LEIM | |
5990 elisp files; old lisp/quail was abolished. | |
5991 | |
5992 * src/Makefile.in.in: Add mule-cmds.elc. | |
5993 | |
5994 * lisp/mule/mule-load.el, lisp/mule/mule-cmds.el: Add mule-cmds.el | |
5995 (imported from Emacs-19.34.94-epsilon and comment out a lot to | |
5996 avoid conflict with mule-init.el or other XEmacs/mule files). | |
5997 | |
5998 * lisp/prim/simple.el (assoc-ignore-case): New function; imported | |
5999 from Emacs-19.34.94-epsilon. | |
6000 | |
153 | 6001 1997-05-29 Steven L Baur <steve@altair.xemacs.org> |
6002 | |
6003 * XEmacs 20.3-beta3 is released. | |
6004 | |
6005 * INSTALL: Delete documentation of mocklisp support. | |
6006 | |
6007 * configure.in: Delete mocklisp support. | |
6008 | |
6009 1997-05-29 Martin Buchholz <mrb@eng.sun.com> | |
6010 | |
6011 * configure.in: Replace standard Autoconf MMAP test with Neal | |
6012 Becker's replacement, hacked somewhat. | |
6013 | |
6014 1997-05-28 Martin Buchholz <mrb@eng.sun.com> | |
6015 | |
6016 * lisp/prim/files.el (auto-mode-alist): Reorg auto-mode-alist again. | |
6017 | |
6018 * lib-src/etags.c: Version 12.7 from Francesco. | |
6019 | |
6020 * configure.in: Juggle link order of X libraries. | |
6021 Add support for using zsh to run configure. | |
6022 Document --with-tty=no. | |
6023 Fix -no-recursion option. | |
6024 Recognize and ignore --cache-file option. | |
6025 Recognize null values for preprocessor symbols converted to shell | |
6026 variables. This maybe fixes the "-ltermcap" problem. | |
6027 Remove spurious blanks from various SUBST-ituted variables. | |
6028 Fix conditional creation of gdbinit. | |
6029 Conditionally create .sbinit for Sunpro C. | |
6030 | |
151 | 6031 1997-05-22 Steven L Baur <steve@altair.xemacs.org> |
6032 | |
6033 * XEmacs 20.3-beta2 is released. | |
6034 | |
6035 Thu May 22 04:19:09 1997 Martin Buchholz <mrb@eng.sun.com> | |
6036 | |
6037 * configure.in: Try to fix all reported bugs with 20.3-b1. | |
6038 Change HAVE_WNN6 to WNN6. WNN6 correctly autodetected. | |
6039 extra-verbose now default on beta builds. | |
6040 extra-verbose now much more verbose. | |
6041 Don't set libs_termcap to " ". | |
6042 Detect -lXm AFTER detecting -lXpm. | |
6043 Use runtime paths before running tests, since AC_TRY_RUN may | |
6044 depend on it. | |
6045 with-xim=motif only default on Solaris. | |
6046 realpath moved from s&m to configure.in. | |
384 | 6047 xemacs-version.h removed. main_1 now contains $canonical as well, |
151 | 6048 for even more useful backtraces. |
6049 termcap handling rewritten. | |
6050 Create .sbinit for Sun's source browser. | |
6051 Warn user if no XPM support present. | |
6052 Warn user if compiling in error checking. | |
6053 | |
384 | 6054 * Makefile.in: use MAKE_SUBDIR consistently. Remove references to |
151 | 6055 dynodump. Remove core when cleaning. Remove config.log. |
6056 make distclean now functional. | |
6057 | |
6058 Sun May 18 13:03:20 1997 Steven L Baur <steve@altair.xemacs.org> | |
6059 | |
6060 * lwlib/Makefile.in.in (distclean): Clean up config.h. | |
6061 | |
6062 * Makefile.in (distclean): Remve config.log. | |
6063 remove broken dynodump stuffs. | |
6064 | |
149 | 6065 Sat May 17 20:30:54 1997 Steven L Baur <steve@altair.xemacs.org> |
6066 | |
6067 * XEmacs 20.3-b1 is released. | |
6068 | |
6069 Fri May 16 20:38:19 1997 Steven L Baur <steve@altair.xemacs.org> | |
6070 | |
6071 * info/dir (Packages): Update minor version number. | |
6072 | |
6073 * README: Update minor version number. | |
6074 | |
146 | 6075 Tue May 13 20:35:52 1997 Steven L Baur <steve@altair.xemacs.org> |
6076 | |
6077 * XEmacs-20.2 is released. | |
6078 | |
144 | 6079 Sat May 10 16:14:30 1997 Steven L Baur <steve@altair.xemacs.org> |
6080 | |
6081 * XEmacs 20.2-b6 is released. | |
6082 | |
142 | 6083 Thu May 8 20:22:34 1997 Steven L Baur <steve@altair.xemacs.org> |
6084 | |
6085 * XEmacs 20.2-b5 is released. | |
6086 | |
140 | 6087 Fri May 2 16:50:02 1997 Steven L Baur <steve@altair.xemacs.org> |
6088 | |
6089 * XEmacs 20.2-b4 is released. | |
6090 | |
6091 Thu May 1 18:13:38 1997 Steven L Baur <steve@altair.xemacs.org> | |
6092 | |
6093 * configure.in (--with-xim): Don't default it to Motif since it | |
6094 causes crashes at startup on some systems. | |
6095 | |
138 | 6096 Sun Apr 27 12:25:55 1997 Steven L Baur <steve@altair.xemacs.org> |
6097 | |
6098 * XEmacs 20.2-b3 is released. | |
6099 | |
136 | 6100 Wed Apr 23 10:33:58 1997 Steven L Baur <steve@altair.xemacs.org> |
6101 | |
6102 * XEmacs 20.2-b2 is released. | |
6103 | |
6104 * configure.in (beta): OPENWINHOME misspelled. | |
6105 | |
134 | 6106 Sat Apr 19 16:13:16 1997 Steven L Baur <steve@altair.xemacs.org> |
6107 | |
6108 * XEmacs 20.2-b1 is released. | |
6109 | |
6110 Thu Apr 17 21:33:59 1997 Steven L Baur <steve@altair.xemacs.org> | |
6111 | |
6112 * configure.in (beta): SONY NEWS-OS has /etc/osversion and not | |
6113 uname. | |
6114 | |
131 | 6115 Wed Apr 16 17:44:05 1997 Steven L Baur <steve@altair.xemacs.org> |
6116 | |
6117 * XEmacs 20.1 is re-released. | |
6118 | |
126 | 6119 Tue Apr 15 21:03:22 1997 Steven L Baur <steve@altair.xemacs.org> |
6120 | |
6121 * XEmacs 20.1 is released. | |
6122 | |
124 | 6123 Sat Apr 12 20:11:08 1997 Steven L Baur <steve@altair.xemacs.org> |
6124 | |
6125 * XEmacs 20.1-b15 is released. | |
6126 | |
6127 Sat Apr 12 09:01:32 1997 Hrvoje Niksic <hniksic@srce.hr> | |
6128 * PROBLEMS: I have cleaned up a bit the PROBLEMS file, by: | |
6129 1) changing it into sections -- there is now a section for building, | |
6130 running and compatibility problems | |
6131 | |
6132 2) removing some obviously obsolete entries -- e.g. those pertaining | |
6133 to Emacs 18, etc. --> size is off by 20K | |
6134 | |
6135 3) Rearranging the entries by relevance. I have tried to put the most | |
6136 relevant entries in front. | |
384 | 6137 |
122 | 6138 Thu Apr 10 19:07:26 1997 Steven L Baur <steve@altair.xemacs.org> |
6139 | |
6140 * XEmacs 20.1-b14 is released. (Beta 13 was skipped). | |
6141 | |
120 | 6142 Wed Apr 9 22:52:06 1997 Steven L Baur <steve@altair.xemacs.org> |
6143 | |
6144 * XEmacs 20.1-b12 is released. | |
6145 | |
6146 Sun Apr 6 22:31:00 1997 Tatsuya Ichikawa <ichikawa@hv.epson.co.jp> | |
6147 | |
6148 * configure.in: Cosmetic change to summary print of POP/Kerberos/ | |
6149 Hesiod options. | |
6150 | |
118 | 6151 Sat Apr 5 09:11:36 1997 Steven L Baur <steve@altair.xemacs.org> |
6152 | |
6153 * XEmacs 20.1-b11 is released. | |
6154 | |
6155 Wed Apr 2 15:27:35 1997 Steven L Baur <steve@altair.xemacs.org> | |
6156 | |
384 | 6157 * Makefile.in (install-only): New target. Functionality suggested |
118 | 6158 by Larry Schwimmer, correct way of doing it suggested by Chuck |
6159 Thompson. | |
6160 | |
6161 * configure.in: Default to "-Olimit 2000" as suggested by Jamie | |
6162 Zawinski for SGI cc and Irix 6. | |
6163 | |
6164 Tue Apr 1 12:23:13 1997 Steven L Baur <steve@altair.xemacs.org> | |
6165 | |
6166 * configure.in: Add configuration parameters for Emacs 19.34 | |
6167 movemail.c (--with-pop, --with-kerberos, --with-hesiod). | |
6168 | |
6169 Fri Mar 28 19:58:41 1997 Steven L Baur <steve@altair.xemacs.org> | |
6170 | |
6171 * configure.in: Remove garbage if [ ... ] constructs and a | |
6172 mispatch. | |
6173 | |
116 | 6174 Thu Mar 27 18:24:19 1997 Steven L Baur <steve@altair.xemacs.org> |
6175 | |
6176 * XEmacs 20.1-b10 is released. | |
6177 | |
6178 Wed Mar 26 22:31:10 1997 Steven L Baur <steve@altair.xemacs.org> | |
6179 | |
6180 * Remove vms top-level directory. | |
384 | 6181 |
116 | 6182 * XEmacs 19.15 final released to beta testers. |
6183 | |
6184 Tue Mar 25 19:13:27 1997 Steven L Baur <steve@altair.xemacs.org> | |
6185 | |
6186 * XEmacs 19.15 prefinal released to beta testers. | |
6187 | |
6188 Mon Mar 24 12:28:17 1997 Steven L Baur <steve@altair.xemacs.org> | |
6189 | |
6190 * configure.in (--debug): Correct documentation. | |
6191 | |
6192 Sun Mar 23 17:24:38 1997 Steven L Baur <steve@altair.xemacs.org> | |
6193 | |
6194 * XEmacs 19.15-b104 is released. | |
6195 | |
6196 Sat Mar 22 17:55:15 1997 Darrell Kindred <dkindred@cmu.edu> | |
6197 | |
6198 * configure.in (beta): Add configure support for the -rpath flag | |
6199 for IRIX analogous to the Solaris "-R". | |
6200 | |
6201 Sat Mar 22 16:47:08 1997 Steven L Baur <steve@altair.xemacs.org> | |
6202 | |
6203 * info/dir (Packages): Add HM-HTML-Mode to menu. | |
6204 | |
6205 Sat Mar 22 21:27:41 1997 Tomasz J. Cholewo <t.cholewo@ieee.org> | |
6206 | |
424 | 6207 * configure.in: Echo only current configuration using 'tee -a'. |
116 | 6208 |
114 | 6209 Fri Mar 21 21:26:01 1997 Steven L Baur <steve@altair.xemacs.org> |
6210 | |
6211 * XEmacs-19.15-b103 is released. | |
6212 * XEmacs-20.0-b9 is released. | |
6213 | |
6214 * Makefile.in (top_distclean): Add `Installation' to distclean | |
6215 rule. | |
6216 | |
6217 Fri Mar 21 20:05:29 1997 Darrell Kindred <dkindred@cmu.edu> | |
6218 | |
6219 * Makefile.in (autoloads): Pass $(MAKE) to update-elc.sh and | |
6220 update-autoloads.sh. | |
6221 | |
6222 Thu Mar 20 20:14:16 1997 Steven L Baur <steve@altair.xemacs.org> | |
6223 | |
6224 * XEmacs-19.15-b102 is released. | |
6225 | |
6226 Tue Mar 18 21:52:36 1997 Steven L Baur <steve@altair.xemacs.org> | |
6227 | |
6228 * XEmacs-19.15-b101 is released. | |
6229 | |
112 | 6230 Mon Mar 17 19:09:29 1997 Steven L Baur <steve@altair.xemacs.org> |
6231 | |
6232 * XEmacs-20.1-b8 is released. | |
6233 * XEmacs-19.15-b100 is released. | |
6234 | |
110 | 6235 Sat Mar 15 17:15:18 1997 Steven L Baur <steve@altair.xemacs.org> |
6236 | |
112 | 6237 * XEmacs-20.1-b7 is released. |
6238 * XEmacs-19.15-b99 is released. | |
6239 | |
110 | 6240 Thu Mar 13 10:40:11 1997 Steven L Baur <steve@altair.xemacs.org> |
6241 | |
6242 * configure.in: Add sunos4-1-4 header files. | |
6243 | |
6244 Wed Mar 12 18:53:08 1997 Steven L Baur <steve@altair.xemacs.org> | |
6245 | |
6246 * configure.in: Use new file bsdos3.h with BSDI 3.0. | |
6247 | |
108 | 6248 Sat Mar 8 15:19:33 1997 Steven L Baur <steve@altair.xemacs.org> |
6249 | |
6250 * XEmacs-20.1-b6 is released. | |
6251 * XEmacs-19.15-b98 is released. | |
6252 | |
6253 Wed Mar 5 18:55:36 1997 Steven L Baur <steve@altair.xemacs.org> | |
6254 | |
6255 * Makefile.in (install-arch-indep): Offer to compress lisp sources. | |
6256 (gzip-el): New targe for compressed installed lisp sources. | |
6257 | |
6258 Tue Mar 4 23:28:37 1997 Martin Buchholz <mrb@eng.sun.com> | |
6259 | |
6260 * lib-src/update-elc.sh: VM is compiled after the byte-compiler, | |
6261 but before anything else. More flexible about finding an xemacs | |
6262 to use for byte-compilation (default src/xemacs). Other minor fixes. | |
6263 | |
106 | 6264 Mon Mar 3 23:57:56 1997 Steven L Baur <steve@altair.xemacs.org> |
6265 | |
6266 * XEmacs 20.1-b5 is released. | |
6267 | |
104 | 6268 Mon Mar 3 18:09:17 1997 Steven L Baur <steve@altair.xemacs.org> |
6269 | |
6270 * XEmacs 20.1-b4 is released. | |
6271 | |
6272 Sat Mar 1 15:38:30 1997 Steven L Baur <steve@altair.xemacs.org> | |
6273 | |
6274 * Makefile.in (distclean): Correct typos. | |
6275 | |
6276 * XEmacs 19.15-b96 is released. | |
6277 | |
6278 * configure.in: Symlink site-lisp when using --srcdir. | |
6279 Add special handling of lisp directory to allow for multiple | |
6280 site-packages files. | |
6281 | |
6282 Fri Feb 28 20:38:46 1997 Steven L Baur <steve@altair.xemacs.org> | |
6283 | |
6284 * Makefile.in (distclean): Create lock and site-lisp directories | |
6285 when they don't exist (after being pruned by CVS). | |
6286 | |
102 | 6287 Wed Feb 26 22:12:12 1997 Steven L Baur <steve@altair.xemacs.org> |
6288 | |
6289 * Makefile.in (top_distclean): Reset src/PURESIZE.h for | |
6290 distribution. | |
6291 | |
6292 * XEmacs 20.1-b3 is released. | |
6293 | |
100 | 6294 Sun Feb 23 17:10:09 1997 Steven L Baur <steve@altair.xemacs.org> |
6295 | |
6296 * XEmacs 20.1-b2 is released. | |
6297 | |
6298 Sat Feb 22 14:29:44 1997 Steven L Baur <steve@altair.xemacs.org> | |
6299 | |
6300 * XEmacs 19-15-b'95 is released. | |
6301 | |
102 | 6302 Fri Feb 21 22:29:51 1997 Martin Buchholz <mrb@eng.sun.com> |
6303 | |
6304 * lwlib/xlwscrollbar.c : Fix many scrollbar bugs: | |
6305 - "knob" renamed to "slider" | |
6306 - leftmost pixel wasn't sensitive to button clicks, while righmost | |
6307 pixel was. | |
6308 - many glitches fixed if Emacs*XlwScrollBar.ArrowPosition:same: | |
6309 - goobers on top of up-arrow removed. | |
6310 - up-arrow would not always be redrawn when necessary | |
6311 - slider drag would be `off' by size of up-arrow | |
6312 - horizontal and vertical scrollbars didn't use exactly the same | |
6313 dimensions. | |
6314 - slider was never drawn if XlwScrollBar.shadowThickness was 0. | |
6315 - Now up- and down-arrows actually work near beginning/end of buffer! | |
6316 | |
100 | 6317 Thu Feb 20 12:40:57 1997 Jan Vroonhof <vroonhof@math.ethz.ch> |
6318 | |
6319 * configure.in (with_xauth): Attempted correction of test for | |
6320 libXmu on SunOS. | |
6321 | |
98 | 6322 Sat Feb 15 14:11:03 1997 Steven L Baur <steve@altair.xemacs.org> |
6323 | |
6324 * XEmacs 20.1-b1 is released. | |
6325 * XEmacs 19.15-b94 is released. | |
6326 | |
6327 Fri Feb 14 23:23:03 1997 Steven L Baur <steve@altair.xemacs.org> | |
6328 | |
6329 * README: ``This directory tree holds version 19.13 ...'' ??? | |
6330 | |
6331 Sun Feb 9 16:15:55 1997 Steven L Baur <steve@altair.xemacs.org> | |
6332 | |
6333 * XEmacs 19.15-b93 is released. | |
6334 XEmacs 20.0 is released to the 'net. | |
6335 | |
96 | 6336 Fri Feb 7 19:21:34 1997 Steven L Baur <steve@altair.xemacs.org> |
6337 | |
6338 * XEmacs 20.0try3 is released. | |
6339 | |
94 | 6340 Wed Feb 5 18:03:06 1997 Steven L Baur <steve@altair.xemacs.org> |
6341 | |
96 | 6342 * XEmacs 20.0try2 is released. |
94 | 6343 |
96 | 6344 Mon Feb 3 19:39:08 1997 Steven L Baur <steve@altair.xemacs.org> |
94 | 6345 |
6346 * XEmacs 19.15-b92 is released. | |
6347 | |
88 | 6348 Sat Feb 1 18:17:38 1997 Steven L Baur <steve@altair.xemacs.org> |
6349 | |
96 | 6350 * XEmacs 20.0try1 is released. |
94 | 6351 * XEmacs 19.15-b91 AKA XEmacs '97 NOT! is released. |
88 | 6352 |
6353 Sat Feb 1 00:00:48 1997 Steven L Baur <steve@altair.xemacs.org> | |
6354 | |
6355 * PROBLEMS: Updated from beta test bug reports. | |
6356 Put in outline-mode/outl-mouse-minor-mode by default. | |
6357 | |
6358 Wed Jan 29 19:59:41 1997 Steven L Baur <steve@altair.xemacs.org> | |
6359 | |
6360 * CHANGES-beta: XEmacs 20.0-b93 is released. | |
6361 | |
84 | 6362 Sat Jan 25 15:43:59 1997 Steven L Baur <steve@altair.xemacs.org> |
6363 | |
6364 * CHANGES-beta: XEmacs 20.0-b92 is released. | |
6365 | |
6366 Fri Jan 24 09:54:01 1997 Steven L Baur <steve@altair.xemacs.org> | |
6367 | |
6368 * lwlib/xlwmenu.c (massage_resource_name): Changed comparison of | |
6369 char and pointer. | |
6370 | |
6371 Thu Jan 23 10:39:34 1997 Martin Buchholz <mrb@eng.sun.com> | |
6372 | |
6373 * lib-src/update-elc.sh (ignore_dirs): Quoting portability. | |
6374 | |
82 | 6375 Wed Jan 22 21:07:17 1997 Steven L Baur <steve@altair.xemacs.org> |
6376 * XEmacs 20.0-b91 (prerelease 2) is released. | |
6377 | |
6378 * configure.in (--with-scrollbars): Add Athena3d as a toolkit | |
6379 type. | |
6380 | |
6381 * lwlib/lwlib-Xaw.c (xaw_update_one_widget): Let Athena 3d have 0 | |
6382 borderwidth. | |
6383 (xaw_scrollbar_scroll): Use SCROLLBAR_LINE_UP and | |
6384 SCROLLBAR_LINE_DOWN since that's current the only to get to the | |
6385 bottom of the buffer. :-( | |
6386 | |
6387 Tue Jan 21 20:01:19 1997 Steven L. Baur <steve@altair.xemacs.org> | |
6388 | |
6389 * configure.in (beta): Add LWLIB_USES_ATHENA for odd | |
6390 configurations that use both Motif and Athena. | |
6391 | |
6392 Wed Jan 15 12:55:19 1997 Steven L Baur <steve@altair.xemacs.org> | |
6393 | |
6394 * info/dir (Gnus): Updated spelling and info. | |
6395 | |
6396 Mon Jan 13 13:37:27 1997 Steven L Baur <steve@altair.xemacs.org> | |
6397 | |
6398 * configure.in: Remove assignment of NON_GNU_CPP for irix-6.0. | |
6399 | |
6400 Mon Jan 13 00:36:01 1997 Martin Buchholz <mrb@eng.sun.com> | |
6401 | |
6402 * lib-src/make-docfile.c (scan_lisp_file): eliminate doc-string | |
6403 warnings for ccl-read-* | |
6404 | |
80 | 6405 Sat Jan 11 12:05:31 1997 Steven L Baur <steve@altair.xemacs.org> |
82 | 6406 |
80 | 6407 * XEmacs 20.0 beta90 (prerelease 1) is released. |
6408 * XEmacs 19.15 beta90 (prerelease 1) is released. | |
384 | 6409 |
80 | 6410 Tue Jan 7 08:45:16 1997 Steven L Baur <steve@altair.xemacs.org> |
6411 | |
6412 * configure.in (LIBS): Revise test for XFree86 (look for XF86Config). | |
6413 | |
78 | 6414 Sat Jan 4 14:52:57 1997 Steven L Baur <steve@altair.xemacs.org> |
6415 * XEmacs 20.0 beta 34 is released. | |
6416 * XEmacs 19.15 beta 7 is released. | |
6417 | |
177 | 6418 Fri Jan 3 15:18:59 1997 Jeff Miller <jmiller@smart.net> |
78 | 6419 |
6420 * lwlib/Makefile.in.in: lwlib is required if X11 is used. | |
6421 | |
80 | 6422 Wed Jan 1 08:30:48 1997 Martin Buchholz <mrb@eng.sun.com> |
6423 | |
384 | 6424 * src/emacs.c: Make sure |
6425 `./temacs -batch -l loadup.el run-temacs <emacs-args>' | |
80 | 6426 works properly |
6427 | |
6428 * src/Makefile.in.in (rtcmacs): Add support for RTC, Sun's | |
6429 competitor to Purify. | |
6430 | |
6431 * man/lispref/symbols.texi: Fix up bit vector documentation | |
6432 * man/lispref/sequences.texi: Fix up bit vector documentation | |
6433 | |
6434 * lisp/sunpro/sunpro-load.el: Only preload mime-setup for Sun. | |
6435 | |
6436 * lisp/prim/update-elc.el: Don't rely on autoloads. | |
6437 | |
6438 Tue Dec 31 09:46:13 1996 Martin Buchholz <mrb@eng.sun.com> | |
6439 | |
6440 * lisp/prim/auto-autoloads.el: New, completely program-generated, file | |
6441 * lib-src/update-autoloads.sh: Rewritten to use auto-autoloads.el. | |
6442 * lisp/utils/autoload.el: Reorganization of autoload mechanism: | |
6443 Errors during autoload generation are just that - errors. | |
384 | 6444 |
80 | 6445 Generated autoloads are now in a separate file of their own. |
384 | 6446 |
80 | 6447 Reliability of autoload generation greatly increased. |
384 | 6448 |
80 | 6449 Distribution smaller by about 100k. |
384 | 6450 |
80 | 6451 `make autoloads' is still the preferred mechanism for update. |
384 | 6452 |
80 | 6453 Autoloads are always regenerated completely from scratch. This |
6454 avoids errors with obsolete or corrupted autoload entries. | |
6455 | |
6456 Caching of autoload entries using timestamps has been eliminated. | |
384 | 6457 |
80 | 6458 Files that have no autoloads no longer have a comment placed into |
6459 the generated autoloads file. | |
6460 | |
6461 There was a bug where autoload entries would sometimes end up | |
6462 being inserted into the *middle* of other autoload entries, | |
6463 thereby corrupting them. | |
6464 | |
6465 * src/event-Xt.c: Remove SUNOS_GCC_L0_BUG kludge. | |
6466 | |
6467 Sun Dec 29 05:37:43 1996 Martin Buchholz <mrb@eng.sun.com> | |
6468 | |
6469 * lib-src/update-autoloads.sh: Make sure that `make autoloads' | |
6470 doesn't use the autoload facility to load `autoload'; | |
6471 load it explicity instead. | |
6472 | |
6473 * lib-src/update-elc.sh (ignore_dirs): ignore SCCS, CVS, RCS dirs | |
6474 | |
6475 * man/Makefile: Reinstate hyperbole & oo-browser manuals | |
6476 | |
6477 * lisp/modes/mail-abbrevs.el: Apply patch originated from Noah Friedman | |
6478 | |
6479 * src/mule-charset.c: Use lower case for charset registry, to | |
6480 match XLFD. | |
6481 | |
6482 * Makefile.in: replace list of info files with *.info* - one less | |
6483 maintenance headache | |
6484 | |
6485 * man/oo-browser.texi: Fix TeXability | |
6486 | |
6487 * man/hyperbole.texi: Fix TeXability | |
6488 | |
6489 * man/vhdl-mode.texi: Fix TeXability | |
6490 | |
6491 * lisp/prim/loaddefs.el: Wholesale housecleaning | |
6492 `make autoloads' should finally work. | |
6493 | |
6494 * lib-src/emacsclient.c (main): ANSIfication, compiler warning removal | |
6495 | |
6496 * lisp/mule/mule-files.el: Add support for multi-lingual info files. | |
6497 | |
6498 * lib-src/update-elc.sh: `make all-elc' was updating files in | |
6499 `special' directories without using the Makefiles | |
6500 designed for that purpose. | |
6501 - make sure ilisp isn't remade every time through `make all-elc'. | |
6502 | |
6503 * info/dir (Packages): Add Japanese TM info files | |
6504 | |
6505 * src/inline.c: Allow compilation with `gcc -g' | |
6506 | |
6507 * src/syntax.c (word_constituent_p): Allow compilation with `gcc -g' | |
6508 | |
6509 * src/lread.c: Don't put `...' immediately after a filename, so | |
6510 that various tools can recognize the filename as such. | |
6511 | |
6512 * src/event-Xt.c (x_to_emacs_keysym): Fix crash when | |
384 | 6513 --with-xim=xlib and key event on window frame. |
80 | 6514 Change return foo to return (foo) when return is a macro. |
6515 | |
6516 * src/editfns.c (Ffollowing_char): docstring fixes. | |
6517 | |
6518 * man/tm/Makefile: Add support for Japanese TM info (but not dvi) files. | |
6519 This Makefile is no longer officially broken. | |
6520 | |
6521 * info/dir: Add Japanese tm documents. | |
6522 | |
6523 * man/tm/tm-vm-en.texi: Make document TeX-friendly. | |
6524 | |
6525 * lib-src/update-autoloads.sh (EMACS): Don't rely on non-portable | |
6526 xargs -i flag. | |
6527 | |
6528 * lisp/mule/mule-files.el (file-coding-system-alist): Make sure | |
6529 the `binary' coding system is used for .gz and .Z extensions. | |
6530 | |
6531 * man/viper.texi: Viper version 2.90 | |
6532 | |
6533 * man/ediff.texi: Ediff Version 2.62 | |
6534 | |
6535 * lisp/packages/ispell.el (ispell-word): Avoid using strings with | |
6536 define-key, for compatibility with loaddefs.el | |
6537 | |
6538 * lisp/modes/eiffel3.el: Make compatible with update-autoloads. | |
6539 | |
6540 * lisp/ilisp/Makefile (elc): Add target to avoid re-compilation. | |
6541 | |
6542 * lib-src/update-elc.sh: XEmacs sometimes re-byte-compiled elisp | |
6543 files in dirs that have their own Makefiles. | |
6544 | |
78 | 6545 Sun Dec 29 17:02:49 1996 Steven L Baur <steve@altair.xemacs.org> |
6546 | |
6547 * Makefile.in (install-arch-indep): Force compression with `gzip -f'. | |
6548 | |
6549 * lib-src/update-elc.sh (NUMTOCOMPILE): Ignore CVS directories. | |
6550 | |
6551 * Makefile.in (install-arch-indep): Catch .info-[0-9]* files for | |
6552 installation. | |
6553 | |
6554 Sat Dec 28 15:33:27 1996 Steven L Baur <steve@altair.xemacs.org> | |
6555 | |
6556 * XEmacs 20.0 beta 33 is released. | |
6557 * XEmacs 19.15 beta 6 is released. | |
6558 | |
76 | 6559 Fri Dec 27 01:02:41 1996 Martin Buchholz <mrb@eng.sun.com> |
6560 | |
6561 * Makefile.in (install-arch-indep): Simplify installation of info | |
6562 pages. | |
6563 | |
6564 Sat Dec 21 15:20:20 1996 Steven L Baur <steve@altair.xemacs.org> | |
6565 * XEmacs 20.0-b32 released. | |
6566 | |
6567 * XEmacs 19.15-b5 released. | |
6568 | |
74 | 6569 Wed Dec 18 20:22:08 1996 Martin Buchholz <mrb@eng.sun.com> |
6570 | |
6571 * configure.in: Reformat. Fix shared include file rename | |
6572 problem. | |
6573 | |
6574 * configure: Reformat. Fix shared include file rename problem. | |
6575 | |
6576 * dynodump/dynodump.c (__EXTENSIONS__): Define it. | |
6577 | |
6578 Thu Dec 12 13:19:00 1996 Joseph J Nuspl <nuspl@nvwls.cc.purdue.edu> | |
6579 | |
6580 * Makefile.in (install-arch-indep): Install infofiles gzipped by | |
6581 default. | |
6582 | |
6583 Tue Dec 10 19:25:25 1996 Steven L Baur <steve@altair.xemacs.org> | |
6584 | |
6585 * CHANGES-beta: XEmacs 20.0-b31 is released. | |
6586 | |
72 | 6587 Tue Dec 10 18:33:19 1996 Rod Whitby <rwhitby@asc.sps.mot.com> |
6588 | |
6589 * info/vhdl-mode.info: New file. | |
6590 | |
6591 * info/dir (Packages): Add vhdl-mode documentation. | |
6592 | |
6593 Tue Dec 10 18:27:02 1996 Martin Buchholz <mrb@Eng.Sun.COM> | |
6594 | |
6595 * configure: Make shared/dynamic flags work much more logically. | |
6596 | |
6597 Tue Dec 10 09:17:22 1996 David Worenklein <dcw@gcm.com> | |
6598 | |
6599 * configure.in (machine): Patch to make newly renamed shared | |
6600 link include files work. | |
6601 | |
6602 Sat Dec 7 16:28:10 1996 Martin Buchholz <mrb@Eng.Sun.COM> | |
6603 | |
6604 * configure.in: Configure for POSIX getcwd if available. | |
6605 | |
6606 Thu Dec 5 11:56:05 1996 Joseph J Nuspl <nuspl@nvwls.cc.purdue.edu> | |
6607 | |
6608 * configure.in (LIBS): Fix typo in dialog box test. |