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