* inc/stdint.h (UINT64_MAX, UINT64_MIN, INT64_MIN, UINTMAX_MAX)
[bpt/emacs.git] / nt / ChangeLog
1 2011-11-05 Christoph Scholtes <cschol2112@googlemail.com>
2
3 * inc/stdint.h (UINT64_MAX, UINT64_MIN, INT64_MIN, UINTMAX_MAX)
4 (UINTMAX_MIN, INTMAX_MAX, INTMAX_MIN, UINT32_MIN, UINT32_MAX)
5 (INT32_MIN, UINTMAX_MAX, UINTMAX_MIN, INTMAX_MAX, INTMAX_MIN)
6 (intmax_t, INT64_MAX): Add for MSVC.
7
8 * config.nt: (mode_t) [!__GNUC__]: Define mode_t for MSVC.
9
10 2011-11-05 Eli Zaretskii <eliz@gnu.org>
11
12 * config.nt (inline) [!__GNUC__]: Define to __inline for MSVC.
13
14 Support MSVC build with newer versions of Visual Studio.
15 * makefile.w32-in (clean-other-dirs-nmake)
16 (distclean-other-dirs-nmake, maintainer-clean-other-dirs-nmake):
17 Update for current structure of doc/ subdirectories.
18
19 * gmake.defs (OBJ0_c, OBJ1_c, OBJ2_c): New variables.
20
21 * INSTALL: Update for newer versions of MSVC.
22
23 2011-11-05 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
24
25 Support MSVC build with newer versions of Visual Studio.
26 * nmake.defs (USE_CRT_DLL): Define to 1.
27 (libc, EMACS_EXTRA_C_FLAGS, SYS_LDFLAGS, ARCH_CFLAGS): Update values.
28 (D): New variable.
29
30 2011-11-04 Eli Zaretskii <eliz@gnu.org>
31
32 * runemacs.c (ensure_unicows_dll): New function, tries to load
33 UNICOWS.DLL on Windows 9X.
34 (WinMain): If ensure_unicows_dll fails to find UNICOWS.DLL,
35 display a dialog to the effect that Emacs cannot be started.
36 (Bug#8562)
37
38 2011-10-28 Eli Zaretskii <eliz@gnu.org>
39
40 * README.W32: Mention UNICOWS.DLL as prerequisite for running
41 Emacs on Windows 9X.
42
43 2011-10-25 Eli Zaretskii <eliz@gnu.org>
44
45 * makefile.w32-in (dist): Don't put the top-level INSTALL into the
46 distribution. (Bug#9861)
47
48 2011-10-25 Christoph Scholtes <cschol2112@googlemail.com>
49
50 * INSTALL: Update URL for GTK download page.
51
52 2011-10-19 Eli Zaretskii <eliz@gnu.org>
53
54 * config.nt (HAVE_TZNAME, HAVE_DECL_TZNAME): Define.
55 (Bug#9794) (Bug#641)
56
57 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
58
59 * config.nt (HAVE_SNPRINTF): New macro.
60
61 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
62
63 Assume freestanding C89 headers, string.h, stdlib.h.
64 * config.nt (HAVE_LIMITS_H, HAVE_STRING_H, HAVE_STDLIB_H)
65 (STDC_HEADERS): Remove.
66 Iinclude string.h, stdlib.h unconditionally.
67
68 2011-06-07 Eli Zaretskii <eliz@gnu.org>
69
70 * inc/stdint.h (INT32_MAX, INT64_MAX, INTPTR_MAX, PTRDIFF_MAX)
71 [!__GNUC__]: New macros.
72
73 2011-05-28 Paul Eggert <eggert@cs.ucla.edu>
74
75 Use 'inline', not 'INLINE'.
76 * config.nt (INLINE): Remove.
77
78 2011-05-17 Eli Zaretskii <eliz@gnu.org>
79
80 * README.W32: Add information about GnuTLS libraries.
81
82 2011-05-09 Eli Zaretskii <eliz@gnu.org>
83
84 * config.nt [_MSC_VER] (va_copy): Replacement for the MS compiler.
85
86 2011-05-07 Ben Key <bkey76@gmail.com>
87
88 * configure.bat: Renamed the fusercflags variable to escusercflags
89 so that the variable name better matches its purpose, to be
90 identical to usercflags with the exception that all quotes are
91 escaped by the \ character.
92
93 Renamed the fuserldflags variable to escuserldflags so that the
94 variable name better matches its purpose, to be identical to
95 userldflags with the exception that all quotes are escaped by
96 the \ character.
97
98 A new ESC_USER_CFLAGS variable is written to config.settings.
99 This variable has the same value as the escusercflags variable.
100
101 * gmake.defs, nmake.defs: Added the variable ESC_CFLAGS. This
102 variable is identical to the CFLAGS variable except that it
103 includes the new ESC_USER_CFLAGS variable instead of USER_CFLAGS.
104
105 These changes, along with some changes to src/makefile.w32-in,
106 are required to extend my earlier fix to add support for
107 --cflags and --ldflags options that include quotes so that it
108 works whether make uses cmd or sh as the shell.
109
110 2011-05-06 Eli Zaretskii <eliz@gnu.org>
111
112 * inc/inttypes.h [!__MINGW32__]: Include stdint.h. Move the
113 definition of uintmax_t from here...
114 * inc/stdint.h (uintmax_t): ...to here.
115 (intptr_t) [!__GNUC__]: New typedef.
116
117 2011-05-06 Paul Eggert <eggert@cs.ucla.edu>
118
119 * config.nt: Prepare to configure 64-bit integers for older compilers.
120 However, temporarily disable this change unless the temporary
121 symbol WIDE_EMACS_INT is defined.
122 (EMACS_INT, BITS_PER_EMACS_INT, pI): Define these if __int64 and
123 "%I64d" work but long long and "%lld" do not.
124
125 2011-05-05 Ben Key <bkey76@gmail.com>
126
127 * configure.bat: Added support for --cflags and --ldflags
128 options that include quotes as long as command extensions are
129 enabled. Specifically when -I, -L, and similar flags are used
130 to specify supplementary include and library directories a
131 directory name that includes spaces may now be used if it is
132 enclosed in quotes.
133
134 * INSTALL: Documented the change to configure.bat.
135
136 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
137
138 * INSTALL: Clarify GnuTLS support.
139
140 2011-04-30 Eli Zaretskii <eliz@gnu.org>
141
142 * config.nt (HAVE_LONG_LONG_INT, HAVE_UNSIGNED_LONG_LONG_INT):
143 Define to 1 for MinGW of MSVC versions >= 1400.
144
145 2011-04-28 Eli Zaretskii <eliz@gnu.org>
146
147 * gmake.defs (ARCH): Fix error message in case of unknown
148 architecture.
149
150 2011-04-27 Eli Zaretskii <eliz@gnu.org>
151
152 * inc/inttypes.h: New file.
153
154 * config.nt (HAVE_DECL_STRTOULL, HAVE_DECL_STRTOUMAX)
155 (HAVE_STRTOULL, HAVE_STRTOUMAX): New macros.
156
157 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
158
159 * cmdproxy.c (try_dequote_cmdline): Notice variable substitutions
160 inside quotation marks and bail out.
161
162 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
163
164 * cmdproxy.c (try_dequote_cmdline): New function.
165 (main): Use it.
166
167 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
168
169 * configure.bat: New options --without-gnutls and --lib, new build
170 variable USER_LIBS, automatically detect GnuTLS. Copies the PNG
171 library setup with trivial modifications.
172 * INSTALL: Add instructions for GnuTLS support.
173 * gmake.defs: Prefix USER_LIBS with -l.
174
175 2011-04-15 Ben Key <bkey76@gmail.com>
176
177 * configure.bat: Modified the code that parses the --cflags and
178 --ldflags options to support parameters that include the =
179 character as long as they are enclosed in quotes. This
180 functionality depends on command extensions. Configure.bat now
181 attempts to enable command extensions and displays a warning
182 message if they could not be enabled. If configure.bat could
183 not enable command extensions the old parsing code is used that
184 does not support parameters that include the = character.
185
186 * INSTALL: Updated the file to describe the new functionality
187 using text provided by Eli Zaretskii.
188
189 2011-04-06 Eli Zaretskii <eliz@gnu.org>
190
191 * config.nt (NO_INLINE, ATTRIBUTE_FORMAT)
192 (ATTRIBUTE_FORMAT_PRINTF): Define, as followup to 2011-04-06T05:19:39Z!eggert@cs.ucla.edu
193 on the trunk on 2011-04-06.
194
195 2011-03-27 Glenn Morris <rgm@gnu.org>
196
197 * config.nt: Remove RETSIGTYPE, SIGTYPE (identical to void).
198
199 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
200
201 * addpm.c (main): Remove unused variable `retval'.
202
203 * preprep.c (main): Remove unused variable `ptr'.
204
205 2011-03-23 Juanma Barranquero <lekktu@gmail.com>
206
207 * cmdproxy.c: Include <ctype.h>.
208 (make_absolute): Remove unused variable `i'.
209
210 2011-03-07 Chong Yidong <cyd@stupidchicken.com>
211
212 * Version 23.3 released.
213
214 2011-02-27 Eli Zaretskii <eliz@gnu.org>
215
216 * inc/unistd.h (readlink, symlink): Declare prototypes.
217
218 2011-02-26 Eli Zaretskii <eliz@gnu.org>
219
220 * config.nt (nlink_t): Define.
221
222 2011-02-21 Christoph Scholtes <cschol2112@gmail.com>
223
224 * inc/stdint.h: New file, to support compilation with tool chains
225 that do not have stdint.h (e.g. MSVC).
226
227 2011-02-21 Eli Zaretskii <eliz@gnu.org>
228
229 * inc/sys/stat.h (S_ISUID, S_ISGID, S_ISVTX, S_IRGRP, S_IROTH)
230 (S_IWGRP, S_IWOTH, S_IXGRP, S_IXOTH, S_ISSOCK, S_ISLNK, S_ISCTG)
231 (S_ISDOOR, S_ISMPB, S_ISMPC, S_ISNWK, S_ISPORT, S_ISWHT)
232 (S_TYPEISMQ, S_TYPEISSEM, S_TYPEISSHM, S_TYPEISTMO): Define.
233 (lstat): Define to stat.
234
235 2011-02-09 Eli Zaretskii <eliz@gnu.org>
236
237 * makefile.w32-in (bootstrap-nmake, bootstrap-gmake): Make the
238 "make-docfile" target in lib-src, before bootstrapping the src
239 directory. Needed since building in src needs to run make-docfile
240 to produce globals.h.
241
242 2011-02-04 Eli Zaretskii <eliz@gnu.org>
243
244 * config.nt (inline) [__GNUC__]: Define (for gnulib).
245
246 2011-01-31 Eli Zaretskii <eliz@gnu.org>
247
248 * config.nt (VERSION): Uncomment definition.
249 (restrict): Define.
250
251 * inc/stdbool.h: New file.
252
253 2011-01-29 Eli Zaretskii <eliz@gnu.org>
254
255 * makefile.w32-in (all-other-dirs-nmake, all-other-dirs-gmake)
256 (bootstrap-nmake, bootstrap-gmake, bootstrap-clean-nmake)
257 (bootstrap-clean-gmake, clean-other-dirs-nmake)
258 (clean-other-dirs-gmake, cleanall-other-dirs-nmake)
259 (cleanall-other-dirs-gmake, distclean-other-dirs-nmake)
260 (distclean-other-dirs-gmake, maintainer-clean-other-dirs-nmake)
261 (maintainer-clean-other-dirs-gmake): Recurse into ../lib as well.
262 (bootstrap-nmake, bootstrap-gmake): Fix the bootstrap.
263
264 * configure.bat: Create lib/makefile.
265
266 * config.nt (HAVE_MKTIME, BROKEN_MKTIME): Remove.
267 (HAVE_ATTRIBUTE_ALIGNED, HAVE_C99_STRTOLD, HAVE_DECL_GETENV)
268 (HAVE_DECL_LOCALTIME_R, HAVE_WCHAR_T, PACKAGE, VERSION, inline)
269 (_GL_UNUSED, _UNUSED_PARAMETER_): Add definitions, for gnulib.
270
271 2011-01-07 Eli Zaretskii <eliz@gnu.org>
272
273 * config.nt (HAVE___BUILTIN_UNWIND_INIT) [GCC >= 2.8]: Define.
274
275 2011-01-02 Eli Zaretskii <eliz@gnu.org>
276
277 * configure.bat (end): Unset environment variables used by this
278 batch file.
279
280 * INSTALL: Update the information about PNG support libraries.
281 (Bug#7716)
282
283 * README.W32: Update the information about PNG support libraries.
284
285 2010-11-23 Eli Zaretskii <eliz@gnu.org>
286
287 * config.nt (EXTERNALLY_VISIBLE): Define.
288
289 2010-10-13 Juanma Barranquero <lekktu@gmail.com>
290
291 * INSTALL: Refer to `dynamic-library-alist'.
292
293 2010-10-06 Juanma Barranquero <lekktu@gmail.com>
294
295 * INSTALL: Add note about problematic characters passed to configure.
296
297 2010-10-01 Eli Zaretskii <eliz@gnu.org>
298
299 * makefile.w32-in (frc, TAGS, TAGS-gmake, TAGS-nmake): New targets.
300 emacs-src.tags: New file.
301
302 * gmake.defs: Add a comment with a single quote to fix
303 fontification. (Bug#7102)
304
305 2010-09-29 Eli Zaretskii <eliz@gnu.org>
306
307 * configure.bat: Fix the condition for copying paths.h into
308 ../src/epaths.h.
309
310 2010-09-28 Juanma Barranquero <lekktu@gmail.com>
311
312 * addpm.c (entry, add_registry, main):
313 * addsection.c (file_data, open_input_file, open_output_file)
314 (find_section, PTR_TO_OFFSET, copy_executable_and_add_section)
315 (COPY_CHUNK):
316 * cmdproxy.c (vfprintf, fprintf, printf, fail, warn, skip_space)
317 (skip_nonspace, get_next_token, search_dir, make_absolute)
318 (spawn, main):
319 * preprep.c (file_data, open_input_file, open_output_file)
320 (open_inout_file, find_section, PTR_TO_OFFSET, COPY_CHUNK, main):
321 Use const char*.
322
323 * cmdproxy.c (stdin): Don't define, not used.
324 (main): Don't assign remlen after last use.
325
326 2010-09-22 Juanma Barranquero <lekktu@gmail.com>
327
328 * configure.bat: Err out when the argument of --cflags contains
329 invalid characters (check implemented only for GCC). (Bug#6820)
330
331 2010-08-19 Juanma Barranquero <lekktu@gmail.com>
332
333 * addpm.c (add_registry): Create App Paths of type REG_EXPAND_SZ.
334
335 2010-08-12 Jason Rumney <jasonr@gnu.org>
336
337 * addpm.c (add_registry): Set path for runemacs.exe to use.
338
339 2010-08-08 Óscar Fuentes <ofv@wanadoo.es>
340
341 * cmdproxy.c (main): Use _snprintf instead of wsprintf,
342 which has a 1024 char limit on Windows (bug#6647).
343
344 2010-08-02 Juanma Barranquero <lekktu@gmail.com>
345
346 * config.nt (TIME_WITH_SYS_TIME): Remove #undef, unused (bug#6754).
347 Suggested by Dan Nicolaescu <dann@ics.uci.edu>.
348
349 2010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
350
351 * config.nt: Remove code referring to NO_REMAP, unused.
352
353 2010-07-25 Christoph Scholtes <cschol2112@gmail.com>
354
355 Build binary distros on Windows using emacs-VERSION as root dir name.
356
357 * makefile.w32-in: Copy README.W32 to installation directory
358 during `make install'. Remove README.W32 with `distclean' (in
359 case Emacs was installed in place). Use temporary directory to
360 create distribution zip files in `dist' target.
361 * zipdist.bat: Simplify code using temporary directory.
362
363 2010-07-25 Juanma Barranquero <lekktu@gmail.com>
364
365 * runemacs.c (set_user_model_id): Fix prototype.
366
367 2010-07-24 Christoph Scholtes <cschol2112@gmail.com>
368
369 New make target for Windows platform: make dist (bug#6602)
370
371 * INSTALL: Document new dist target and add section about
372 creating binary distributions.
373 * README.W32: Relocate from admin/nt/ directory.
374 * configure.bat: New parameter `--distfiles'.
375 * makefile.w32-in: Add version number, new target `dist'.
376 Add new target `install-shortcuts'.
377 * zipdist.bat: New file; create zipped binary distribution,
378 replaces admin/nt/makedist.bat.
379
380 2010-07-21 Juanma Barranquero <lekktu@gmail.com>
381
382 * INSTALL: Add note about backslashes in Windows paths.
383 Fix typos. Simplify references to Windows versions.
384
385 2010-07-20 Juanma Barranquero <lekktu@gmail.com>
386
387 * addpm.c (add_registry, main):
388 * cmdproxy.c (get_env_size):
389 * ddeclient.c (main):
390 * runemacs.c (set_user_model_id):
391 Convert definitions to standard C.
392
393 2010-07-20 Juanma Barranquero <lekktu@gmail.com>
394
395 * gmake.defs (CHECKING_CFLAGS) [ENABLECHECKS]: Add -fno-crossjumping.
396
397 2010-07-18 Juanma Barranquero <lekktu@gmail.com>
398
399 * configure.bat: New option --enable-checking.
400 * gmake.defs, nmake.defs (CHECKING_CFLAGS): New define.
401 (CFLAGS): Include it.
402
403 2010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
404
405 * config.nt (volatile): Remove definition.
406
407 2010-07-07 Andreas Schwab <schwab@linux-m68k.org>
408
409 * config.nt (HAVE_BCOPY, HAVE_BCMP): Remove undefs.
410 (HAVE_MEMCPY, HAVE_MEMMOVE, HAVE_MEMSET, HAVE_MEMCMP): Add undefs.
411
412 2010-07-02 Juanma Barranquero <lekktu@gmail.com>
413
414 * config.nt (__P): Remove.
415
416 2010-06-06 Dan Nicolaescu <dann@ics.uci.edu>
417
418 * config.nt: Remove code depending on BSTRING.
419
420 2010-06-03 Glenn Morris <rgm@gnu.org>
421
422 * config.nt: Remove NOT_C_CODE tests, it is always true now.
423
424 2010-05-13 Glenn Morris <rgm@gnu.org>
425
426 * config.nt (LD_SWITCH_X_SITE, C_SWITCH_X_SITE): Remove undefs.
427
428 2010-05-07 Chong Yidong <cyd@stupidchicken.com>
429
430 * Version 23.2 released.
431
432 2010-05-04 Glenn Morris <rgm@gnu.org>
433
434 * config.nt (LD_SWITCH_X_SITE_AUX): Remove.
435
436 2010-04-20 Lewis Perin <perin@panix.com> (tiny change)
437
438 * emacs.manifest: Add trustInfo section to Windows manifest.
439
440 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
441
442 * Branch for 23.2.
443
444 2010-01-13 Martin Rudalics <rudalics@gmx.at>
445
446 * emacsclient.rc: Fix format of "LegalCopyright" value.
447
448 2009-12-28 Juanma Barranquero <lekktu@gmail.com>
449
450 * INSTALL: Remove obsolete notes about line endings, and fix some typos.
451
452 2009-12-27 Karl Fogel <kfogel@red-bean.com>
453
454 * INSTALL: Update for CVS->Bazaar switchover.
455
456 2009-09-14 Juanma Barranquero <lekktu@gmail.com>
457
458 * configure.bat: Add #define PROFILING to config.h.
459
460 2009-07-03 Jason Rumney <jasonr@gnu.org>
461
462 * runemacs.c (set_user_model_id): Use standard types.
463
464 2009-06-30 Jason Rumney <jasonr@gnu.org>
465
466 * runemacs.c (set_user_model_id): New function.
467 (WinMain): Use it.
468
469 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
470
471 * Branch for 23.1.
472
473 2009-03-21 Eli Zaretskii <eliz@gnu.org>
474
475 * inc/sys/stat.h (struct stat): Change the types of st_uid and
476 st_gid to unsigned.
477
478 * inc/pwd.h (struct passwd): Change the types of pw_uid and pw_gid
479 to unsigned.
480 (getpwuid): Argument is now unsigned.
481 uid_t is now unsigned.
482
483 2009-02-24 Juanma Barranquero <lekktu@gmail.com>
484
485 * INSTALL: Add comment about TCC; fix typos.
486
487 2009-01-26 Jason Rumney <jasonr@gnu.org>
488
489 * emacsclient.rc, emacs.rc: Swap name and description.
490 Remove Windows versions.
491
492 2009-01-15 Jason Rumney <jasonr@gnu.org>
493
494 * nmake.defs, gmake.defs (UUID): New library for COM/OLE lookups.
495
496 * makefile.w32-in ($(BLD)/addpm.exe): Link with SHELL and OLE libs.
497
498 * addpm.c (main): Try using COM to create start menu shortcuts
499 before resorting to DDE (Bug#202)
500 Remove second command-line argument.
501
502 2009-01-03 Juanma Barranquero <lekktu@gmail.com>
503
504 * configure.bat: Untabify help message.
505
506 2009-01-03 Jason Rumney <jasonr@gnu.org>
507
508 * configure.bat: New option --with-svg.
509
510 * INSTALL: Document experimental SVG support.
511
512 2008-12-25 Jason Rumney <jasonr@gnu.org>
513
514 * config.nt (PTR): Remove.
515
516 2008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
517
518 * config.nt (LISTPROC, PROCATTR): Remove.
519
520 2008-08-09 Eli Zaretskii <eliz@gnu.org>
521
522 * config.nt (LISTPROC, PROCATTR): New macros.
523
524 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
525
526 * config.nt (MULTI_KBOARD): Remove.
527
528 2008-07-23 Jason Rumney <jasonr@gnu.org>
529
530 * configure.bat: New option --profile.
531 * gmake.defs: Set cflags and ldflags for profiling when specified.
532
533 2008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
534
535 * config.nt (C_SWITCH_SITE, LD_SWITCH_SITE): Do not undefine.
536
537 2008-07-13 Dan Nicolaescu <dann@ics.uci.edu>
538
539 * config.nt (HAVE_FACES): Remove, unused.
540
541 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
542 Eli Zaretskii <eliz@gnu.org>
543
544 * nmake.defs (FONT_CFLAGS):
545 * gmake.defs (FONT_CFLAGS): Remove.
546 (EMACS_EXTRA_C_FLAGS): Don't include FONT_CFLAGS.
547 (CFLAGS): Don't include WIN32_LEAN_AND_MEAN, _WIN32_WINNT, -D$(ARCH)
548 and _CRTAPI1.
549 (ARCH_FLAGS): Don't include _X86_.
550
551 * config.nt (_WIN32_WINNT, WIN32_LEAN_AND_MEAN): Define.
552
553 2008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
554
555 * config.nt: Remove reference to UNEXEC_SRC.
556
557 2008-06-23 Juanma Barranquero <lekktu@gmail.com>
558 Eli Zaretskii <eliz@gnu.org>
559
560 * gmake.defs (DEBUG_FLAG, DEBUG_LINK) [!NODEBUG]:
561 Don't hardcode -gstabs+, use DEBUG_INFO.
562
563 * configure.bat (gccdebug): Check for DWARF-2 support in GCC.
564 Default to stabs if the compiler does not support DWARF-2.
565 (genmakefiles): Write new variable DEBUG_INFO to config.settings.
566
567 2008-05-14 Jason Rumney <jasonr@gnu.org>
568
569 * configure.bat: Remove code dealing with --disable-font-backend.
570
571 2008-05-09 Eli Zaretskii <eliz@gnu.org>
572
573 * inc/sys/stat.h (struct stat): Move st_dev after st_ino, for
574 better alignment. Make st_size 64-bit wide. Add new members
575 st_uname and st_gname.
576
577 * inc/grp.h (struct group): Add gr_gid member.
578
579 2008-04-23 Eli Zaretskii <eliz@gnu.org>
580
581 * makefile.w32-in (ALL): Move $(CLIENTRES) from here...
582 (all): ...to here. $(ALL) is a prerequisite of .PHONY, so having
583 a real file there is not a good idea.
584
585 2008-04-23 Jason Rumney <jasonr@gnu.org>
586
587 * makefile.w32-in (CLIENTRES): New variable and build target.
588 (all): Depend on it.
589 ($(TRES)): Use $(TRES) in rule.
590
591 2008-04-21 Jason Rumney <jasonr@gnu.org>
592
593 * configure.bat (success): Print "make" rather than "gmake", as that
594 is what MinGW uses.
595
596 2008-04-11 Eli Zaretskii <eliz@gnu.org>
597
598 * inc/sys/stat.h (__MINGW_NOTHROW): If not defined, define to nothing.
599 Add copyright notice.
600
601 2008-04-10 Jason Rumney <jasonr@gnu.org>
602
603 * emacsclient.rc: New file.
604
605 * INSTALL: Document make targets.
606
607 2008-04-09 Jason Rumney <jasonr@gnu.org>
608
609 * makefile.w32-in (clean-other-dirs-nmake): Don't clean lisp dir.
610 (clean-other-dirs-gmake): Likewise. Clean doc dirs.
611 (top-distclean, distclean, distclean-other-dirs-nmake)
612 (distclean-other-dirs-gmake, maintainer-clean-other-dirs-nmake)
613 (maintainer-clean-other-dirs-gmake, maintainer-clean): New targets.
614
615 2008-04-05 Eli Zaretskii <eliz@gnu.org>
616
617 * inc/sys/stat.h: New file.
618
619 * configure.bat: Add check for usp10.h.
620
621 2008-04-04 Jason Rumney <jasonr@gnu.org>
622
623 * INSTALL: Update W32 API requirements.
624
625 2008-04-03 Jason Rumney <jasonr@gnu.org>
626
627 * gmake.defs, nmake.defs (UNISCRIBE): New variable.
628
629 2008-03-13 Glenn Morris <rgm@gnu.org>
630
631 * emacs.rc: Set version to 23.0.60.
632
633 2008-03-04 Jason Rumney <jasonr@gnu.org>
634
635 * gmake.defs, nmake.defs (FONT_CFLAGS): New optional compiler flag.
636 (EMACS_EXTRA_C_FLAGS): Include it.
637 * configure.bat (usefontbackend): Default to Y.
638 (--enable-font-backend): Replace with --disable-font-backend.
639 (:withfont): Replace with :withoutfont.
640
641 2008-03-03 Kentaro Ohkouchi <nanasess@fsm.ne.jp>
642
643 * icons/emacs.ico: Full alpha for 32x32 full color.
644 Add 32x32 and 16x16 256 color versions.
645
646 2008-03-03 Andrew Zhilin <andrew_zhilin@yahoo.com>
647
648 * icons/emacs22.ico: New file (the old emacs.ico under a new name).
649
650 2008-03-02 Jason Rumney <jasonr@gnu.org>
651
652 * makefile.w32-in ($(TRES)): Depend on icon and manifest.
653
654 2008-03-02 Kentaro Ohkouchi <nanasess@fsm.ne.jp>
655
656 * icons/README: Update.
657
658 * icons/emacs.ico: New icon.
659
660 2008-02-25 Juanma Barranquero <lekktu@gmail.com>
661
662 * addpm.c: Include malloc.h.
663 (add_registry): Cast return value of alloca.
664
665 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
666
667 * config.nt (SHORTNAMES): Remove reference to obsolete variable.
668
669 2008-02-11 Eli Zaretskii <eliz@gnu.org>
670
671 * configure.bat (checkgcc): Move "del junk.o" to here, and make it
672 conditional on existence of junk.o. If %nocygwin% is already set
673 to Y, skip to chkapiN instead of chkapi.
674 (chkapi): Move "rm -f junk.c junk.o" to here.
675 (chkapiN): New label.
676
677 2008-02-11 Jason Rumney <jasonr@gnu.org>
678
679 * makefile.w32-in: Remove unidata-gen related rules.
680
681 2008-02-09 Eli Zaretskii <eliz@gnu.org>
682
683 * configure.bat (dontCopy): Do not rename admin/unidata/Makefile.
684
685 2008-02-11 Jason Rumney <jasonr@gnu.org>
686
687 * addpm.c (add_registry): Add an App Paths registry key.
688 Look for GTK and add it to the DLL search path for Emacs if found.
689
690 2008-02-05 Juanma Barranquero <lekktu@gmail.com>
691
692 * configure.bat: In help, use generic names for the image libraries.
693
694 2008-02-04 Juanma Barranquero <lekktu@gmail.com>
695
696 * .cvsignore: Don't ignore .arch-inventory.
697
698 2008-02-03 Jason Rumney <jasonr@gnu.org>
699
700 * configure.bat: Make gcc the default compiler.
701
702 2008-02-02 Eli Zaretskii <eliz@gnu.org>
703
704 * makefile.w32-in (unidatagen-SH, unidatagen-clean-SH):
705 Ignore return status.
706
707 * configure.bat (dontCopy): Rename admin/unidata/Makefile to keep
708 it out of the way of Windows generated file. Generate
709 admin/unidata/makefile.
710
711 * makefile.w32-in (unidatagen-nmake, unidatagen-clean-nmake)
712 (unidatagen-CMD, unidatagen-clean-CMD, unidatagen-SH)
713 (unidatagen-clean-SH): New targets.
714 (bootstrap-nmake): Invoke unidatagen-nmake.
715 (bootstrap-gmake): Invoke unidatagen-$(SHELLTYPE).
716
717 2008-02-01 Jason Rumney <jasonr@gnu.org>
718
719 * configure.bat (withfont): Set sep1 after modifying usercflags.
720
721 2008-02-01 Jason Rumney <jasonr@gnu.org>
722
723 * configure.bat: Rename --with-font-backend to --enable-font-backend
724 for consistency with other platforms.
725
726 2008-02-01 Jason Rumney <jasonr@gnu.org>
727
728 * configure.bat: Add --with-font-backend option.
729
730 2008-01-20 Jason Rumney <jasonr@gnu.org>
731
732 * gmake.defs (CYGWIN) [USING_SH]: Disable mapping of file
733 permissions to NTFS ACLs.
734
735 2007-11-01 Jan Djärv <jan.h.d@swipnet.se>
736
737 * config.nt: Remove HAVE_X11R5.
738
739 2007-10-22 Jason Rumney <jasonr@gnu.org>
740
741 * config.nt (HAVE_STRINGS_H, HAVE_STDLIB_H): Undefine.
742 (strings.h, stdlib.h): Conditionally include.
743 (w32_abort): Declare here.
744 (abort): Redefine to w32_abort (moved from src/s/ms-w32.h).
745
746 2007-10-20 Jason Rumney <jasonr@gnu.org>
747
748 * makefile.w32-in (info-nmake): Change into correct directories.
749
750 2007-10-20 Eli Zaretskii <eliz@gnu.org>
751
752 * configure.bat (docflags, doldflags): New variables.
753 (genmakefiles): Use them to work around problems with whitespace
754 in arguments of the `if' command.
755
756 2007-10-18 Jason Rumney <jasonr@gnu.org>
757
758 * makefile.w32-in (install): Install COPYING in top-level and bin dirs.
759
760 2007-09-27 Jason Rumney <jasonr@gnu.org>
761
762 * gmake.defs (COMCTL32): New system library.
763
764 * nmake.defs (COMCTL32): New system library.
765
766 2007-09-06 Glenn Morris <rgm@gnu.org>
767
768 * configure.bat:
769 * makefile.w32-in (info-nmake, info-gmake, clean-other-dirs-nmake):
770 Change from ../man to ../doc/emacs and ../doc/misc; and from
771 ../lispref, ../lispintro to ../doc/lispref, ../doc/lispintro.
772
773 2007-08-29 Glenn Morris <rgm@gnu.org>
774
775 * emacs.rc: Increase version to 23.0.50.
776
777 2007-08-14 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
778
779 * makefile.w32-in (bootstrap-nmake): Change directories once more.
780
781 2007-07-25 Glenn Morris <rgm@gnu.org>
782
783 * Relicense all FSF files to GPLv3 or later.
784
785 * COPYING: Switch to GPLv3.
786
787 2007-07-16 Eli Zaretskii <eliz@gnu.org>
788
789 * makefile.w32-in (bootstrap, bootstrap-nmake, bootstrap-gmake):
790 Depend on cmdproxy.
791 (cleanall): Don't delete *~.
792
793 2007-07-15 Jason Rumney <jasonr@gnu.org>
794
795 * inc/sys/socket.h (uint16_t): Define if C99 does not appear to
796 be fully supported.
797
798 2007-07-14 Jason Rumney <jasonr@gnu.org>
799
800 * inc/sys/socket.h: Include winsock2.h and ws2tcpip.h instead
801 of winsock.h.
802
803 2007-07-11 Jason Rumney <jasonr@gnu.org>
804
805 * gmake.defs (OLE32): New library to link.
806
807 * nmake.defs (OLE32): Likewise.
808
809 2007-06-25 Jason Rumney <jasonr@gnu.org>
810
811 * cmdproxy.c (main): Set console codepages to "ANSI".
812
813 2007-06-20 Jason Rumney <jasonr@gnu.org>
814
815 * configure.bat: Complain if image libraries are missing.
816
817 2007-06-15 Jason Rumney <jasonr@gnu.org>
818
819 * emacs.manifest: New file.
820
821 * emacs.rc: Use it.
822
823 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
824
825 * Version 22.1 released.
826
827 2007-05-22 Eli Zaretskii <eliz@gnu.org>
828
829 * INSTALL: Add information about where to find GDB, and warn
830 against --no-debug option to configure.bat.
831
832 2007-05-19 Eli Zaretskii <eliz@gnu.org>
833
834 * INSTALL: Fix URL of EmacsW32 site where building with image
835 support is described.
836
837 2007-04-26 Glenn Morris <rgm@gnu.org>
838
839 * emacs.rc: Increase version to 22.1.50.
840
841 2007-03-31 Eli Zaretskii <eliz@gnu.org>
842
843 * INSTALL: Mention the VCVARS32.BAT batch file for VS.NET users.
844
845 2007-03-09 Richard Stallman <rms@gnu.org>
846
847 * INSTALL: Say explicitly this is not for Cygwin.
848
849 2007-03-03 Eli Zaretskii <eliz@gnu.org>
850
851 * INSTALL: Add URL of another site with detailed build instructions.
852
853 2007-02-16 Glenn Morris <rgm@gnu.org>
854
855 * icons/gnu2a32.ico, icons/gnu2a32t.ico, icons/gnu2b48.ico:
856 * icons/gnu2b48t.ico, icons/gnu3b32.ico, icons/gnu3b32t.ico:
857 * icons/gnu4g48.ico, icons/gnu4g48t.ico, icons/gnu5w32.ico:
858 * icons/gnu5w32t.ico, icons/gnu6w48.ico, icons/gnu6w48t.ico:
859 * icons/gnu7.ico, icons/gnu8.ico, icons/gnu9.ico:
860 Restore all but two of icons deleted in previous change.
861
862 2007-02-13 Chong Yidong <cyd@stupidchicken.com>
863
864 * icons/README: New file.
865
866 * icons/gnu2a32t.ico, icons/gnu3b32t.ico, icons/gnu5w32t.ico:
867 * icons/gnu8.ico, icons/emacs21.ico, icons/gnu2b48.ico:
868 * icons/gnu4g48.ico, icons/gnu6w48.ico, icons/gnu9.ico:
869 * icons/gnu2b48t.ico, icons/gnu4g48t.ico:
870 * icons/gnu6w48t.ico, icons/gnu2a32.ico, icons/gnu3b32.ico:
871 * icons/gnu5w32.ico, icons/gnu7.ico, icons/sink.ico:
872 Unused icons deleted.
873
874 2007-01-31 Juanma Barranquero <lekktu@gmail.com>
875
876 * configure.bat: Update ../site-lisp/subdirs.el when needed.
877
878 2007-01-30 Juanma Barranquero <lekktu@gmail.com>
879
880 * subdirs.el: Add "no-byte-compile: t" local variable.
881
882 2007-01-10 Jason Rumney <jasonr@gnu.org>
883
884 * README: Update URLs and advice about reporting bugs.
885
886 2006-12-29 Jason Rumney <jasonr@gnu.org>
887
888 * nmake.defs (TEMACS_EXTRA_LINK): Remove duplicated flags from
889 DEBUG_LINK.
890 (DEBUG_LINK): Remove -debugtype:both.
891
892 2006-12-27 Eli Zaretskii <eliz@gnu.org>
893
894 * INSTALL: Update table of supported Make ports. Show "make -j"
895 command that is known to work.
896
897 * configure.bat: Update table of supported Make ports.
898
899 2006-12-24 Eli Zaretskii <eliz@gnu.org>
900
901 * makefile.w32-in ($(TRES)): Don't use $<, as nmake supports it
902 only in implicit rules. Use literal "emacs.rc" instead.
903
904 2006-12-23 Eli Zaretskii <eliz@gnu.org>
905
906 * gmake.defs: Export XMFLAGS.
907
908 * makefile.w32-in (all-other-dirs-nmake, recompile-nmake): Don't
909 use $(XMFLAGS) for nmake, as it doesn't support parallelism.
910
911 2006-12-22 Eli Zaretskii <eliz@gnu.org>
912
913 * INSTALL: Explain how to invoke GNU Make for parallel builds.
914
915 * makefile.w32-in (bootstrap-gmake): Pass XMFLAGS="$(XMFLAGS)"
916 command-line argument to sub-Make in src, since src/makefile.w32-in
917 invokes Make recursively during bootstrap.
918 (clean): Delete stamp_BLD.
919 (bootstrap): Make `all' explicitly in a recursive Make.
920
921 * gmake.defs (stamp_BLD): Rename from $(BLD). Create a file
922 stamp_BLD after creating the $(BLD) directory.
923
924 * nmake.defs (stamp_BLD): Rename from $(BLD). Create a file
925 stamp_BLD after creating the $(BLD) directory.
926
927 * makefile.w32-in (addpm, ddeclient, cmdproxy, addsection)
928 (preprep, $(TRES), runemacs)
929 ($(BLD)/addpm.$(O), $(BLD)/ddeclient.$(O), $(BLD)/runemacs.$(O))
930 ($(BLD)/cmdproxy.$(O), (BLD)/addsection.$(O), $(BLD)/preprep.$(O)):
931 Depend on stamp_BLD instead of on $(BLD).
932 (XMFLAGS): New macro.
933 (all-other-dirs-nmake, all-other-dirs-gmake, recompile-nmake)
934 (recompile-gmake, bootstrap-gmake, bootstrap-clean-gmake)
935 (install-other-dirs-gmake, info-gmake, clean-other-dirs-gmake)
936 (cleanall-other-dirs-gmake): Pass $(XMFLAGS) to sub-Make.
937
938 2006-12-20 Eli Zaretskii <eliz@gnu.org>
939
940 * makefile.w32-in ($(TRES)): Depend on $(BLD). Use $< instead of
941 $(ALL_DEPS).
942 ($(BLD)/addpm.$(O), $(BLD)/ddeclient.$(O), $(BLD)/runemacs.$(O)
943 ($(BLD)/cmdproxy.$(O), $(BLD)/addsection.$(O), $(BLD)/preprep.$(O)):
944 New dependency on $(BLD).
945 (all-other-dirs-nmake, all-other-dirs-gmake, bootstrap-nmake)
946 (bootstrap-gmake): Depend on addsection.
947
948 2006-10-29 Juanma Barranquero <lekktu@gmail.com>
949
950 * runemacs.c (WinMain): Process all recognized arguments, not just
951 the first one. Remove unused variable sec_desc.
952
953 2006-09-24 Eli Zaretskii <eliz@gnu.org>
954
955 * config.nt (HAVE_LANGINFO_CODESET): Define.
956
957 * inc/langinfo.h: New file.
958
959 * inc/nl_types.h: New file.
960
961 2006-09-15 Jay Belanger <belanger@truman.edu>
962
963 * COPYING: Replace "Library Public License" by "Lesser Public
964 License" throughout.
965
966 2006-07-27 Jason Rumney <jasonr@gnu.org>
967
968 * INSTALL: Add notes about Cygwin make to impatient section.
969
970 2006-06-02 Eli Zaretskii <eliz@gnu.org>
971
972 * INSTALL: Add Make 3.81 to the list of Make & shell combinations
973 known to work.
974
975 2006-03-12 Jason Rumney <jasonr@gnu.org>
976
977 * addpm.c (add_registry): Don't change the registry unless keys
978 already exist from a previous version.
979
980 * makefile.w32-in (install): Use -q when invoking addpm.
981
982 * addpm.c (main): Accept -q as alternative for /q.
983
984 2006-03-11 Jason Rumney <jasonr@gnu.org>
985
986 * runemacs.c (WinMain): Set screen buffer to 80x25.
987
988 2005-12-24 Eli Zaretskii <eliz@gnu.org>
989
990 * gmake.defs (TEMACS_EXTRA_LINK): Remove redundant -g.
991 (DEBUG_FLAG, DEBUG_LINK): Upgrade to "-gstabs+ -g3".
992
993 2005-12-09 Eli Zaretskii <eliz@gnu.org>
994
995 * INSTALL: Add explanation of how to debug with GDB starting from
996 the Emacs Abort dialog.
997
998 2005-11-26 Chong Yidong <cyd@stupidchicken.com>
999
1000 * emacs.rc: Use new icons.
1001
1002 2005-11-26 Eli Zaretskii <eliz@gnu.org>
1003
1004 * emacs21.ico: Renamed from emacs.ico.
1005 * emacs.ico: New icons from Andrew Zhilin
1006 <andrew_zhilin@yahoo.com>.
1007
1008 2005-09-10 Eli Zaretskii <eliz@gnu.org>
1009
1010 * config.nt (HAVE_GET_CURRENT_DIR_NAME): Undefine.
1011
1012 2005-08-10 Juanma Barranquero <lekktu@gmail.com>
1013
1014 * .cvsignore: Add `obj' and `oo' for in-place installations.
1015
1016 2005-07-30 Eli Zaretskii <eliz@gnu.org>
1017
1018 * config.nt (HAVE_GETOPT_H, HAVE_GETOPT_LONG_ONLY): Undefine.
1019
1020 2005-07-29 Juanma Barranquero <lekktu@gmail.com>
1021
1022 * configure.bat: Don't create lisp/Makefile.unix.
1023
1024 2005-07-28 Juanma Barranquero <lekktu@gmail.com>
1025
1026 * .cvsignore: Add `makefile' and `config.log'.
1027
1028 2005-07-26 Paul Eggert <eggert@cs.ucla.edu>
1029
1030 Merge gnulib getopt implementation into Emacs.
1031
1032 * inc/gettext.h: Remove; no longer needed now that
1033 lib-src/gettext.h exists.
1034
1035 2005-07-16 Eli Zaretskii <eliz@gnu.org>
1036
1037 * configure.bat: Finish config.log with a line that indicates that
1038 the configure step was successful.
1039
1040 2005-07-04 Lute Kamstra <lute@gnu.org>
1041
1042 Update FSF's address in GPL notices.
1043
1044 2005-06-11 Eli Zaretskii <eliz@gnu.org>
1045
1046 * configure.bat: If their fc.exe returns a meaningful exit status,
1047 don't overwrite src/config.h and src/epaths.h with identical
1048 copies.
1049
1050 * INSTALL: Warn about using "cvs up -kb" if one intends to commit
1051 changes. Add a pointer to another site with detailed configure
1052 and build instructions. Suggest to look at config.log when
1053 configure fails. Add MinGW Make 3.80 to the list of successful
1054 combinations.
1055
1056 * gmake.defs (ARCH_CFLAGS): Use $(MCPU_FLAG) instead of a literal
1057 "-mcpu=i686".
1058
1059 * configure.bat: Update copyright years.
1060 Delete config.log before doing anything else.
1061 Write additional diagnostics to config.log in case of failures to
1062 compile test programs, including the failed test program itself.
1063 Add a test for support of -mtune=pentium4 switch to GCC; if it is
1064 supported, set up MCPU_FLAG variable on the various Makefiles to
1065 use that switch during compilations. (This avoids GCC warning
1066 about -mcpu being deprecated.)
1067
1068 2005-06-10 Eli Zaretskii <eliz@gnu.org>
1069
1070 * addsection.c (copy_executable_and_add_section): Pass non-zero
1071 `verbose' arg to COPY_CHUNK only if DEBUG_DUMP is defined in the
1072 environment. Print section names with %.8s.
1073 (COPY_CHUNK): New 4th arg `verbose'; print diagnostic messages
1074 only if non-zero. All callers changed.
1075
1076 2005-06-05 Eli Zaretskii <eliz@gnu.org>
1077
1078 * inc/sys/socket.h: Change arg 4 of sys_setsockopt to
1079 `const void *', for consistency with Posix.
1080
1081 2005-06-04 Eli Zaretskii <eliz@gnu.org>
1082
1083 * inc/pwd.h (getpwnam, getpwuid): Add prototypes.
1084
1085 2005-05-24 Juanma Barranquero <lekktu@gmail.com>
1086
1087 * INSTALL: Add more pointers to ports of Unix tools to Windows,
1088 and to the Emacs Wiki (which contains building instructions for
1089 Windows). Reword image library instructions and remove obsolete
1090 incompatibility information.
1091
1092 2005-04-23 David Hunter <hunterd42@comcast.net> (tiny change)
1093
1094 * config.nt (HAVE_PWD_H): Undef.
1095
1096 2004-06-07 Juanma Barranquero <lektu@terra.es>
1097
1098 * INSTALL: Clarify paragraph about compatibility between image
1099 libraries and builds of Emacs with several compilers.
1100
1101 2004-06-06 Juanma Barranquero <lektu@terra.es>
1102
1103 * makefile.w32-in (bootstrap-nmake): When nmake'ing bootstrap on
1104 the lisp/ directory, set SHELL to $(SHELLTYPE); this avoids
1105 calling non-existent cmdproxy.exe on bootstrapping after a
1106 previous install followed by realclean.
1107
1108 * nmake.defs: Add quote in comment to resync font-locking.
1109
1110 2004-06-04 Juanma Barranquero <lektu@terra.es>
1111
1112 * INSTALL: Reword the section on image support. Add reference to
1113 GnuWin32. Mention problems when mixing binaries from different
1114 compilers.
1115
1116 2004-05-06 Jason Rumney <jasonr@gnu.org>
1117
1118 * configure.bat: Use -mno-cygwin to check for image libraries
1119 when needed.
1120
1121 2004-05-03 Jason Rumney <jasonr@gnu.org>
1122
1123 * makefile.nt, ebuild.bat, install.bat, fast-install.bat:
1124 * makefile.def: Remove.
1125
1126 * nmake.defs (SYS_LDFLAGS): Add -nologo.
1127
1128 * makefile.w32-in (info-gmake, info-nmake): New targets.
1129 (info): Use them.
1130
1131 2004-04-23 Juanma Barranquero <lektu@terra.es>
1132
1133 * nmake.defs:
1134 * gmake.defs:
1135 * makefile.w32-in:
1136 * makefile.def:
1137 * makefile.nt: Add "-*- makefile -*-" mode tag.
1138
1139 2004-04-10 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de>
1140
1141 * runemacs.c (WinMain): Let Emacs environment default to parent.
1142
1143 2004-03-11 Jason Rumney <jasonr@gnu.org>
1144
1145 * paths.h: Remove PATH_LOCK, add PATH_BITMAPS.
1146
1147 2004-03-10 Juanma Barranquero <lektu@terra.es>
1148
1149 * makefile.w32-in (install): Don't try to copy
1150 ../lib-src/fns-*.el, as it isn't used anymore.
1151
1152 2004-01-28 Peter Runestig <peter@runestig.com>
1153
1154 * gmake.defs, nmake.defs: Add linking to ``winspool.lib''.
1155
1156 2003-12-24 Miles Bader <miles@gnu.ai.mit.edu>
1157
1158 * .cvsignore: Add `.arch-inventory'.
1159
1160 2003-11-22 Lars Hansen <larsh@math.ku.dk>
1161
1162 * inc/grp.h: New file.
1163
1164 2003-09-03 Peter Runestig <peter@runestig.com>
1165
1166 * configure.bat: Create ``makefile'' in directories man, lispref
1167 and lispintro.
1168
1169 * makefile.w32-in (force-info, info): New targets.
1170
1171 * envadd.bat: New file.
1172
1173 * multi-install-info.bat: New file.
1174
1175 2003-06-27 Jan Djärv <jan.h.d@swipnet.se>
1176
1177 * config.nt (my_strftime): New define.
1178
1179 2003-02-01 Jason Rumney <jasonr@gnu.org>
1180
1181 * configure.bat: Automatically detect libXpm.
1182 Suppress compiler output when testing for image libraries.
1183 Give names of un-found libraries in messages.
1184
1185 2003-01-31 Juanma Barranquero <lektu@terra.es>
1186
1187 * configure.bat: Automatically detect giflib and tifflib.
1188
1189 2003-01-29 Jason Rumney <jasonr@gnu.org>
1190
1191 * gmake.defs (CURDIR): Disable cygpath kludge.
1192
1193 2003-01-29 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp>
1194
1195 * configure.bat: Avoid endless loop when configuring without image
1196 support.
1197
1198 2003-01-26 Jason Rumney <jasonr@gnu.org>
1199
1200 * configure.bat: Automatically detect jpeglib.
1201
1202 2003-01-25 Jason Rumney <jasonr@gnu.org>
1203
1204 * configure.bat: Automatically detect libpng.
1205
1206 2003-01-21 Jason Rumney <jasonr@gnu.org>
1207
1208 * icons/hand.cur: New file.
1209
1210 2003-01-21 David Ponce <david@dponce.com>
1211
1212 * emacs.rc (2000-10-19T07:24:01Z!eliz@gnu.org): Declare hand cursor resource.
1213
1214 2003-01-15 Andrew Innes <andrewi@gnu.org>
1215
1216 * gmake.defs (CURDIR): Convert to native Windows format (with
1217 forward slashes), to support building with Cygwin builds of make.
1218
1219 2002-11-17 Ben Key <BKey1@tampabay.rr.com>
1220
1221 * nmake.defs:
1222 * gmake.defs: Made changes so that Emacs would link with
1223 WinMM.lib. This change was required for my addition of a Windows
1224 compatible implementation of play-sound-internal.
1225
1226 2002-09-03 Peter Runestig <peter@runestig.com> (tiny change)
1227
1228 * emacs.rc: Version updated to 21.3.50.
1229
1230 2002-06-13 Jason Rumney <jasonr@gnu.org>
1231
1232 * addpm.c (env_vars): Remove EMACSLOCKDIR.
1233
1234 * makefile.w32-in (maybe-bootstrap, doit, maybe-bootstrap-CMD)
1235 (maybe-bootstrap-SH): New targets.
1236 (all): Depend on maybe-bootstrap.
1237
1238 2002-05-03 Jason Rumney <jasonr@gnu.org>
1239
1240 * inc/sys/socket.h (F_SETFL, O_NDELAY): Define.
1241 (sys_getpeername, fcntl): Declare as wrappers.
1242
1243 2002-04-10 Juanma Barranquero <lektu@terra.es>
1244
1245 * makefile.w32-in (bootstrap-nmake, bootstrap-gmake): Make DOC
1246 after compiling .el files.
1247
1248 2002-03-20 Jason Rumney <jasonr@gnu.org>
1249
1250 * inc/sys/socket.h (sys_setsockopt, sys_listen, sys_getsockname)
1251 (sys_accept, sys_recvfrom, sys_sendto): Declare as wrappers.
1252
1253 2002-03-19 Kim F. Storm <storm@cua.dk>
1254
1255 * config.nt (HAVE_SENDTO, HAVE_RECVFROM, HAVE_GETSOCKOPT)
1256 (HAVE_SETSOCKOPT, HAVE_GETSOCKNAME, HAVE_GETPEERNAME): Define.
1257 (HAVE_SYS_UN_H): Undef.
1258 From David Ponce <dponce@voila.fr>.
1259
1260 2002-03-13 Jason Rumney <jasonr@gnu.org>
1261
1262 * config.nt (STRFTIME_NO_POSIX2): Define.
1263
1264 2002-02-18 Jason Rumney <jasonr@gnu.org>
1265
1266 * emacs.rc: Define VS_VERSION_INFO if not already.
1267 Update version info.
1268
1269 2002-01-04 Andrew Innes <andrewi@gnu.org>
1270
1271 * gmake.defs (CFLAGS): Define _WIN32_WINNT as 0x0400, in order to
1272 pick up relevant bits of the Windows API definitions.
1273
1274 * nmake.defs (CFLAGS): Define _WIN32_WINNT as 0x0400, in order to
1275 pick up relevant bits of the Windows API definitions.
1276
1277 2001-12-14 Andrew Innes <andrewi@gnu.org>
1278
1279 * makefile.w32-in (bootstrap): Build addsection program before
1280 bootstrap (required for post-processing temacs.exe).
1281
1282 2001-12-08 Pavel Janík <Pavel@Janik.cz>
1283
1284 * COPYING: New file.
1285
1286 2001-12-03 Andrew Innes <andrewi@gnu.org>
1287
1288 * makefile.w32-in (bootstrap-nmake):
1289 (bootstrap-gmake): Extend bootstrap process to first do
1290 bootstrap-clean in lisp dir and rebuild the DOC file.
1291 (bootstrap): Do a "normal" make after the bootstrap work.
1292
1293 2001-11-20 Jason Rumney <jasonr@gnu.org>
1294
1295 * INSTALL: Update table of versions of make that are suitable
1296 for building Emacs, based on recent feedback.
1297
1298 * TODO, _emacs, emacs.bat.in, debug.bat.in: Remove.
1299
1300 2001-11-19 Andrew Innes <andrewi@gnu.org>
1301
1302 * ftime-nostartup.bat: New file.
1303
1304 * ftime.bat: Don't include libc.lib for profiling - the profiler
1305 corrupts part of memcpy.
1306
1307 2001-11-17 Jason Rumney <jasonr@gnu.org>
1308
1309 * nmake.defs (SYS_LDFLAGS): Add setargv.obj for wildcard
1310 expansion. From Juanma Barranquero <lektu@terra.es>.
1311
1312 2001-10-20 Gerd Moellmann <gerd@gnu.org>
1313
1314 * (Version 21.1 released.)
1315
1316 2001-10-12 Andrew Innes <andrewi@gnu.org>
1317
1318 * inc/pwd.h (uid_t, gid_t): New typedefs.
1319
1320 2001-10-05 Gerd Moellmann <gerd@gnu.org>
1321
1322 * Branch for 21.1.
1323
1324 2001-09-08 Eli Zaretskii <eliz@is.elta.co.il>
1325
1326 * README: Update the address of the mailing list and subscription
1327 instructions. From Geoff Voelker <voelker@cs.ucsd.edu>.
1328
1329 2001-09-06 Eli Zaretskii <eliz@is.elta.co.il>
1330
1331 * INSTALL: Suggest to avoid using WinZip.
1332
1333 * configure.bat: Make sure ../site-lisp exists; create if necessary.
1334
1335 2001-09-05 Eli Zaretskii <eliz@is.elta.co.il>
1336
1337 * INSTALL: Mention that "make install" can be "nmake install".
1338
1339 2001-09-04 Eli Zaretskii <eliz@is.elta.co.il>
1340
1341 * makefile.w32-in ($(INSTALL_DIR)/bin): Depend on $(INSTALL_DIR),
1342 since some versions of `mkdir' don't automatically create parent
1343 directories. From Bruno Grossniklaus <bruno.grossniklaus@ubs.com>.
1344
1345 2001-08-31 Eli Zaretskii <eliz@is.elta.co.il>
1346
1347 * subdirs.el: New file.
1348
1349 * configure.bat: Copy subdirs.el to the site-lisp directory.
1350
1351 * makefile.w32-in (install): Copy subdirs.el to the installation
1352 directory.
1353
1354 2001-06-20 Jason Rumney <jasonr@gnu.org>
1355
1356 * runemacs.c (WinMain): Add quotes around command in case of spaces.
1357
1358 2001-06-01 Andrew Innes <andrewi@gnu.org>
1359
1360 * gmake.defs (sh_output): Don't use $(warning ...) to output
1361 messages, since that is not supported by GNU make 3.77.
1362
1363 2001-05-24 Jason Rumney <jasonr@gnu.org>
1364
1365 * INSTALL: Clarify that building with MSVC requires nmake.
1366
1367 2001-05-17 Andrew Innes <andrewi@gnu.org>
1368
1369 * gmake.defs (NEW_CYGWIN): Output message about spurious error
1370 message that is to be ignored.
1371
1372 2001-05-13 Andrew Innes <andrewi@gnu.org>
1373
1374 * TODO: Remove file, since it is completely out of date.
1375
1376 * README: Add copyright notice.
1377
1378 * INSTALL: Add copyright notice.
1379
1380 2001-04-18 Andrew Innes <andrewi@gnu.org>
1381
1382 * nmake.defs (EMACSLOADPATH): Ensure EMACSLOADPATH is defined in
1383 the environment.
1384
1385 * gmake.defs (SETLOADPATH): Remove definition.
1386 (EMACSLOADPATH): Ensure EMACSLOADPATH is defined in the
1387 environment.
1388
1389 2001-03-26 Eli Zaretskii <eliz@is.elta.co.il>
1390
1391 * configure.bat: Make the checkw32api* labels be distinct in the
1392 first 8 characters.
1393
1394 2001-03-17 Andrew Innes <andrewi@gnu.org>
1395
1396 * cmdproxy.c (get_next_token): Fix indefinite loop bug scanning
1397 escaped quotes.
1398
1399 * gmake.defs (DEBUG_LINK): New macro.
1400 (LINK_FLAGS): Use it.
1401
1402 * nmake.defs (DEBUG_LINK): New macro.
1403 (LINK_FLAGS): Use it.
1404
1405 2001-03-06 Andrew Innes <andrewi@gnu.org>
1406
1407 * INSTALL: Add --ldflags to configure line for building with
1408 recent versions of Cygwin GCC.
1409
1410 2001-03-05 Eli Zaretskii <eliz@is.elta.co.il>
1411
1412 * configure.bat: Use correct options when compiling a test program
1413 with Cygwin. From David Ponce <dponce@voila.fr>.
1414
1415 2001-02-24 Andrew Innes <andrewi@gnu.org>
1416
1417 * _emacs: Remove obsolete file.
1418
1419 * emacs.bat.in: Remove obsolete file.
1420
1421 * debug.bat.in: Remove obsolete file.
1422
1423 * inc/sys/socket.h: Add copyright notice.
1424
1425 * paths.h: Add copyright notice.
1426
1427 * makefile.nt: Update copyright notice.
1428
1429 * makefile.def: Update copyright notice.
1430
1431 * configure.bat: Update copyright notice.
1432
1433 * nmake.defs: Add copyright notice.
1434
1435 * gmake.defs: Add copyright notice.
1436
1437 * makefile.w32-in: Add copyright notice.
1438
1439 2001-02-05 Andrew Innes <andrewi@gnu.org>
1440
1441 * nmake.defs (THISDIR): New definition.
1442
1443 * gmake.defs (THISDIR): New definition.
1444
1445 2001-02-03 Andrew Innes <andrewi@gnu.org>
1446
1447 * configure.bat: Leave a space before >> only when there is a
1448 preceding digit. Add a comment about the importance of this.
1449
1450 * README: Replace outdated information.
1451
1452 * INSTALL (Trouble-shooting): Add note about need to specify extra
1453 compiler flags with recent Cygwin ports of gcc.
1454
1455 2001-02-01 Eli Zaretskii <eliz@is.elta.co.il>
1456
1457 * configure.bat: Use "rm -f" instead of "del /f", as the latter
1458 is not supported by Windows 9X's COMMAND.COM.
1459
1460 2001-01-31 Eli Zaretskii <eliz@is.elta.co.il>
1461
1462 * configure.bat: Make sure redirection is preceded by a blank, to
1463 avoid problems with "1>>foo" when CMD.EXE is the shell, which eats
1464 up the "1" part. From Rob Giardina <rob@criticalpointsoftware.com>.
1465
1466 2001-01-30 Eli Zaretskii <eliz@is.elta.co.il>
1467
1468 * INSTALL: Copy the table of tested combinations of development
1469 tools from configure.bat. Add suggestion to install Bash on
1470 Windows 9X.
1471
1472 * configure.bat: Don't copy lisp/Makefile, it doesn't exist; copy
1473 lisp/Makefile.in instead. Use "rm -f" where more than one file
1474 needs to be deleted, since command.com in Windows 9X doesn't grok
1475 more than one argument.
1476
1477 2001-01-24 Andrew Innes <andrewi@gnu.org>
1478
1479 * makefile.w32-in (cleanall-other-dirs-nmake):
1480 (cleanall-other-dirs-gmake): New targets.
1481 (cleanall): Invoke them.
1482
1483 2001-01-19 Andrew Innes <andrewi@gnu.org>
1484
1485 * addpm.c (env_vars): Add a version-independent site-lisp
1486 directory to EMACSLOADPATH, after the version dependent one.
1487
1488 2001-01-06 Andrew Innes <andrewi@gnu.org>
1489
1490 * README: Update info about compilers.
1491
1492 * makefile.w32-in: Use $(MAKETYPE) instead of $(SHELLTYPE) to
1493 select correct rule for invoking make in another directory. Amend
1494 rules accordingly.
1495 (clean): Delete $(COMPILER_TEMP_FILES) instead of *.pdb.
1496
1497 * nmake.defs (EMACS_ICON_PATH): Delete definition.
1498 (COMPILER_TEMP_FILES): New definition.
1499 (MAKETYPE): New definition.
1500
1501 * gmake.defs (EMACS_ICON_PATH): Delete definition.
1502 (COMPILER_TEMP_FILES): New definition.
1503 (MAKETYPE): New definition.
1504
1505 * makefile.def (EMACS_ICON_PATH): Delete definition.
1506
1507 * configure.bat: Be careful not to add trailing spaces when
1508 outputting to config.settings.
1509
1510 2001-01-02 Andrew Innes <andrewi@gnu.org>
1511
1512 * config.nt (RE_TRANSLATE): Use CHAR_TABLE_TRANSLATE macro rather
1513 than the function.
1514
1515 2000-12-17 Andrew Innes <andrewi@gnu.org>
1516
1517 * makefile.w32-in (install): Copy directories to the correct
1518 places.
1519 (real_install): Remove obsolete target.
1520
1521 2000-12-06 Andrew Innes <andrewi@gnu.org>
1522
1523 * nmake.defs (CURDIR): New define.
1524 (INSTALL_DIR): Use it.
1525
1526 * gmake.defs (NEW_CYGWIN): New define.
1527 (DQUOTE) [NEW_CYGWIN]: Cygnus changed the quoting rules since b20,
1528 so we need to adjust how we escape embedded quotes.
1529 (SETLOADPATH): Set EMACSLOADPATH to an absolute directory,
1530 relative to $(CURDIR).
1531
1532 2000-11-25 Jason Rumney <jasonr@gnu.org>
1533
1534 * config.nt (GC_MARK_STACK, GC_SETJMP_WORKS): Define.
1535
1536 2000-10-17 Andrew Innes <andrewi@gnu.org>
1537
1538 * makefile.w32-in (recompile): New target to recompile lisp
1539 directory.
1540 (recompile-CMD, recompile-SH): New support targets.
1541
1542 2000-09-24 Jason Rumney <jasonr@gnu.org>
1543
1544 * config.nt (NO_RETURN): Define it.
1545
1546 2000-09-17 Andrew Innes <andrewi@gnu.org>
1547
1548 * gmake.defs: Revert to Unix line endings.
1549
1550 * nmake.defs: Revert to Unix line endings.
1551
1552 2000-09-16 Andrew Innes <andrewi@gnu.org>
1553
1554 * gmake.defs (SETLOADPATH): Change definition to work from any
1555 subdirectory.
1556
1557 2000-09-14 Andrew Innes <andrewi@gnu.org>
1558
1559 * makefile.w32-in: Revert to Unix line endings.
1560
1561 2000-09-14 Andrew Innes <andrewi@gnu.org>
1562
1563 * INSTALL: Add note about expected error messages when configure
1564 is run.
1565
1566 * configure.bat: Simplify the generation of makefiles (don't need
1567 to generate various top-level targets that invoke make in other
1568 directories).
1569
1570 * gmake.defs (SHELLTYPE): New define.
1571 (SETLOADPATH): New define.
1572
1573 * nmake.defs (SHELLTYPE): New define.
1574
1575 * makefile.w32-in: Standardize indentation somewhat.
1576 Add bootstrap support.
1577 Pass $(MFLAGS) when invoking make recursively.
1578 Add shell-specific variants of top-level targets that invoke make
1579 recursively in other directories, and add necessary computed
1580 dependencies.
1581
1582 2000-09-03 Andrew Innes <andrewi@gnu.org>
1583
1584 * makefile.w32-in: Change to DOS line endings.
1585
1586 * configure.bat: Change to DOS line endings.
1587
1588 * addsection.c (_ANONYMOUS_UNION) [__GNUC__]: New define.
1589 (_ANONYMOUS_STRUCT) [__GNUC__]: New define.
1590
1591 * preprep.c (_ANONYMOUS_UNION) [__GNUC__]: New define.
1592 (_ANONYMOUS_STRUCT) [__GNUC__]: New define.
1593
1594 * gmake.defs (CFLAGS): No need for -D_ANONYMOUS_UNION
1595 -D_ANONYMOUS_STRUCT on compile line.
1596 (EMACS_EXTRA_C_FLAGS): No need for -DORDINARY_LINK.
1597 (ARCH_CFLAGS): Change optimization flags to -O2.
1598 (FOREACH, FORVAR, FORDO, ENDFOR): New definitions.
1599 (ARGQUOTE, DQUOTE): New defines.
1600
1601 * nmake.defs (CFLAGS): No need for -D_ANONYMOUS_UNION
1602 -D_ANONYMOUS_STRUCT on compile line.
1603 (FOREACH, FORVAR, FORDO, ENDFOR): New definitions.
1604 (ARGQUOTE, DQUOTE): New defines.
1605
1606 2000-08-22 Andrew Innes <andrewi@gnu.org>
1607
1608 * configure.bat: New file.
1609
1610 * gmake.defs: New file.
1611
1612 * nmake.defs: New file.
1613
1614 * makefile.w32-in: New file.
1615
1616 * INSTALL: Rewrite to match new configure process.
1617
1618 * config.nt [WINDOWSNT]: Don't declare getenv.
1619 (EMACS_CONFIG_OPTIONS): Define according to compiler being used.
1620
1621 * addpm.c (main): Accept /q to mean install based on addpm's
1622 location without asking. Remove reference to emacs.bat which is
1623 now obsolete.
1624
1625 * addsection.c (PTR_TO_OFFSET): Cast ptr to unsigned char*.
1626
1627 * paths.h: Use forward slash as directory separator in all path
1628 definitions.
1629 (PATH_DUMPLOADSEARCH): Revert to definition used on Unix.
1630
1631 * preprep.c (PTR_TO_OFFSET): Cast ptr to unsigned char *.
1632
1633 * runemacs.c: Remove WIN32 define.
1634
1635 * inc/sys/file.h (F_OK, X_OK, W_OK, R_OK, D_OK): Define if D_OK is
1636 not defined.
1637
1638 * inc/sys/socket.h (_WINSOCK_H): Undefine if defined.
1639 (fd_set): Define to new name, after including winsock.h, so we can
1640 provide our own implementation.
1641
1642 2000-07-05 Andrew Innes <andrewi@gnu.org>
1643
1644 * ebuild.bat: Add support for specifying make arguments.
1645
1646 * makefile.nt: Add support for `bootstrap' and related targets.
1647
1648 2000-06-11 Jason Rumney <jasonr@gnu.org>
1649
1650 * config.nt: Define POINTER_TYPE, PTR, PROTOTYPES and __P.
1651
1652 2000-02-06 Andrew Innes <andrewi@gnu.org>
1653
1654 * inc/sys/time.h: Add inclusion protection.
1655
1656 * makefile.def (SYS_LDFLAGS): Add -nologo.
1657
1658 1999-11-22 Andrew Innes <andrewi@gnu.org>
1659
1660 * install.bat: Pass on command line arguments to make.
1661
1662 * makefile.nt (fast_install): Bring commands up-to-date, and fix typo.
1663
1664 1999-11-21 Andrew Innes <andrewi@gnu.org>
1665
1666 * makefile.nt (all): Build leim if present.
1667 (install): Install leim if present.
1668 (clean): Clean leim if present.
1669
1670 * addpm.c (env_vars): Include leim in default EMACSLOADPATH
1671 definition.
1672
1673 * emacs.bat.in (EMACSLOADPATH): Include leim.
1674
1675 1999-07-12 Richard Stallman <rms@gnu.org>
1676
1677 * Version 20.4 released.
1678
1679 1999-06-16 Andrew Innes <andrewi@gnu.org>
1680
1681 * emacs.rc: Use an icon with a transparent background, to be in
1682 keeping with other applications.
1683
1684 1999-06-03 Andrew Innes <andrewi@gnu.org>
1685
1686 * preprep.c: Fix typo.
1687
1688 1999-05-02 Andrew Innes <andrewi@gnu.org>
1689
1690 * config.h: Remove obsolete file.
1691
1692 * preprep.c (copy_executable_and_move_sections): Ifdef out a
1693 couple of unused switch cases that aren't defined on all
1694 platforms.
1695
1696 * ftime.bat: Add another variation of the profile command, which
1697 only profiles extended commands.
1698
1699 1999-03-31 Geoff Voelker <voelker@cs.washington.edu>
1700
1701 * cmdproxy.c (main): Fix parens.
1702
1703 1999-03-25 Andrew Innes <andrewi@gnu.org>
1704
1705 * cmdproxy.c (main): Call GetShortPathName to normalize program
1706 names for comparison.
1707
1708 1999-03-05 Geoff Voelker <voelker@cs.washington.edu>
1709
1710 * makefile.def: Compile multiple .c files when possible.
1711 Use BLD instead of assuming i386.
1712 * makefile.nt: Remove common multiple file compilation commands.
1713
1714 1999-03-04 Geoff Voelker <voelker@cs.washington.edu>
1715
1716 * cmdproxy.c (main): Add missing parens.
1717
1718 1999-02-20 Andrew Innes <andrewi@gnu.org>
1719
1720 * preprep.c: New program to allow dumped image to be profiled.
1721
1722 * makefile.nt (preprep): New target.
1723 (ALL): Build it.
1724
1725 * makefile.def (ARCH_CFLAGS): Set struct packing to 8.
1726
1727 * ftime.bat: Invoke preprep to prepare dumped image for profiling.
1728 Change prep options to profile libc functions and skip the startup
1729 code.
1730
1731 1999-02-15 Geoff Voelker <voelker@cs.washington.edu>
1732
1733 * makefile.nt: Create installation directory as first step.
1734
1735 1999-01-31 Andrew Innes <andrewi@gnu.org>
1736
1737 * addsection.c (ROUND_UP_DST_AND_ZERO): Renamed from
1738 ROUND_UP_DST. Zeroes the alignment slop.
1739 (copy_executable_and_add_section): Update the
1740 SizeOfHeaders field properly.
1741
1742 1999-01-27 Andrew Innes <andrewi@gnu.org>
1743
1744 * makefile.nt: Do make version comparison as strings.
1745
1746 1999-01-26 Andrew Innes <andrewi@harlequin.co.uk>
1747
1748 * runemacs.c (WinMain): Pass explicit environment block to
1749 CreateProcess, to work around a bug in Windows 95/98.
1750
1751 1999-01-22 Geoff Voelker <voelker@cs.washington.edu>
1752
1753 * icons: New directory with Davenport's icons.
1754 * icons/sink.ico: Renamed from emacs.ico.
1755
1756 * makefile.nt (install, fast_install): Install Windows icons
1757 into etc/icons.
1758
1759 * emacs.rc (ICON): Use icons/gnu2a32.ico as the default icon.
1760
1761 1999-01-17 Andrew Innes <andrewi@gnu.org>
1762
1763 * makefile.nt (ALL): List top-level targets.
1764 (addsection): New top-level target.
1765 (install): Copy fns-*.el to bin directory.
1766
1767 * addsection.c: New program to add static heap section to
1768 temacs.exe after linking, in support of new unexec method.
1769
1770 1998-12-28 Andrew Innes <andrewi@delysid.gnu.org>
1771
1772 * cmdproxy.c (spawn): Pass directory for child as parameter.
1773 (main): Save startup directory to give to spawn, then change
1774 directory to location of .exe in order not to prevent startup
1775 directory from being deleted.
1776
1777 1998-12-08 Geoff Voelker <voelker@cs.washington.edu>
1778
1779 * makefile.nt: Do string comparision of _NMAKE_VER.
1780
1781 1998-12-02 Geoff Voelker <voelker@cs.washington.edu>
1782
1783 * config.nt (LOCALTIME_CACHE): Define.
1784
1785 1998-11-13 Andrew Innes <andrewi@delysid.gnu.org>
1786
1787 * install.bat: Convert to DOS format.
1788
1789 1998-11-10 Andrew Innes <andrewi@harlequin.co.uk>
1790
1791 * cmdproxy.c (main): Set environment size only when running
1792 command.com.
1793
1794 1998-11-03 Theodore Jump <tjump@tertius.com>
1795
1796 * makefile.def (SYS_LDFLAGS): Use swapfile when running from cd or net.
1797 (DEL_TREE): Use rd instead of rmdir.
1798 (ARCH_CFLAGS): Optimize for P6. Align structures on 8-byte boundaries.
1799 * makefile.nt: Compile multiple source files when possible.
1800
1801 1998-10-05 Geoff Voelker <voelker@cs.washington.edu>
1802
1803 * cmdproxy.c (main): Treat command line options as case-insensitive.
1804
1805 1998-08-19 Richard Stallman <rms@psilocin.ai.mit.edu>
1806
1807 * Version 20.3 released.
1808
1809 1998-07-20 Geoff Voelker <voelker@cs.washington.edu>
1810
1811 * addpm.c (main): Explicitly check result of message box for OK.
1812
1813 1998-06-05 Andrew Innes <andrewi@harlequin.co.uk>
1814
1815 * inc/sys/file.h (D_OK): Define new macro.
1816
1817 1998-06-01 Andrew Innes <andrewi@mescaline.gnu.org>
1818
1819 * makefile.def (CFLAGS): Do not define HAVE_NTGUI.
1820
1821 1998-05-30 Geoff Voelker <voelker@cs.washington.edu>
1822
1823 * emacs.rc (VS_VERSION_INFO): Define.
1824
1825 1998-04-23 Geoff Voelker <voelker@cs.washington.edu>
1826
1827 * makefile.nt (emacs.bat, debug.bat): Create them in the
1828 installation directory.
1829
1830 1998-04-23 Andrew Innes <andrewi@harlequin.co.uk>
1831
1832 * ddeclient.c: New file. (Support program for performing limited
1833 interprocess communication on Windows.)
1834
1835 * makefile.nt: Build ddeclient.
1836
1837 * cmdproxy.c (main): Only set environment size for real shell, and
1838 provide extra directory argument, when running on Windows 95.
1839
1840 1998-04-17 Geoff Voelker <voelker@cs.washington.edu>
1841
1842 * cmdproxy.c (fail): Exit with a negative return value.
1843 (spawn): Return subprocess return code as an argument.
1844 Explicitly copy environment block.
1845 (main): Update to use return value argument with spawn.
1846 Retry if spawn failed when a subshell was not tried.
1847
1848 * config.nt: Include new macros from src/config.in.
1849 (GNU_MALLOC, REL_ALLOC): Define.
1850 (RE_TRANSLATE_TYPE): Use Lisp_Object as type.
1851 (RE_TRANSLATE): Use char_table_translate.
1852
1853 * makefile.def (CP_DIR): Preserve attributes.
1854
1855 * makefile.nt (clean): Delete patch generated files, optimized
1856 build directory.
1857
1858 1997-10-01 Geoff Voelker <voelker@cs.washington.edu>
1859
1860 * addpm.c (env_vars): Fix misplaced % in SHELL entry.
1861
1862 1997-09-19 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
1863
1864 * Version 20.2 released.
1865
1866 1997-09-15 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
1867
1868 * Version 20.1 released.
1869
1870 1997-09-11 Geoff Voelker <voelker@cs.washington.edu>
1871
1872 * debug.bat.in: New file.
1873 * makefile.nt (debug.bat): New target.
1874
1875 1997-09-02 Andrew Innes <andrewi@harlequin.co.uk>
1876
1877 * addpm.c (env_vars): Put site-lisp before lisp in EMACSLOADPATH.
1878 Quote group name. Allow different icons to be specified.
1879
1880 * cmdproxy.c (get_env_size): New function.
1881 (spawn): Explicitly pass in environment when creating subprocess.
1882 (main): Cleanup error messages.
1883 Specify dynamically sized environment block for real shell.
1884 Pass on unhandled switches to real shell.
1885 Quote program name.
1886
1887 * makefile.def (CFLAGS_COMMON): Place pdb file in object build
1888 directory.
1889 (CFLAGS) [!MSVCNT11]: Define _CRTAPI1.
1890
1891 * runemacs.c (WinMain): Allow Emacs process to be started with
1892 high or low priority.
1893
1894 * emacs.bat.in: Remove OS dependent operations.
1895
1896 1997-09-02 Geoff Voelker <voelker@cs.washington.edu>
1897
1898 * addpm.c (env_vars): No longer set INFOPATH.
1899
1900 * cmdproxy.c (get_next_token): Null terminate token returned.
1901
1902 * emacs.bat.in (INFOPATH): No longer set INFOPATH.
1903
1904 1997-08-10 Andrew Innes <andrewi@harlequin.co.uk>
1905
1906 * addpm.c (env_vars): Set SHELL to cmdproxy.
1907 (main): Initialize idDde to 0.
1908 Determine emacs_path from module file name.
1909 Prompt for install.
1910
1911 * makefile.def (MSVCNT11): Conditionally define it.
1912 (BASE_LIBS): Do not use oldnames.lib.
1913 (SYS_LDFLAGS): Use pdb files.
1914 (CFLAGS_COMMON) [!spd]: Define EMACSDEBUG.
1915 (ARCH_CFLAGS) [i386 && spd]: Use space optimizations.
1916 (ARCH_CFLAGS) [alpha && spd]: Use optimizations.
1917
1918 * makefile.nt (ALL): Build cmdproxy.
1919 (cmdproxy): New target.
1920 (install): Install cmdproxy.
1921
1922 * ftime.bat, debug.bat, cmdproxy.c: New files.
1923
1924 1997-07-10 Geoff Voelker <voelker@cs.washington.edu>
1925
1926 * inc/sys/socket.h (shutdown): Define.
1927 (sys_shutdown): Export.
1928
1929 1997-07-08 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
1930
1931 * config.nt (RE_TRANSLATE): Copy definition from config.in.
1932
1933 1997-07-01 Geoff Voelker <voelker@cs.washington.edu>
1934
1935 * config.nt: Update file comments.
1936 Update undefs added/removed in src/config.in.
1937
1938 1997-06-19 Geoff Voelker <voelker@cs.washington.edu>
1939
1940 * makefile.def, emacs.bat: Use windows95 and windowsnt instead
1941 of win95 and winnt, respectively.
1942
1943 1997-01-04 Geoff Voelker <voelker@cs.washington.edu>
1944
1945 * makefile.nt (real_install): Create site-lisp in installation dir.
1946 * addpm.c (env_vars): Add site-lisp to EMACSLOADPATH.
1947 * emacs.bat.in: Add site-lisp to EMACSLOADPATH.
1948
1949 1996-08-11 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
1950
1951 * Version 19.33 released.
1952
1953 1996-08-09 Geoff Voelker <voelker@cs.washington.edu>
1954
1955 * runemacs.c (WinMain): Put a space between the binary and its args.
1956
1957 1996-07-31 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
1958
1959 * Version 19.32 released.
1960
1961 1996-07-16 Andrew Innes <andrewi@harlequin.co.uk>
1962
1963 * makefile.nt (clean): Use OBJDIR macro.
1964
1965 1996-06-03 Kim F. Storm <kfs@olicom.dk>
1966
1967 * runemacs.c (CHOOSE_NEWEST_EXE): New parameter macro.
1968 Not defined by default.
1969 (WinMain): Add conditional testing CHOOSE_NEWEST_EXE.
1970 (WinMain): Convert backslashes to slashes in env var values.
1971
1972 * addpm.c (env_vars): Use slashes, not backslashes.
1973
1974 1996-05-25 Karl Heuer <kwzh@gnu.ai.mit.edu>
1975
1976 * Version 19.31 released.
1977
1978 1996-05-13 Andrew Innes <andrewi@harlequin.co.uk>
1979
1980 * install.bat: Set BUILD_TYPE and INSTALL_DIR before calling make;
1981 undo settings afterwards.
1982
1983 1996-05-08 Andrew Innes <andrewi@harlequin.co.uk>
1984
1985 * addpm.c (env_vars): Set SHELL registry entry to value of COMSPEC
1986 environment variable.
1987
1988 1996-05-03 Andrew Innes <andrewi@harlequin.co.uk>
1989
1990 * install.bat: Allow for optimized build.
1991 * makefile.def [BUILD_TYPE]: Build optimized version in its own dir.
1992 (ARCH_CFLAGS) [BUILD_TYPE == spd]: Build optimized version.
1993
1994 1996-05-03 Andrew Innes <andrewi@harlequin.co.uk>
1995
1996 * addpm.c (REG_ROOT): Don't use a trailing backslash.
1997 (env_vars): Rename field emacs_path to emacs_dir.
1998 (main): Add link to runemacs instead of emacs.
1999
2000 * install.bat: Check if INSTALL_DIR is passed as an argument.
2001
2002 * makefile.def (CONFIG_H) [WIN95]: Use config.nt.
2003
2004 * makefile.nt: Build and install runemacs.exe.
2005
2006 * runemacs.c: New file.
2007
2008 * config.w95: File removed.
2009
2010 * inc/netdb.h, inc/unistd.h, inc/arpa/inet.h, inc/netinet/in.h,
2011 inc/sys/socket.h, inc/sys/time.h: New header files.
2012
2013 * inc/sys/file.h (F_OK, X_OK, W_OK, R_OK): New macros.
2014
2015 1996-03-27 Geoff Voelker <voelker@cs.washington.edu>
2016
2017 * makefile.def (DEL): Defined.
2018 (DEL_TREE) [win95]: Defined.
2019 (SYS_LDFLAGS): Set executable versions to 3.10.
2020
2021 * makefile.nt: Change uses of del to $(DEL).
2022
2023 1996-01-17 Erik Naggum <erik@naggum.no>
2024
2025 * All files: Update FSF's address in comment preamble.
2026
2027 1996-01-03 George V. Reilly <georger@microcrafts.com>
2028
2029 * emacs.ico: Now the proverbial kitchen sink icon.
2030
2031 1995-11-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2032
2033 * Version 19.30 released.
2034
2035 1995-11-22 Geoff Voelker <voelker@cs.washington.edu>
2036
2037 * makefile.def (CP_DIR): Use platform independent switches for xcopy.
2038
2039 * makefile.nt (install, fast_install, real_install, clean):
2040 Don't use switches to del not supported by Win95.
2041
2042 1995-11-07 Kevin Gallo <kgallo@microsoft.com>
2043
2044 * makefile.nt (addpm.exe): Link with $(ADVAPI32).
2045 (install, fast_install): Change same-dir test to create test file in
2046 installation tree and thereby support read-only shares.
2047 (clean): Remove .pdb files.
2048
2049 * makefile.def (NTGUI): New macro.
2050 [NTGUI] (CFLAGS): Define HAVE_NTGUI.
2051
2052 * config.nt, config.w95: Update to latest src/config.in.
2053
2054 * addpm.c (env_vars): New variable.
2055 (add_registry): New procedure.
2056 (main): Use values of configuration environment variables from
2057 the registry if defined, the process environment otherwise.
2058
2059 1995-06-19 Richard Stallman <rms@mole.gnu.ai.mit.edu>
2060
2061 * Version 19.29 released.
2062
2063 * makefile.nt (addpm.exe): Change WinMainCRTStartup to mainCRTStartup.
2064
2065 1995-06-13 Geoff Voelker <voelker@cs.washington.edu>
2066
2067 * makefile.nt: Define .c to .obj suffix rule.
2068 (addpm.obj): Compile directly, use CFLAGS.
2069 (addpm.exe): Link from addpm.obj.
2070
2071 * makefile.def (MSVCNT11): Defined.
2072 (BASE_LIBS) [MSVCNT11]: Use oldnames.lib.
2073 (CFLAGS_COMMON): Defined.
2074 (CFLAGS) [MSVCNT11]: Define _CRTAPI1 to _cdecl.
2075
2076 1995-06-09 Geoff Voelker <voelker@cs.washington.edu>
2077
2078 * emacs.bat.in: Renamed from emacs.bat.
2079 (emacs_dir): Renamed from emacs_path.
2080 Definition removed.
2081
2082 * addpm.c: New file.
2083 * makefile.nt (ALL, addpm, addpm.exe, addpm.obj): Defined.
2084 (all): Depend upon $(BLD) and $(ALL).
2085 (install): Depend upon emacs.bat.
2086 Create program item for Emacs.
2087 (clean): Delete obj.
2088 (emacs.bat): Defined.
2089 * makefile.def (EMACS_ICON_PATH, ADDPM): Defined.
2090
2091 1995-05-27 Geoff Voelker <voelker@cs.washington.edu>
2092
2093 * ebuild.bat, emacs.bat, fast-install.bat, install.bat:
2094 Add carriage returns; necessary for batch files on Win95.
2095
2096 1995-05-25 Geoff Voelker <voelker@cs.washington.edu>
2097
2098 * config.w95: Created.
2099 * config.h: Changed to config.nt.
2100
2101 * makefile.nt (SUBDIRS): Commented out.
2102 (all, install, clean): Expand for-loops.
2103 (BUILD_CMD, INSTALL_CMD, CLEAN_CMD): Defined.
2104
2105 * makefile.def (SYS_LIB_DIR, SYS_INC_DIR): Undefined.
2106 (ARCH): New definition.
2107 (CPU, CONFIG_H, OS_TYPE): Defined.
2108 (INCLUDE, LIB): Checked if valid.
2109 (ntwin32.mak): Included.
2110 (AR, CC, LINK): New definition.
2111 (ADVAPI32, libc, BASE_LIBS): Defined.
2112 (SYS_LDFLAGS): New definition.
2113 Update comments and preprocessor conditionals.
2114
2115 * emacs.bat (SHELL): Conditionally defined.
2116 (HOME): Conditionally defined.
2117 (emacs_path, HOME): Update comments.
2118 Turn off all echo.
2119
2120 1995-05-09 Geoff Voelker <voelker@cs.washington.edu>
2121
2122 * _emacs, config.h, ebuild.bat, emacs.bat, emacs.rc,
2123 fast-install.bat, install.bat, makefile.def, makefile.nt, paths.h,
2124 inc/pwd.h, inc/sys/dir.h, inc/sys/file.h, inc/sys/ioctl.h,
2125 inc/sys/param.h: Removed carriage-returns.
2126
2127 1995-05-06 Geoff Voelker <voelker@cs.washington.edu>
2128
2129 * makefile.def (CVTRES): Defined.
2130
2131 * emacs.ico, emacs.rc: New files by Kevin Gallo.
2132
2133 1995-04-10 Geoff Voelker <voelker@cs.washington.edu>
2134
2135 * src: Remove directory.
2136
2137 * src\config.h, src\paths.h: Moved to parent dir, src removed.
2138
2139 1995-04-09 Geoff Voelker <voelker@cs.washington.edu>
2140
2141 * makefile.def (INSTALL_DIR): Changed to generic directory.
2142
2143 * emacs.bat: Added arguments when emacs.exe invoked.
2144
2145 * ebuild.cmd, emacs.cmd, install.cmd: Changed extension to .bat.
2146
2147 1994-12-13 Geoff Voelker <voelker@cs.washington.edu>
2148
2149 * makefile.def (CC): In configuration section.
2150 (COMPAT_LIB): Defined.
2151
2152 1994-11-01 Geoff Voelker <voelker@cs.washington.edu>
2153
2154 * src/paths.h: New file.
2155
2156 * src/config.h: New file.
2157
2158 * inc/pwd.h: New file.
2159
2160 * inc/sys/dir.h: New file.
2161
2162 * inc/sys/file.h: New file.
2163
2164 * inc/sys/ioctl.h: New file.
2165
2166 * inc/sys/param.h: New file.
2167
2168 * todo: New file.
2169
2170 * README: New file.
2171
2172 * makefile.nt: New file.
2173
2174 * makefile.def: New file.
2175
2176 * install.cmd: New file.
2177
2178 * INSTALL: New file.
2179
2180 * fast-install.cmd: New file.
2181
2182 * emacs.cmd: New file.
2183
2184 * ebuild.cmd: New file.
2185
2186 * _emacs: New file.
2187
2188 ;; Local Variables:
2189 ;; coding: utf-8
2190 ;; add-log-time-zone-rule: t
2191 ;; End:
2192
2193 Copyright (C) 1995-1999, 2001-2011 Free Software Foundation, Inc.
2194
2195 This file is part of GNU Emacs.
2196
2197 GNU Emacs is free software: you can redistribute it and/or modify
2198 it under the terms of the GNU General Public License as published by
2199 the Free Software Foundation, either version 3 of the License, or
2200 (at your option) any later version.
2201
2202 GNU Emacs is distributed in the hope that it will be useful,
2203 but WITHOUT ANY WARRANTY; without even the implied warranty of
2204 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2205 GNU General Public License for more details.
2206
2207 You should have received a copy of the GNU General Public License
2208 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.