Mercurial > emacs
annotate nt/ChangeLog @ 83008:040dd41ed7d0
Hookified termcap devices, added bootstrap display device, plus many bugfixes.
lisp/frame.el (display-color-cells): Pass display parameter to tty-display-color-cells.
lisp/term/xterm.el (xterm-register-default-colors): Pass the selected-frame to display-color-cells.
src/dispextern.h (set_terminal_modes, reset_terminal_modes): Removed declarations.
(get_named_tty_display): New prototype.
(tty_clear_end_of_line, term_init): Updated to new prototype.
(initial_term_init): Renamed to init_initial_display.
src/dispnew.c (Fredraw_frame): ifdef-out DOS-specific code. Add display parameter to set_terminal_modes call.
(update_frame): Don't flush the tty of there is no tty.
(init_display): Set up a termcap display on the controlling tty and
change the initial frame to use that. Delete the initial display.
src/frame.c (Fframep): Return t for the initial frame.
(make_initial_frame): New function for creating the initial frame during bootstrap. Use init_initial_display, not initial_term_init.
(make_terminal_frame): Removed special cases for creating the initial frame.
src/frame.h (enum output_method): New entry: output_initial for the bootstrap display.
(FRAME_INITIAL_P): New macro.
(make_initial_frame): New prototype.
src/keyboard.c (interrupt_signal): Exit Emacs on SIGINT from the (frameless) controlling tty, if possible. Explain this in a comment.
(init_keyboard): Added comment about exiting on SIGINT.
(Fset_input_mode): A termcap frame is never the initial frame anymore.
src/sysdep.c (init_sys_modes): Update tty_set_terminal_modes call to the new prototype.
(reset_sys_modes): Comment out tty_clear_end_of_line call; it doesn't work anymore. Update tty_reset_terminal_modes call.
src/termchar.h (struct tty_display_info): Added pointer to the display structure, for reset_sys_modes.
src/termhooks.h (struct display): Added display parameter to set_terminal_modes_hook and reset_terminal_modes_hook.
src/term.c (initial_display): New variable.
(tty_ring_bell, tty_update_end, tty_set_terminal_window, tty_cursor_to)
(tty_raw_cursor_to, tty_clear_to_end, tty_clear_frame, tty_clear_end_of_line)
(tty_write_glyphs, tty_insert_glyphs, tty_delete_glyphs, tty_ins_del_lines): New functions.
(ring_bell, update_end, set_terminal_window, cursor_to, raw_cursor_to)
(clear_to_end, clear_frame, clear_end_of_line, write_glyphs, insert_glyphs)
(delete_glyphs, ins_del_lines): Removed special casing of termcap displays.
(get_tty_display): New function.
(Ftty_display_color_p, Ftty_display_color_cells): Use it.
(get_named_tty_display): Removed static.
(tty_set_terminal_modes, tty_reset_terminal_modes): Changed to use a display parameter
instead of tty_display_info for hook compatibility.
(set_terminal_modes, reset_terminal_modes): Removed.
(initial_term_init): Renamed to init_initial_display. Set up an
output_initial device, not a termcap display.
(delete_initial_display): New function.
(maybe_fatal): New function, for private use of term_init.
(term_init): New parameter for choosing between fatal and simple errors.
Removed incomprehensible special casing for the second initialization of the
controlling tty. Use maybe_fatal for error handling.
Initialize termcap display hooks in the new device.
Initialize the display pointer in the tty_display_info structure.
(delete_tty): Replace order of reset_sys_modes and delete_display.
src/window.c (init_window_once): Call make_initial_frame instead of make_terminal_frame.
src/xfaces.c (realize_default_face, realize_face): Don't abort on the bootstrap display device.
src/xterm.c (XTset_terminal_modes, XTreset_terminal_modes): Added display parameter.
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-48
author | Karoly Lorentey <lorentey@elte.hu> |
---|---|
date | Fri, 09 Jan 2004 18:57:53 +0000 |
parents | a15a93942364 |
children | 65b9f657ba94 |
rev | line source |
---|---|
53287
a15a93942364
Add .arch-inventory to .cvsignore
Miles Bader <miles@gnu.org>
parents:
53124
diff
changeset
|
1 2003-12-24 Miles Bader <miles@gnu.ai.mit.edu> |
a15a93942364
Add .arch-inventory to .cvsignore
Miles Bader <miles@gnu.org>
parents:
53124
diff
changeset
|
2 |
a15a93942364
Add .arch-inventory to .cvsignore
Miles Bader <miles@gnu.org>
parents:
53124
diff
changeset
|
3 * .cvsignore: Add `.arch-inventory'. |
a15a93942364
Add .arch-inventory to .cvsignore
Miles Bader <miles@gnu.org>
parents:
53124
diff
changeset
|
4 |
53124 | 5 2003-11-22 Lars Hansen <larsh@math.ku.dk> |
6 | |
7 * inc/grp.h: Added. | |
8 | |
52427 | 9 2003-09-03 Peter Runestig <peter@runestig.com> |
10 | |
11 * configure.bat: Create ``makefile'' in directories man, lispref | |
12 and lispintro. | |
13 | |
14 * makefile.w32-in (force-info, info): New targets. | |
15 | |
16 * envadd.bat: New file. | |
17 | |
18 * multi-install-info.bat: New file. | |
19 | |
51680
10faf0e7ef61
config.nt: New define strftime
Jan Djärv <jan.h.d@swipnet.se>
parents:
49564
diff
changeset
|
20 2003-06-27 Jan D. <jan.h.d@swipnet.se> |
10faf0e7ef61
config.nt: New define strftime
Jan Djärv <jan.h.d@swipnet.se>
parents:
49564
diff
changeset
|
21 |
10faf0e7ef61
config.nt: New define strftime
Jan Djärv <jan.h.d@swipnet.se>
parents:
49564
diff
changeset
|
22 * config.nt (my_strftime): New define. |
10faf0e7ef61
config.nt: New define strftime
Jan Djärv <jan.h.d@swipnet.se>
parents:
49564
diff
changeset
|
23 |
49564 | 24 2003-02-01 Jason Rumney <jasonr@gnu.org> |
25 | |
26 * configure.bat: Automatically detect libXpm. | |
27 Suppress compiler output when testing for image libraries. | |
28 Give names of un-found libraries in messages. | |
29 | |
49542
6ec2d998c53b
*** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents:
49526
diff
changeset
|
30 2003-01-31 Juanma Barranquero <lektu@terra.es> |
6ec2d998c53b
*** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents:
49526
diff
changeset
|
31 |
49545
64c0c06b6191
*** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents:
49542
diff
changeset
|
32 * configure.bat: Automatically detect giflib and tifflib. |
49542
6ec2d998c53b
*** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents:
49526
diff
changeset
|
33 |
49526 | 34 2003-01-29 Jason Rumney <jasonr@gnu.org> |
35 | |
36 * gmake.defs (CURDIR): Disable cygpath kludge. | |
37 | |
49511
61a52b4bd10d
*** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents:
49505
diff
changeset
|
38 2003-01-29 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp> |
61a52b4bd10d
*** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents:
49505
diff
changeset
|
39 |
61a52b4bd10d
*** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents:
49505
diff
changeset
|
40 * configure.bat: Avoid endless loop when configuring without image |
61a52b4bd10d
*** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents:
49505
diff
changeset
|
41 support. |
61a52b4bd10d
*** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents:
49505
diff
changeset
|
42 |
49457 | 43 2003-01-26 Jason Rumney <jasonr@gnu.org> |
44 | |
45 * configure.bat: Automatically detect jpeglib. | |
46 | |
49449 | 47 2003-01-25 Jason Rumney <jasonr@gnu.org> |
48 | |
49 * configure.bat: Automatically detect libpng. | |
50 | |
49542
6ec2d998c53b
*** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents:
49526
diff
changeset
|
51 2003-01-21 Jason Rumney <jasonr@gnu.org> |
49373 | 52 |
53 * icons/hand.cur: New file. | |
54 | |
49542
6ec2d998c53b
*** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents:
49526
diff
changeset
|
55 2003-01-21 David Ponce <david@dponce.com> |
49373 | 56 |
57 * emacs.rc (32649): Declare hand cursor resource. | |
58 | |
49260 | 59 2003-01-15 Andrew Innes <andrewi@gnu.org> |
60 | |
61 * gmake.defs (CURDIR): Convert to native Windows format (with | |
62 forward slashes), to support building with Cygwin builds of make. | |
63 | |
48454
8c1adeb99c93
*** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents:
48375
diff
changeset
|
64 2002-11-17 Ben Key <BKey1@tampabay.rr.com> |
8c1adeb99c93
*** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents:
48375
diff
changeset
|
65 |
8c1adeb99c93
*** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents:
48375
diff
changeset
|
66 * nmake.defs: |
48375
4d7b83cc03aa
Added a partial implementation of play-sound-internal for Windows. Fixed the following entry in etc/PROBLEMS: Emacs built on Windows 9x/ME crashes at startup on Windows XP, or Emacs built on XP crashes at startup on Windows 9x/ME.
Ben Key <bkey1@tampabay.rr.com>
parents:
48065
diff
changeset
|
67 * gmake.defs: Made changes so that Emacs would link with |
4d7b83cc03aa
Added a partial implementation of play-sound-internal for Windows. Fixed the following entry in etc/PROBLEMS: Emacs built on Windows 9x/ME crashes at startup on Windows XP, or Emacs built on XP crashes at startup on Windows 9x/ME.
Ben Key <bkey1@tampabay.rr.com>
parents:
48065
diff
changeset
|
68 WinMM.lib. This change was required for my addition of a Windows |
4d7b83cc03aa
Added a partial implementation of play-sound-internal for Windows. Fixed the following entry in etc/PROBLEMS: Emacs built on Windows 9x/ME crashes at startup on Windows XP, or Emacs built on XP crashes at startup on Windows 9x/ME.
Ben Key <bkey1@tampabay.rr.com>
parents:
48065
diff
changeset
|
69 compatible implementation of play-sound-internal. |
4d7b83cc03aa
Added a partial implementation of play-sound-internal for Windows. Fixed the following entry in etc/PROBLEMS: Emacs built on Windows 9x/ME crashes at startup on Windows XP, or Emacs built on XP crashes at startup on Windows 9x/ME.
Ben Key <bkey1@tampabay.rr.com>
parents:
48065
diff
changeset
|
70 |
48454
8c1adeb99c93
*** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents:
48375
diff
changeset
|
71 2002-09-03 Peter Runestig <peter@runestig.com> (tiny change) |
47216
31c7cb792cd2
*** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents:
45813
diff
changeset
|
72 |
48454
8c1adeb99c93
*** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents:
48375
diff
changeset
|
73 * emacs.rc: Version updated to 21.3.50. |
47216
31c7cb792cd2
*** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents:
45813
diff
changeset
|
74 |
45813 | 75 2002-06-13 Jason Rumney <jasonr@gnu.org> |
76 | |
77 * addpm.c (env_vars): Remove EMACSLOCKDIR. | |
78 | |
79 * makefile.w32-in (maybe-bootstrap, doit, maybe-bootstrap-CMD) | |
80 (maybe-bootstrap-SH): New targets. | |
81 (all): Depend on maybe-bootstrap. | |
82 | |
45088 | 83 2002-05-03 Jason Rumney <jasonr@gnu.org> |
84 | |
85 * inc/sys/socket.h (F_SETFL, O_NDELAY): Define. | |
86 (sys_getpeername, fcntl): Declare as wrappers. | |
87 | |
44496
9148e7fc1e39
*** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents:
44048
diff
changeset
|
88 2002-04-10 Juanma Barranquero <lektu@terra.es> |
9148e7fc1e39
*** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents:
44048
diff
changeset
|
89 |
9148e7fc1e39
*** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents:
44048
diff
changeset
|
90 * makefile.w32-in (bootstrap-nmake, bootstrap-gmake): Make DOC |
9148e7fc1e39
*** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents:
44048
diff
changeset
|
91 after compiling .el files. |
9148e7fc1e39
*** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents:
44048
diff
changeset
|
92 |
44048 | 93 2002-03-20 Jason Rumney <jasonr@gnu.org> |
94 | |
95 * inc/sys/socket.h (sys_setsockopt, sys_listen, sys_getsockname) | |
96 (sys_accept, sys_recvfrom, sys_sendto): Declare as wrappers. | |
97 | |
44024 | 98 2002-03-19 Kim F. Storm <storm@cua.dk> |
99 | |
100 * config.nt (HAVE_SENDTO, HAVE_RECVFROM, HAVE_GETSOCKOPT) | |
101 (HAVE_SETSOCKOPT, HAVE_GETSOCKNAME, HAVE_GETPEERNAME): Define. | |
102 (HAVE_SYS_UN_H): Undef. | |
103 From David Ponce <dponce@voila.fr>. | |
104 | |
43892 | 105 2002-03-13 Jason Rumney <jasonr@gnu.org> |
106 | |
107 * config.nt (STRFTIME_NO_POSIX2): Define. | |
108 | |
43398 | 109 2002-02-18 Jason Rumney <jasonr@gnu.org> |
110 | |
111 * emacs.rc: Define VS_VERSION_INFO if not already. | |
112 Update version info. | |
113 | |
42530 | 114 2002-01-04 Andrew Innes <andrewi@gnu.org> |
115 | |
116 * gmake.defs (CFLAGS): Define _WIN32_WINNT as 0x0400, in order to | |
117 pick up relevant bits of the Windows API definitions. | |
118 | |
119 * nmake.defs (CFLAGS): Define _WIN32_WINNT as 0x0400, in order to | |
120 pick up relevant bits of the Windows API definitions. | |
121 | |
42027 | 122 2001-12-14 Andrew Innes <andrewi@gnu.org> |
123 | |
124 * makefile.w32-in (bootstrap): Build addsection program before | |
125 bootstrap (required for post-processing temacs.exe). | |
126 | |
41896 | 127 2001-12-08 Pavel Jan,Bm(Bk <Pavel@Janik.cz> |
128 | |
129 * COPYING: New file. | |
130 | |
42025 | 131 2001-12-03 Andrew Innes <andrewi@gnu.org> |
132 | |
133 * makefile.w32-in (bootstrap-nmake): | |
134 (bootstrap-gmake): Extend bootstrap process to first do | |
135 bootstrap-clean in lisp dir and rebuild the DOC file. | |
136 (bootstrap): Do a "normal" make after the bootstrap work. | |
137 | |
41328 | 138 2001-11-20 Jason Rumney <jasonr@gnu.org> |
139 | |
140 * INSTALL: Update table of versions of make that are suitable | |
141 for building Emacs, based on recent feedback. | |
142 | |
143 * TODO, _emacs, emacs.bat.in, debug.bat.in: Removed. | |
144 | |
41278 | 145 2001-11-19 Andrew Innes <andrewi@gnu.org> |
146 | |
147 * ftime-nostartup.bat: New file. | |
148 | |
149 * ftime.bat: Don't include libc.lib for profiling - the profiler | |
150 corrupts part of memcpy. | |
151 | |
41178 | 152 2001-11-17 Jason Rumney <jasonr@gnu.org> |
153 | |
154 * nmake.defs (SYS_LDFLAGS): Add setargv.obj for wildcard | |
155 expansion. From Juanma Barranquero <lektu@terra.es>. | |
156 | |
40111 | 157 2001-10-20 Gerd Moellmann <gerd@gnu.org> |
158 | |
40152 | 159 * (Version 21.1 released.) |
40111 | 160 |
39826 | 161 2001-10-12 Andrew Innes <andrewi@gnu.org> |
162 | |
163 * inc/pwd.h (uid_t, gid_t): New typedefs. | |
164 | |
39742 | 165 2001-10-05 Gerd Moellmann <gerd@gnu.org> |
166 | |
167 * Branch for 21.1. | |
48065
e3b637f1a9c5
Added "(tiny change)" marker.
Juanma Barranquero <lekktu@gmail.com>
parents:
47216
diff
changeset
|
168 |
39193 | 169 2001-09-08 Eli Zaretskii <eliz@is.elta.co.il> |
170 | |
171 * README: Update the address of the mailing list and subscription | |
172 instructions. From Geoff Voelker <voelker@cs.ucsd.edu>. | |
173 | |
39156 | 174 2001-09-06 Eli Zaretskii <eliz@is.elta.co.il> |
175 | |
176 * INSTALL: Suggest to avoid using WinZip. | |
39154 | 177 |
178 * configure.bat: Make sure ../site-lisp exists; create if necessary. | |
179 | |
39145 | 180 2001-09-05 Eli Zaretskii <eliz@is.elta.co.il> |
181 | |
182 * INSTALL: Mention that "make install" can be "nmake install". | |
183 | |
39114 | 184 2001-09-04 Eli Zaretskii <eliz@is.elta.co.il> |
185 | |
186 * makefile.w32-in ($(INSTALL_DIR)/bin): Depend on $(INSTALL_DIR), | |
187 since some versions of `mkdir' don't automatically create parent | |
188 directories. From Bruno Grossniklaus <bruno.grossniklaus@ubs.com>. | |
189 | |
39056 | 190 2001-08-31 Eli Zaretskii <eliz@is.elta.co.il> |
191 | |
192 * subdirs.el: New file. | |
193 | |
194 * configure.bat: Copy subdirs.el to the site-lisp directory. | |
195 | |
196 * makefile.w32-in (install): Copy subdirs.el to the installation | |
197 directory. | |
198 | |
38140 | 199 2001-06-20 Jason Rumney <jasonr@gnu.org> |
200 | |
201 * runemacs.c (WinMain): Add quotes around command in case of spaces. | |
202 | |
37975 | 203 2001-06-01 Andrew Innes <andrewi@gnu.org> |
204 | |
205 * gmake.defs (sh_output): Don't use $(warning ...) to output | |
206 messages, since that is not supported by GNU make 3.77. | |
207 | |
37886 | 208 2001-05-24 Jason Rumney <jasonr@gnu.org> |
209 | |
210 * INSTALL: Clarify that building with MSVC requires nmake. | |
211 | |
37779 | 212 2001-05-17 Andrew Innes <andrewi@gnu.org> |
213 | |
214 * gmake.defs (NEW_CYGWIN): Output message about spurious error | |
215 message that is to be ignored. | |
216 | |
37711 | 217 2001-05-13 Andrew Innes <andrewi@gnu.org> |
218 | |
219 * TODO: Remove file, since it is completely out of date. | |
220 | |
221 * README: Add copyright notice. | |
222 | |
223 * INSTALL: Add copyright notice. | |
224 | |
37566 | 225 2001-04-18 Andrew Innes <andrewi@gnu.org> |
226 | |
227 * nmake.defs (EMACSLOADPATH): Ensure EMACSLOADPATH is defined in | |
228 the environment. | |
229 | |
230 * gmake.defs (SETLOADPATH): Remove definition. | |
231 (EMACSLOADPATH): Ensure EMACSLOADPATH is defined in the | |
232 environment. | |
233 | |
234 2001-03-26 Eli Zaretskii <eliz@is.elta.co.il> | |
235 | |
236 * configure.bat: Make the checkw32api* labels be distinct in the | |
237 first 8 characters. | |
238 | |
239 2001-03-17 Andrew Innes <andrewi@gnu.org> | |
240 | |
241 * cmdproxy.c (get_next_token): Fix indefinite loop bug scanning | |
242 escaped quotes. | |
243 | |
244 * gmake.defs (DEBUG_LINK): New macro. | |
245 (LINK_FLAGS): Use it. | |
246 | |
247 * nmake.defs (DEBUG_LINK): New macro. | |
248 (LINK_FLAGS): Use it. | |
249 | |
250 2001-03-06 Andrew Innes <andrewi@gnu.org> | |
251 | |
252 * INSTALL: Add --ldflags to configure line for building with | |
253 recent versions of Cygwin GCC. | |
254 | |
49542
6ec2d998c53b
*** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents:
49526
diff
changeset
|
255 2001-03-05 Eli Zaretskii <eliz@is.elta.co.il> |
37566 | 256 |
257 * configure.bat: Use correct options when compiling a test program | |
258 with Cygwin. From David Ponce <dponce@voila.fr>. | |
259 | |
260 2001-02-24 Andrew Innes <andrewi@gnu.org> | |
261 | |
262 * _emacs: Remove obsolete file. | |
263 | |
264 * emacs.bat.in: Remove obsolete file. | |
265 | |
266 * debug.bat.in: Remove obsolete file. | |
267 | |
268 * inc/sys/socket.h: Add copyright notice. | |
269 | |
270 * paths.h: Add copyright notice. | |
271 | |
272 * makefile.nt: Update copyright notice. | |
273 | |
274 * makefile.def: Update copyright notice. | |
275 | |
276 * configure.bat: Update copyright notice. | |
277 | |
278 * nmake.defs: Add copyright notice. | |
279 | |
280 * gmake.defs: Add copyright notice. | |
281 | |
282 * makefile.w32-in: Add copyright notice. | |
283 | |
284 2001-02-05 Andrew Innes <andrewi@gnu.org> | |
285 | |
286 * nmake.defs (THISDIR): New definition. | |
287 | |
288 * gmake.defs (THISDIR): New definition. | |
289 | |
290 2001-02-03 Andrew Innes <andrewi@gnu.org> | |
291 | |
292 * configure.bat: Leave a space before >> only when there is a | |
293 preceding digit. Add a comment about the importance of this. | |
294 | |
295 * README: Replace outdated information. | |
296 | |
297 * INSTALL (Trouble-shooting): Add note about need to specify extra | |
298 compiler flags with recent Cygwin ports of gcc. | |
299 | |
300 2001-02-01 Eli Zaretskii <eliz@is.elta.co.il> | |
301 | |
302 * configure.bat: Use "rm -f" instead of "del /f", as the latter | |
303 is not supported by Windows 9X's COMMAND.COM. | |
304 | |
305 2001-01-31 Eli Zaretskii <eliz@is.elta.co.il> | |
306 | |
307 * configure.bat: Make sure redirection is preceeded by a blank, to | |
308 avoid problems with "1>>foo" when CMD.EXE is the shell, which eats | |
309 up the "1" part. From Rob Giardina <rob@criticalpointsoftware.com>. | |
310 | |
311 2001-01-30 Eli Zaretskii <eliz@is.elta.co.il> | |
312 | |
313 * INSTALL: Copy the table of tested combinations of development | |
314 tools from confuigure.bat. Add suggestion to install Bash on | |
315 Windows 9X. | |
316 | |
317 * configure.bat: Don't copy lisp/Makefile, it doesn't exist; copy | |
318 lisp/Makefile.in instead. Use "rm -f" where more than one file | |
319 needs to be deleted, since command.com in Windows 9X doesn't grok | |
320 more than one argument. | |
321 | |
322 2001-01-24 Andrew Innes <andrewi@gnu.org> | |
323 | |
48065
e3b637f1a9c5
Added "(tiny change)" marker.
Juanma Barranquero <lekktu@gmail.com>
parents:
47216
diff
changeset
|
324 * makefile.w32-in (cleanall-other-dirs-nmake): |
37566 | 325 (cleanall-other-dirs-gmake): New targets. |
326 (cleanall): Invoke them. | |
327 | |
328 2001-01-19 Andrew Innes <andrewi@gnu.org> | |
329 | |
330 * addpm.c (env_vars): Add a version-independent site-lisp | |
331 directory to EMACSLOADPATH, after the version dependent one. | |
332 | |
333 2001-01-06 Andrew Innes <andrewi@gnu.org> | |
334 | |
335 * README: Update info about compilers. | |
336 | |
337 * makefile.w32-in: Use $(MAKETYPE) instead of $(SHELLTYPE) to | |
338 select correct rule for invoking make in another directory. Amend | |
339 rules accordingly. | |
340 (clean): Delete $(COMPILER_TEMP_FILES) instead of *.pdb. | |
341 | |
342 * nmake.defs (EMACS_ICON_PATH): Delete definition. | |
343 (COMPILER_TEMP_FILES): New definition. | |
344 (MAKETYPE): New definition. | |
345 | |
346 * gmake.defs (EMACS_ICON_PATH): Delete definition. | |
347 (COMPILER_TEMP_FILES): New definition. | |
348 (MAKETYPE): New definition. | |
349 | |
350 * makefile.def (EMACS_ICON_PATH): Delete definition. | |
351 | |
352 * configure.bat: Be careful not to add trailing spaces when | |
353 outputting to config.settings. | |
354 | |
355 2001-01-02 Andrew Innes <andrewi@gnu.org> | |
356 | |
357 * config.nt (RE_TRANSLATE): Use CHAR_TABLE_TRANSLATE macro rather | |
358 than the function. | |
359 | |
360 2000-12-17 Andrew Innes <andrewi@gnu.org> | |
361 | |
362 * makefile.w32-in (install): Copy directories to the correct | |
363 places. | |
364 (real_install): Remove obsolete target. | |
365 | |
366 2000-12-06 Andrew Innes <andrewi@gnu.org> | |
367 | |
368 * nmake.defs (CURDIR): New define. | |
369 (INSTALL_DIR): Use it. | |
370 | |
371 * gmake.defs (NEW_CYGWIN): New define. | |
372 (DQUOTE) [NEW_CYGWIN]: Cygnus changed the quoting rules since b20, | |
373 so we need to adjust how we escape embedded quotes. | |
374 (SETLOADPATH): Set EMACSLOADPATH to an absolute directory, | |
375 relative to $(CURDIR). | |
376 | |
377 2000-11-25 Jason Rumney <jasonr@gnu.org> | |
378 | |
379 * config.nt (GC_MARK_STACK, GC_SETJMP_WORKS): Define. | |
380 | |
381 2000-10-17 Andrew Innes <andrewi@gnu.org> | |
382 | |
383 * makefile.w32-in (recompile): New target to recompile lisp | |
384 directory. | |
385 (recompile-CMD, recompile-SH): New support targets. | |
386 | |
387 2000-09-24 Jason Rumney <jasonr@gnu.org> | |
388 | |
389 * config.nt (NO_RETURN): Define it. | |
390 | |
391 2000-09-17 Andrew Innes <andrewi@gnu.org> | |
392 | |
393 * gmake.defs: Revert to Unix line endings. | |
394 | |
395 * nmake.defs: Revert to Unix line endings. | |
396 | |
397 2000-09-16 Andrew Innes <andrewi@gnu.org> | |
398 | |
399 * gmake.defs (SETLOADPATH): Change definition to work from any | |
400 subdirectory. | |
401 | |
402 2000-09-14 Andrew Innes <andrewi@gnu.org> | |
403 | |
404 * makefile.w32-in: Revert to Unix line endings. | |
405 | |
406 2000-09-14 Andrew Innes <andrewi@gnu.org> | |
407 | |
408 * INSTALL: Add note about expected error messages when configure | |
409 is run. | |
410 | |
411 * configure.bat: Simplify the generation of makefiles (don't need | |
412 to generate various top-level targets that invoke make in other | |
413 directories). | |
414 | |
415 * gmake.defs (SHELLTYPE): New define. | |
416 (SETLOADPATH): New define. | |
417 | |
418 * nmake.defs (SHELLTYPE): New define. | |
419 | |
420 * makefile.w32-in: Standardize indentation somewhat. | |
421 Add bootstrap support. | |
422 Pass $(MFLAGS) when invoking make recursively. | |
423 Add shell-specific variants of top-level targets that invoke make | |
424 recursively in other directories, and add necessary computed | |
425 dependencies. | |
426 | |
427 2000-09-03 Andrew Innes <andrewi@gnu.org> | |
428 | |
429 * makefile.w32-in: Change to DOS line endings. | |
430 | |
431 * configure.bat: Change to DOS line endings. | |
432 | |
433 * addsection.c (_ANONYMOUS_UNION) [__GNUC__]: New define. | |
434 (_ANONYMOUS_STRUCT) [__GNUC__]: New define. | |
435 | |
436 * preprep.c (_ANONYMOUS_UNION) [__GNUC__]: New define. | |
437 (_ANONYMOUS_STRUCT) [__GNUC__]: New define. | |
438 | |
439 * gmake.defs (CFLAGS): No need for -D_ANONYMOUS_UNION | |
440 -D_ANONYMOUS_STRUCT on compile line. | |
441 (EMACS_EXTRA_C_FLAGS): No need for -DORDINARY_LINK. | |
442 (ARCH_CFLAGS): Change optimization flags to -O2. | |
443 (FOREACH, FORVAR, FORDO, ENDFOR): New definitions. | |
444 (ARGQUOTE, DQUOTE): New defines. | |
445 | |
446 * nmake.defs (CFLAGS): No need for -D_ANONYMOUS_UNION | |
447 -D_ANONYMOUS_STRUCT on compile line. | |
448 (FOREACH, FORVAR, FORDO, ENDFOR): New definitions. | |
449 (ARGQUOTE, DQUOTE): New defines. | |
450 | |
451 2000-08-22 Andrew Innes <andrewi@gnu.org> | |
452 | |
453 * configure.bat: New file. | |
454 | |
455 * gmake.defs: New file. | |
456 | |
457 * nmake.defs: New file. | |
458 | |
459 * makefile.w32-in: New file. | |
460 | |
461 * INSTALL: Rewrite to match new configure process. | |
462 | |
463 * config.nt [WINDOWSNT]: Don't declare getenv. | |
464 (EMACS_CONFIG_OPTIONS): Define according to compiler being used. | |
465 | |
466 * addpm.c (main): Accept /q to mean install based on addpm's | |
467 location without asking. Remove reference to emacs.bat which is | |
468 now obsolete. | |
469 | |
470 * addsection.c (PTR_TO_OFFSET): Cast ptr to unsigned char*. | |
471 | |
472 * paths.h: Use forward slash as directory separator in all path | |
473 definitions. | |
474 (PATH_DUMPLOADSEARCH): Revert to definition used on Unix. | |
475 | |
476 * preprep.c (PTR_TO_OFFSET): Cast ptr to unsigned char *. | |
477 | |
478 * runemacs.c: Remove WIN32 define. | |
479 | |
480 * inc/sys/file.h (F_OK, X_OK, W_OK, R_OK, D_OK): Define if D_OK is | |
481 not defined. | |
482 | |
483 * inc/sys/socket.h (_WINSOCK_H): Undefine if defined. | |
484 (fd_set): Define to new name, after including winsock.h, so we can | |
485 provide our own implementation. | |
486 | |
487 2000-07-05 Andrew Innes <andrewi@gnu.org> | |
488 | |
489 * ebuild.bat: Add support for specifying make arguments. | |
490 | |
491 * makefile.nt: Add support for `bootstrap' and related targets. | |
492 | |
493 2000-06-11 Jason Rumney <jasonr@gnu.org> | |
494 | |
495 * config.nt: Define POINTER_TYPE, PTR, PROTOTYPES and __P. | |
496 | |
497 2000-02-06 Andrew Innes <andrewi@gnu.org> | |
498 | |
499 * inc/sys/time.h: Add inclusion protection. | |
500 | |
501 * makefile.def (SYS_LDFLAGS): Add -nologo. | |
502 | |
503 1999-11-22 Andrew Innes <andrewi@gnu.org> | |
504 | |
505 * install.bat: Pass on command line arguments to make. | |
506 | |
507 * makefile.nt (fast_install): Bring commands up-to-date, and fix | |
508 typo. | |
509 | |
510 1999-11-21 Andrew Innes <andrewi@gnu.org> | |
511 | |
512 * makefile.nt (all): Build leim if present. | |
513 (install): Install leim if present. | |
514 (clean): Clean leim if present. | |
515 | |
516 * addpm.c (env_vars): Include leim in default EMACSLOADPATH | |
517 definition. | |
518 | |
519 * emacs.bat.in (EMACSLOADPATH): Include leim. | |
520 | |
521 1999-07-12 Richard Stallman <rms@gnu.org> | |
522 | |
523 * Version 20.4 released. | |
524 | |
525 1999-06-16 Andrew Innes <andrewi@gnu.org> | |
526 | |
527 * emacs.rc: Use an icon with a transparent background, to be in | |
528 keeping with other applications. | |
529 | |
530 1999-06-03 Andrew Innes <andrewi@gnu.org> | |
531 | |
532 * preprep.c: Fix typo. | |
533 | |
534 1999-05-02 Andrew Innes <andrewi@gnu.org> | |
535 | |
536 * config.h: Remove obsolete file. | |
537 | |
538 * preprep.c (copy_executable_and_move_sections): Ifdef out a | |
539 couple of unused switch cases that aren't defined on all | |
540 platforms. | |
541 | |
542 * ftime.bat: Add another variation of the profile command, which | |
543 only profiles extended commands. | |
544 | |
545 1999-03-31 Geoff Voelker <voelker@cs.washington.edu> | |
546 | |
547 * cmdproxy.c (main): Fix parens. | |
548 | |
549 1999-03-25 Andrew Innes <andrewi@gnu.org> | |
550 | |
551 * cmdproxy.c (main): Call GetShortPathName to normalize program | |
552 names for comparison. | |
553 | |
554 1999-03-05 Geoff Voelker <voelker@cs.washington.edu> | |
555 | |
556 * makefile.def: Compile multiple .c files when possible. | |
557 Use BLD instead of assuming i386. | |
558 * makefile.nt: Remove common multiple file compilation commands. | |
559 | |
560 1999-03-04 Geoff Voelker <voelker@cs.washington.edu> | |
561 | |
562 * cmdproxy.c (main): Add missing parens. | |
563 | |
564 1999-02-20 Andrew Innes <andrewi@gnu.org> | |
565 | |
566 * preprep.c: New program to allow dumped image to be profiled. | |
567 | |
568 * makefile.nt (preprep): New target. | |
569 (ALL): Build it. | |
570 | |
571 * makefile.def (ARCH_CFLAGS): Set struct packing to 8. | |
572 | |
573 * ftime.bat: Invoke preprep to prepare dumped image for profiling. | |
574 Change prep options to profile libc functions and skip the startup | |
575 code. | |
576 | |
577 1999-02-15 Geoff Voelker <voelker@cs.washington.edu> | |
578 | |
579 * makefile.nt: Create installation directory as first step. | |
580 | |
581 1999-01-31 Andrew Innes <andrewi@gnu.org> | |
582 | |
583 * addsection.c: (ROUND_UP_DST_AND_ZERO): Renamed from | |
584 ROUND_UP_DST. Zeroes the alignment slop. | |
585 (copy_executable_and_add_section): Update the | |
586 SizeOfHeaders field properly. | |
587 | |
588 1999-01-27 Andrew Innes <andrewi@gnu.org> | |
589 | |
590 * makefile.nt: Do make version comparison as strings. | |
591 | |
592 1999-01-26 Andrew Innes <andrewi@harlequin.co.uk> | |
593 | |
594 * runemacs.c (WinMain): Pass explicit environment block to | |
595 CreateProcess, to work around a bug in Windows 95/98. | |
596 | |
597 1999-01-22 Geoff Voelker <voelker@cs.washington.edu> | |
598 | |
599 * icons: New directory with Davenport's icons. | |
600 icons/sink.ico: Renamed from emacs.ico. | |
601 | |
602 * makefile.nt (install, fast_install): Install Windows icons | |
603 into etc/icons. | |
604 | |
605 * emacs.rc (ICON): Use icons/gnu2a32.ico as the default icon. | |
606 | |
607 1999-01-17 Andrew Innes <andrewi@gnu.org> | |
608 | |
609 * makefile.nt: (ALL): List top-level targets. | |
610 (addsection): New top-level target. | |
611 (install): Copy fns-*.el to bin directory. | |
612 | |
613 * addsection.c: New program to add static heap section to | |
614 temacs.exe after linking, in support of new unexec method. | |
615 | |
616 1998-12-28 Andrew Innes <andrewi@delysid.gnu.org> | |
617 | |
618 * cmdproxy.c (spawn): Pass directory for child as parameter. | |
619 (main): Save startup directory to give to spawn, then change | |
620 directory to location of .exe in order not to prevent startup | |
621 directory from being deleted. | |
622 | |
623 1998-12-08 Geoff Voelker <voelker@cs.washington.edu> | |
624 | |
625 * makefile.nt: Do string comparision of _NMAKE_VER. | |
626 | |
627 1998-12-02 Geoff Voelker <voelker@cs.washington.edu> | |
628 | |
629 * config.nt (LOCALTIME_CACHE): Define. | |
630 | |
631 1998-11-13 Andrew Innes <andrewi@delysid.gnu.org> | |
632 | |
633 * install.bat: Convert to DOS format. | |
634 | |
635 1998-11-10 Andrew Innes <andrewi@harlequin.co.uk> | |
636 | |
637 * cmdproxy.c (main): Set environment size only when running | |
638 command.com. | |
639 | |
49542
6ec2d998c53b
*** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents:
49526
diff
changeset
|
640 1998-11-03 Theodore Jump <tjump@tertius.com> |
37566 | 641 |
642 * makefile.def (SYS_LDFLAGS): Use swapfile when running from cd or net. | |
643 (DEL_TREE): Use rd instead of rmdir. | |
644 (ARCH_CFLAGS): Optimize for P6. Align structures on 8-byte boundaries. | |
645 * makefile.nt: Compile multiple source files when possible. | |
48065
e3b637f1a9c5
Added "(tiny change)" marker.
Juanma Barranquero <lekktu@gmail.com>
parents:
47216
diff
changeset
|
646 |
37566 | 647 1998-10-05 Geoff Voelker <voelker@cs.washington.edu> |
648 | |
649 * cmdproxy.c (main): Treat command line options as case-insensitive. | |
650 | |
651 1998-08-19 Richard Stallman <rms@psilocin.ai.mit.edu> | |
652 | |
653 * Version 20.3 released. | |
654 | |
655 1998-07-20 Geoff Voelker <voelker@cs.washington.edu> | |
656 | |
657 * addpm.c (main): Explicitly check result of message box for OK. | |
658 | |
659 1998-06-05 Andrew Innes <andrewi@harlequin.co.uk> | |
660 | |
661 * inc/sys/file.h (D_OK): Define new macro. | |
662 | |
663 1998-06-01 Andrew Innes <andrewi@mescaline.gnu.org> | |
664 | |
665 * makefile.def (CFLAGS): Do not define HAVE_NTGUI. | |
666 | |
667 1998-05-30 Geoff Voelker <voelker@cs.washington.edu> | |
668 | |
669 * emacs.rc (VS_VERSION_INFO): Define. | |
670 | |
671 1998-04-23 Geoff Voelker <voelker@cs.washington.edu> | |
672 | |
673 * makefile.nt (emacs.bat, debug.bat): Create them in the | |
674 installation directory. | |
675 | |
676 1998-04-23 Andrew Innes <andrewi@harlequin.co.uk> | |
677 | |
678 * ddeclient.c: New file. (Support program for performing limited | |
679 interprocess communication on Windows.) | |
680 | |
681 * makefile.nt: Build ddeclient. | |
682 | |
683 * cmdproxy.c (main): Only set environment size for real shell, and | |
684 provide extra directory argument, when running on Windows 95. | |
48065
e3b637f1a9c5
Added "(tiny change)" marker.
Juanma Barranquero <lekktu@gmail.com>
parents:
47216
diff
changeset
|
685 |
37566 | 686 1998-04-17 Geoff Voelker <voelker@cs.washington.edu> |
687 | |
688 * cmdproxy.c (fail): Exit with a negative return value. | |
689 (spawn): Return subprocess return code as an argument. | |
690 Explicitly copy environment block. | |
691 (main): Update to use return value argument with spawn. | |
692 Retry if spawn failed when a subshell was not tried. | |
693 | |
694 * config.nt: Include new macros from src/config.in. | |
695 (GNU_MALLOC, REL_ALLOC): Define. | |
696 (RE_TRANSLATE_TYPE): Use Lisp_Object as type. | |
697 (RE_TRANSLATE): Use char_table_translate. | |
698 | |
699 * makefile.def (CP_DIR): Preserve attributes. | |
700 | |
701 * makefile.nt (clean): Delete patch generated files, optimized | |
702 build directory. | |
703 | |
704 1997-10-01 Geoff Voelker <voelker@cs.washington.edu> | |
705 | |
706 * addpm.c (env_vars): Fix misplaced % in SHELL entry. | |
707 | |
708 1997-09-19 Richard Stallman <rms@psilocin.gnu.ai.mit.edu> | |
709 | |
710 * Version 20.2 released. | |
711 | |
712 1997-09-15 Richard Stallman <rms@psilocin.gnu.ai.mit.edu> | |
713 | |
714 * Version 20.1 released. | |
715 | |
716 1997-09-11 Geoff Voelker <voelker@cs.washington.edu> | |
717 | |
718 * debug.bat.in: New file. | |
719 * makefile.nt (debug.bat): New target. | |
720 | |
721 1997-09-02 Andrew Innes <andrewi@harlequin.co.uk> | |
722 | |
723 * addpm.c (env_vars): Put site-lisp before lisp in EMACSLOADPATH. | |
724 Quote group name. Allow different icons to be specified. | |
725 | |
726 * cmdproxy.c (get_env_size): New function. | |
727 (spawn): Explicitly pass in environment when creating subprocess. | |
728 (main): Cleaup error messages. | |
729 Specify dynamically sized environment block for real shell. | |
730 Pass on unhandled switches to real shell. | |
731 Quote program name. | |
732 | |
48065
e3b637f1a9c5
Added "(tiny change)" marker.
Juanma Barranquero <lekktu@gmail.com>
parents:
47216
diff
changeset
|
733 * makefile.def (CFLAGS_COMMON): Place pdb file in object build |
37566 | 734 directory. |
48065
e3b637f1a9c5
Added "(tiny change)" marker.
Juanma Barranquero <lekktu@gmail.com>
parents:
47216
diff
changeset
|
735 (CFLAGS) [!MSVCNT11]: Define _CRTAPI1. |
37566 | 736 |
737 * runemacs.c (WinMain): Allow Emacs process to be started with | |
738 high or low priority. | |
739 | |
740 * emacs.bat.in: Remove OS dependent operations. | |
48065
e3b637f1a9c5
Added "(tiny change)" marker.
Juanma Barranquero <lekktu@gmail.com>
parents:
47216
diff
changeset
|
741 |
37566 | 742 1997-09-02 Geoff Voelker <voelker@cs.washington.edu> |
743 | |
744 * addpm.c (env_vars): No longer set INFOPATH. | |
745 | |
746 * cmdproxy.c (get_next_token): Null terminate token returned. | |
747 | |
748 * emacs.bat.in (INFOPATH): No longer set INFOPATH. | |
749 | |
750 1997-08-10 Andrew Innes <andrewi@harlequin.co.uk> | |
751 | |
752 * addpm.c (env_vars): Set SHELL to cmdproxy. | |
753 (main): Initialize idDde to 0. | |
754 Determine emacs_path from module file name. | |
755 Prompt for install. | |
756 | |
757 * makefile.def (MSVCNT11): Conditionally define it. | |
758 (BASE_LIBS): Do not use oldnames.lib. | |
759 (SYS_LDFLAGS): Use pdb files. | |
760 (CFLAGS_COMMON) [!spd]: Define EMACSDEBUG. | |
761 (ARCH_CFLAGS) [i386 && spd]: Use space optimizations. | |
762 (ARCH_CFLAGS) [alpha && spd]: Use optimizations. | |
763 | |
764 * makefile.nt (ALL): Build cmdproxy. | |
765 (cmdproxy): New target. | |
766 (install): Install cmdproxy. | |
767 | |
768 * ftime.bat, debug.bat, cmdproxy.c: New files. | |
769 | |
770 1997-07-10 Geoff Voelker <voelker@cs.washington.edu> | |
771 | |
772 * inc/sys/socket.h: (shutdown): Define. | |
773 (sys_shutdown): Export. | |
774 | |
775 1997-07-08 Richard Stallman <rms@psilocin.gnu.ai.mit.edu> | |
776 | |
777 * config.nt (RE_TRANSLATE): Copy definition from config.in. | |
778 | |
779 1997-07-01 Geoff Voelker <voelker@cs.washington.edu> | |
780 | |
781 * config.nt: Update file comments. | |
782 Update undefs added/removed in src/config.in. | |
783 | |
784 1997-06-19 Geoff Voelker <voelker@cs.washington.edu> | |
785 | |
786 * makefil.def, emacs.bat: Use windows95 and windowsnt instead | |
787 of win95 and winnt, respectively. | |
788 | |
789 1997-01-04 Geoff Voelker <voelker@cs.washington.edu> | |
790 | |
791 * makefile.nt (real_install): Create site-lisp in installation dir. | |
792 * addpm.c (env_vars): Add site-lisp to EMACSLOADPATH. | |
793 * emacs.bat.in: Add site-lisp to EMACSLOADPATH. | |
794 | |
795 1996-08-11 Richard Stallman <rms@psilocin.gnu.ai.mit.edu> | |
796 | |
797 * Version 19.33 released. | |
798 | |
799 1996-08-09 Geoff Voelker <voelker@cs.washington.edu> | |
800 | |
801 * runemacs.c (WinMain): Put a space between the binary and its args. | |
802 | |
803 1996-07-31 Richard Stallman <rms@psilocin.gnu.ai.mit.edu> | |
804 | |
805 * Version 19.32 released. | |
806 | |
807 1996-07-16 Andrew Innes <andrewi@harlequin.co.uk> | |
808 | |
809 * makefile.nt (clean): Use OBJDIR macro. | |
810 | |
811 1996-06-03 Kim F. Storm <kfs@olicom.dk> | |
812 | |
813 * runemacs.c (CHOOSE_NEWEST_EXE): New parameter macro. | |
814 Not defined by default. | |
815 (WinMain): Add conditional testing CHOOSE_NEWEST_EXE. | |
816 (WinMain): Convert backslashes to slashes in env var values. | |
817 | |
818 * addpm.c (env_vars): Use slashes, not backslashes. | |
819 | |
820 1996-05-25 Karl Heuer <kwzh@gnu.ai.mit.edu> | |
821 | |
822 * Version 19.31 released. | |
823 | |
824 1996-05-13 Andrew Innes <andrewi@harlequin.co.uk> | |
825 | |
826 * install.bat: Set BUILD_TYPE and INSTALL_DIR before calling make; | |
827 undo settings afterwards. | |
828 | |
829 1996-05-08 Andrew Innes <andrewi@harlequin.co.uk> | |
830 | |
831 * addpm.c (env_vars): Set SHELL registry entry to value of COMSPEC | |
832 environment variable. | |
833 | |
49542
6ec2d998c53b
*** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents:
49526
diff
changeset
|
834 1996-05-03 Andrew Innes <andrewi@harlequin.co.uk> |
37566 | 835 |
836 * install.bat: Allow for optimized build. | |
837 * makefile.def [BUILD_TYPE]: Build optimized version in its own dir. | |
838 (ARCH_CFLAGS) [BUILD_TYPE == spd]: Build optimized version. | |
839 | |
49542
6ec2d998c53b
*** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents:
49526
diff
changeset
|
840 1996-05-03 Andrew Innes <andrewi@harlequin.co.uk> |
37566 | 841 |
842 * addpm.c (REG_ROOT): Don't use a trailing backslash. | |
843 (env_vars): Rename field emacs_path to emacs_dir. | |
844 (main): Add link to runemacs instead of emacs. | |
845 | |
846 * install.bat: Check if INSTALL_DIR is passed as an argument. | |
847 | |
848 * makefile.def (CONFIG_H) [WIN95]: Use config.nt. | |
849 | |
850 * makefile.nt: Build and install runemacs.exe. | |
851 | |
852 * runemacs.c: New file. | |
853 | |
854 * config.w95: File removed. | |
855 | |
856 * inc/netdb.h, inc/unistd.h, inc/arpa/inet.h, inc/netinet/in.h, | |
857 inc/sys/socket.h, inc/sys/time.h: New header files. | |
858 | |
859 * inc/sys/file.h (F_OK, X_OK, W_OK, R_OK): New macros. | |
48065
e3b637f1a9c5
Added "(tiny change)" marker.
Juanma Barranquero <lekktu@gmail.com>
parents:
47216
diff
changeset
|
860 |
37566 | 861 1996-03-27 Geoff Voelker <voelker@cs.washington.edu> |
862 | |
863 * makefile.def (DEL): Defined. | |
864 (DEL_TREE) [win95]: Defined. | |
865 (SYS_LDFLAGS): Set executable versions to 3.10. | |
48065
e3b637f1a9c5
Added "(tiny change)" marker.
Juanma Barranquero <lekktu@gmail.com>
parents:
47216
diff
changeset
|
866 |
37566 | 867 * makefile.nt: Change uses of del to $(DEL). |
868 | |
869 1996-01-17 Erik Naggum <erik@naggum.no> | |
870 | |
871 * All files: Update FSF's address in comment preamble. | |
872 | |
873 1996-01-03 George V. Reilly <georger@microcrafts.com> | |
874 | |
875 * emacs.ico: Now the proverbial kitchen sink icon. | |
876 | |
877 1995-11-24 Richard Stallman <rms@mole.gnu.ai.mit.edu> | |
878 | |
879 * Version 19.30 released. | |
880 | |
881 1995-11-22 Geoff Voelker <voelker@cs.washington.edu> | |
882 | |
883 * makefile.def (CP_DIR): Use platform independent switches for xcopy. | |
884 | |
885 * makefile.nt (install, fast_install, real_install, clean): | |
886 Don't use switches to del not supported by Win95. | |
887 | |
888 1995-11-07 Kevin Gallo <kgallo@microsoft.com> | |
889 | |
890 * makefile.nt (addpm.exe): Link with $(ADVAPI32). | |
891 (install, fast_install): Change same-dir test to create test file in | |
892 installation tree and thereby support read-only shares. | |
893 (clean): Remove .pdb files. | |
894 | |
895 * makefile.def (NTGUI): New macro. | |
896 [NTGUI] (CFLAGS): Define HAVE_NTGUI. | |
897 | |
898 * config.nt, config.w95: Update to latest src/config.in. | |
899 | |
900 * addpm.c (env_vars): New variable. | |
901 (add_registry): New procedure. | |
902 (main): Use values of configuration environment variables from | |
903 the registry if defined, the process environment otherwise. | |
904 | |
905 1995-06-19 Richard Stallman <rms@mole.gnu.ai.mit.edu> | |
906 | |
907 * Version 19.29 released. | |
908 | |
909 * makefile.nt (addpm.exe): Change WinMainCRTStartup to mainCRTStartup. | |
910 | |
911 1995-06-13 Geoff Voelker <voelker@cs.washington.edu> | |
912 | |
913 * makefile.nt: Define .c to .obj suffix rule. | |
914 (addpm.obj): Compile directly, use CFLAGS. | |
915 (addpm.exe): Link from addpm.obj. | |
48065
e3b637f1a9c5
Added "(tiny change)" marker.
Juanma Barranquero <lekktu@gmail.com>
parents:
47216
diff
changeset
|
916 |
37566 | 917 * makefile.def (MSVCNT11): Defined. |
918 (BASE_LIBS) [MSVCNT11]: Use oldnames.lib. | |
919 (CFLAGS_COMMON): Defined. | |
920 (CFLAGS) [MSVCNT11]: Define _CRTAPI1 to _cdecl. | |
48065
e3b637f1a9c5
Added "(tiny change)" marker.
Juanma Barranquero <lekktu@gmail.com>
parents:
47216
diff
changeset
|
921 |
37566 | 922 1995-06-09 Geoff Voelker <voelker@cs.washington.edu> |
923 | |
924 * emacs.bat.in: Renamed from emacs.bat | |
925 (emacs_dir): Renamed from emacs_path | |
926 Definition removed. | |
927 | |
928 * addpm.c: New file. | |
929 * makefile.nt (ALL,addpm,addpm.exe,addpm.obj): Defined. | |
930 (all): Depend upon $(BLD) and $(ALL). | |
931 (install): Depend upon emacs.bat. | |
932 Create program item for Emacs. | |
933 (clean): Delete obj. | |
934 (emacs.bat): Defined. | |
935 * makefile.def (EMACS_ICON_PATH,ADDPM): Defined. | |
936 | |
937 1995-05-27 Geoff Voelker <voelker@cs.washington.edu> | |
938 | |
939 * ebuild.bat, emacs.bat, fast-install.bat, install.bat: | |
940 Add carriage returns; necessary for batch files on Win95. | |
941 | |
942 1995-05-25 Geoff Voelker <voelker@cs.washington.edu> | |
943 | |
944 * config.w95: Created. | |
945 * config.h: Changed to config.nt. | |
48065
e3b637f1a9c5
Added "(tiny change)" marker.
Juanma Barranquero <lekktu@gmail.com>
parents:
47216
diff
changeset
|
946 |
37566 | 947 * makefile.nt (SUBDIRS): Commented out. |
948 (all,install,clean): Expand for-loops. | |
949 (BUILD_CMD,INSTALL_CMD,CLEAN_CMD): Defined. | |
950 | |
951 * makefile.def (SYS_LIB_DIR,SYS_INC_DIR): Undefined. | |
952 (ARCH): New definition. | |
953 (CPU,CONFIG_H,OS_TYPE): Defined. | |
954 (INCLUDE,LIB): Checked if valid. | |
955 (ntwin32.mak): Included. | |
956 (AR,CC,LINK): New definition. | |
957 (ADVAPI32,libc,BASE_LIBS): Defined. | |
958 (SYS_LDFLAGS): New definition. | |
959 Update comments and preprocessor conditionals. | |
960 | |
961 * emacs.bat (SHELL): Conditionally defined. | |
962 (HOME): Conditionally defined. | |
963 (emacs_path,HOME): Update comments. | |
964 Turn off all echo. | |
965 | |
966 1995-05-09 Geoff Voelker <voelker@cs.washington.edu> | |
967 | |
968 * _emacs, config.h, ebuild.bat, emacs.bat, emacs.rc, | |
969 fast-install.bat, install.bat, makefile.def, makefile.nt, paths.h, | |
970 inc/pwd.h, inc/sys/dir.h, inc/sys/file.h, inc/sys/ioctl.h, | |
971 inc/sys/param.h: Removed carriage-returns. | |
972 | |
973 1995-05-06 Geoff Voelker <voelker@cs.washington.edu> | |
974 | |
975 * makefile.def (CVTRES): Defined. | |
976 | |
977 * emacs.ico, emacs.rc: New files by Kevin Gallo. | |
978 | |
979 1995-04-10 Geoff Voelker <voelker@cs.washington.edu> | |
980 | |
49505
1aba10ab73b4
Corrected misc. typos like missing : after file names,
Kim F. Storm <storm@cua.dk>
parents:
49457
diff
changeset
|
981 * src: Remove directory. |
37566 | 982 |
983 * src\config.h, src\paths.h: Moved to parent dir, src removed. | |
984 | |
985 1995-04-09 Geoff Voelker <voelker@cs.washington.edu> | |
986 | |
987 * makefile.def (INSTALL_DIR): Changed to generic directory. | |
988 | |
989 * emacs.bat: Added arguments when emacs.exe invoked. | |
990 | |
991 * ebuild.cmd, emacs.cmd, install.cmd: Changed extension to .bat. | |
992 | |
993 1994-12-13 voelker <voelker@cs.washington.edu> | |
994 | |
995 * makefile.def (CC): In configuration section. | |
996 (COMPAT_LIB): Defined. | |
997 | |
998 1994-11-01 voelker <voelker@cs.washington.edu> | |
999 | |
1000 * src/paths.h: New file. | |
1001 | |
1002 * src/config.h: New file. | |
1003 | |
1004 * inc/pwd.h: New file. | |
1005 | |
1006 * inc/sys/dir.h: New file. | |
1007 | |
1008 * inc/sys/file.h: New file. | |
1009 | |
1010 * inc/sys/ioctl.h: New file. | |
1011 | |
1012 * inc/sys/param.h: New file. | |
1013 | |
1014 * todo: New file. | |
1015 | |
49505
1aba10ab73b4
Corrected misc. typos like missing : after file names,
Kim F. Storm <storm@cua.dk>
parents:
49457
diff
changeset
|
1016 * README: New file. |
37566 | 1017 |
1018 * makefile.nt: New file. | |
1019 | |
1020 * makefile.def: New file. | |
48065
e3b637f1a9c5
Added "(tiny change)" marker.
Juanma Barranquero <lekktu@gmail.com>
parents:
47216
diff
changeset
|
1021 |
37566 | 1022 * install.cmd: New file. |
1023 | |
49505
1aba10ab73b4
Corrected misc. typos like missing : after file names,
Kim F. Storm <storm@cua.dk>
parents:
49457
diff
changeset
|
1024 * INSTALL: New file. |
37566 | 1025 |
1026 * fast-install.cmd: New file. | |
1027 | |
1028 * emacs.cmd: New file. | |
1029 | |
1030 * ebuild.cmd: New file. | |
1031 | |
1032 * _emacs: New file. | |
1033 | |
1034 ;; Local Variables: | |
1035 ;; coding: iso-2022-7bit | |
1036 ;; End: | |
39627 | 1037 |
1038 Copyright (C) 1995, 1996, 1997, 1998, 1999, 2001 | |
1039 Free Software Foundation, Inc. | |
1040 Copying and distribution of this file, with or without modification, | |
1041 are permitted provided the copyright notice and this notice are preserved. | |
52401 | 1042 |
1043 ;;; arch-tag: b3d2c29c-04a0-45d0-b52d-57354711c414 |