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