Mercurial > hg > xemacs-beta
annotate nt/ChangeLog @ 5142:f965e31a35f0
reduce lcrecord headers to 2 words, rename printing_unreadable_object
-------------------- ChangeLog entries follow: --------------------
man/ChangeLog addition:
2010-03-13 Ben Wing <ben@xemacs.org>
* internals/internals.texi (Working with Lisp Objects):
* internals/internals.texi (Writing Macros):
* internals/internals.texi (lrecords):
More rewriting to correspond with changes from
*LRECORD* to *LISP_OBJECT*.
modules/ChangeLog addition:
2010-03-13 Ben Wing <ben@xemacs.org>
* postgresql/postgresql.c (print_pgconn):
* postgresql/postgresql.c (print_pgresult):
printing_unreadable_object -> printing_unreadable_object_fmt.
2010-03-13 Ben Wing <ben@xemacs.org>
* ldap/eldap.c (print_ldap):
printing_unreadable_object -> printing_unreadable_object_fmt.
src/ChangeLog addition:
2010-03-13 Ben Wing <ben@xemacs.org>
* alloc.c (alloc_sized_lrecord_1):
* alloc.c (alloc_sized_lrecord_array):
* alloc.c (old_alloc_sized_lcrecord):
* alloc.c (disksave_object_finalization_1):
* alloc.c (mark_lcrecord_list):
* alloc.c (alloc_managed_lcrecord):
* alloc.c (free_managed_lcrecord):
* alloc.c (tick_lcrecord_stats):
* alloc.c (sweep_lcrecords_1):
* buffer.c (print_buffer):
* buffer.c (DEFVAR_BUFFER_LOCAL_1):
* casetab.c:
* casetab.c (print_case_table):
* console.c (print_console):
* console.c (DEFVAR_CONSOLE_LOCAL_1):
* data.c (print_weak_list):
* data.c (print_weak_box):
* data.c (print_ephemeron):
* data.c (ephemeron_equal):
* database.c (print_database):
* database.c (finalize_database):
* device-msw.c (sync_printer_with_devmode):
* device-msw.c (print_devmode):
* device-msw.c (finalize_devmode):
* device.c:
* device.c (print_device):
* elhash.c:
* elhash.c (print_hash_table):
* eval.c (print_subr):
* eval.c (print_multiple_value):
* event-stream.c (event_stream_resignal_wakeup):
* events.c (clear_event_resource):
* events.c (zero_event):
* events.c (print_event):
* extents.c:
* extents.c (print_extent):
* file-coding.c (print_coding_system):
* font-mgr.c:
* font-mgr.c (Ffc_init):
* frame.c:
* frame.c (print_frame):
* gc.c:
* gc.c (GC_CHECK_NOT_FREE):
* glyphs.c:
* glyphs.c (print_image_instance):
* glyphs.c (print_glyph):
* gui.c (print_gui_item):
* gui.c (copy_gui_item):
* keymap.c (print_keymap):
* keymap.c (MARKED_SLOT):
* lisp.h:
* lisp.h (struct Lisp_String):
* lisp.h (DEFUN):
* lisp.h (DEFUN_NORETURN):
* lrecord.h:
* lrecord.h (NORMAL_LISP_OBJECT_UID):
* lrecord.h (struct lrecord_header):
* lrecord.h (set_lheader_implementation):
* lrecord.h (struct old_lcrecord_header):
* lrecord.h (struct free_lcrecord_header):
* marker.c (print_marker):
* mule-charset.c:
* mule-charset.c (print_charset):
* objects.c (print_color_instance):
* objects.c (print_font_instance):
* objects.c (finalize_font_instance):
* print.c (print_cons):
* print.c (printing_unreadable_object_fmt):
* print.c (printing_unreadable_lisp_object):
* print.c (external_object_printer):
* print.c (internal_object_printer):
* print.c (debug_p4):
* print.c (ext_print_begin):
* process.c (print_process):
* rangetab.c (print_range_table):
* rangetab.c (range_table_equal):
* scrollbar.c (free_scrollbar_instance):
* specifier.c (print_specifier):
* specifier.c (finalize_specifier):
* symbols.c (guts_of_unbound_marker):
* symeval.h:
* symeval.h (DEFVAR_SYMVAL_FWD):
* tooltalk.c:
* tooltalk.c (print_tooltalk_message):
* tooltalk.c (print_tooltalk_pattern):
* ui-gtk.c (ffi_object_printer):
* ui-gtk.c (emacs_gtk_object_printer):
* ui-gtk.c (emacs_gtk_boxed_printer):
* window.c (print_window):
* window.c (free_window_mirror):
* window.c (debug_print_window):
* xemacs.def.in.in:
(1) printing_unreadable_object -> printing_unreadable_object_fmt.
(2) printing_unreadable_lcrecord -> printing_unreadable_lisp_object
and fix up so it no longer requires an lcrecord.
These previous changes eliminate most of the remaining places where
the terms `lcrecord' and `lrecord' occurred outside of specialized
code.
(3) Fairly major change: Reduce the number of words in an lcrecord
from 3 to 2. The third word consisted of a uid that duplicated the
lrecord uid, and a single free bit, which was moved into the lrecord
structure. This reduces the size of the `uid' slot from 21 bits to
20 bits. Arguably this isn't enough -- we could easily have more than
1,000,000 or so objects created in a session. The answer is
(a) It doesn't really matter if we overflow the uid field because
it's only used for debugging, to identify an object uniquely
(or pretty much so).
(b) If we cared about it overflowing and wanted to reduce this,
we could make it so that cons, string, float and certain other
frob-block types that never print out the uid simply don't
store a uid in them and don't increment the lrecord_uid_counter.
(4) In conjunction with (3), create new macro NORMAL_LISP_OBJECT_UID()
and use it to abstract out the differences between NEWGC and old-GC
in accessing the `uid' value from a "normal Lisp Object pointer".
(5) In events.c, use zero_nonsized_lisp_object() in place of custom-
written equivalent. In font-mgr.c use external_object_printer()
in place of custom-written equivalents.
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Sat, 13 Mar 2010 05:38:08 -0600 |
parents | 818eeb72e0fb |
children | 85b327aa1b47 |
rev | line source |
---|---|
5087 | 1 2010-03-02 Jerry James <james@xemacs.org> |
2 | |
3 * xemacs.mak (INFO_FILES): Removed custom.info. | |
4 | |
5032
9b80fa04e7d7
Fix Windows build by removing reference to no longer existent term.texi file
Vin Shelton <acs@xemacs.org>
parents:
5030
diff
changeset
|
5 2010-02-18 Vin Shelton <acs@xemacs.org> |
9b80fa04e7d7
Fix Windows build by removing reference to no longer existent term.texi file
Vin Shelton <acs@xemacs.org>
parents:
5030
diff
changeset
|
6 |
9b80fa04e7d7
Fix Windows build by removing reference to no longer existent term.texi file
Vin Shelton <acs@xemacs.org>
parents:
5030
diff
changeset
|
7 * xemacs.mak (INFO_FILES): Removed term.info. |
9b80fa04e7d7
Fix Windows build by removing reference to no longer existent term.texi file
Vin Shelton <acs@xemacs.org>
parents:
5030
diff
changeset
|
8 |
5030 | 9 2010-02-11 Vin Shelton <acs@xemacs.org> |
10 | |
11 * xemacs.mak (LIB_SRC_DEFINES): Added PROGRAM_DEFINES to lib_src | |
12 compilation options so winclient.c can see them. | |
13 | |
4927
5274591ce707
Add copyright and license information for Jonathan Harris's contributions.
Jerry James <james@xemacs.org>
parents:
4894
diff
changeset
|
14 2010-02-03 Jerry James <james@xemacs.org> |
5274591ce707
Add copyright and license information for Jonathan Harris's contributions.
Jerry James <james@xemacs.org>
parents:
4894
diff
changeset
|
15 |
5274591ce707
Add copyright and license information for Jonathan Harris's contributions.
Jerry James <james@xemacs.org>
parents:
4894
diff
changeset
|
16 * xemacs.rc: Add license and copyright boilerplate text for Jonathan |
5274591ce707
Add copyright and license information for Jonathan Harris's contributions.
Jerry James <james@xemacs.org>
parents:
4894
diff
changeset
|
17 Harris. |
5274591ce707
Add copyright and license information for Jonathan Harris's contributions.
Jerry James <james@xemacs.org>
parents:
4894
diff
changeset
|
18 * xpm.mak: Ditto. |
5274591ce707
Add copyright and license information for Jonathan Harris's contributions.
Jerry James <james@xemacs.org>
parents:
4894
diff
changeset
|
19 |
4894
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
4790
diff
changeset
|
20 2010-01-28 Jerry James <james@xemacs.org> |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
4790
diff
changeset
|
21 |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
4790
diff
changeset
|
22 * compface.mak: Add license and copyright boilerplate text based |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
4790
diff
changeset
|
23 on Ben's recollections. |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
4790
diff
changeset
|
24 * tiff.mak: Ditto. |
03ab78e48ef6
Add copyright and license information based on Ben's recollections.
Jerry James <james@xemacs.org>
parents:
4790
diff
changeset
|
25 |
4790
bc4f2511bbea
Remove support for the OffiX drag-and-drop protocol. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
4773
diff
changeset
|
26 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:
4773
diff
changeset
|
27 |
bc4f2511bbea
Remove support for the OffiX drag-and-drop protocol. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
4773
diff
changeset
|
28 * xemacs.dsp: Remove references to OffiX files. |
bc4f2511bbea
Remove support for the OffiX drag-and-drop protocol. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
4773
diff
changeset
|
29 |
4773
c858892e4f2b
Remove build rules that try to make wakeup out of the now nonexistent wakeup.c.
Jerry James <james@xemacs.org>
parents:
4772
diff
changeset
|
30 2009-12-15 Jerry James <james@xemacs.org> |
c858892e4f2b
Remove build rules that try to make wakeup out of the now nonexistent wakeup.c.
Jerry James <james@xemacs.org>
parents:
4772
diff
changeset
|
31 |
c858892e4f2b
Remove build rules that try to make wakeup out of the now nonexistent wakeup.c.
Jerry James <james@xemacs.org>
parents:
4772
diff
changeset
|
32 * xemacs.mak: Remove build dependency for lib-src/wakeup. Thanks to |
c858892e4f2b
Remove build rules that try to make wakeup out of the now nonexistent wakeup.c.
Jerry James <james@xemacs.org>
parents:
4772
diff
changeset
|
33 Vin Shelton for the patch. |
c858892e4f2b
Remove build rules that try to make wakeup out of the now nonexistent wakeup.c.
Jerry James <james@xemacs.org>
parents:
4772
diff
changeset
|
34 |
4772
0ec24b0da2e5
Remove unused Wise installer sources.
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
35 2009-12-14 Jerry James <james@xemacs.org> |
0ec24b0da2e5
Remove unused Wise installer sources.
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
36 |
0ec24b0da2e5
Remove unused Wise installer sources.
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
37 * installer: Remove unused Wise installer sources. |
0ec24b0da2e5
Remove unused Wise installer sources.
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
38 |
4769
5460287a3327
Remove support for pre-X11R5 systems, including systems without Xmu. See
Jerry James <james@xemacs.org>
parents:
4759
diff
changeset
|
39 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:
4759
diff
changeset
|
40 |
5460287a3327
Remove support for pre-X11R5 systems, including systems without Xmu. See
Jerry James <james@xemacs.org>
parents:
4759
diff
changeset
|
41 * xemacs.dsp: Drop references to xmu.c and xmu.h. |
5460287a3327
Remove support for pre-X11R5 systems, including systems without Xmu. See
Jerry James <james@xemacs.org>
parents:
4759
diff
changeset
|
42 |
4759
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4735
diff
changeset
|
43 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:
4735
diff
changeset
|
44 |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4735
diff
changeset
|
45 * xemacs.dsp: Drop references to removed source files. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4735
diff
changeset
|
46 |
4735
80d74fed5399
Remove "old" GNU malloc in src/malloc.c, and all references to it. Drop the
Jerry James <james@xemacs.org>
parents:
4711
diff
changeset
|
47 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:
4711
diff
changeset
|
48 |
80d74fed5399
Remove "old" GNU malloc in src/malloc.c, and all references to it. Drop the
Jerry James <james@xemacs.org>
parents:
4711
diff
changeset
|
49 * xemacs.mak: Don't define GNU_MALLOC, as there is no longer an "old" |
80d74fed5399
Remove "old" GNU malloc in src/malloc.c, and all references to it. Drop the
Jerry James <james@xemacs.org>
parents:
4711
diff
changeset
|
50 GNU malloc. |
80d74fed5399
Remove "old" GNU malloc in src/malloc.c, and all references to it. Drop the
Jerry James <james@xemacs.org>
parents:
4711
diff
changeset
|
51 |
4711
985886265686
Updates for external GIF support on Windows
Vin Shelton <acs@xemacs.org>
parents:
4708
diff
changeset
|
52 2009-10-06 Vin Shelton <acs@xemacs.org> |
985886265686
Updates for external GIF support on Windows
Vin Shelton <acs@xemacs.org>
parents:
4708
diff
changeset
|
53 |
985886265686
Updates for external GIF support on Windows
Vin Shelton <acs@xemacs.org>
parents:
4708
diff
changeset
|
54 * xemacs.mak: For giflib, the include files are found in |
985886265686
Updates for external GIF support on Windows
Vin Shelton <acs@xemacs.org>
parents:
4708
diff
changeset
|
55 $(GIF_DIR)\include and the library is named |
985886265686
Updates for external GIF support on Windows
Vin Shelton <acs@xemacs.org>
parents:
4708
diff
changeset
|
56 giflib.lib. |
985886265686
Updates for external GIF support on Windows
Vin Shelton <acs@xemacs.org>
parents:
4708
diff
changeset
|
57 |
4708
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4636
diff
changeset
|
58 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:
4636
diff
changeset
|
59 |
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4636
diff
changeset
|
60 * config.inc.samp: Add GIF_DIR for external GIF support. |
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4636
diff
changeset
|
61 * xemacs.mak: Convert from internal to external GIF support. |
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4636
diff
changeset
|
62 * xemacs.dsp: Drop internal GIF source files. |
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4636
diff
changeset
|
63 * README: Remove remark about internal GIF support. |
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4636
diff
changeset
|
64 |
4636
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4603
diff
changeset
|
65 2009-05-18 Stephen J. Turnbull <stephen@xemacs.org> |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4603
diff
changeset
|
66 |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4603
diff
changeset
|
67 * XEmacs 21.5.29 "garbanzo" is released. |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4603
diff
changeset
|
68 |
4603
202cb69c4d87
Support VS 2005 manifest files
Vin Shelton <acs@xemacs.org>
parents:
4458
diff
changeset
|
69 2009-02-06 Vin Shelton <acs@xemacs.org> |
202cb69c4d87
Support VS 2005 manifest files
Vin Shelton <acs@xemacs.org>
parents:
4458
diff
changeset
|
70 |
202cb69c4d87
Support VS 2005 manifest files
Vin Shelton <acs@xemacs.org>
parents:
4458
diff
changeset
|
71 * xemacs.mak: Add support for Visual Studio 2005 manifests. |
202cb69c4d87
Support VS 2005 manifest files
Vin Shelton <acs@xemacs.org>
parents:
4458
diff
changeset
|
72 |
4458
d9b9b5f90386
Provide SHEBANG_PROGNAME on Win32; correct a bug with it and string concat'ing
Aidan Kehoe <kehoea@parhasard.net>
parents:
4419
diff
changeset
|
73 2008-05-13 Aidan Kehoe <kehoea@parhasard.net> |
d9b9b5f90386
Provide SHEBANG_PROGNAME on Win32; correct a bug with it and string concat'ing
Aidan Kehoe <kehoea@parhasard.net>
parents:
4419
diff
changeset
|
74 |
d9b9b5f90386
Provide SHEBANG_PROGNAME on Win32; correct a bug with it and string concat'ing
Aidan Kehoe <kehoea@parhasard.net>
parents:
4419
diff
changeset
|
75 * xemacs.mak (PROGRAM_DEFINES): |
d9b9b5f90386
Provide SHEBANG_PROGNAME on Win32; correct a bug with it and string concat'ing
Aidan Kehoe <kehoea@parhasard.net>
parents:
4419
diff
changeset
|
76 Provide SHEBANG_PROGNAME on Win32 too. |
d9b9b5f90386
Provide SHEBANG_PROGNAME on Win32; correct a bug with it and string concat'ing
Aidan Kehoe <kehoea@parhasard.net>
parents:
4419
diff
changeset
|
77 |
4419
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4413
diff
changeset
|
78 2008-01-25 Michael Sperber <mike@xemacs.org> |
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4413
diff
changeset
|
79 |
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4413
diff
changeset
|
80 * xemacs.mak (version.sh): Generate version.sh via Mercurial. |
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4413
diff
changeset
|
81 |
4413
dc84ec90b463
Fix build problems on Windows.
Mike Sperber <sperber@deinprogramm.de>
parents:
4405
diff
changeset
|
82 2008-01-24 Mike Sperber <mike@xemacs.org> |
dc84ec90b463
Fix build problems on Windows.
Mike Sperber <sperber@deinprogramm.de>
parents:
4405
diff
changeset
|
83 |
dc84ec90b463
Fix build problems on Windows.
Mike Sperber <sperber@deinprogramm.de>
parents:
4405
diff
changeset
|
84 * config.inc.samp: Fix URL for optional libraries. |
dc84ec90b463
Fix build problems on Windows.
Mike Sperber <sperber@deinprogramm.de>
parents:
4405
diff
changeset
|
85 * xemacs.mak (PATH_PREFIX): Set PATH_PREFIX to the value of INSTALL_DIR. |
dc84ec90b463
Fix build problems on Windows.
Mike Sperber <sperber@deinprogramm.de>
parents:
4405
diff
changeset
|
86 * xemacs.mak (PATH_DEFINES): Fix setting of PATH_DEFINES. |
dc84ec90b463
Fix build problems on Windows.
Mike Sperber <sperber@deinprogramm.de>
parents:
4405
diff
changeset
|
87 * xemacs.mak (DEBUG_FLAG_COMPILE_DEBUG): Comment out -RTC1: it |
dc84ec90b463
Fix build problems on Windows.
Mike Sperber <sperber@deinprogramm.de>
parents:
4405
diff
changeset
|
88 even crashes with VC 8. |
dc84ec90b463
Fix build problems on Windows.
Mike Sperber <sperber@deinprogramm.de>
parents:
4405
diff
changeset
|
89 * xemacs.mak: Comment out echo line that leads to |
dc84ec90b463
Fix build problems on Windows.
Mike Sperber <sperber@deinprogramm.de>
parents:
4405
diff
changeset
|
90 command-line-too-long error on some Windowses. |
dc84ec90b463
Fix build problems on Windows.
Mike Sperber <sperber@deinprogramm.de>
parents:
4405
diff
changeset
|
91 |
4405
4b62544f5139
Use debug version of Intel's math library when debugging.
Vin Shelton <acs@xemacs.org>
parents:
4403
diff
changeset
|
92 2008-01-18 Vin Shelton <acs@xemacs.org> |
4b62544f5139
Use debug version of Intel's math library when debugging.
Vin Shelton <acs@xemacs.org>
parents:
4403
diff
changeset
|
93 |
4b62544f5139
Use debug version of Intel's math library when debugging.
Vin Shelton <acs@xemacs.org>
parents:
4403
diff
changeset
|
94 * xemacs.mak: Use debug version of Intel's libm, if appropriate. |
4b62544f5139
Use debug version of Intel's math library when debugging.
Vin Shelton <acs@xemacs.org>
parents:
4403
diff
changeset
|
95 |
4403
7080e020d700
Add support for the Intel compiler under Windows
Vin Shelton <acs@xemacs.org>
parents:
4225
diff
changeset
|
96 2008-01-17 Vin Shelton <acs@xemacs.org> |
7080e020d700
Add support for the Intel compiler under Windows
Vin Shelton <acs@xemacs.org>
parents:
4225
diff
changeset
|
97 |
7080e020d700
Add support for the Intel compiler under Windows
Vin Shelton <acs@xemacs.org>
parents:
4225
diff
changeset
|
98 * config.inc.samp: Added USE_INTEL_COMPILER to support the Intel |
7080e020d700
Add support for the Intel compiler under Windows
Vin Shelton <acs@xemacs.org>
parents:
4225
diff
changeset
|
99 compiler. |
7080e020d700
Add support for the Intel compiler under Windows
Vin Shelton <acs@xemacs.org>
parents:
4225
diff
changeset
|
100 * xemacs.mak: Use USE_INTEL_COMPILER. |
7080e020d700
Add support for the Intel compiler under Windows
Vin Shelton <acs@xemacs.org>
parents:
4225
diff
changeset
|
101 |
4225 | 102 2007-10-15 Adrian Aichner <adrian@xemacs.org> |
103 | |
104 * xemacs.mak (INFO_FILES): Sync nt/xemacs.mak and man/Makefile | |
105 (adding beta.info). | |
106 * xemacs.mak (LISPREF_SRCS): Ditto. Adding packages.texi. | |
107 | |
3975 | 108 2007-05-21 Stephen J. Turnbull <stephen@xemacs.org> |
109 | |
110 * XEmacs 21.5.28 "fuki" is released. | |
111 | |
3741 | 112 2006-12-11 Vin Shelton <acs@xemacs.org> |
113 | |
114 * config.inc.samp: Added BUILD_FOR_SETUP_KIT. | |
115 * xemacs.mak: Use BUILD_FOR_SETUP_KIT to define | |
116 OK_TO_USE_MSVCRTD. | |
117 | |
3402 | 118 2006-05-16 Stephen J. Turnbull <stephen@xemacs.org> |
119 | |
120 * XEmacs 21.5.27 "fiddleheads" is released. | |
121 | |
3363 | 122 2006-04-26 Adrian Aichner <adrian@xemacs.org> |
123 | |
124 * xemacs.dsw: Updated by MS VS 6.0. | |
125 * xemacs.dsp: Convert to DOS format, as suggested by | |
126 Robinows@aol.com. | |
127 | |
3323 | 128 2006-03-31 Stephen J. Turnbull <stephen@xemacs.org> |
129 | |
130 * XEmacs 21.5.26 "endive" is released. | |
131 | |
3281 | 132 2006-02-27 Vin Shelton <acs@xemacs.org> |
133 | |
134 * config.inc.samp: Comment out PACKAGE_PREFIX. | |
135 * xemacs.mak: Convert PACKAGE_PREFIX input from config.inc to | |
136 PATH_LATE_PACKAGE_DIRECTORIES. Do not use PACKAGE_PATH. | |
137 | |
3263 | 138 2006-02-22 Marcus Crestani <crestani@xemacs.org> |
139 | |
140 * xemacs.mak: Remove mc-alloc, replace with newgc, adjust output. | |
141 * config.inc.samp: Remove MC_ALLOC option. | |
142 | |
3259 | 143 2006-02-26 Stephen J. Turnbull <stephen@xemacs.org> |
144 | |
145 * XEmacs 21.5.25 "eggplant" is released. | |
146 | |
3150 | 147 2005-12-18 Stephen J. Turnbull <stephen@xemacs.org> |
148 | |
149 * XEmacs 21.5.24 "dandelion" is released. | |
150 | |
3092 | 151 2005-11-21 Marcus Crestani <crestani@xemacs.org> |
152 | |
153 Incremental Garbage Collector | |
154 | |
155 * config.inc.samp: Add NEW_GC option. | |
156 * xemacs.dsp: Add files gc.c, gc.h, vdb.c, vdb.h, and vdb-win32.c. | |
157 * xemacs.mak: Add NEW_GC option; if NEW_GC, turn on KKCC and | |
158 MC_ALLOC. | |
159 | |
3054 | 160 2005-11-08 Marcus Crestani <crestani@xemacs.org> |
161 | |
162 * xemacs.mak: | |
163 * xemacs.mak ($(OUTDIR)): | |
164 * xemacs.mak (all): Fix build output directory structure. | |
165 | |
3034 | 166 2005-10-28 Ben Wing <ben@xemacs.org> |
167 | |
168 * xemacs.mak (HAVE_BIGNUM): | |
169 Set default values for BUILD_BIGNUM_MINGW_SHARED, | |
170 BUILD_BIGNUM_NATIVE_SHARED to 0 to avoid make problems. | |
171 * xemacs.mak (OPT_INCLUDES): | |
172 Don't look in gmp-dynamic, gmp-static; the include file doesn't vary. | |
173 | |
3031 | 174 2005-10-26 Stephen J. Turnbull <stephen@xemacs.org> |
175 | |
176 * XEmacs 21.5.23 "daikon" is released. | |
177 | |
2951 | 178 2005-09-26 Ben Wing <ben@xemacs.org> |
179 | |
180 * README: | |
181 Major rewrite. Document how to compile various optional libs. | |
182 | |
183 * config.inc.samp: | |
184 Update to recent versions of optional libs. Add support for | |
185 gmp, db, postgresql, ldap. Turn on optimization when not debug. | |
186 | |
187 * minitar.c: | |
188 Include config.h. | |
189 | |
190 * xemacs.mak: | |
191 * xemacs.mak (HAVE_WIDGETS): | |
192 * xemacs.mak (OPT_DEFINES): | |
193 * xemacs.mak (OPT_OBJS): | |
194 * xemacs.mak (BROWSERFLAGS): | |
195 * xemacs.mak (INCLUDES): | |
196 * xemacs.mak (DEFINES): | |
197 * xemacs.mak (TEMACS_COMMON_OBJS): | |
198 * xemacs.mak (TEMACS_OBJS): | |
199 * xemacs.mak ($(OUTDIR)\postgresql.obj): | |
200 * xemacs.mak ($(BLDLIB_SRC)/minitar.exe): | |
201 * xemacs.mak ( NOTE): | |
202 * xemacs.mak (TEMACS_LIBS): | |
203 * xemacs.mak ($(RAW_EXE)): | |
204 * xemacs.mak (mostlyclean): | |
205 * xemacs.mak (versionclean): | |
206 Figure out VC++ version and use it to set debug and browser flags | |
207 appropriately. | |
208 Add support for building gmp, db, postgresql, ldap. | |
209 Rewrite handling of optional stuff so it is all added to single | |
210 variables OPT_* rather than to various FOO_* variables. | |
211 Pass -I$(SRC) to minitar.c so it compiles. | |
212 Pass module sources, not objects, to make-docfile. | |
213 Delete more stuff in `make clean'. | |
214 | |
2948 | 215 2005-09-25 Adrian Aichner <adrian@xemacs.org> |
216 | |
217 * xemacs.mak: Fix variable initialization order. | |
218 | |
2931 | 219 2005-09-14 Stephen J. Turnbull <stephen@xemacs.org> |
220 | |
221 * XEmacs 21.5.22 "cucumber" is released. | |
222 | |
2791 | 223 2005-05-28 Stephen J. Turnbull <stephen@xemacs.org> |
224 | |
225 * XEmacs 21.5.21 "corn" is released. | |
226 | |
2790 | 227 2005-05-19 Marcus Crestani <crestani@xemacs.org> |
228 | |
229 * config.inc.samp (USE_KKCC): Enable by default. | |
230 * config.inc.samp (MC_ALLOC): Enable by default. | |
231 | |
2720 | 232 2005-04-01 Marcus Crestani <crestani@xemacs.org> |
233 | |
234 The new allocator. | |
235 | |
236 New configure flag: `MC_ALLOC': | |
237 | |
238 * config.inc.samp: Add new flag `MC_ALLOC'. | |
239 * xemacs.mak: Add flag and configuration output for `MC_ALLOC'. | |
240 | |
241 New files: | |
242 | |
243 * xemacs.dsp: Add source files mc-alloc.c and mc-alloc.h. | |
244 * xemacs.mak: Add new object file mc-alloc.obj to dependencies. | |
245 | |
2653 | 246 2005-03-11 Stephen J. Turnbull <stephen@xemacs.org> |
247 | |
248 * XEmacs 21.5.20 "cilantro" is released. | |
249 | |
2605 | 250 2005-02-22 Adrian Aichner <adrian@xemacs.org> |
251 | |
252 * xemacs.mak (install): Don't copy BUGS, which has been removed. | |
253 | |
2594 | 254 2005-02-18 Stephen J. Turnbull <stephen@xemacs.org> |
255 | |
256 * XEmacs 21.5.19 "chives" is released. | |
257 | |
2561 | 258 2005-02-03 Ben Wing <ben@xemacs.org> |
259 | |
260 * config.inc.samp (COMPFACE_DIR): | |
261 Change version to 1.5.1 in accordance with FTP site. | |
262 | |
2537 | 263 2005-01-31 Ben Wing <ben@xemacs.org> |
264 | |
265 * xemacs.mak (install): | |
266 Also copy BUGS, README, COPYING and Installation. | |
267 | |
2524 | 268 2005-01-27 Ben Wing <ben@xemacs.org> |
269 | |
270 * xemacs.mak ({$(MANDIR)}.texi{$(INFODIR)}.info): | |
271 Use filename only when calling makeinfo, or it chokes on index | |
272 generation. | |
273 | |
274 * xemacs.mak (TEMACS_COMMON_LFLAGS): | |
275 * xemacs.mak ( $(XEMACS_LFLAGS) -section): | |
276 Generate separate .pdb and .map files for temacs/xemacs; may | |
277 make profiling possible. | |
278 | |
2500 | 279 2005-01-24 Ben Wing <ben@xemacs.org> |
280 | |
281 * config.inc.samp: | |
282 * config.inc.samp (PNG_DIR): | |
283 Declare OPTIONAL_LIBRARY_DIR as root of library directories. | |
284 Redo all graphics library defaults to mirror the versions and | |
285 directories in the current binary aux distribution on xemacs | |
286 web site. Enable TIFF and COMPFACE by default since you can | |
287 now compile with them and binary libs are provided. | |
288 | |
289 * xemacs.mak: | |
290 * xemacs.mak (INCLUDES): | |
291 Put our own directories first in case of conflict (e.g. config.h | |
292 in compface). | |
293 | |
294 * xemacs.mak ($(BLDLIB_SRC)/minitar.exe): | |
295 * xemacs.mak (LIB_SRC_TOOLS): | |
296 Use MSVCRT to avoid link problems. | |
297 | |
2373 | 298 2004-11-07 Ben Wing <ben@xemacs.org> |
299 | |
300 * xemacs.mak (INTERNALS_SRCS): | |
301 index.texi is deleted from internals/. | |
302 | |
2346 | 303 2004-10-22 Stephen J. Turnbull <stephen@xemacs.org> |
304 | |
305 * XEmacs 21.5.18 "chestnut" is released. | |
306 | |
2269 | 307 2004-09-13 Jerry James <james@xemacs.org> |
308 | |
309 * xemacs.dsp: Remove callproc.c as a source file. | |
310 | |
2106 | 311 2004-06-01 Adrian Aichner <adrian@xemacs.org> |
312 | |
313 * xemacs.mak: Don't echo DEL command. Use COPYCMD everywhere. | |
314 Remove /r switch from COPY and COPYDIR, as environment variable | |
315 COPYCMD takes care of this. | |
316 * xemacs.mak (COPYCMD): New. Used to initialize environment | |
317 variable by same name. | |
318 * xemacs.mak (TEMACS_CPP_FLAGS_NO_CFLAGS): Handle | |
319 xemacs_extra_name (CVS date stamp). | |
320 | |
1964 | 321 2004-03-22 Stephen J. Turnbull <stephen@xemacs.org> |
322 | |
323 * XEmacs 21.5.17 "chayote" is released. | |
324 | |
1782 | 325 2003-11-06 Adrian Aichner <adrian@xemacs.org> |
326 | |
327 * minitar.c (Usage): Change return type to void. | |
328 * minitar.c (main): Fix inconsistent indentation, use return | |
329 instead of exit to fix compiler warning. | |
330 | |
1780 | 331 2003-10-27 Jerry James <james@xemacs.org> |
332 | |
333 * README: Update library versions. Delete irrelevant text. | |
334 * config.inc.samp: Ditto. | |
335 | |
1754 | 336 2003-10-15 Jerry James <james@xemacs.org> |
337 | |
338 * xemacs.mak (TEMACS_OBJS): Add emodules.obj, which always has | |
339 content now. | |
340 | |
1716 | 341 2003-09-26 Steve Youngs <youngs@xemacs.org> |
342 | |
343 * XEmacs 21.5.16 "celeriac" is released. | |
344 | |
1680 | 345 2003-09-13 Adrian Aichner <adrian@xemacs.org> |
346 | |
347 * xemacs.mak (TEMACS_BATCH_PACKAGES): Removed. | |
348 * xemacs.mak (check-temacs): Reverting to run with -no-packages | |
349 since it would cause package lisp to shadow core lisp (as happened | |
350 with unicode.el). | |
351 | |
1665 | 352 2003-09-03 Steve Youngs <youngs@xemacs.org> |
353 | |
354 * XEmacs 21.5.15 "celery" is released. | |
355 | |
1657 | 356 2003-08-31 Adrian Aichner <adrian@xemacs.org> |
357 | |
358 * xemacs.mak (makeinfo-test): Moved after variable initialization | |
359 to make test actually work. | |
360 * xemacs.mak (TEMACS_BATCH_PACKAGES): New. | |
361 * xemacs.mak (check-temacs): Use TEMACS_BATCH_PACKAGES to enable | |
362 regression tests requiring packages. | |
363 | |
1529 | 364 2003-06-15 Adrian Aichner <adrian@xemacs.org> |
365 | |
366 * minitar.c (main): Handle 0 size files correctly. | |
367 | |
1510 | 368 2003-06-01 Steve Youngs <youngs@xemacs.org> |
369 | |
370 * XEmacs 21.5.14 "cassava" is released. | |
371 | |
1473 | 372 2003-05-10 Steve Youngs <youngs@xemacs.org> |
373 | |
374 * XEmacs 21.5.13 "cauliflower" is released. | |
375 | |
1431 | 376 2003-04-24 Steve Youngs <youngs@xemacs.org> |
377 | |
378 * XEmacs 21.5.12 "carrot" is released. | |
379 | |
1393 | 380 2003-03-30 Adrian Aichner <adrian@xemacs.org> |
381 | |
382 * xemacs.mak (install): PROBLEMS is actually in $(SRCROOT). | |
383 | |
1382 | 384 2003-03-26 Adrian Aichner <adrian@xemacs.org> |
385 | |
386 * xemacs.mak (install): Copy $(BLDLIB_SRC)\PROBLEMS, now that | |
387 nt\PROBLEMS is gone (part of ..\PROBLEMS now). | |
388 | |
1370 | 389 2003-03-22 Adrian Aichner <adrian@xemacs.org> |
390 | |
391 * xemacs.mak (installation): Restore version convention in | |
1371 | 392 generated Installation file. |
1370 | 393 |
1347 | 394 2003-03-09 Ben Wing <ben@xemacs.org> |
395 | |
396 * config.inc.samp (COMPFACE_DIR): | |
397 Note that relative directories are a no-no in BUILD_DIR and | |
398 SOURCE_DIR. Use paths relative to $(MAKEROOT) instead. | |
399 | |
1346 | 400 2003-03-06 Ben Wing <ben@xemacs.org> |
401 | |
402 * xemacs.mak (INFO): New. | |
403 * xemacs.mak (PATH_DEFINES): | |
404 Add override for info/ as well when separate source/build dirs. | |
405 | |
406 * xemacs.mak (dump_temacs): | |
407 * xemacs.mak (all): | |
408 * xemacs.mak (TEMACS_DUMP_DEP): | |
409 * xemacs.mak (update-elc): New. | |
410 * xemacs.mak (docfile): | |
411 * xemacs.mak (update-elc-2): | |
412 * xemacs.mak (load-shadows): | |
413 Order sections in main build process and add comments. Add | |
414 additional dependencies to try and prevent later steps from | |
415 happening when failures in earlier steps have occurred. | |
416 | |
1333 | 417 2003-03-01 Ben Wing <ben@xemacs.org> |
418 | |
419 * PROBLEMS: Delete. | |
420 | |
421 * config.inc.samp (USE_FASTCALL): | |
422 * config.inc.samp (HAVE_VC6): Removed. | |
423 * config.inc.samp (DEBUG_XEMACS): | |
424 * config.inc.samp (SUPPORT_EDIT_AND_CONTINUE): New. | |
425 * xemacs.mak (DEBUG_XEMACS): | |
426 * xemacs.mak (HAVE_VC6): Removed. | |
427 * xemacs.mak (SUPPORT_EDIT_AND_CONTINUE): New. | |
428 * xemacs.mak (CCV): | |
429 * xemacs.mak (LIB_SRC_CFLAGS): New. | |
430 * xemacs.mak (ETAGS_DEPS): | |
431 * xemacs.mak (OS): | |
432 * xemacs.mak (TEMACS_LFLAGS): | |
433 Eliminate HAVE_VC6, use SUPPORT_EDIT_AND_CONTINUE in its place. | |
434 No incremental linking unless SUPPORT_EDIT_AND_CONTINUE, since it | |
435 can cause nasty crashes in pdump. Put warnings about this in | |
436 config.inc.samp. Report the full compile flags used for src | |
437 and lib-src in the Installation output. | |
438 | |
1330 | 439 2003-02-28 Ben Wing <ben@xemacs.org> |
440 | |
441 * README: | |
442 * README (NOTE): Removed. | |
443 * config.inc.samp (HAVE_MS_WINDOWS): | |
444 * config.inc.samp (HAVE_X_WINDOWS): Removed. | |
445 * config.inc.samp (X11_DIR): Removed. | |
446 * config.inc.samp (COMPFACE_DIR): | |
447 * xemacs.mak (XEMACS): Removed. | |
448 * xemacs.mak (LISP): Removed. | |
449 * xemacs.mak (LIB_SRC): Removed. | |
450 * xemacs.mak (MODULES): Removed. | |
451 * xemacs.mak (NT): Removed. | |
452 * xemacs.mak (OUTDIR): Removed. | |
453 * xemacs.mak (SRC): Removed. | |
454 * xemacs.mak (LWLIB_SRCDIR): Removed. | |
455 * xemacs.mak (MAKEDIRSTRING): Removed. | |
456 * xemacs.mak (XEMACSDIRSTRING): Removed. | |
457 * xemacs.mak (MAKEROOT): New. | |
458 * xemacs.mak (COPYDIR): | |
459 * xemacs.mak (INFODOCK_VERSION_STRING): Removed. | |
460 * xemacs.mak (XEMACS_VERSION_STRING): Removed. | |
461 * xemacs.mak (SEPARATE_BUILD): New. | |
462 * xemacs.mak (SRCROOT): New. | |
463 * xemacs.mak (BLDROOT): New. | |
464 * xemacs.mak (PROGRAM_DEFINES): Removed. | |
465 * xemacs.mak (INSTALL_DIR): Removed. | |
466 * xemacs.mak (ETC): New. | |
467 * xemacs.mak (BLDLIB_SRC): New. | |
468 * xemacs.mak (BLDNT): New. | |
469 * xemacs.mak (BLDSRC): New. | |
470 * xemacs.mak (PACKAGE_PREFIX): Removed. | |
471 * xemacs.mak (PACKAGE_PATH): Removed. | |
472 * xemacs.mak (PATH_PACKAGEPATH): Removed. | |
473 * xemacs.mak (HAVE_X_WINDOWS): Removed. | |
474 * xemacs.mak (USE_CRTDLL): | |
475 * xemacs.mak (CONFIG_ERROR): | |
476 * xemacs.mak (OS): Removed. | |
477 * xemacs.mak (EMACS_CONFIGURATION): Removed. | |
478 * xemacs.mak (STACK_TRACE_EYE_CATCHER): Removed. | |
479 * xemacs.mak (CCV): Removed. | |
480 * xemacs.mak (DEBUG_FLAGS_COMPILE): Removed. | |
481 * xemacs.mak (DEBUG_FLAGS_LINK): Removed. | |
482 * xemacs.mak (DEBUG_DEFINES): Removed. | |
483 * xemacs.mak (BROWSERFLAGS): Removed. | |
484 * xemacs.mak (C_LIBFLAG): Removed. | |
485 * xemacs.mak (LIBC_LIB): Removed. | |
486 * xemacs.mak (OPTFLAGS_FASTCALL): Removed. | |
487 * xemacs.mak (OPTFLAGS_CDECL): Removed. | |
488 * xemacs.mak (PATH_PREFIX): New. | |
489 * xemacs.mak (OPTFLAGS): Removed. | |
490 * xemacs.mak (PROFILE_FLAGS): Removed. | |
491 * xemacs.mak (PATH_DEFINES): New. | |
492 * xemacs.mak (MSW_DEFINES): | |
493 * xemacs.mak (TEMACS_MSW_OBJS): New. | |
494 * xemacs.mak (CPLUSPLUS_COMPILE_FLAGS): Removed. | |
495 * xemacs.mak (CFLAGS_NO_OPT): Removed. | |
496 * xemacs.mak (CFLAGS_NO_LIB): Removed. | |
497 * xemacs.mak (CFLAGS): Removed. | |
498 * xemacs.mak (CFLAGS_CDECL_NO_LIB): Removed. | |
499 * xemacs.mak (CFLAGS_CDECL): Removed. | |
500 * xemacs.mak (X_DEFINES): Removed. | |
501 * xemacs.mak (TEMACS_MULE_OBJS): New. | |
502 * xemacs.mak (X_INCLUDES): Removed. | |
503 * xemacs.mak (X_LIBS): Removed. | |
504 * xemacs.mak (TEMACS_DEBUG_OBJS): New. | |
505 * xemacs.mak (TEMACS_DUMP_OBJS): New. | |
506 * xemacs.mak (TEMACS_ALLOC_OBJS): New. | |
507 * xemacs.mak (XEMACS_INCLUDES): Removed. | |
508 * xemacs.mak (LIB_SRC_DEFINES): Removed. | |
509 * xemacs.mak (INCLUDES): | |
510 * xemacs.mak (DEFINES): | |
511 * xemacs.mak (CONFIG_VALUES): Removed. | |
512 * xemacs.mak (TEMACS_CPP_FLAGS_NO_CFLAGS): | |
513 * xemacs.mak (TEMACS_ENTRYPOINT): Removed. | |
514 * xemacs.mak (TEMACS_DIR): Removed. | |
515 * xemacs.mak (TEMACS): Removed. | |
516 * xemacs.mak (TEMACS_BROWSE): Removed. | |
517 * xemacs.mak (TEMACS_SRC): Removed. | |
518 * xemacs.mak (TEMACS_CPP_CDECL_FLAGS): | |
519 * xemacs.mak (TEMACS_LIBS): Removed. | |
520 * xemacs.mak (TEMACS_OBJS): | |
521 * xemacs.mak (TEMACS_LFLAGS): Removed. | |
522 * xemacs.mak (LINK_DEPENDENCY_ARGS): Removed. | |
523 * xemacs.mak (LINK_STANDARD_LIBRARY_ARGS): Removed. | |
524 * xemacs.mak (ETAGS_DEPS): Removed. | |
525 * xemacs.mak (TEMACS_X_OBJS): Removed. | |
526 * xemacs.mak (LIB_SRC_TOOLS): Removed. | |
527 * xemacs.mak (LASTFILE): Removed. | |
528 * xemacs.mak (LASTFILE_SRC): Removed. | |
529 * xemacs.mak (LASTFILE_FLAGS): Removed. | |
530 * xemacs.mak (LASTFILE_OBJS): Removed. | |
531 * xemacs.mak (LWLIB): Removed. | |
532 * xemacs.mak (LWLIB_FLAGS): Removed. | |
533 * xemacs.mak (LWLIB_OBJS): Removed. | |
534 * xemacs.mak (.SUFFIXES): | |
535 * xemacs.mak (create-list-file): Removed. | |
536 * xemacs.mak (compile-list-file): Removed. | |
537 * xemacs.mak (TEMACS_DUMP_ID_OBJ): Removed. | |
538 * xemacs.mak (PROGNAME): Removed. | |
539 * xemacs.mak (DO_TEMACS): Removed. | |
540 * xemacs.mak (DO_XEMACS): Removed. | |
541 * xemacs.mak (BATCH): Removed. | |
542 * xemacs.mak (BATCH_PACKAGES): Removed. | |
543 * xemacs.mak (TEMACS_BATCH): Removed. | |
544 * xemacs.mak (XEMACS_BATCH): Removed. | |
545 * xemacs.mak (XEMACS_BATCH_PACKAGES): Removed. | |
546 * xemacs.mak (temacs_loadup_args): Removed. | |
547 * xemacs.mak (dump_temacs_args): Removed. | |
548 * xemacs.mak (run_temacs_args): Removed. | |
549 * xemacs.mak (dump_temacs): Removed. | |
550 * xemacs.mak (testdir): Removed. | |
551 * xemacs.mak (batch_test_emacs): Removed. | |
552 * xemacs.mak (check): Removed. | |
553 * xemacs.mak (check-temacs): Removed. | |
554 * xemacs.mak (MANDIR): | |
555 * xemacs.mak (check-features): Removed. | |
556 * xemacs.mak (tagslisp): Removed. | |
557 * xemacs.mak (tags): Removed. | |
558 * xemacs.mak (NEW_USERS_GUIDE_SRCS): | |
559 * xemacs.mak (makeinfo-test): | |
560 * xemacs.mak (installation): New. | |
561 * xemacs.mak (RAW_EXE): New. | |
562 * xemacs.mak (DUMP_TARGET): New. | |
563 * xemacs.mak (all): New. | |
564 * xemacs.mak (TEMACS_DUMP_DEP): New. | |
565 * xemacs.mak (DOC): | |
566 * xemacs.mak (docfile): | |
567 * xemacs.mak (update-elc): | |
568 * xemacs.mak (update-elc-2): | |
569 * xemacs.mak (load-shadows): | |
570 * xemacs.mak (temacs): Removed. | |
571 * xemacs.mak (install): | |
572 * xemacs.mak (versionclean): New. | |
573 * xemacs.mak (distclean): | |
574 * xemacs.mak (realclean): | |
575 * xemacs.mak (extraclean): | |
576 * xemacs.mak (depend): | |
577 * xemacs.mak (unicode-encapsulate): | |
578 -- Major reorganization and cleanup. | |
579 -- Add support for separated build tree and source tree. | |
580 -- Delete all support for X Windows building, since it's | |
581 totally bit-rotten and will never be fixed up. Instruct | |
582 people to use Cygwin if they want such support. | |
583 | |
584 * make-build-dir: | |
585 New script to create a skeleton build tree for use with | |
586 separated build and source tree compilation. | |
587 | |
1318 | 588 2003-02-20 Ben Wing <ben@xemacs.org> |
589 | |
590 * xemacs.dsp (CFG): | |
591 Add /k to default build. | |
592 | |
1315 | 593 2003-02-19 Ben Wing <ben@xemacs.org> |
594 | |
595 * xemacs.mak (DO_TEMACS): New. | |
596 * xemacs.mak (DO_XEMACS): New. | |
597 * xemacs.mak (TEMACS_BATCH): | |
598 * xemacs.mak (temacs_loadup_args): New. | |
599 * xemacs.mak (dump_temacs_args): New. | |
600 * xemacs.mak (run_temacs_args): New. | |
601 * xemacs.mak (dump_temacs): | |
602 * xemacs.mak (blddir): Removed. | |
603 * xemacs.mak (temacs_loadup): Removed. | |
604 * xemacs.mak (run_temacs): Removed. | |
605 * xemacs.mak (check): | |
606 * xemacs.mak (check-temacs): | |
607 * xemacs.mak (check-features): New. | |
608 * xemacs.mak (makeinfo-test): | |
609 * xemacs.mak (LOADPATH): Removed. | |
610 * xemacs.mak (update-elc): | |
611 * xemacs.mak (update-elc-2): | |
612 * xemacs.mak (load-shadows): New. | |
613 * xemacs.mak (all): | |
614 * xemacs.mak (OS): | |
615 Add macros DO_TEMACS, DO_XEMACS, and a few others; this macro | |
616 section is now completely in sync with src/Makefile.in.in. Copy | |
617 check-features, load-shadows, and rebuilding finder-inf.el from | |
618 src/Makefile.in.in. The main build/dump/recompile process is now | |
619 synchronized with src/Makefile.in.in. Change `WARNING' to `NOTE' | |
620 and `error checking' to `error-checking' TO avoid tripping | |
621 faux warnings and errors in the VC++ IDE. | |
622 | |
623 | |
1307 | 624 2003-02-16 Steve Youngs <youngs@xemacs.org> |
625 | |
626 * XEmacs 21.5.11 "cabbage" is released. | |
627 | |
1303 | 628 2003-02-15 Ben Wing <ben@xemacs.org> |
629 | |
630 * xemacs.mak: | |
631 * xemacs.mak (PROGNAME): | |
632 * xemacs.mak (docfile): | |
633 * xemacs.mak (make-docargs): Removed. | |
634 * xemacs.mak (update-elc): | |
635 * xemacs.mak (update-elc-2): New. | |
636 * xemacs.mak (OS): | |
637 Delete old unused code that checks SATISFIED. | |
638 Move update-elc-2 up to be near update-elc. | |
639 Run update-elc-2 with -no-autoloads to avoid multiple | |
640 autoload-loading problem. | |
641 | |
642 Don't compute make-docfile args ourselves. Pass the raw objects | |
643 to make-docfile.el, which does the computation (much faster than | |
644 we could). Don't delete the DOC file, split the invocation into | |
645 two calls to make-docfile.exe (one direct, one through | |
646 make-docfile.el), etc. In general, all we do is call make-docfile. | |
647 Add proper dependencies for DOC-file rebuilding so it doesn't get | |
648 done when not necessary. Implement quick-building here: not | |
649 building the DOC file unless it doesn't exist, as the quick-build | |
650 docs say. | |
651 | |
1261 | 652 2003-02-05 Ben Wing <ben@xemacs.org> |
653 | |
654 * config.inc.samp (GTK_DIR): | |
655 * config.inc.samp (XPM_DIR): | |
656 * config.inc.samp (HAVE_GIF): | |
657 * config.inc.samp (ZLIB_DIR): | |
658 * config.inc.samp (TIFF_DIR): | |
659 * config.inc.samp (JPEG_DIR): | |
660 * config.inc.samp (COMPFACE_DIR): | |
661 * config.inc.samp (USE_PORTABLE_DUMPER): | |
662 * config.inc.samp (USE_KKCC): | |
663 Various fixups. | |
664 | |
1203 | 665 2002-12-16 Ben Wing <ben@xemacs.org> |
666 | |
667 * README (NOTE): | |
668 * config.inc.samp: | |
669 * config.inc.samp (PACKAGE_PREFIX): | |
670 * config.inc.samp (GTK_DIR): | |
671 * config.inc.samp (COMPFACE_DIR): | |
672 * config.inc.samp (USE_FASTCALL): | |
673 * config.inc.samp (HAVE_VC6): New. | |
674 * config.inc.samp (PROFILE_SUPPORT): | |
675 * config.inc.samp (DEBUG_XEMACS): | |
676 * config.inc.samp (USE_PORTABLE_DUMPER): | |
677 * config.inc.samp (USE_KKCC): New. | |
678 * config.inc.samp (USE_UNION_TYPE): New. | |
679 * xemacs.dsp (CFG): | |
680 * xemacs.mak (HAVE_VC6): | |
681 * xemacs.mak (ERROR_CHECK_ALL): New. | |
682 * xemacs.mak (CPLUSPLUS_COMPILE): New. | |
683 * xemacs.mak (USE_KKCC): New. | |
684 * xemacs.mak (USE_UNION_TYPE): New. | |
685 * xemacs.mak (USE_PORTABLE_DUMPER): | |
686 * xemacs.mak (PROFILE_FLAGS): | |
687 * xemacs.mak (CPLUSPLUS_COMPILE_FLAGS): New. | |
688 * xemacs.mak (DUMPER_DEFINES): | |
689 * xemacs.mak (KKCC_DEFINES): New. | |
690 * xemacs.mak (DEFINES): | |
691 * xemacs.mak (LASTFILE_FLAGS): | |
692 * xemacs.mak (TEMACS_CPP_FLAGS_NO_CFLAGS): | |
693 * xemacs.mak (OS): | |
694 | |
695 Support C++ compilation, KKCC compilation. See src/ChangeLog. | |
696 Add stuff about the evilness of USE_UNION_TYPE. | |
697 | |
1187 | 698 2003-01-04 Steve Youngs <youngs@xemacs.org> |
699 | |
700 * XEmacs 21.5.10 "burdock" is released. | |
701 | |
1123 | 702 2002-11-27 Ben Wing <ben@xemacs.org> |
703 | |
704 * .cvsignore: | |
705 Windows shit. | |
706 | |
1052 | 707 2002-10-13 Adrian Aichner <adrian@xemacs.org> |
708 | |
709 * xemacs.mak (OS): Remove obsolete quoting of double-quote in the | |
710 Installation file to avoid unnecessary deviations from the UNIX | |
711 version in `describe-installation' and `build-report'. | |
712 | |
1001 | 713 2002-09-13 Adrian Aichner <adrian@xemacs.org> |
714 | |
715 * xemacs.mak: Suppress confirmation for overwriting files. | |
716 * xemacs.mak (installation): Add support for xemacs_extra_name. | |
717 | |
981 | 718 2002-08-30 Steve Youngs <youngs@xemacs.org> |
719 | |
720 * XEmacs 21.5.9 "brussels sprouts" is released. | |
721 | |
942 | 722 2002-07-31 Adrian Aichner <adrian@xemacs.org> |
723 | |
724 * xemacs.mak (USE_KKCC): New. Default it to 1 to get it noticed. | |
725 Add line to Installation file, when it's enabled. Add period to | |
726 line add to Installation for USE_CRTDLL. | |
727 | |
933 | 728 2002-07-27 Steve Youngs <youngs@xemacs.org> |
729 | |
730 * XEmacs 21.5.8 "broccoli" is released. | |
731 | |
916 | 732 2002-07-08 Stephen J. Turnbull <stephen@xemacs.org> |
733 | |
734 * README: Reference GNU Emacs 21.x. | |
735 | |
900 | 736 2002-07-05 Jonathan Harris <jonathan@xemacs.org> |
737 | |
738 * README: Document Visual Studio .NET setup | |
739 | |
894 | 740 2002-07-02 Stephen J. Turnbull <stephen@xemacs.org> |
741 | |
742 * XEmacs 21.5.7 "broccoflower" is released. | |
743 | |
882 | 744 2002-06-25 Adrian Aichner <adrian@xemacs.org> |
745 | |
746 * xemacs.mak (DEBUG_DEFINES): Initialize to empty for | |
747 DEBUG_XEMACS=0. | |
748 | |
872 | 749 2002-06-20 Ben Wing <ben@xemacs.org> |
750 | |
751 * config.inc.samp (OPTIMIZED_BUILD): | |
752 * config.inc.samp (USE_FASTCALL): New. | |
753 * config.inc.samp (PROFILE_SUPPORT): New. | |
754 * config.inc.samp (DEBUG_XEMACS): | |
755 * config.inc.samp (HAVE_VC6): New. | |
756 * config.inc.samp (USE_PORTABLE_DUMPER): | |
757 Clean up, add args to control fastcall (not yet supported! the | |
758 changes needed are in another ws of mine), profile support, vc6 | |
759 support, union-type. | |
760 | |
761 * xemacs.dsp (CFG): | |
762 * xemacs.mak (HAVE_DIALOGS): | |
763 * xemacs.mak (HAVE_MSW_C_DIRED): Removed. | |
764 * xemacs.mak (USE_FASTCALL): New. | |
765 * xemacs.mak (PROFILE_SUPPORT): New. | |
766 * xemacs.mak (HAVE_VC6): New. | |
767 * xemacs.mak (QUICK_BUILD): | |
768 * xemacs.mak (VERBOSECC): New. | |
769 * xemacs.mak (DEPEND): New. | |
770 * xemacs.mak (CONFIG_ERROR): | |
771 * xemacs.mak (CCV): | |
772 * xemacs.mak (DEBUGFLAGS): Removed. | |
773 * xemacs.mak (OPTFLAGS): Removed. | |
774 * xemacs.mak (DEBUG_FLAGS_COMPILE): New. | |
775 * xemacs.mak (DEBUG_FLAGS_LINK): New. | |
776 * xemacs.mak (DEBUG_DEFINES): New. | |
777 * xemacs.mak (BROWSERFLAGS): New. | |
778 * xemacs.mak (LIBC_LIB): | |
779 * xemacs.mak (OPTFLAGS_FASTCALL): New. | |
780 * xemacs.mak (OPTFLAGS_CDECL): New. | |
781 * xemacs.mak (PROFILE_FLAGS): New. | |
782 * xemacs.mak (CFLAGS_NO_OPT): New. | |
783 * xemacs.mak (CFLAGS_CDECL_NO_LIB): New. | |
784 * xemacs.mak (CFLAGS_CDECL): New. | |
785 * xemacs.mak (MSW_LIBS): | |
786 * xemacs.mak (MSW_DEFINES): Removed. | |
787 * xemacs.mak (MSW_C_DIRED_OBJ): Removed. | |
788 * xemacs.mak (MULE_DEFINES): | |
789 * xemacs.mak (DEBUG_FLAGS): Removed. | |
790 * xemacs.mak (LINK_DEPENDENCY_ARGS): | |
791 * xemacs.mak (ETAGS_DEPS): | |
792 * xemacs.mak (LIB_SRC_TOOLS): | |
793 * xemacs.mak (TEMACS_LFLAGS): | |
794 * xemacs.mak (TEMACS_CPP_FLAGS): Removed. | |
795 * xemacs.mak (TEMACS_CPP_FLAGS_NO_CFLAGS): New. | |
796 * xemacs.mak (TEMACS_CPP_CDECL_FLAGS): New. | |
797 * xemacs.mak (TEMACS_MSW_OBJS): | |
798 * xemacs.mak (TEMACS_OBJS): | |
799 * xemacs.mak (.SUFFIXES): | |
800 * xemacs.mak (create-list-file): New. | |
801 * xemacs.mak (compile-list-file): New. | |
802 * xemacs.mak (TEMACS_DUMP_ID_OBJ): New. | |
803 * xemacs.mak (PROGNAME): | |
804 * xemacs.mak (temacs_loadup): | |
805 * xemacs.mak (check): | |
806 * xemacs.mak (check-temacs): | |
807 * xemacs.mak (make-docargs): | |
808 * xemacs.mak (update-elc): | |
809 * xemacs.mak (install): | |
810 * xemacs.mak (mostlyclean): | |
811 * xemacs.mak (versionclean): | |
812 * xemacs.mak (OS): | |
813 Semi-major overhaul. | |
814 | |
815 Fix bug where dump-id was always getting recomputed, forcing a | |
816 redump even when nothing changed. | |
817 | |
818 Add support for fastcall. Support edit-and-continue (on by | |
819 default) with vc6. Use incremental linking when doing a debug | |
820 compilation. Add support for profiling. | |
821 | |
822 Consolidate the various debug flags. | |
823 | |
824 Partial support for "batch-compiling" -- compiling many files on a | |
825 single invocation of the compiler. Doesn't seem to help that much | |
826 for me, so it's not finished or enabled by default. | |
827 | |
828 Remove HAVE_MSW_C_DIRED, we always do. | |
829 | |
830 Correct some sloppy use of directories. | |
831 | |
863 | 832 2002-03-29 Jonathan Harris <jonathan@xemacs.org> |
833 | |
834 * xemacs.mak: Define STACK_TRACE_EYE_CATCHER. | |
835 | |
853 | 836 2002-05-28 Ben Wing <ben@xemacs.org> |
837 | |
838 * xemacs.mak (CFLAGS_NO_LIB): | |
839 * xemacs.mak (X_DEFINES): | |
840 Add -DSTRICT. | |
841 | |
851 | 842 2002-05-23 Ben Wing <ben@xemacs.org> |
843 | |
844 * xemacs.mak (TEMACS_OBJS): | |
845 Add alloca.o. | |
846 | |
841 | 847 2002-05-14 Ben Wing <ben@xemacs.org> |
848 | |
849 * xemacs.mak (batch_test_emacs): | |
850 * xemacs.mak (check): | |
851 Run tests with the packages so we don't get errors about | |
852 advice not present, etc. | |
853 | |
839 | 854 2002-05-14 Ben Wing <ben@xemacs.org> |
834 | 855 |
839 | 856 * xemacs.mak (CONFIG_VALUES): |
857 * xemacs.mak (LINK_DEPENDENCY_ARGS): New. | |
858 * xemacs.mak (LINK_STANDARD_LIBRARY_ARGS): New. | |
859 * xemacs.mak (ETAGS_DEPS): | |
860 * xemacs.mak (LIB_SRC_TOOLS): | |
861 Increase the stack of etags to 0x800000 (8 MB), same as for XEmacs | |
862 and enough to prevent regex crashes with complex multiline | |
863 regexps. (More specifically, we reach the built-in failure limit before | |
864 crashing the stack. etags complains, but keeps on processing.) | |
834 | 865 |
827 | 866 2002-05-06 Jonathan Harris <jonathan@xemacs.org> |
867 | |
868 * README: | |
869 Remove references to obsolete MSVC5 and NT 3.51 configurations. | |
870 | |
871 * config.inc.samp (HAVE_TIFF): Update PNG version to 1.0.9. | |
872 | |
873 * xemacs.mak (HAVE_MENUBARS): New | |
874 * xemacs.mak (HAVE_SCROLLBARS): New | |
875 * xemacs.mak (MSW_DEFINES): | |
876 * xemacs.mak (MSW_LIBS): | |
877 * xemacs.mak (TEMACS_MSW_OBJS): | |
878 * xemacs.mak (TEMACS_OBJS): | |
879 Make HAVE_MENUBARS and HAVE_SCROLLBARS optional. | |
880 | |
881 * xemacs.mak (LIB_SRC_TOOLS): | |
882 Generate correctly-named debug program databases for lib-src helpers. | |
883 | |
884 * xemacs-vc50.dsp: Removed. | |
885 * xemacs-vc50.dsw: Removed. | |
886 | |
826 | 887 2002-05-05 Ben Wing <ben@xemacs.org> |
888 | |
889 * xemacs.mak (CFLAGS_NO_LIB): New. | |
890 * xemacs.mak (CFLAGS): | |
891 * xemacs.mak (ETAGS_DEPS): | |
892 * xemacs.mak (LIB_SRC_TOOLS): | |
893 Split up CFLAGS into a version without flags specifying the C | |
894 library. The problem seems to be that minitar depends on zlib, | |
895 which depends specifically on libc.lib, not on any of the other C | |
896 libraries. Unless you compile with libc.lib, you get errors -- | |
897 specifically, no _errno in the other libraries, which must make it | |
898 something other than an int. (#### But this doesn't seem to obtain | |
899 in XEmacs, which also uses zlib, and can be linked with any of the | |
900 C libraries. Maybe zlib is used differently and doesn't need | |
901 errno, or maybe XEmacs provides an int errno; ... I don't | |
902 understand. | |
903 | |
819 | 904 2002-03-26 Vin Shelton <acs@xemacs.org> |
905 | |
906 * xemacs.mak: Added special rule to build winclient.exe. | |
907 | |
817 | 908 2002-04-23 Jonathan Harris <jonathan@xemacs.org> |
909 | |
910 * README: Document build for latest versions of zlib & png | |
911 * xpm.mak: Default to using MSVCRT as the C runtime | |
912 | |
814 | 913 2002-04-14 Ben Wing <ben@xemacs.org> |
914 | |
915 * config.inc.samp (HAVE_MS_WINDOWS): | |
916 * config.inc.samp (X11_DIR): | |
917 * config.inc.samp (ZLIB_DIR): | |
918 * config.inc.samp (MAKEINFO): | |
919 * config.inc.samp (OPTIMIZED_BUILD): New. | |
920 * config.inc.samp (DEPEND): | |
921 * config.inc.samp (USE_MINIMAL_TAGBITS): Removed. | |
922 * config.inc.samp (USE_INDEXED_LRECORD_IMPLEMENTATION): Removed. | |
923 * config.inc.samp (GUNG_HO): Removed. | |
924 * xemacs.mak (USE_MINITAR): | |
925 * xemacs.mak (USE_MINIMAL_TAGBITS): Removed. | |
926 * xemacs.mak (USE_INDEXED_LRECORD_IMPLEMENTATION): Removed. | |
927 * xemacs.mak (GUNG_HO): Removed. | |
928 * xemacs.mak (CONFIG_ERROR): | |
929 * xemacs.mak (DEBUGFLAGS): New. | |
930 * xemacs.mak (OPT): Removed. | |
931 * xemacs.mak (OPTFLAGS): New. | |
932 * xemacs.mak (CFLAGS): | |
933 * xemacs.mak (QUICK_DEFINES): | |
934 * xemacs.mak (TAGBITS_DEFINES): Removed. | |
935 * xemacs.mak (ERROR_CHECK_DEFINES): New. | |
936 * xemacs.mak (LRECORD_DEFINES): Removed. | |
937 * xemacs.mak (DEFINES): | |
938 * xemacs.mak (TEMACS_OBJS): | |
939 * xemacs.mak (OS): | |
940 Separate out debug and optimize flags. | |
941 Remove all vestiges of USE_MINIMAL_TAGBITS, | |
942 USE_INDEXED_LRECORD_IMPLEMENTATION, and GUNG_HO, since those | |
943 ifdefs have long been removed. | |
944 Make error-checking support actually work. | |
945 Some rearrangement of config.inc.samp to make it more logical. | |
946 Remove callproc.c and ntproc.c from xemacs.mak, no longer used. | |
947 | |
948 Make pdump the default. | |
949 | |
812 | 950 2002-04-13 Jonathan Harris <jonathan@xemacs.org> |
951 | |
952 * README: Document MSVC6 required | |
953 * minitar.c: Fix MSVC compiler warnings | |
954 * minitar.mak: Removed | |
955 * xemacs.mak: Build minitar directly from this makefile | |
956 * xemacs.mak (check-temacs): | |
957 * xemacs.mak (make-docargs): | |
958 * xemacs.mak (update-elc): | |
959 Remove obsolete references to EMACSBOOTSTRAPLOADPATH and | |
960 EMACSBOOTSTRAPMODULEPATH environment variables. | |
961 | |
804 | 962 2002-04-05 Stephen J. Turnbull <stephen@xemacs.org> |
963 | |
964 * XEmacs 21.5.6 "bok choi" is released. | |
965 | |
800 | 966 2002-03-31 Ben Wing <ben@xemacs.org> |
967 | |
968 * config.inc.samp (DEBUG_XEMACS): | |
969 * xemacs.mak (DEBUG_XEMACS): | |
970 * xemacs.mak (ERROR_CHECK_ALL): New. | |
971 Separate out and add new variable for controlling error-checking. | |
972 | |
795 | 973 2002-03-29 Jonathan Harris <jonathan@xemacs.org> |
974 | |
975 * make-nt-depend: | |
976 * xemacs.mak (DEPEND): | |
977 * xemacs.mak (PERL_NEEDS_MORE_QUOTING): | |
978 * config.inc.samp (PERL_NEEDS_MORE_QUOTING): | |
979 Moved perl dependency script out into new make-nt-depend file to | |
980 hopefully finally solve never-ending perl quoting problems. | |
981 | |
982 * xemacs.mak (TEMACS): | |
983 * xemacs.mak (make-docargs): | |
984 * .cvsignore: | |
985 Generate intermediate files in obj subdirectory, not in nt dir. | |
986 | |
794 | 987 2002-03-29 Jonathan Harris <jonathan@xemacs.org> |
988 | |
989 * xemacs.mak: Define STACK_TRACE_EYE_CATCHER. | |
990 | |
780 | 991 2002-03-18 Ben Wing <ben@xemacs.org> |
992 | |
993 * config.inc.samp (DEPEND): | |
994 * config.inc.samp (PERL_NEEDS_MORE_QUOTING): | |
995 * xemacs.mak (DEPEND): | |
996 * xemacs.mak (PERL_NEEDS_MORE_QUOTING): | |
997 Deal with never-ending perl quoting problems. | |
998 | |
778 | 999 2002-03-16 Ben Wing <ben@xemacs.org> |
1000 | |
1001 * .cvsignore: | |
1002 Those pesky *.tmp files. | |
1003 | |
776 | 1004 2002-03-15 Ben Wing <ben@xemacs.org> |
1005 | |
1006 * xemacs.mak: | |
1007 * xemacs.mak (BATCH): | |
1008 * xemacs.mak (XEMACS_BATCH_PACKAGES): | |
1009 * xemacs.mak (batch_test_emacs): | |
1010 * xemacs.mak (MAKEINFO): | |
1011 * xemacs.mak (makeinfo-test): | |
1012 Use -no-packages to avoid problems with package files shadowing | |
1013 core files (e.g. unicode.el in mule-ucs). | |
1014 | |
774 | 1015 2002-03-12 Ben Wing <ben@xemacs.org> |
1016 | |
3322 | 1017 * The Great Mule Merge of March 2002: |
1018 see node by that name in the Internals Manual. | |
774 | 1019 |
768 | 1020 2002-03-05 Stephen J. Turnbull <stephen@xemacs.org> |
1021 | |
1022 * XEmacs 21.5.5 "beets" is released. | |
1023 | |
725 | 1024 2002-01-08 Stephen J. Turnbull <stephen@xemacs.org> |
1025 | |
1026 * XEmacs 21.5.4 "bamboo" is released. | |
1027 | |
669 | 1028 2001-09-28 Adrian Aichner <adrian@xemacs.org> |
1029 | |
1030 * xemacs.mak (COPY): Use xcopy /r for NT 4.0 compatibility. | |
1031 * xemacs.mak (COPYDIR): Ditto | |
1032 | |
654 | 1033 2001-09-07 Stephen J. Turnbull <stephen@xemacs.org> |
1034 | |
1035 * XEmacs 21.5.3 "asparagus" is released. | |
1036 | |
647 | 1037 2001-06-24 Ben Wing <ben@xemacs.org> |
1038 | |
1039 * config.h: | |
1040 Turn sign-compare warnings back on. | |
1041 | |
641 | 1042 2001-07-28 Stephen J. Turnbull <stephen@xemacs.org> |
1043 | |
1044 * XEmacs 21.5.2 "artichoke" is released. | |
1045 | |
637 | 1046 2001-07-26 Stephen J. Turnbull <stephen@xemacs.org> |
1047 | |
1048 * xemacs.mak (configclean): | |
1049 New target. Convenience for multiplatform builds (need to delete | |
1050 the native config.h since it's newer than config.h.in). | |
1051 (distclean): Use it. | |
1052 | |
1053 * xemacs.mak (DEL): | |
1054 Remove error-suppressing "-" from definition. Use variable in | |
1055 shell structured commands. Prefix "-" to existing uses. | |
1056 (DELS, DELSQ): | |
1057 Remove definitions, WinME can't hack the switches. | |
1058 (distclean): | |
1059 Clean subdirectories of $(LISP) explicitly. | |
1060 | |
1061 * xemacs.mak: | |
1062 Move HAVE_WIDGET and HAVE_TOOLBAR configuration together. | |
1063 | |
632 | 1064 2001-06-12 Stephen J. Turnbull <stephen@xemacs.org> |
1065 | |
1066 * xemacs.mak (HAVE_ZLIB): New, defaults to HAVE_PNG. | |
1067 (USE_MINITAR): Default to HAVE_ZLIB. | |
1068 (MSW_LIBS): Add comctl32.lib if HAVE_WIDGETS. | |
1069 (mostlyclean, nicenclean, distclean, versionclean): Only one target | |
1070 per invocation of $(DEL); don't use unneeded switches (WinME support). | |
1071 | |
1072 (TEMACS_CPP_FLAGS): Add EMACS_PATCH_LEVEL. | |
1073 | |
584 | 1074 2001-05-28 Nick V. Pakoulin <npak@ispras.ru> |
1075 | |
1076 * xemacs.mak (install): Replace calls to (x)copy commands with | |
1077 COPY and COPYDIR variables. | |
1078 (COPY): New | |
1079 (COPYDIR): New | |
1080 | |
580 | 1081 2001-05-26 Ben Wing <ben@xemacs.org> |
1082 | |
1083 * xemacs.mak (DEPEND): | |
1084 * xemacs.mak (LASTFILE_OBJS): | |
1085 * xemacs.mak (LWLIB_OBJS): | |
1086 * xemacs.mak (TEMACS_OBJS): | |
1087 fix use of targets so that config.h doesn't end up being passed | |
1088 to the C compiler as an input file; that creates warnings. | |
1089 put back config.inc into depend-file targets; removed previously | |
1090 in a wrong attempt to fix this same problem. | |
1091 | |
563 | 1092 2001-05-24 Ben Wing <ben@xemacs.org> |
1093 | |
1094 * xemacs.mak (DOC): | |
1095 * xemacs.mak (TEMACS_OBJS): | |
1096 add glyphs-shared.c. | |
1097 | |
558 | 1098 2001-05-23 Ben Wing <ben@xemacs.org> |
1099 | |
1100 * xemacs.mak (installation): | |
1101 call `ver' to get the exact os version and put it in the | |
1102 installation; suggestion from adrian. | |
1103 | |
551 | 1104 2001-05-21 Martin Buchholz <martin@xemacs.org> |
1105 | |
1106 * xemacs.mak: Remove references to lwlib-config. | |
1107 | |
545 | 1108 2001-05-01 Kirill 'Big K' Katsnelson <kkm@dtmx.com> |
1109 | |
1110 * xemacs.mak: Use link to make .rsrc writable, not editbin. | |
1111 | |
528 | 1112 2001-05-10 Ben Wing <ben@xemacs.org> |
1113 | |
1114 * xemacs.mak (TEMACS_LIBS): | |
1115 need another lib (netapi32.lib) for user-name-all-completions. | |
1116 | |
1117 * xemacs.mak (all): | |
1118 * xemacs.mak (OS): | |
1119 remove autoload-building target. | |
1120 | |
523 | 1121 2001-05-09 Ben Wing <ben@xemacs.org> |
1122 | |
1123 * xemacs.mak (OS): | |
1124 do not warn about gtk when we're not trying to compile with it. | |
1125 | |
522 | 1126 2001-05-09 Martin Buchholz <martin@xemacs.org> |
1127 | |
1128 * XEmacs 21.5.1 "anise" is released. | |
1129 | |
496 | 1130 2001-05-01 Adrian Aichner <adrian@xemacs.org> |
1131 | |
1132 * xemacs.mak: Define EMACS_PATCH_LEVEL like configure.in does. | |
1133 * xemacs.mak (XEMACS_VERSION_STRING): Build this more like | |
1134 configure.in does. | |
1135 * xemacs.mak (docfile): Use del instead of $(DEL) in shell | |
1136 command. | |
1137 | |
495 | 1138 2001-05-01 Ben Wing <ben@xemacs.org> |
1139 | |
1140 * config.inc.samp (MAKEINFO): point at more standard c: not f:. | |
1141 * minitar.c: | |
1142 * minitar.c (Usage): | |
1143 * minitar.c (octal): | |
1144 * minitar.c (makepath): | |
1145 * minitar.c (main): | |
1146 Fix more compiler warnings, clean up the style to conform | |
1147 more to standard XEmacs. | |
1148 | |
494 | 1149 2001-05-01 Ben Wing <ben@xemacs.org> |
1150 | |
1151 * xemacs.mak (DEPEND): | |
1152 Don't add config.inc to the horked depend file. It's not | |
1153 recognized by nmake and just results in warnings. | |
1154 * xemacs.mak (docfile): | |
1155 Don't use $(DEL) in the middle of a shell command, because it | |
1156 will try to call `-del' and fail. | |
1157 | |
488 | 1158 2001-04-27 Adrian Aichner <adrian@xemacs.org> |
1159 | |
1160 * compface.mak (clean): New target. | |
1161 * xemacs.mak: Use $(DEL) everywhere, instead of some occurences of | |
1162 del and @$(DEL). Add GTK supporting variables and document it as | |
1163 currently unsupported on MSWindows. | |
1164 * xemacs.mak (XEMACS_VERSION_STRING): Initialize according to | |
1165 emacs_is_beta. Use emacs_beta_version as patch level for non-beta | |
1166 version. | |
1167 * xemacs.mak (HAVE_GTK): New. | |
1168 * xemacs.mak (GTK_DIR): New. | |
1169 | |
479 | 1170 2001-04-20 Ben Wing <ben@xemacs.org> |
1171 | |
1172 * .cvsignore: Added stuff for Windows. | |
1173 | |
472 | 1174 2001-04-18 Martin Buchholz <martin@xemacs.org> |
1175 | |
1176 * XEmacs 21.5.0 "alfalfa" is released. | |
1177 | |
464 | 1178 2001-03-14 Craig Lanning <CraigL@Knology.net> |
1179 | |
1180 * minitar.c: Clean up some compiler warnings. | |
1181 | |
462 | 1182 2001-03-21 Martin Buchholz <martin@xemacs.org> |
1183 | |
1184 * XEmacs 21.2.46 "Urania" is released. | |
1185 | |
1186 2001-03-06 Ben Wing <ben@xemacs.org> | |
1187 | |
1188 * xemacs.mak (DEPEND): | |
1189 Correct line that runs perl to do correct quoting regardless of | |
1190 whether nmake is run from bash. | |
1191 | |
1192 2001-03-02 Ben Wing <ben@xemacs.org> | |
1193 | |
1194 * config.h: Sadly, we need to disable another warning (C4116, | |
1195 unnamed type definition in parentheses: A structure, union, or | |
1196 enumerated type with no name was defined in a parenthetical | |
1197 expression. The type definition is meaningless.), due to Martin's | |
1198 latest definition of ALIGNOF. | |
1199 | |
460 | 1200 2001-02-23 Martin Buchholz <martin@xemacs.org> |
1201 | |
1202 * XEmacs 21.2.45 "Thelxepeia" is released. | |
1203 | |
1204 2001-02-09 Martin Buchholz <martin@xemacs.org> | |
1205 | |
1206 * config.h (HAVE_UTIME): New. | |
1207 * config.h (HAVE_UTIME_H): Remove. | |
1208 * config.h (HAVE_STRUCT_UTIMBUF): Remove. | |
1209 | |
458 | 1210 2001-02-08 Martin Buchholz <martin@xemacs.org> |
1211 | |
1212 * XEmacs 21.2.44 "Thalia" is released. | |
1213 | |
456 | 1214 2001-01-26 Martin Buchholz <martin@xemacs.org> |
1215 | |
1216 * XEmacs 21.2.43 "Terspichore" is released. | |
1217 | |
454 | 1218 2001-01-20 Martin Buchholz <martin@xemacs.org> |
1219 | |
1220 * XEmacs 21.2.42 "Poseidon" is released. | |
1221 | |
452 | 1222 2001-01-17 Martin Buchholz <martin@xemacs.org> |
1223 | |
1224 * XEmacs 21.2.41 "Polyhymnia" is released. | |
1225 | |
450 | 1226 2001-01-08 Martin Buchholz <martin@xemacs.org> |
1227 | |
1228 * XEmacs 21.2.40 is released. | |
1229 | |
448 | 1230 2000-12-31 Martin Buchholz <martin@xemacs.org> |
1231 | |
1232 * XEmacs 21.2.39 is released. | |
1233 | |
446 | 1234 2000-12-05 Martin Buchholz <martin@xemacs.org> |
1235 | |
1236 * XEmacs 21.2.38 is released. | |
1237 | |
444 | 1238 2000-11-14 Martin Buchholz <martin@xemacs.org> |
1239 | |
1240 * XEmacs 21.2.37 is released. | |
1241 | |
1242 2000-10-27 Martin Buchholz <martin@xemacs.org> | |
1243 | |
1244 * config.h: Oops, _getpt ==> _getpty | |
1245 | |
1246 2000-10-11 Martin Buchholz <martin@xemacs.org> | |
1247 | |
1248 * config.h (HAVE_XFREE86): Remove. | |
1249 (HAVE_XREGISTERIMINSTANTIATECALLBACK): New. | |
1250 (XREGISTERIMINSTANTIATECALLBACK_NONSTANDARD_PROTOTYPE): New. | |
1251 | |
1252 2000-10-10 Martin Buchholz <martin@xemacs.org> | |
1253 | |
1254 * config.h: | |
1255 Sync with pty/signaling related changes to src/config.h.in | |
1256 | |
1257 2000-10-07 Adrian Aichner <aichner@ecf.teradyne.com> | |
1258 | |
1259 * xemacs.mak (default): Enforce runnig nmake from xemacs.mak's | |
1260 directory to avoid problems with relative paths. | |
1261 | |
442 | 1262 2000-10-04 Martin Buchholz <martin@xemacs.org> |
1263 | |
1264 * XEmacs 21.2.36 is released. | |
1265 | |
1266 2000-09-30 Martin Buchholz <martin@xemacs.org> | |
1267 | |
1268 * config.h (HAVE_STRCASECMP): Remove. | |
1269 | |
1270 2000-09-07 Jonathan Harris <jhar@tardis.ed.ac.uk> | |
1271 | |
1272 * xemacs.mak: | |
1273 Make src\depend parsing recognise "#if defined" instead of "#ifdef". | |
1274 Use matching single quotes to keep 4dos shell happy. | |
1275 | |
1276 2000-08-07 Ben Wing <ben@xemacs.org> | |
1277 | |
1278 * xemacs.mak: add getloadavg.c. | |
1279 | |
1280 2000-07-30 Ben Wing <ben@xemacs.org> | |
1281 | |
1282 * README (NOTE): | |
1283 Improve X documentation. | |
1284 Document nascent Mule support. | |
1285 Document current MS Windows contributors. | |
1286 | |
1287 2000-07-15 Ben Wing <ben@xemacs.org> | |
1288 | |
1289 * xemacs.mak: | |
1290 added new file win32.c. | |
1291 took out unused alloca.c. | |
1292 * xemacs.mak (update-elc-2): added new target for rebuilding the | |
1293 remaining .elcs after dumped. its dependency is added for target | |
1294 all. | |
1295 * xemacs.mak (update-auto-and-custom): | |
1296 cleaned up ; now it byte-compiles custom-load.el. | |
1297 * xemacs.mak (mostlyclean): | |
1298 * xemacs.mak (clean): | |
1299 * xemacs.mak (nicenclean): | |
1300 * xemacs.mak (distclean): | |
1301 * xemacs.mak (realclean): | |
1302 * xemacs.mak (versionclean): | |
1303 Redid all the clean targets, to be similar to what's in the | |
1304 standard Makefile. | |
1305 | |
1306 2000-07-18 Kirill 'Big K' Katsnelson <kkm@dtmx.com> | |
1307 | |
1308 * xemacs.mak ($(PROGNAME)): Do check error code from temacs during | |
1309 dumping. | |
1310 | |
1311 2000-07-19 Martin Buchholz <martin@xemacs.org> | |
1312 | |
1313 * XEmacs 21.2.35 is released. | |
1314 | |
1315 2000-07-14 IKEYAMA Tomonori <tomonori@suiyokai.org> | |
1316 | |
1317 * config.h: Import C++ compilation stuff from src/config.h. | |
1318 | |
1319 2000-07-05 Craig Lanning <lanning@scra.org> | |
1320 | |
1321 * xemacs.rc: Uppercase the id's so that windres will work. | |
1322 | |
1323 2000-07-05 Kirill 'Big K' Katsnelson <kkm@dtmx.com> | |
1324 | |
1325 * xemacs.mak (TEMACS_LIBS): Added comdlg32.lib | |
1326 | |
1327 2000-06-12 Ben Wing <ben@xemacs.org> | |
1328 | |
1329 * config.h (ENCAPSULATE_STAT): | |
1330 Always encapsulate stat/fstat. Also suggested by Mike Alexander | |
1331 <mike.alexander@xemacs.org>. | |
1332 | |
1333 2000-06-10 Ben Wing <ben@xemacs.org> | |
1334 | |
1335 * config.h: | |
1336 * config.h (HAVE_GETPAGESIZE): | |
1337 * config.h (HAVE_GETTIMEOFDAY): | |
1338 corrections to go along with removed nt/inc. | |
1339 removed HAVE_FEP. | |
1340 | |
1341 * config.inc.samp: | |
1342 correct graphics lib paths to agree with binaries provided in | |
1343 ftp aux dir. | |
1344 | |
1345 * xemacs.mak (DEPEND): | |
1346 * xemacs.mak (DEFINES): | |
1347 * xemacs.mak (LIB_SRC_DEFINES): | |
1348 * xemacs.mak (minitar): | |
1349 * xemacs.mak (TEMACS_LFLAGS): | |
1350 * xemacs.mak (tags): | |
1351 * xemacs.mak (all): | |
1352 * xemacs.mak (install): | |
1353 WINDOWSNT -> WIN32_NATIVE. | |
1354 Don't build run*.exe. | |
1355 comments about required ^^. | |
1356 Added setargv.obj to the list of linked entities, | |
1357 causing automatic wildcarding of filenames given on the | |
1358 command line. (As usual, enclose in double quotes to avoid | |
1359 this.) | |
1360 | |
1361 2000-06-07 Ben Wing <ben@xemacs.org> | |
1362 | |
1363 * runemacs.c: Removed. No longer necessary. | |
1364 | |
1365 * Makefile.cygwin: Removed. | |
1366 | |
1367 * inc\*: Removed. At long-fucking-last! | |
1368 | |
1369 2000-05-28 Martin Buchholz <martin@xemacs.org> | |
1370 | |
1371 * XEmacs 21.2.34 is released. | |
1372 | |
1373 2000-05-12 Craig Lanning <CraigL@DyCon.com> | |
1374 | |
1375 * inc\sys\socket.h: Don't define timeval as ws_timeval for mingw32 | |
1376 | |
1377 2000-05-01 Martin Buchholz <martin@xemacs.org> | |
1378 | |
1379 * XEmacs 21.2.33 is released. | |
1380 | |
1381 2000-04-27 Ben Wing <ben@xemacs.org> | |
1382 | |
1383 * xemacs.mak: combine auto-autoloads.el and custom.el update into | |
1384 one call to xemacs. | |
1385 | |
1386 2000-04-26 Ben Wing <ben@xemacs.org> | |
1387 | |
1388 * xemacs.mak: put in support for QUICK_BUILD. | |
1389 | |
1390 * config.inc.samp: put in an entry for QUICK_BUILD. | |
1391 | |
1392 2000-04-23 Ben Wing <ben@xemacs.org> | |
1393 | |
1394 * xemacs.mak: Modified section that dumps .exe to not dump | |
1395 when nothing has changed. It does this by relying on a flag | |
1396 set by update-elcs. | |
1397 | |
1398 Also in building of auto-autoloads.el, we no longer unconditionally | |
1399 remove the old one. That was pointless and made the whole build | |
1400 procedure a lot longer -- the autoload code is smart enough to | |
1401 update itself automatically from an out-of-date autoload file. | |
1402 | |
1403 2000-04-04 Kirill 'Big K' Katsnelson <kkm@dtmx.com> | |
1404 | |
1405 * xemacs.mak: Build the i utility and use it to pipe windowed | |
1406 [xt]emacs output to the build console. | |
1407 | |
1408 2000-03-25 Didier Verna <didier@xemacs.org> | |
1409 | |
1410 * config.h: handle the renaming of `foo_h_path' to `foo_h_file'. | |
1411 | |
1412 2000-03-22 Mike Alexander <mta@arbortext.com> | |
1413 | |
1414 * xemacs.mak (PROGRAM_DEFINES): Define EMACS_VERSION and | |
1415 EMACS_PROGNAME | |
1416 (DEPEND): Don't try to create $(OUTDIR) if it already exists | |
1417 ($(SRC)\dump-id.c): Make it | |
1418 (DOC_SRC11): Add dumper.c if portable dumping | |
1419 (dump-xemacs): Make portable dumping work again and create | |
1420 dump-id.c and compile it whenever we do a portable dump. | |
1421 (depend): Change $(SRCDIR) to $(SRC) | |
1422 | |
1423 2000-03-22 Jonathan Harris <jhar@tardis.ed.ac.uk> | |
1424 | |
1425 * .cvsignore: New file, ignores user's config.inc and files | |
1426 containing the user's DevStudio workspace info. | |
1427 | |
1428 * config.h.samp: Added DEPEND option. Renamed HAVE_MSW and HAVE_X to | |
1429 HAVE_MS_WINDOWS and HAVE_X_WINDOWS. | |
1430 | |
1431 * README: Documented DEPEND option. Other small changes. | |
1432 | |
1433 * Todo: Removed - was hopelessly out of date. | |
1434 | |
1435 * config.h.samp: | |
1436 * xemacs.mak: Added DEPEND option to control use of dependency | |
1437 information generated by make-src-depend. Requires Perl. Defaults | |
1438 to disabled. Renamed HAVE_MSW and HAVE_X to HAVE_MS_WINDOWS and | |
1439 HAVE_X_WINDOWS as a side-effect. | |
1440 Handles '&' in XEmacs codenames by replacing with 'and'. | |
1441 | |
1442 * xemacs.dsp: | |
1443 Correct Output_Dir so that DevStudio finds the xemacs executable | |
1444 by default. | |
1445 | |
1446 2000-03-20 Ben Wing <ben@xemacs.org> | |
1447 | |
1448 * README: Substantial rewrite. | |
1449 * xemacs.mak: Pdump fix. (not working yet, though) | |
1450 | |
1451 2000-03-20 Martin Buchholz <martin@xemacs.org> | |
1452 | |
1453 * XEmacs 21.2.32 is released. | |
1454 | |
1455 2000-03-15 Mike Alexander <mta@arbortext.com> | |
1456 | |
1457 * xemacs.mak: Fix for generation of $(XEMACS)\Installation. | |
1458 | |
785 | 1459 2000-03-14 Adrian Aichner <adrian@xemacs.org> |
442 | 1460 |
1461 * xemacs.mak (LIB_SRC_TOOLS): LIB_SRC_TOOLS depend on | |
1462 XEMACS_INCLUDES when we USE_PORTABLE_DUMPER. | |
1463 | |
1464 2000-03-13 Ben Wing <ben@xemacs.org> | |
1465 | |
1466 * xemacs.mak (TEMACS_ENTRYPOINT): | |
1467 Fix for portable dumper. | |
1468 | |
1469 2000-03-12 Ben Wing <ben@xemacs.org> | |
1470 | |
1471 * xemacs.mak (*): | |
1472 * config.inc: New. | |
1473 | |
1474 a) Added a file called config.inc which makes it easier to set | |
1475 build options for MS Windows. (Previously, the only way to do this | |
1476 was through command line options to nmake.) | |
1477 | |
1478 b) Cleaned the file up a bit. | |
1479 | |
1480 c) Changed xemacs to be a windows application and not a console | |
1481 application, now that runemacs.exe is no longer necessary. | |
1482 | |
1483 d) Added support for building the tags file. | |
1484 | |
1485 * xemacs.dsw: New. | |
1486 * xemacs.dsp: New. | |
1487 For compiling, editing, and debugging XEmacs using the VC++ 5.0 | |
1488 GUI. They may well work under other versions of VC++, but I don't | |
1489 have access to them to test them. | |
1490 | |
1491 2000-03-11 Andy Piper <andy@xemacs.org> | |
1492 | |
1493 * PROBLEMS: Doc fix from Reini Urban <rurban@x-ray.at>. | |
1494 | |
1495 2000-02-27 Mike Alexander <mta@arbortext.com> | |
1496 | |
1497 * xemacs.rc: Include the portable dump data if INCLUDE_DUMP is defined | |
1498 | |
1499 * xemacs.mak: Add the portable dump data to the EXE as a resource | |
1500 | |
1501 2000-03-07 Jonathan Harris <jhar@tardis.ed.ac.uk> | |
1502 | |
1503 * xemacs.mak (TEMACS_LIBS): Add ole32.lib and uuid.lib. | |
1504 (installation): Always regenerate installation report. | |
1505 | |
1506 2000-02-25 Craig Lanning <CraigL@DyCon.com> | |
1507 | |
1508 * inc\sys\time.h: MinGW defines struct timeval in <winsock.h>. | |
1509 | |
1510 2000-02-24 Martin Buchholz <martin@xemacs.org> | |
1511 | |
1512 * config.h (INLINE_HEADER): Define properly (?) for Windows. | |
1513 | |
1514 2000-02-23 Martin Buchholz <martin@xemacs.org> | |
1515 | |
1516 * XEmacs 21.2.31 is released. | |
1517 | |
1518 2000-02-22 Martin Buchholz <martin@xemacs.org> | |
1519 | |
1520 * config.h (gc_checking_assert): New. | |
1521 | |
1522 2000-02-21 Martin Buchholz <martin@xemacs.org> | |
1523 | |
1524 * XEmacs 21.2.30 is released. | |
1525 | |
1526 2000-02-21 Jonathan Harris <jhar@tardis.ed.ac.uk> | |
1527 | |
1528 * README: Tidy up. | |
1529 Document need for makeinfo program or texinfo package. | |
1530 | |
1531 * Xmd.patch: New file, previously in README. | |
1532 | |
1533 2000-02-17 Martin Buchholz <martin@xemacs.org> | |
1534 | |
1535 * config.h: Delete unused HAVE_LINUX_VERSION_H. | |
1536 | |
1537 2000-02-16 Martin Buchholz <martin@xemacs.org> | |
1538 | |
1539 * XEmacs 21.2.29 is released. | |
1540 | |
1541 2000-02-06 Mike Alexander <mta@arbortext.com> | |
1542 | |
1543 * xemacs.mak (install): Copy xemacs.dmp if using the portable | |
1544 dumper. | |
1545 | |
440 | 1546 2000-02-07 Martin Buchholz <martin@xemacs.org> |
1547 | |
1548 * XEmacs 21.2.28 is released. | |
1549 | |
1550 2000-02-03 Kirill 'Big K' Katsnelson <kkm@dtmx.com> | |
1551 | |
1552 * Xpm.def: New file, required to build Xpm.dll. | |
1553 | |
1554 * Xpm.mak: Use DEBUG instead of DEBUG_XEMACS - this library is not | |
1555 xemacs-specific. Initialize to DEBUG_XEMACS if specified for | |
1556 compatibility. | |
1557 Build DLL instead of static LIB when USE_CRTDLL=1 is given to | |
1558 make. | |
1559 | |
1560 * xemacs.mak: Introduced USE_SYSTEM_MALLOC and USE_CRTDLL. | |
1561 Do not build lastfile.lib when neither unexec not gmalloc are | |
1562 used. | |
1563 | |
1564 * config.h: Deleted GNU_MALLOC and SYSTEM_MALLOC, as they are set | |
1565 in makefile. | |
1566 | |
1567 2000-01-26 Kirill 'Big K' Katsnelson <kkm@dtmx.com> | |
1568 | |
1569 * xemacs.mak (DOC_SRC9): Added tests.c ... | |
1570 (TEMACS_DEBUG_OBJS): ... and tests.obj | |
1571 ($(DOC)): Tweaked a bit, for `nmake docfile' unconditionally | |
1572 rebuild the docfile. | |
1573 | |
1574 2000-01-22 Kirill 'Big K' Katsnelson <kkm@dtmx.com> | |
1575 | |
1576 * xemacs.mak (docfile): Added shortcut target. | |
1577 | |
1578 2000-01-19 Kirill 'Big K' Katsnelson <kkm@dtmx.com> | |
1579 | |
1580 * xemacs.mak (TEMACS_LIBS): Added winspool.lib | |
1581 | |
1582 2000-01-20 Martin Buchholz <martin@xemacs.org> | |
1583 | |
1584 * xemacs.mak (dump-xemacs): Remove redundant EMACSBOOTSTRAPMODULEPATH. | |
1585 | |
1586 2000-01-18 Kirill 'Big K' Katsnelson <kkm@dtmx.com> | |
1587 | |
1588 * xemacs.mak: Patch of 01/13 got in corrupted, fixed. | |
1589 | |
438 | 1590 2000-01-18 Martin Buchholz <martin@xemacs.org> |
1591 | |
1592 * XEmacs 21.2.27 is released. | |
1593 | |
1594 2000-01-18 Martin Buchholz <martin@xemacs.org> | |
1595 | |
1596 * minitar.c: Errno.h --> errno.h. Remove errno declaration. | |
1597 | |
1598 2000-01-13 Kirill 'Big K' Katsnelson <kkm@dtmx.com> | |
1599 | |
1600 * xemacs.mak: Added USE_PORTABLE_DUMPER make command line macro. | |
1601 (temacs:) Added dependency for lastfile.lib so that 'make temacs' | |
1602 builds it first. | |
1603 | |
1604 1999-12-28 Scott Blachowicz <Scott.Blachowicz@seaslug.org> | |
1605 | |
1606 * minitar.mak: Add vars to allow building from main xemacs.mak. | |
1607 | |
1608 * xemacs.mak: Add rules to build & install minitar. | |
1609 | |
440 | 1610 2000-01-03 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> |
1611 | |
1612 * config.h: Fix stuff related to mail locking. | |
1613 | |
436 | 1614 1999-12-31 Martin Buchholz <martin@xemacs.org> |
1615 | |
1616 * XEmacs 21.2.26 is released. | |
1617 | |
434 | 1618 1999-12-24 Martin Buchholz <martin@xemacs.org> |
1619 | |
1620 * XEmacs 21.2.25 is released. | |
1621 | |
1622 1999-12-15 Scott Blachowicz <Scott.Blachowicz@seaslug.org> | |
1623 | |
1624 * minitar.c (main): Add explicit exit(0) to get successful return | |
1625 code. | |
1626 | |
432 | 1627 1999-12-14 Martin Buchholz <martin@xemacs.org> |
1628 | |
1629 * XEmacs 21.2.24 is released. | |
1630 | |
434 | 1631 1999-11-28 Adrian Aichner <adrian@xemacs.org> |
430 | 1632 |
1633 * xemacs.mak (depend): Only update `depend' if there were changes. | |
1634 Use "perl ./make-src-depend" instead of "mkdepend". | |
1635 | |
1636 1999-12-07 Martin Buchholz <martin@xemacs.org> | |
1637 | |
1638 * XEmacs 21.2.23 is released. | |
1639 | |
434 | 1640 1999-11-27 Adrian Aichner <adrian@xemacs.org> |
430 | 1641 |
1642 * xemacs.mak (SRCDIR): Make path to xemacs absolute to | |
1643 facilitate building info in man subdirs. Echo all cd commands, | |
442 | 1644 not just some of them. |
430 | 1645 |
1646 (makeinfo-test): Test for availability of `texinfo' package to | |
1647 build info. Recommend use of external `makeinfo' program for | |
1648 building info docs faster. | |
1649 | |
1650 (info): cd into man subdirs to support use of external `makeinfo' | |
1651 program. | |
1652 | |
1653 1999-11-17 Martin Buchholz <martin@xemacs.org> | |
1654 | |
1655 * xemacs.mak: Remove references to index.unperm, index.perm. | |
1656 Fix dependencies. | |
1657 Shouldn't .obj and .info be in SUFFIXES? | |
1658 Remove extra `\'. | |
1659 | |
428 | 1660 1999-11-29 XEmacs Build Bot <builds@cvs.xemacs.org> |
1661 | |
1662 * XEmacs 21.2.22 is released | |
1663 | |
1664 1999-11-28 Martin Buchholz <martin@xemacs.org> | |
1665 | |
1666 * XEmacs 21.2.21 is released. | |
1667 | |
1668 1999-11-10 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1669 | |
1670 * XEmacs 21.2.20 is released | |
1671 | |
1672 1999-10-07 Norbert Koch <n.koch@eai-delta.de> | |
1673 | |
1674 * xemacs.mak: Ignore return code of 'del' calls. Use a make | |
1675 variable for 'del'. | |
1676 | |
434 | 1677 1999-09-26 Adrian Aichner <adrian@xemacs.org> |
428 | 1678 |
1679 * xemacs.mak (all): Update $(LISP)/auto-autoloads.elc? and | |
1680 $(LISP)/custom-load.el using XEmacs itself, like xemacs-packages | |
1681 do. | |
1682 ($(LISP)\auto-autoloads.el): Add new rule. | |
1683 ($(LISP)\custom-load.el): Ditto. | |
1684 | |
1685 1999-08-04 Andy Piper <andy@xemacs.org> | |
1686 | |
1687 * xemacs.mak (HAVE_WIDGETS): add define to appropriate places. | |
1688 | |
434 | 1689 1999-07-26 Adrian Aichner <adrian@xemacs.org> |
428 | 1690 |
1691 * xemacs.mak ($(MANDIR)\lispref\lispref.texi): Replace bad | |
1692 dependency. | |
1693 | |
1694 1999-07-30 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1695 | |
1696 * XEmacs 21.2.19 is released | |
1697 | |
434 | 1698 1999-07-10 Adrian Aichner <adrian@xemacs.org> |
428 | 1699 |
1700 * xemacs.mak (.SUFFIXES): Add .texi. | |
1701 (check): Improve automated test section. | |
1702 (info): Generate info files using XEmacs (no makeinfo.exe needed). | |
1703 | |
1704 1999-07-19 Andy Piper <andy@xemacs.org> | |
1705 | |
1706 * xemacs.mak (DOC_SRC3): add gutter.c | |
1707 (TEMACS_OBJS): add gutter.obj. | |
1708 | |
1709 1999-07-13 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1710 | |
1711 * XEmacs 21.2.18 is released | |
1712 | |
1713 1999-06-22 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1714 | |
1715 * XEmacs 21.2.17 is released | |
1716 | |
434 | 1717 1999-06-13 Adrian Aichner <adrian@xemacs.org> |
428 | 1718 |
1719 * xemacs.mak (DOC_SRC8): Remove mule-coding.c. | |
1720 (TEMACS_MULE_OBJS): Remove mule-coding.obj | |
1721 (check): Implement according to src/Makefile. | |
1722 (check-temacs): ditto. | |
1723 | |
1724 1999-06-05 Norbert Koch <n.koch@delta-ii.de> | |
1725 | |
1726 * xemacs.mak (mule): remove dependencies from mule-coding.c | |
442 | 1727 |
428 | 1728 1999-06-11 XEmacs Build Bot <builds@cvs.xemacs.org> |
1729 | |
1730 * XEmacs 21.2.16 is released | |
1731 | |
442 | 1732 1999-05-14 Adrian Aichner <adrian@xemacs.org> |
428 | 1733 |
1734 * xemacs.mak (GUNG_HO): Explicitly default to 0. | |
1735 Fix some comment typos. | |
1736 ($(XEMACS)\Installation): Create it in the toplevel-directory, | |
1737 where it is expected by loadup.el | |
1738 | |
1739 1999-06-04 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1740 | |
1741 * XEmacs 21.2.15 is released | |
1742 | |
1743 1999-05-31 Andy Piper <andy@xemacs.org> | |
1744 | |
1745 * xemacs.mak: add select & select-x targets. | |
442 | 1746 |
428 | 1747 1999-05-14 XEmacs Build Bot <builds@cvs.xemacs.org> |
1748 | |
1749 * XEmacs 21.2.14 is released | |
1750 | |
1751 1999-05-12 SL Baur <steve@gneiss.etl.go.jp> | |
1752 | |
1753 * xemacs.mak: please document me | |
1754 From Norbert Koch <n.koch@delta-ii.de> | |
1755 | |
1756 1999-05-03 Hrvoje Niksic <hniksic@srce.hr> | |
1757 | |
1758 * xemacs.mak ($(LISP)\Installation.el): Don't use | |
1759 `replace-in-string'. | |
1760 | |
434 | 1761 1999-03-17 Adrian Aichner <adrian@xemacs.org> |
428 | 1762 |
1763 * xemacs.mak: Remove ESC macro -- no longer needed. | |
1764 Remove small configuration report. Remove simplified version of | |
1765 Installation and Installation.el | |
1766 (Installation.el): Create it depending on "Installation" file. | |
1767 Replace \r characters by use of `replace-in-string' in lisp-land. | |
1768 (all): Make it depend on "Installation" file. | |
1769 (Installation): Create a complete "Installation" file, looking | |
1770 much like what is generated by "configure" on UNIX systems. | |
1771 Insert WARNING where appropriate (currently when building without | |
1772 HAVE_XPM, HAVE_PNG, and HAVE_MSW_C_DIRED). | |
1773 Type "Installation" to STDOUT much like the "small configuration | |
1774 report" did. | |
1775 | |
1776 1999-04-29 Andy Piper <andy@xemacs.org> | |
442 | 1777 |
428 | 1778 * sys/file.h: conditionalise definition of X_OK. |
442 | 1779 |
428 | 1780 1999-03-12 XEmacs Build Bot <builds@cvs.xemacs.org> |
1781 | |
1782 * XEmacs 21.2.13 is released | |
1783 | |
1784 1999-03-07 Jonathan Harris <jhar@tardis.ed.ac.uk> | |
1785 | |
1786 * xemacs.mak: | |
1787 Don't link lib-src programs incrementally. | |
1788 Don't include debug info in release builds. | |
1789 Put intermediate files in the appropriate directories. | |
1790 Make "distclean" target delete all intermediate files. | |
1791 | |
1792 1999-03-07 Jonathan Harris <jhar@tardis.ed.ac.uk> | |
1793 | |
1794 * xemacs.mak: | |
1795 Fix building on Windows 95/98 by conditionalising escape | |
1796 character '^'. | |
1797 Only put mule-packages in package path on MULE builds. | |
1798 Only build source browser files on debug builds. | |
1799 Build source browser database before link so that it's | |
1800 available even if link fails. | |
1801 | |
1802 1999-03-05 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1803 | |
1804 * XEmacs 21.2.12 is released | |
1805 | |
1806 1999-03-03 Gleb Arshinov <gleb@cs.stanford.edu> | |
1807 | |
1808 * xemacs.mak (HAVE_XFACE): fix for building without X-Face support | |
1809 provided by Brent B. Powers <bpowers@ms.com>. | |
1810 | |
1811 * xemacs.mak (CONFIG_ERROR): Misc error detection for build with | |
1812 X-Face. | |
1813 | |
1814 1999-02-01 Gleb Arshinov <gleb@cs.stanford.edu> | |
1815 | |
1816 * README: Document the X-Face build option. | |
1817 | |
1818 * compface.mak: New file | |
1819 Makefile for building compface library under MSVC. Build | |
1820 library only, not executables. Should be extended to build | |
1821 executables and propagated upstream, if possible. | |
1822 | |
1823 * xemacs.mak: Link in X-Face/Compface for NT native build. | |
1824 | |
1825 1999-03-01 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1826 | |
1827 * XEmacs 21.2.11 is released | |
1828 | |
1829 1999-02-05 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1830 | |
1831 * XEmacs 21.2.10 is released | |
1832 | |
1833 1999-02-02 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1834 | |
1835 * XEmacs 21.2.9 is released | |
1836 | |
434 | 1837 1999-01-14 Adrian Aichner <adrian@xemacs.org> |
428 | 1838 |
1839 * xemacs.mak (MODULES): Adding variable. | |
1840 (update-elc): Setting EMACSBOOTSTRAPMODULEPATH. | |
1841 | |
1842 1998-12-17 Charles G. Waldman <cgw@pgt.com> | |
1843 | |
1844 * minitar.c: New file | |
1845 * minitar.mak: New file | |
1846 | |
1847 1998-12-29 Jonathan Harris <jhar@tardis.ed.ac.uk> | |
1848 | |
1849 * xemacs.mak: | |
1850 Changed x86 EMACS_CONFIGURATION to i586-pc-win32 since we | |
1851 build optimised for Pentium. | |
1852 Created CFLAGS variable, used in building all objects and in | |
1853 constructing config.values. | |
1854 Added glyphs-widget.c and gui-msw.c to list of sources. | |
1855 Added PACKAGE_PATH to EMACSBOOTSTRAPLOADPATH for mule builds. | |
1856 | |
1857 1998-12-28 Martin Buchholz <martin@xemacs.org> | |
1858 | |
1859 * XEmacs 21.2.8 is released. | |
1860 | |
1861 1998-12-24 Martin Buchholz <martin@xemacs.org> | |
1862 | |
1863 * XEmacs 21.2.7 is released. | |
1864 | |
1865 1998-12-13 Jonathan Harris <jhar@tardis.ed.ac.uk> | |
1866 | |
1867 * xemacs.mak: | |
442 | 1868 Replaced PACKAGEPATH variable with PACKAGE_PREFIX. |
428 | 1869 configure-package-path is initialised to contain |
1870 subdirectories of PACKAGE_PREFIX. The install target makes | |
1871 a skeleton package tree under PACKAGE_PREFIX. | |
1872 | |
1873 * README, PROBLEMS: | |
1874 Documented the package path changes. | |
1875 Corrected the advice on a suitable minimal set of packages. | |
1876 | |
1877 1998-12-17 Andy Piper <andy@xemacs.org> | |
1878 | |
1879 * xemacs.mak ($(LIB_SRC)/movemail.exe): adapt make rule to build | |
1880 with pop support. | |
1881 | |
1882 * xemacs.mak: add gui-msw.c and glyphs-widget.c object lists. | |
1883 | |
1884 1998-12-16 Andy Piper <andy@xemacs.org> | |
1885 | |
1886 * XEmacs 21.2.6 is released | |
1887 | |
434 | 1888 1998-12-11 Adrian Aichner <adrian@xemacs.org> |
428 | 1889 |
1890 * xemacs.mak (DOC_SRC2): CLASH_DETECTION is not supported under | |
1891 native Windows NT. Therefore src\filelock.c is not to be | |
1892 compiled. | |
1893 (TEMACS_OBJS): Consequently, don't link in $(OUTDIR)\filelock.obj. | |
1894 | |
1895 1998-12-10 Jonathan Harris <jhar@tardis.ed.ac.uk> | |
1896 | |
1897 * xemacs.mak ($(OUTDIR)\alloc.obj): add a dependency on | |
1898 puresize-adjust.h to avoid infinite recursion. | |
1899 | |
1900 1998-12-09 Andy Piper <andy@xemacs.org> | |
1901 | |
1902 * config.h: remove clash detection stuff. | |
1903 | |
1904 1998-12-07 Martin Buchholz <martin@xemacs.org> | |
1905 | |
1906 * xemacs.mak (TEMACS_OBJS): | |
442 | 1907 (DOC_SRC4): |
428 | 1908 - Remove pure.c, pure.obj |
1909 | |
434 | 1910 1998-11-04 Adrian Aichner <adrian@xemacs.org> |
428 | 1911 |
1912 * xemacs.mak: Creating minimal versions of Installation, | |
1913 Installation.el, and config.values to make | |
1914 (describe-installation) and (config-value ...) work in Windows NT | |
1915 native builds. Incorporating rule for movemail.exe courtesy of | |
1916 Andy Piper. | |
1917 | |
1918 1998-12-05 XEmacs Build Bot <builds@cvs.xemacs.org> | |
1919 | |
1920 * XEmacs 21.2.5 is released | |
1921 | |
1922 1998-11-28 SL Baur <steve@altair.xemacs.org> | |
1923 | |
1924 * XEmacs 21.2-beta4 is released. | |
1925 | |
1926 1998-10-29 Andy Piper <andyp@parallax.co.uk> | |
1927 | |
1928 * xemacs.mak ($(LIB_SRC)/movemail.exe): add etags dependencies to | |
1929 pull in getopt and friends. | |
1930 | |
1931 1998-10-15 SL Baur <steve@altair.xemacs.org> | |
1932 | |
1933 * XEmacs 21.2-beta3 is released. | |
1934 | |
1935 1998-09-29 SL Baur <steve@altair.xemacs.org> | |
1936 | |
1937 * XEmacs 21.2-beta2 is released. | |
1938 | |
434 | 1939 1998-09-19 Adrian Aichner <adrian@xemacs.org> |
428 | 1940 |
1941 * tiff.mak: New file provided by Charles Wilson | |
1942 <cwilson@ee.gatech.edu> | |
1943 | |
1944 * README: Update provided by Charles Wilson | |
1945 <cwilson@ee.gatech.edu>. Documenting use of the newly | |
1946 introduced tiff.mak. Renumbering subsequent build instruction | |
1947 items. | |
1948 | |
1949 1998-09-20 Jonathan Harris <jhar@tardis.ed.ac.uk> | |
1950 | |
1951 * PROBLEMS: New file. | |
1952 | |
1953 * xemacs.mak: Install the PROBLEMS file in the root directory of | |
1954 the XEmacs installation. | |
1955 | |
1956 1998-08-31 Jonathan Harris <jhar@tardis.ed.ac.uk> | |
1957 | |
1958 * xemacs.mak: Detect failure to supply PNG_DIR or XLIB_DIR | |
1959 when building with PNG support. | |
1960 | |
1961 1998-08-31 Jonathan Harris <jhar@tardis.ed.ac.uk> | |
1962 | |
1963 * README: Document the PNG, ZLIB, JPEG, TIFF and GIF build | |
1964 options. | |
1965 | |
1966 1998-08-12 Jeff Sparkes <jsparkes@internetivity.com> | |
1967 | |
1968 * xemacs.mak: Link in GIF, fix HAVE_JPEG default. | |
1969 | |
1970 1998-08-09 Jonathan Harris <jhar@tardis.ed.ac.uk> | |
1971 | |
1972 * xemacs.mak (install): Win95 fixes: | |
1973 DOS mkdir doesn't create intermediate directories. xcopy does | |
1974 so use it to create the install and lock directories. | |
1975 Removed trailing backslashes from copy commands since DOS | |
1976 copy doesn't like them. | |
1977 | |
1978 1998-08-05 Charles G. Waldman <cgw@pgt.com> | |
1979 | |
1980 * xemacs.mak: change "copy" to "xcopy" in install target | |
1981 | |
442 | 1982 1998-08-04 Jeff Sparkes <jsparkes@internetivity.com> |
428 | 1983 |
1984 * xemacs.mak: Link in PNG, TIFF and JPEG in native build. | |
1985 | |
1986 1998-08-04 Jonathan Harris <jhar@tardis.ed.ac.uk> | |
1987 | |
1988 * README: XEmacs has been successfully built with MSVC 4.0. | |
1989 Mention the vcvars32.bat file installed with the MSVC tools. | |
1990 | |
1991 1998-07-19 SL Baur <steve@altair.xemacs.org> | |
1992 | |
1993 * XEmacs 21.2-beta1 is released. | |
1994 | |
1995 1998-07-13 Jonathan Harris <jhar@tardis.ed.ac.uk> | |
1996 | |
1997 * xemacs.mak: | |
1998 Add path to xemacs.res dependency. | |
1999 | |
2000 1998-07-12 SL Baur <steve@altair.xemacs.org> | |
2001 | |
2002 * XEmacs 21.0-pre5 is released. | |
2003 | |
2004 1998-07-09 SL Baur <steve@altair.xemacs.org> | |
2005 | |
2006 * XEmacs 21.0-pre4 is released. | |
2007 | |
2008 1998-07-04 Jonathan Harris <jhar@tardis.ed.ac.uk> | |
2009 | |
2010 * README: Documented the changed PACKAGEPATH option and the new | |
2011 INSTALL_DIR option, install target and runemacs executable. | |
2012 Added more debugging documentation. | |
2013 | |
2014 * config.h: Don't undef EMACS_CONFIGURATION because it's now | |
2015 set in the makefile. | |
2016 | |
2017 * xemacs.mak: Added an INSTALL_DIR option and install target. | |
2018 Renamed the default package location option to PACKAGEPATH | |
2019 and made it cope with paths with spaces in them. | |
2020 Made non-debug build the default; DEBUG_XEMACS defaults to 0. | |
2021 System configuration (EMACS_CONFIGURATION) now correctly | |
2022 determined at build-time by this makefile. | |
2023 Compiles the runemacs executable as part of the all target. | |
2024 | |
2025 1998-06-29 SL Baur <steve@altair.xemacs.org> | |
2026 | |
2027 * config.h: | |
2028 * xemacs.mak: NT native sound fixes | |
434 | 2029 From Fabrice POPINEAU via Adrian Aichner <adrian@xemacs.org> |
428 | 2030 |
2031 1998-06-21 Martin Buchholz <martin@xemacs.org> | |
2032 | |
2033 * xemacs.mak: It's XEmacs, not Xemacs! | |
2034 | |
2035 1998-06-19 Jonathan Harris <jhar@tardis.ed.ac.uk> | |
2036 | |
2037 * file.ico, lisp.ico: | |
2038 New icons to represent a generic file and a lisp file. | |
2039 | |
2040 * xemacs.rc: Build file.ico and lisp.ico into the executable. | |
2041 | |
2042 1998-06-15 Peter Windle <peterw@sdl.ug.eds.com> | |
2043 | |
2044 * xemacs.mak: Made XPM and X11 checks cope with case-sensitive | |
2045 NFS. Also apply Sean MacLennan's change allowing | |
2046 emacs_beta_version to be undefined. | |
2047 | |
2048 1998-06-19 SL Baur <steve@altair.xemacs.org> | |
2049 | |
2050 * xemacs.mak (distclean): Reorder when puresize-adjust.h gets | |
2051 deleted. | |
434 | 2052 From Adrian Aichner <adrian@xemacs.org> |
428 | 2053 |
2054 1998-06-08 Kirill M. Katsnelson <kkm@kis.ru> | |
2055 | |
2056 * config.h: Undefined DONT_ENCAPSULATE. | |
2057 Defined ENCAPSULATE_* for fopem, open, rename and mkdir. | |
2058 Removed MS-DOS code remains. | |
2059 | |
2060 1998-06-03 Rick Rankin <Rick_Rankin-P15254@email.mot.com> | |
2061 | |
2062 * Makefile.cygwin: created to compile runemacs.c. This should | |
2063 probably have a Makefile.in, but... | |
2064 | |
2065 * runemacs.c: modified to check to see if xemacs is a symbolic | |
2066 link when compiled under Cygwin. | |
2067 | |
2068 1998-05-31 Kirill M. Katsnelson <kkm@kis.ru> | |
2069 | |
2070 * xemacs.mak: Added lib-src/wakeup.exe | |
2071 | |
2072 1998-05-30 Kirill M. Katsnelson <kkm@kis.ru> | |
2073 | |
2074 * xemacs.mak: Added rules for hexl.exe, movemail.exe, mmencode.exe | |
2075 sorted-doc.exe, etags.exe | |
2076 | |
2077 1998-05-30 Kirill M. Katsnelson <kkm@kis.ru> | |
2078 | |
2079 * xemacs.mak: Support building InfoDock, with INFODOCK=1 macro | |
2080 in the command line. | |
2081 | |
2082 1998-05-26 Kirill M. Katsnelson <kkm@kis.ru> | |
2083 | |
2084 * inc/sys/dir.h: Removed #ifndef WINDOWSNT around the code which | |
2085 should be compiled in (sic!). | |
2086 Removed 'extern' before function prototypes. | |
2087 | |
2088 1998-05-20 Kirill M. Katsnelson <kkm@kis.ru> | |
2089 | |
442 | 2090 * xemacs.mak: Unified -nologo compiler switch handling and lib-src |
428 | 2091 programs build (only make-docfile currently, adding other tools |
442 | 2092 soon). |
428 | 2093 |
2094 1998-05-23 Kirill M. Katsnelson <kkm@kis.ru> | |
2095 | |
2096 * xemacs.mak: Added HAVE_DIALOGS macro, and dialog-*.* files to | |
2097 docfile creation and compilation. | |
2098 Defaulted HAVE_MSW to 1. | |
2099 Changed lib-src references to be relative to $(XEMACS)/, not ../ | |
2100 | |
2101 1998-05-16 Kirill M. Katsnelson <kkm@kis.ru> | |
2102 | |
2103 * xemacs.mak: Removed inline.{c,obj}. It did buy nothing. | |
2104 | |
2105 1998-05-15 Kirill M. Katsnelson <kkm@kis.ru> | |
2106 | |
2107 * xemacs.mak: Comment out dialog.{c,obj} from build. | |
2108 | |
2109 1998-05-11 Jonathan Harris <jhar@tardis.ed.ac.uk> | |
2110 | |
2111 * nt/config.h: | |
2112 Unconditionally define new HAVE_DRAGNDROP. | |
2113 | |
2114 1998-05-10 Kirill M. Katsnelson <kkm@kis.ru> | |
2115 | |
2116 * xemacs.mak: Added dragdrop.{c,obj} | |
2117 | |
2118 1998-05-08 Kirill M. Katsnelson <kkm@kis.ru> | |
2119 | |
2120 * config.h (enum_field): Redefine to be unsigned int. | |
2121 | |
2122 1998-05-07 Kirill M. Katsnelson <kkm@kis.ru> | |
2123 | |
2124 * xemacs.mak: Really honor minimal tagbits, indexed lrecord and | |
2125 union type. | |
2126 | |
2127 1998-05-03 Kirill M. Katsnelson <kkm@kis.ru> | |
2128 | |
2129 * inc/sys/socket.h: Removed encapsulating definitions for Winsock | |
2130 functions. | |
2131 | |
2132 1998-05-04 Kirill M. Katsnelson <kkm@kis.ru> | |
2133 | |
2134 * xemacs.mak: Defined PATH_PROGNAME and PATH_VERSION C macros. | |
2135 Make _DEBUG defined only when DEBUG_XEMACS. | |
2136 | |
2137 1998-04-26 Kirill M. Katsnelson <kkm@kis.ru> | |
2138 | |
2139 * xemacs.mak: Added glyphs-eimage.{c,obj} | |
2140 | |
2141 1998-04-20 Kirill M. Katsnelson <kkm@kis.ru> | |
2142 | |
2143 * xemacs.mak: Support "Don't panic, I will restart make" exit code. | |
2144 Extra checks for externally specified X{PM,11}_DIR. | |
2145 Proper quoting to allow spaces in these paths. | |
2146 Conduct all config checks at once. | |
2147 New option VERBOSECC. When non-zero, C compiler echoes its | |
2148 commands. When zero, only name of the file being compiled is | |
2149 echoed. Default is 0 (do not echo). | |
2150 | |
2151 1998-04-17 Jonathan Harris <jhar@tardis.ed.ac.uk> | |
2152 | |
2153 * README: Documented new msvc build procedure, including XPM | |
2154 support. | |
2155 | |
2156 * xemacs.mak: Added XPM and TOOLBARS support for native msvc | |
2157 build. | |
2158 | |
2159 * xpm.mak: New file | |
2160 Makefile for building xpm library under msvc. Hopefully this | |
2161 will be part of future xpm distributions. | |
2162 | |
2163 1998-04-10 Kirill M. Katsnelson <kkm@kis.ru> | |
2164 | |
2165 * config.h: Do not USE_ASSERTION when DEBUG_XEMACS is not | |
442 | 2166 defined. |
428 | 2167 |
2168 * xemacs.mak: Added new file process-nt.c | |
2169 | |
2170 1998-04-07 Kirill M. Katsnelson <kkm@kis.ru> | |
2171 | |
2172 * xemacs.mak: Added build options which can be defined in nmake | |
2173 command line (defaults are parentheses): | |
2174 HAVE_MSW=0/1 (0) Build with native GUI | |
2175 HAVE_X=0/1 (0) Build with X-Windows | |
2176 ** At least one must be defined | |
2177 X11_DIR=path () Path to the root dir of X11R6 installation | |
2178 ** Must be defined when HAVE_X=1 | |
2179 HAVE_MULE=0/1 (0) Compile in MULE | |
2180 HAVE_MSW_C_DIRED=0/1(1) Compile in fast dired | |
2181 PATH_PACKAGEPATH=path Package search path | |
2182 ("~/.xemacs") | |
2183 DEBUG_XEMACS=0/1 (1) Compile with symbols, assertions and | |
2184 extra debugging checks | |
2185 USE_UNION_TYPE=0/1 (0) | |
2186 USE_MINIMAL_TAGBITS=0/1 (0) | |
2187 USE_INDEXED_LRECORD_IMPLEMENTATION=0/1 (0) | |
2188 GUNG_HO=0/1 (none) When specified, overrides the above two. | |
2189 : Added output of a configuration report | |
2190 : Added copyright notice. | |
2191 : Deleted remains of ImageMagick. | |
2192 (distclean): Do not use mskedepend | |
2193 (install): echo "Not yet implmented". | |
2194 | |
2195 1998-04-05 Kirill M. Katsnelson <kkm@kis.ru> | |
2196 | |
2197 * config.h (enum_field): Borrow new definition from config.h.in | |
2198 | |
2199 1998-04-01 Kirill M. Katsnelson <kkm@kis.ru> | |
2200 | |
2201 * config.h: Patial sync-up with config.h.in | |
2202 | |
2203 1998-03-25 jhar@tardis.ed.ac.uk | |
2204 | |
2205 * xemacs.mak: Adds glyphs-msw.c and imgproc.c and reflects | |
2206 alterations to package_path in nt/xemacs.mak. | |
2207 | |
2208 1998-03-24 Kirill M. Katsnelson <kkm@kis.ru> | |
2209 | |
2210 * xemacs.mak (dump-xemacs): Replaced use of `touch' with `echo'. | |
2211 | |
2212 1998-03-20 Kirill M. Katsnelson <kkm@kis.ru> | |
2213 | |
2214 * xemacs.mak: Removed all references to deleted dgif_lib.{c,obj}, | |
2215 gif_err.{c,obj} and gifalloc.{c,obj}. New image support is not | |
2216 compiled in yet. | |
2217 | |
2218 1998-03-19 Kirill M. Katsnelson <kkm@kis.ru> | |
2219 | |
442 | 2220 * xemacs.mak: HAVE_FILE_CODING removed: it is no longer an option, |
428 | 2221 since file I/O depends on it, and defined unconditioanlly in |
2222 src/s/windowsnt.h. | |
2223 Added -nologo switch to different tools here and there. | |
2224 Suppressed some irrelevant make output. | |
2225 | |
2226 1998-02-28 Kirill M. Katsnelson <kkm@kis.ru> | |
2227 | |
2228 * xemacs.mak: Defined HAVE_FILE_CODING variable, an equivalent of | |
2229 --with-file-coding configure option. Default is yes. | |
2230 | |
2231 1998-03-13 Kirill M. Katsnelson <kkm@kis.ru> | |
2232 | |
2233 * xemacs.mak (update-elc): Copy Installation.el to $(LISP) | |
2234 | |
2235 * Installation.el: New file, copied by xemacs.mak during build. | |
2236 | |
2237 Fri Feb 20 21:22:34 1998 Darryl Okahata <darrylo@sr.hp.com> | |
2238 | |
2239 * xemacs.mak: Added entry for src/dired-msw.c. Use of the | |
2240 dired-in-C enhancements is optional, and is determined by | |
2241 HAVE_MSW_C_DIRED. See comments in xemacs.mak. | |
2242 | |
2243 1998-02-18 Kirill M. Katsnelson <kkm@kis.ru> | |
2244 | |
2245 * xemacs.mak: Fixed lost docstrings | |
2246 | |
2247 1998-01-28 Jonathon Harris <jhar@tardis.ed.ac.uk> | |
2248 | |
2249 * xemacs.mak: Updated accordingly. | |
2250 Creates the MSVC browse info immediately after the link. | |
2251 | |
2252 1997-12-29 Kirill M. Katsnelson <kkm@kis.ru> | |
2253 | |
2254 * config.h: Suppressed MSVC warning 'relational' : signed/unsigned | |
2255 mismatch | |
2256 | |
2257 * config.h: INLINE defined to __inline for MSVC compilers >= 2.x | |
2258 | |
2259 1997-12-26 Kirill M. Katsnelson <kkm@kis.ru> | |
2260 | |
2261 * xemacs.mak: added menubar-msw.c, menubar.c | |
2262 | |
2263 * xemacs.mak: scrollabrs and menubars are rearranged properly | |
2264 under different ifdef'd secions, so for example menubar.obj goes | |
2265 to always compiled section, and menubar-msw.obj is built only when | |
2266 HAVE_MSW. | |
2267 | |
2268 * xemacs.mak: Compiler warning flag definition moved to a macro | |
2269 CPP_WARN_FLAGS. Redefined from -w to -W3 (Doh!). | |
2270 | |
2271 1997-12-11 David Hobley <davidh@wr.com.au> | |
2272 | |
2273 * Added support for auto generation of puresize-adjust.h | |
2274 in xemacs.mak. Also created new file puresize-adjust.h to copy | |
2275 into src on initial build. | |
2276 | |
2277 Mon December 08 1997 kkm@kis.ru | |
2278 | |
2279 * xemacs.mak: added profile.c, removed event-unixod.c | |
2280 * xemacs.mak: removed dangerous defines _IX_86, _X86_, | |
2281 _MSC_VER | |
2282 * config.h: removed #define HAVE_UNIXOID_EVENT_LOOP | |
2283 | |
2284 Thu December 04 1997 jhar@tardis.ed.ac.uk | |
442 | 2285 |
428 | 2286 * xemacs.mak: Define DEBUG_XEMACS when compiling with debug. |
2287 | |
2288 Tue November 29 12:29:33 1997 davidh | |
2289 | |
2290 * xemacs.mak and config.h updated to provide ability to | |
2291 specify DEBUG mode from the xemacs.mak file. | |
2292 | |
2293 Mon December 01 1997 jhar | |
2294 | |
2295 * msw-init.el: Provide default bindings for cut, paste, copy and undo | |
2296 | |
2297 * event-msw.c, event-msw.h, frame-msw.c, msw-proc.c: | |
2298 - Implemeted simple emacs_mswindows_event_pending_p(). | |
2299 - Fixed deleting frames. | |
2300 - Rewrote timeout code, eliminating "!NILP(rest)" bug. | |
2301 - Special processing for 'Ctrl-@' keystroke. | |
2302 - Support for some new keysyms. | |
442 | 2303 |
428 | 2304 Mon December 01 1997 jhar |
2305 | |
2306 * xemacs.mak: | |
2307 - Add PACKAGE_PATH and EMACS_BETA_VERSION defines. | |
2308 - Automatically copy changed include files from \nt to \src. | |
2309 - Corrected some DOC_SRC* lists. | |
442 | 2310 |
428 | 2311 Tue November 18 21:45:06 1997 davidh |
2312 | |
2313 * xemacs.mak updated to remove dependency on startup.elc | |
2314 HAVE_IMAGEMAGICK added for X build. | |
2315 | |
2316 Thu September 25 23:06:44 1997 davidh | |
2317 | |
2318 * xemacs.mak updated to make the build as simple as typing | |
442 | 2319 nmake -f xemacs.mak. Also support for native gui included |
428 | 2320 which should mean the w32 directory is no longer required. |
2321 | |
2322 * config.h synced with config.h.in from 20.3-b2 | |
2323 | |
2324 * synced in changes to support native gui. | |
2325 | |
2326 Thu September 25 23:06:44 1997 davidh | |
2327 | |
2328 * August Hill provided a patch to xemacs.mak to greatly simplify | |
442 | 2329 the build - the DOC file gets created correctly. |
428 | 2330 |
2331 Tue September 22 23:06:44 1997 davidh | |
2332 | |
2333 * August Hill provided some more patches - to expand ~ correctly | |
2334 and to correctly deal with drive letters in the path. | |
2335 | |
2336 * emacs.c patched to call init_ntproc() | |
2337 | |
2338 | |
2339 Tue July 15 19:32:21 1997 davidh | |
2340 | |
2341 * August Hill provided some more patches to make things better | |
2342 - there is a workaround for dired to make the ^M's disappear | |
2343 - a patch to fix shell-command | |
2344 | |
2345 Tue July 08 22:01:36 1997 davidh | |
2346 | |
2347 * #ifdef'd call to vfork and replaced with spawn as per GNU Emacs; | |
2348 as a result, removed /force - XEmacs now links normally. | |
2349 | |
2350 Thu June 31 21:16:21 1997 davidh | |
2351 | |
2352 * nt/TODO created. | |
2353 | |
2354 * nt/X11.patch created to help with the X build. | |
442 | 2355 |
428 | 2356 * August Hill provided: |
2357 a patch to fix the _WRETCODE undefined symbol, | |
2358 a patch to fix a problem with dired | |
2359 | |
2360 and generally helped clarify the build instructions. | |
2361 | |
2362 * Synced with 20.3b10 (Athens). | |
2363 | |
2364 * Made DIRECTORY_SEP be '\\'. Until I can change all code to | |
2365 use the macro, I decided this would be easiest. | |
2366 | |
2367 * Modified src/fileio.c to only open files in O_BINARY. This | |
442 | 2368 causes files to be opened and written without automatically |
428 | 2369 writing ^M 's to the end of each line. MULE ought to sort this |
2370 in theory, but I am less than convinced. | |
2371 | |
2372 * Updated the nt/README to provide a little more help. | |
2373 | |
2374 Thu May 29 23:11:21 1997 davidh | |
2375 | |
2376 * Synced with 20.3b2. | |
2377 | |
2378 * Removed nt/README.src, nt/src.m.windowsnt.h nt/src.s.windowsnt.h. | |
2379 | |
2380 * Updated README from marcpa. | |
2381 | |
2382 * Added example Win32.cf and site.def files for X. | |
2383 | |
2384 * Added sed.exe into nt/. | |
2385 | |
2386 * Modified nt/xemacs.mak to pass correct flags to lwlib compile. | |
2387 | |
2388 * Added extra .elc files to ensure make-docfile gets all symbols. | |
2389 | |
2390 * Modified balloon_help.c to compile (#if'd max definition) | |
2391 | |
2392 * Modified src/event-Xt.c so as not to add signal_event_pipe to | |
2393 be selected on - this is a hack until I can work out a better | |
2394 way. Thanks to Ben Wing for help on this. | |
2395 | |
2396 Thu Mar 27 20:56:21 1997 marcpa (marcpa at MARCPA) | |
2397 | |
2398 * Synced with 20.1b9. | |
2399 | |
2400 Sun Mar 16 00:32:15 1997 marcpa (marcpa at MARCPA) | |
2401 | |
2402 * lisp/eterm/README.term is truncated: is it just me (because | |
2403 I'm on NT) or everyone else sees this ? | |
2404 Answer: it is because it contains a ^Z embedded in it, therefore | |
2405 it needs to be inserted in binary mode in CVS. | |
2406 | |
2407 Thu Mar 13 00:19:25 1997 marcpa (marcpa at MARCPA) | |
2408 | |
442 | 2409 * At end of compilation, there are some unresolved symbols: |
428 | 2410 |
2411 link.exe @C:\TEMP\nma00115. | |
2412 sysdep.obj : error LNK2001: unresolved external symbol _vfork | |
2413 ../src/temacs.exe : warning LNK4088: image being generated due to /FORCE | |
2414 option; image may not run | |
2415 | |
2416 | |
2417 Wed Mar 12 23:18:53 1997 marcpa (marcpa at MARCPA) | |
2418 | |
2419 * Need to copy the nt/inc directory David originally submitted or | |
2420 NT code won't compile. | |
2421 | |
2422 * Need to copy nt/{config.h,paths.h,ad2c.sed,xemacs.mak} in src. | |
2423 | |
2424 * Had to modify XEmacs sources here and there : see the diffs | |
2425 between NT_FIRST_COMPILE and V20_1_beta9. | |
2426 | |
2427 * Needed to patch X11R6.3 sources: (include/x11/Xmd.h:155) BOOL is | |
2428 already defined by Windows and is a long, while X wants it to be | |
2429 an unsigned char. | |
2430 | |
2431 --- Xmd.h~ Thu Jun 08 23:20:40 1995 | |
2432 +++ Xmd.h Sun Mar 16 13:09:10 1997 | |
2433 @@ -150,8 +150,9 @@ | |
2434 typedef CARD16 BITS16; | |
2435 typedef CARD8 BYTE; | |
442 | 2436 |
428 | 2437 +#ifndef WIN32 |
2438 typedef CARD8 BOOL; | |
2439 - | |
2440 +#endif | |
2441 | |
2442 * cpp.exe not used: cl.exe from VC++4.2 seems to handle everything | |
442 | 2443 properly. |