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