Fix attribution for last commit in src/ChangeLog.
[emacs.git] / nt / ChangeLog
blob64b9577e3624d0ec69f241d15b91e429c5b75265
1 2011-10-28  Eli Zaretskii  <eliz@gnu.org>
3         * README.W32: Mention UNICOWS.DLL as prerequisite for running
4         Emacs on Windows 9X.
6 2011-10-25  Eli Zaretskii  <eliz@gnu.org>
8         * makefile.w32-in (dist): Don't put the top-level INSTALL into the
9         distribution.  (Bug#9861)
11 2011-10-25  Christoph Scholtes  <cschol2112@googlemail.com>
13         * INSTALL: Update URL for GTK download page.
15 2011-10-19  Eli Zaretskii  <eliz@gnu.org>
17         * config.nt (HAVE_TZNAME, HAVE_DECL_TZNAME): Define.
18         (Bug#9794) (Bug#641)
20 2011-09-04  Paul Eggert  <eggert@cs.ucla.edu>
22         * config.nt (HAVE_SNPRINTF): New macro.
24 2011-07-28  Paul Eggert  <eggert@cs.ucla.edu>
26         Assume freestanding C89 headers, string.h, stdlib.h.
27         * config.nt (HAVE_LIMITS_H, HAVE_STRING_H, HAVE_STDLIB_H)
28         (STDC_HEADERS): Remove.
29         Iinclude string.h, stdlib.h unconditionally.
31 2011-06-07  Eli Zaretskii  <eliz@gnu.org>
33         * inc/stdint.h (INT32_MAX, INT64_MAX, INTPTR_MAX, PTRDIFF_MAX)
34         [!__GNUC__]: New macros.
36 2011-05-28  Paul Eggert  <eggert@cs.ucla.edu>
38         Use 'inline', not 'INLINE'.
39         * config.nt (INLINE): Remove.
41 2011-05-17  Eli Zaretskii  <eliz@gnu.org>
43         * README.W32: Add information about GnuTLS libraries.
45 2011-05-09  Eli Zaretskii  <eliz@gnu.org>
47         * config.nt [_MSC_VER] (va_copy): Replacement for the MS compiler.
49 2011-05-07  Ben Key  <bkey76@gmail.com>
51         * configure.bat: Renamed the fusercflags variable to escusercflags
52         so that the variable name better matches its purpose, to be
53         identical to usercflags with the exception that all quotes are
54         escaped by the \ character.
56         Renamed the fuserldflags variable to escuserldflags so that the
57         variable name better matches its purpose, to be identical to
58         userldflags with the exception that all quotes are escaped by
59         the \ character.
61         A new ESC_USER_CFLAGS variable is written to config.settings.
62         This variable has the same value as the escusercflags variable.
64         * gmake.defs, nmake.defs: Added the variable ESC_CFLAGS.  This
65         variable is identical to the CFLAGS variable except that it
66         includes the new ESC_USER_CFLAGS variable instead of USER_CFLAGS.
68         These changes, along with some changes to src/makefile.w32-in,
69         are required to extend my earlier fix to add support for
70         --cflags and --ldflags options that include quotes so that it
71         works whether make uses cmd or sh as the shell.
73 2011-05-06  Eli Zaretskii  <eliz@gnu.org>
75         * inc/inttypes.h [!__MINGW32__]: Include stdint.h.  Move the
76         definition of uintmax_t from here...
77         * inc/stdint.h (uintmax_t): ...to here.
78         (intptr_t) [!__GNUC__]: New typedef.
80 2011-05-06  Paul Eggert  <eggert@cs.ucla.edu>
82         * config.nt: Prepare to configure 64-bit integers for older compilers.
83         However, temporarily disable this change unless the temporary
84         symbol WIDE_EMACS_INT is defined.
85         (EMACS_INT, BITS_PER_EMACS_INT, pI): Define these if __int64 and
86         "%I64d" work but long long and "%lld" do not.
88 2011-05-05  Ben Key  <bkey76@gmail.com>
90         * configure.bat: Added support for --cflags and --ldflags
91         options that include quotes as long as command extensions are
92         enabled.  Specifically when -I, -L, and similar flags are used
93         to specify supplementary include and library directories a
94         directory name that includes spaces may now be used if it is
95         enclosed in quotes.
97         * INSTALL: Documented the change to configure.bat.
99 2011-05-04  Juanma Barranquero  <lekktu@gmail.com>
101         * INSTALL: Clarify GnuTLS support.
103 2011-04-30  Eli Zaretskii  <eliz@gnu.org>
105         * config.nt (HAVE_LONG_LONG_INT, HAVE_UNSIGNED_LONG_LONG_INT):
106         Define to 1 for MinGW of MSVC versions >= 1400.
108 2011-04-28  Eli Zaretskii  <eliz@gnu.org>
110         * gmake.defs (ARCH): Fix error message in case of unknown
111         architecture.
113 2011-04-27  Eli Zaretskii  <eliz@gnu.org>
115         * inc/inttypes.h: New file.
117         * config.nt (HAVE_DECL_STRTOULL, HAVE_DECL_STRTOUMAX)
118         (HAVE_STRTOULL, HAVE_STRTOUMAX): New macros.
120 2011-04-27  Daniel Colascione  <dan.colascione@gmail.com>
122         * cmdproxy.c (try_dequote_cmdline): Notice variable substitutions
123         inside quotation marks and bail out.
125 2011-04-26  Daniel Colascione  <dan.colascione@gmail.com>
127         * cmdproxy.c (try_dequote_cmdline): New function.
128         (main): Use it.
130 2011-04-24  Teodor Zlatanov  <tzz@lifelogs.com>
132         * configure.bat: New options --without-gnutls and --lib, new build
133         variable USER_LIBS, automatically detect GnuTLS.  Copies the PNG
134         library setup with trivial modifications.
135         * INSTALL: Add instructions for GnuTLS support.
136         * gmake.defs: Prefix USER_LIBS with -l.
138 2011-04-15  Ben Key  <bkey76@gmail.com>
140         * configure.bat: Modified the code that parses the --cflags and
141         --ldflags options to support parameters that include the =
142         character as long as they are enclosed in quotes.  This
143         functionality depends on command extensions.  Configure.bat now
144         attempts to enable command extensions and displays a warning
145         message if they could not be enabled.  If configure.bat could
146         not enable command extensions the old parsing code is used that
147         does not support parameters that include the = character.
149         * INSTALL: Updated the file to describe the new functionality
150         using text provided by Eli Zaretskii.
152 2011-04-06  Eli Zaretskii  <eliz@gnu.org>
154         * config.nt (NO_INLINE, ATTRIBUTE_FORMAT)
155         (ATTRIBUTE_FORMAT_PRINTF): Define, as followup to 2011-04-06T05:19:39Z!eggert@cs.ucla.edu
156         on the trunk on 2011-04-06.
158 2011-03-27  Glenn Morris  <rgm@gnu.org>
160         * config.nt: Remove RETSIGTYPE, SIGTYPE (identical to void).
162 2011-03-25  Juanma Barranquero  <lekktu@gmail.com>
164         * addpm.c (main): Remove unused variable `retval'.
166         * preprep.c (main): Remove unused variable `ptr'.
168 2011-03-23  Juanma Barranquero  <lekktu@gmail.com>
170         * cmdproxy.c: Include <ctype.h>.
171         (make_absolute): Remove unused variable `i'.
173 2011-03-07  Chong Yidong  <cyd@stupidchicken.com>
175         * Version 23.3 released.
177 2011-02-27  Eli Zaretskii  <eliz@gnu.org>
179         * inc/unistd.h (readlink, symlink): Declare prototypes.
181 2011-02-26  Eli Zaretskii  <eliz@gnu.org>
183         * config.nt (nlink_t): Define.
185 2011-02-21  Christoph Scholtes  <cschol2112@gmail.com>
187         * inc/stdint.h: New file, to support compilation with tool chains
188         that do not have stdint.h (e.g. MSVC).
190 2011-02-21  Eli Zaretskii  <eliz@gnu.org>
192         * inc/sys/stat.h (S_ISUID, S_ISGID, S_ISVTX, S_IRGRP, S_IROTH)
193         (S_IWGRP, S_IWOTH, S_IXGRP, S_IXOTH, S_ISSOCK, S_ISLNK, S_ISCTG)
194         (S_ISDOOR, S_ISMPB, S_ISMPC, S_ISNWK, S_ISPORT, S_ISWHT)
195         (S_TYPEISMQ, S_TYPEISSEM, S_TYPEISSHM, S_TYPEISTMO): Define.
196         (lstat): Define to stat.
198 2011-02-09  Eli Zaretskii  <eliz@gnu.org>
200         * makefile.w32-in (bootstrap-nmake, bootstrap-gmake): Make the
201         "make-docfile" target in lib-src, before bootstrapping the src
202         directory.  Needed since building in src needs to run make-docfile
203         to produce globals.h.
205 2011-02-04  Eli Zaretskii  <eliz@gnu.org>
207         * config.nt (inline) [__GNUC__]: Define (for gnulib).
209 2011-01-31  Eli Zaretskii  <eliz@gnu.org>
211         * config.nt (VERSION): Uncomment definition.
212         (restrict): Define.
214         * inc/stdbool.h: New file.
216 2011-01-29  Eli Zaretskii  <eliz@gnu.org>
218         * makefile.w32-in (all-other-dirs-nmake, all-other-dirs-gmake)
219         (bootstrap-nmake, bootstrap-gmake, bootstrap-clean-nmake)
220         (bootstrap-clean-gmake, clean-other-dirs-nmake)
221         (clean-other-dirs-gmake, cleanall-other-dirs-nmake)
222         (cleanall-other-dirs-gmake, distclean-other-dirs-nmake)
223         (distclean-other-dirs-gmake, maintainer-clean-other-dirs-nmake)
224         (maintainer-clean-other-dirs-gmake): Recurse into ../lib as well.
225         (bootstrap-nmake, bootstrap-gmake): Fix the bootstrap.
227         * configure.bat: Create lib/makefile.
229         * config.nt (HAVE_MKTIME, BROKEN_MKTIME): Remove.
230         (HAVE_ATTRIBUTE_ALIGNED, HAVE_C99_STRTOLD, HAVE_DECL_GETENV)
231         (HAVE_DECL_LOCALTIME_R, HAVE_WCHAR_T, PACKAGE, VERSION, inline)
232         (_GL_UNUSED, _UNUSED_PARAMETER_): Add definitions, for gnulib.
234 2011-01-07  Eli Zaretskii  <eliz@gnu.org>
236         * config.nt (HAVE___BUILTIN_UNWIND_INIT) [GCC >= 2.8]: Define.
238 2011-01-02  Eli Zaretskii  <eliz@gnu.org>
240         * configure.bat (end): Unset environment variables used by this
241         batch file.
243         * INSTALL: Update the information about PNG support libraries.
244         (Bug#7716)
246         * README.W32: Update the information about PNG support libraries.
248 2010-11-23  Eli Zaretskii  <eliz@gnu.org>
250         * config.nt (EXTERNALLY_VISIBLE): Define.
252 2010-10-13  Juanma Barranquero  <lekktu@gmail.com>
254         * INSTALL: Refer to `dynamic-library-alist'.
256 2010-10-06  Juanma Barranquero  <lekktu@gmail.com>
258         * INSTALL: Add note about problematic characters passed to configure.
260 2010-10-01  Eli Zaretskii  <eliz@gnu.org>
262         * makefile.w32-in (frc, TAGS, TAGS-gmake, TAGS-nmake): New targets.
263         emacs-src.tags: New file.
265         * gmake.defs: Add a comment with a single quote to fix
266         fontification.  (Bug#7102)
268 2010-09-29  Eli Zaretskii  <eliz@gnu.org>
270         * configure.bat: Fix the condition for copying paths.h into
271         ../src/epaths.h.
273 2010-09-28  Juanma Barranquero  <lekktu@gmail.com>
275         * addpm.c (entry, add_registry, main):
276         * addsection.c (file_data, open_input_file, open_output_file)
277         (find_section, PTR_TO_OFFSET, copy_executable_and_add_section)
278         (COPY_CHUNK):
279         * cmdproxy.c (vfprintf, fprintf, printf, fail, warn, skip_space)
280         (skip_nonspace, get_next_token, search_dir, make_absolute)
281         (spawn, main):
282         * preprep.c (file_data, open_input_file, open_output_file)
283         (open_inout_file, find_section, PTR_TO_OFFSET, COPY_CHUNK, main):
284         Use const char*.
286         * cmdproxy.c (stdin): Don't define, not used.
287         (main): Don't assign remlen after last use.
289 2010-09-22  Juanma Barranquero  <lekktu@gmail.com>
291         * configure.bat: Err out when the argument of --cflags contains
292         invalid characters (check implemented only for GCC).  (Bug#6820)
294 2010-08-19  Juanma Barranquero  <lekktu@gmail.com>
296         * addpm.c (add_registry): Create App Paths of type REG_EXPAND_SZ.
298 2010-08-12  Jason Rumney  <jasonr@gnu.org>
300         * addpm.c (add_registry): Set path for runemacs.exe to use.
302 2010-08-08  Ã“scar Fuentes  <ofv@wanadoo.es>
304         * cmdproxy.c (main): Use _snprintf instead of wsprintf,
305         which has a 1024 char limit on Windows (bug#6647).
307 2010-08-02  Juanma Barranquero  <lekktu@gmail.com>
309         * config.nt (TIME_WITH_SYS_TIME): Remove #undef, unused (bug#6754).
310         Suggested by Dan Nicolaescu <dann@ics.uci.edu>.
312 2010-07-29  Dan Nicolaescu  <dann@ics.uci.edu>
314         * config.nt: Remove code referring to NO_REMAP, unused.
316 2010-07-25  Christoph Scholtes  <cschol2112@gmail.com>
318         Build binary distros on Windows using emacs-VERSION as root dir name.
320         * makefile.w32-in: Copy README.W32 to installation directory
321         during `make install'.  Remove README.W32 with `distclean' (in
322         case Emacs was installed in place).  Use temporary directory to
323         create distribution zip files in `dist' target.
324         * zipdist.bat: Simplify code using temporary directory.
326 2010-07-25  Juanma Barranquero  <lekktu@gmail.com>
328         * runemacs.c (set_user_model_id): Fix prototype.
330 2010-07-24  Christoph Scholtes  <cschol2112@gmail.com>
332         New make target for Windows platform: make dist (bug#6602)
334         * INSTALL: Document new dist target and add section about
335         creating binary distributions.
336         * README.W32: Relocate from admin/nt/ directory.
337         * configure.bat: New parameter `--distfiles'.
338         * makefile.w32-in: Add version number, new target `dist'.
339         Add new target `install-shortcuts'.
340         * zipdist.bat: New file; create zipped binary distribution,
341         replaces admin/nt/makedist.bat.
343 2010-07-21  Juanma Barranquero  <lekktu@gmail.com>
345         * INSTALL: Add note about backslashes in Windows paths.
346         Fix typos.  Simplify references to Windows versions.
348 2010-07-20  Juanma Barranquero  <lekktu@gmail.com>
350         * addpm.c (add_registry, main):
351         * cmdproxy.c (get_env_size):
352         * ddeclient.c (main):
353         * runemacs.c (set_user_model_id):
354         Convert definitions to standard C.
356 2010-07-20  Juanma Barranquero  <lekktu@gmail.com>
358         * gmake.defs (CHECKING_CFLAGS) [ENABLECHECKS]: Add -fno-crossjumping.
360 2010-07-18  Juanma Barranquero  <lekktu@gmail.com>
362         * configure.bat: New option --enable-checking.
363         * gmake.defs, nmake.defs (CHECKING_CFLAGS): New define.
364         (CFLAGS): Include it.
366 2010-07-12  Dan Nicolaescu  <dann@ics.uci.edu>
368         * config.nt (volatile): Remove definition.
370 2010-07-07  Andreas Schwab  <schwab@linux-m68k.org>
372         * config.nt (HAVE_BCOPY, HAVE_BCMP): Remove undefs.
373         (HAVE_MEMCPY, HAVE_MEMMOVE, HAVE_MEMSET, HAVE_MEMCMP): Add undefs.
375 2010-07-02  Juanma Barranquero  <lekktu@gmail.com>
377         * config.nt (__P): Remove.
379 2010-06-06  Dan Nicolaescu  <dann@ics.uci.edu>
381         * config.nt: Remove code depending on BSTRING.
383 2010-06-03  Glenn Morris  <rgm@gnu.org>
385         * config.nt: Remove NOT_C_CODE tests, it is always true now.
387 2010-05-13  Glenn Morris  <rgm@gnu.org>
389         * config.nt (LD_SWITCH_X_SITE, C_SWITCH_X_SITE): Remove undefs.
391 2010-05-07  Chong Yidong  <cyd@stupidchicken.com>
393         * Version 23.2 released.
395 2010-05-04  Glenn Morris  <rgm@gnu.org>
397         * config.nt (LD_SWITCH_X_SITE_AUX): Remove.
399 2010-04-20  Lewis Perin  <perin@panix.com>  (tiny change)
401         * emacs.manifest: Add trustInfo section to Windows manifest.
403 2010-03-10  Chong Yidong  <cyd@stupidchicken.com>
405         * Branch for 23.2.
407 2010-01-13  Martin Rudalics  <rudalics@gmx.at>
409         * emacsclient.rc: Fix format of "LegalCopyright" value.
411 2009-12-28  Juanma Barranquero  <lekktu@gmail.com>
413         * INSTALL: Remove obsolete notes about line endings, and fix some typos.
415 2009-12-27  Karl Fogel  <kfogel@red-bean.com>
417         * INSTALL: Update for CVS->Bazaar switchover.
419 2009-09-14  Juanma Barranquero  <lekktu@gmail.com>
421         * configure.bat: Add #define PROFILING to config.h.
423 2009-07-03  Jason Rumney  <jasonr@gnu.org>
425         * runemacs.c (set_user_model_id): Use standard types.
427 2009-06-30  Jason Rumney  <jasonr@gnu.org>
429         * runemacs.c (set_user_model_id): New function.
430         (WinMain): Use it.
432 2009-06-21  Chong Yidong  <cyd@stupidchicken.com>
434         * Branch for 23.1.
436 2009-03-21  Eli Zaretskii  <eliz@gnu.org>
438         * inc/sys/stat.h (struct stat): Change the types of st_uid and
439         st_gid to unsigned.
441         * inc/pwd.h (struct passwd): Change the types of pw_uid and pw_gid
442         to unsigned.
443         (getpwuid): Argument is now unsigned.
444         uid_t is now unsigned.
446 2009-02-24  Juanma Barranquero  <lekktu@gmail.com>
448         * INSTALL: Add comment about TCC; fix typos.
450 2009-01-26  Jason Rumney  <jasonr@gnu.org>
452         * emacsclient.rc, emacs.rc: Swap name and description.
453         Remove Windows versions.
455 2009-01-15  Jason Rumney  <jasonr@gnu.org>
457         * nmake.defs, gmake.defs (UUID): New library for COM/OLE lookups.
459         * makefile.w32-in ($(BLD)/addpm.exe): Link with SHELL and OLE libs.
461         * addpm.c (main): Try using COM to create start menu shortcuts
462         before resorting to DDE (Bug#202)
463         Remove second command-line argument.
465 2009-01-03  Juanma Barranquero  <lekktu@gmail.com>
467         * configure.bat: Untabify help message.
469 2009-01-03  Jason Rumney  <jasonr@gnu.org>
471         * configure.bat: New option --with-svg.
473         * INSTALL: Document experimental SVG support.
475 2008-12-25  Jason Rumney  <jasonr@gnu.org>
477         * config.nt (PTR): Remove.
479 2008-12-19  Dan Nicolaescu  <dann@ics.uci.edu>
481         * config.nt (LISTPROC, PROCATTR): Remove.
483 2008-08-09  Eli Zaretskii  <eliz@gnu.org>
485         * config.nt (LISTPROC, PROCATTR): New macros.
487 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
489         * config.nt (MULTI_KBOARD): Remove.
491 2008-07-23  Jason Rumney  <jasonr@gnu.org>
493         * configure.bat: New option --profile.
494         * gmake.defs: Set cflags and ldflags for profiling when specified.
496 2008-07-23  Dan Nicolaescu  <dann@ics.uci.edu>
498         * config.nt (C_SWITCH_SITE, LD_SWITCH_SITE): Do not undefine.
500 2008-07-13  Dan Nicolaescu  <dann@ics.uci.edu>
502         * config.nt (HAVE_FACES): Remove, unused.
504 2008-06-26  Juanma Barranquero  <lekktu@gmail.com>
505             Eli Zaretskii  <eliz@gnu.org>
507         * nmake.defs (FONT_CFLAGS):
508         * gmake.defs (FONT_CFLAGS): Remove.
509         (EMACS_EXTRA_C_FLAGS): Don't include FONT_CFLAGS.
510         (CFLAGS): Don't include WIN32_LEAN_AND_MEAN, _WIN32_WINNT, -D$(ARCH)
511         and _CRTAPI1.
512         (ARCH_FLAGS): Don't include _X86_.
514         * config.nt (_WIN32_WINNT, WIN32_LEAN_AND_MEAN): Define.
516 2008-06-26  Dan Nicolaescu  <dann@ics.uci.edu>
518         * config.nt: Remove reference to UNEXEC_SRC.
520 2008-06-23  Juanma Barranquero  <lekktu@gmail.com>
521             Eli Zaretskii  <eliz@gnu.org>
523         * gmake.defs (DEBUG_FLAG, DEBUG_LINK) [!NODEBUG]:
524         Don't hardcode -gstabs+, use DEBUG_INFO.
526         * configure.bat (gccdebug): Check for DWARF-2 support in GCC.
527         Default to stabs if the compiler does not support DWARF-2.
528         (genmakefiles): Write new variable DEBUG_INFO to config.settings.
530 2008-05-14  Jason Rumney  <jasonr@gnu.org>
532         * configure.bat: Remove code dealing with --disable-font-backend.
534 2008-05-09  Eli Zaretskii  <eliz@gnu.org>
536         * inc/sys/stat.h (struct stat): Move st_dev after st_ino, for
537         better alignment.  Make st_size 64-bit wide.  Add new members
538         st_uname and st_gname.
540         * inc/grp.h (struct group): Add gr_gid member.
542 2008-04-23  Eli Zaretskii  <eliz@gnu.org>
544         * makefile.w32-in (ALL): Move $(CLIENTRES) from here...
545         (all): ...to here.  $(ALL) is a prerequisite of .PHONY, so having
546         a real file there is not a good idea.
548 2008-04-23  Jason Rumney  <jasonr@gnu.org>
550         * makefile.w32-in (CLIENTRES): New variable and build target.
551         (all): Depend on it.
552         ($(TRES)): Use $(TRES) in rule.
554 2008-04-21  Jason Rumney  <jasonr@gnu.org>
556         * configure.bat (success): Print "make" rather than "gmake", as that
557         is what MinGW uses.
559 2008-04-11  Eli Zaretskii  <eliz@gnu.org>
561         * inc/sys/stat.h (__MINGW_NOTHROW): If not defined, define to nothing.
562         Add copyright notice.
564 2008-04-10  Jason Rumney  <jasonr@gnu.org>
566         * emacsclient.rc: New file.
568         * INSTALL: Document make targets.
570 2008-04-09  Jason Rumney  <jasonr@gnu.org>
572         * makefile.w32-in (clean-other-dirs-nmake): Don't clean lisp dir.
573         (clean-other-dirs-gmake): Likewise.  Clean doc dirs.
574         (top-distclean, distclean, distclean-other-dirs-nmake)
575         (distclean-other-dirs-gmake, maintainer-clean-other-dirs-nmake)
576         (maintainer-clean-other-dirs-gmake, maintainer-clean): New targets.
578 2008-04-05  Eli Zaretskii  <eliz@gnu.org>
580         * inc/sys/stat.h: New file.
582         * configure.bat: Add check for usp10.h.
584 2008-04-04  Jason Rumney  <jasonr@gnu.org>
586         * INSTALL: Update W32 API requirements.
588 2008-04-03  Jason Rumney  <jasonr@gnu.org>
590         * gmake.defs, nmake.defs (UNISCRIBE): New variable.
592 2008-03-13  Glenn Morris  <rgm@gnu.org>
594         * emacs.rc: Set version to 23.0.60.
596 2008-03-04  Jason Rumney  <jasonr@gnu.org>
598         * gmake.defs, nmake.defs (FONT_CFLAGS): New optional compiler flag.
599         (EMACS_EXTRA_C_FLAGS): Include it.
600         * configure.bat (usefontbackend): Default to Y.
601         (--enable-font-backend): Replace with --disable-font-backend.
602         (:withfont): Replace with :withoutfont.
604 2008-03-03  Kentaro Ohkouchi  <nanasess@fsm.ne.jp>
606         * icons/emacs.ico: Full alpha for 32x32 full color.
607         Add 32x32 and 16x16 256 color versions.
609 2008-03-03  Andrew Zhilin  <andrew_zhilin@yahoo.com>
611         * icons/emacs22.ico: New file (the old emacs.ico under a new name).
613 2008-03-02  Jason Rumney  <jasonr@gnu.org>
615         * makefile.w32-in ($(TRES)): Depend on icon and manifest.
617 2008-03-02  Kentaro Ohkouchi  <nanasess@fsm.ne.jp>
619         * icons/README: Update.
621         * icons/emacs.ico: New icon.
623 2008-02-25  Juanma Barranquero  <lekktu@gmail.com>
625         * addpm.c: Include malloc.h.
626         (add_registry): Cast return value of alloca.
628 2008-02-24  Dan Nicolaescu  <dann@ics.uci.edu>
630         * config.nt (SHORTNAMES): Remove reference to obsolete variable.
632 2008-02-11  Eli Zaretskii  <eliz@gnu.org>
634         * configure.bat (checkgcc): Move "del junk.o" to here, and make it
635         conditional on existence of junk.o.  If %nocygwin% is already set
636         to Y, skip to chkapiN instead of chkapi.
637         (chkapi): Move "rm -f junk.c junk.o" to here.
638         (chkapiN): New label.
640 2008-02-11  Jason Rumney  <jasonr@gnu.org>
642         * makefile.w32-in: Remove unidata-gen related rules.
644 2008-02-09  Eli Zaretskii  <eliz@gnu.org>
646         * configure.bat (dontCopy): Do not rename admin/unidata/Makefile.
648 2008-02-11  Jason Rumney  <jasonr@gnu.org>
650         * addpm.c (add_registry): Add an App Paths registry key.
651         Look for GTK and add it to the DLL search path for Emacs if found.
653 2008-02-05  Juanma Barranquero  <lekktu@gmail.com>
655         * configure.bat: In help, use generic names for the image libraries.
657 2008-02-04  Juanma Barranquero  <lekktu@gmail.com>
659         * .cvsignore: Don't ignore .arch-inventory.
661 2008-02-03  Jason Rumney  <jasonr@gnu.org>
663         * configure.bat: Make gcc the default compiler.
665 2008-02-02  Eli Zaretskii  <eliz@gnu.org>
667         * makefile.w32-in (unidatagen-SH, unidatagen-clean-SH):
668         Ignore return status.
670         * configure.bat (dontCopy): Rename admin/unidata/Makefile to keep
671         it out of the way of Windows generated file.  Generate
672         admin/unidata/makefile.
674         * makefile.w32-in (unidatagen-nmake, unidatagen-clean-nmake)
675         (unidatagen-CMD, unidatagen-clean-CMD, unidatagen-SH)
676         (unidatagen-clean-SH): New targets.
677         (bootstrap-nmake): Invoke unidatagen-nmake.
678         (bootstrap-gmake): Invoke unidatagen-$(SHELLTYPE).
680 2008-02-01  Jason Rumney  <jasonr@gnu.org>
682         * configure.bat (withfont): Set sep1 after modifying usercflags.
684 2008-02-01  Jason Rumney  <jasonr@gnu.org>
686         * configure.bat: Rename --with-font-backend to --enable-font-backend
687         for consistency with other platforms.
689 2008-02-01  Jason Rumney  <jasonr@gnu.org>
691         * configure.bat: Add --with-font-backend option.
693 2008-01-20  Jason Rumney  <jasonr@gnu.org>
695         * gmake.defs (CYGWIN) [USING_SH]: Disable mapping of file
696         permissions to NTFS ACLs.
698 2007-11-01  Jan Djärv  <jan.h.d@swipnet.se>
700         * config.nt: Remove HAVE_X11R5.
702 2007-10-22  Jason Rumney  <jasonr@gnu.org>
704         * config.nt (HAVE_STRINGS_H, HAVE_STDLIB_H): Undefine.
705         (strings.h, stdlib.h): Conditionally include.
706         (w32_abort): Declare here.
707         (abort): Redefine to w32_abort (moved from src/s/ms-w32.h).
709 2007-10-20  Jason Rumney  <jasonr@gnu.org>
711         * makefile.w32-in (info-nmake): Change into correct directories.
713 2007-10-20  Eli Zaretskii  <eliz@gnu.org>
715         * configure.bat (docflags, doldflags): New variables.
716         (genmakefiles): Use them to work around problems with whitespace
717         in arguments of the `if' command.
719 2007-10-18  Jason Rumney  <jasonr@gnu.org>
721         * makefile.w32-in (install): Install COPYING in top-level and bin dirs.
723 2007-09-27  Jason Rumney  <jasonr@gnu.org>
725         * gmake.defs (COMCTL32): New system library.
727         * nmake.defs (COMCTL32): New system library.
729 2007-09-06  Glenn Morris  <rgm@gnu.org>
731         * configure.bat:
732         * makefile.w32-in (info-nmake, info-gmake, clean-other-dirs-nmake):
733         Change from ../man to ../doc/emacs and ../doc/misc; and from
734         ../lispref, ../lispintro to ../doc/lispref, ../doc/lispintro.
736 2007-08-29  Glenn Morris  <rgm@gnu.org>
738         * emacs.rc: Increase version to 23.0.50.
740 2007-08-14  Dhruva Krishnamurthy  <dhruvakm@gmail.com>  (tiny change)
742         * makefile.w32-in (bootstrap-nmake): Change directories once more.
744 2007-07-25  Glenn Morris  <rgm@gnu.org>
746         * Relicense all FSF files to GPLv3 or later.
748         * COPYING: Switch to GPLv3.
750 2007-07-16  Eli Zaretskii  <eliz@gnu.org>
752         * makefile.w32-in (bootstrap, bootstrap-nmake, bootstrap-gmake):
753         Depend on cmdproxy.
754         (cleanall): Don't delete *~.
756 2007-07-15  Jason Rumney  <jasonr@gnu.org>
758         * inc/sys/socket.h (uint16_t): Define if C99 does not appear to
759         be fully supported.
761 2007-07-14  Jason Rumney  <jasonr@gnu.org>
763         * inc/sys/socket.h: Include winsock2.h and ws2tcpip.h instead
764         of winsock.h.
766 2007-07-11  Jason Rumney  <jasonr@gnu.org>
768         * gmake.defs (OLE32): New library to link.
770         * nmake.defs (OLE32): Likewise.
772 2007-06-25  Jason Rumney  <jasonr@gnu.org>
774         * cmdproxy.c (main): Set console codepages to "ANSI".
776 2007-06-20  Jason Rumney  <jasonr@gnu.org>
778         * configure.bat: Complain if image libraries are missing.
780 2007-06-15  Jason Rumney  <jasonr@gnu.org>
782         * emacs.manifest: New file.
784         * emacs.rc: Use it.
786 2007-06-02  Chong Yidong  <cyd@stupidchicken.com>
788         * Version 22.1 released.
790 2007-05-22  Eli Zaretskii  <eliz@gnu.org>
792         * INSTALL: Add information about where to find GDB, and warn
793         against --no-debug option to configure.bat.
795 2007-05-19  Eli Zaretskii  <eliz@gnu.org>
797         * INSTALL: Fix URL of EmacsW32 site where building with image
798         support is described.
800 2007-04-26  Glenn Morris  <rgm@gnu.org>
802         * emacs.rc: Increase version to 22.1.50.
804 2007-03-31  Eli Zaretskii  <eliz@gnu.org>
806         * INSTALL: Mention the VCVARS32.BAT batch file for VS.NET users.
808 2007-03-09  Richard Stallman  <rms@gnu.org>
810         * INSTALL: Say explicitly this is not for Cygwin.
812 2007-03-03  Eli Zaretskii  <eliz@gnu.org>
814         * INSTALL: Add URL of another site with detailed build instructions.
816 2007-02-16  Glenn Morris  <rgm@gnu.org>
818         * icons/gnu2a32.ico, icons/gnu2a32t.ico, icons/gnu2b48.ico:
819         * icons/gnu2b48t.ico, icons/gnu3b32.ico, icons/gnu3b32t.ico:
820         * icons/gnu4g48.ico, icons/gnu4g48t.ico, icons/gnu5w32.ico:
821         * icons/gnu5w32t.ico, icons/gnu6w48.ico, icons/gnu6w48t.ico:
822         * icons/gnu7.ico, icons/gnu8.ico, icons/gnu9.ico:
823         Restore all but two of icons deleted in previous change.
825 2007-02-13  Chong Yidong  <cyd@stupidchicken.com>
827         * icons/README: New file.
829         * icons/gnu2a32t.ico, icons/gnu3b32t.ico, icons/gnu5w32t.ico:
830         * icons/gnu8.ico, icons/emacs21.ico, icons/gnu2b48.ico:
831         * icons/gnu4g48.ico, icons/gnu6w48.ico, icons/gnu9.ico:
832         * icons/gnu2b48t.ico, icons/gnu4g48t.ico:
833         * icons/gnu6w48t.ico, icons/gnu2a32.ico, icons/gnu3b32.ico:
834         * icons/gnu5w32.ico, icons/gnu7.ico, icons/sink.ico:
835         Unused icons deleted.
837 2007-01-31  Juanma Barranquero  <lekktu@gmail.com>
839         * configure.bat: Update ../site-lisp/subdirs.el when needed.
841 2007-01-30  Juanma Barranquero  <lekktu@gmail.com>
843         * subdirs.el: Add "no-byte-compile: t" local variable.
845 2007-01-10  Jason Rumney  <jasonr@gnu.org>
847         * README: Update URLs and advice about reporting bugs.
849 2006-12-29  Jason Rumney  <jasonr@gnu.org>
851         * nmake.defs (TEMACS_EXTRA_LINK): Remove duplicated flags from
852         DEBUG_LINK.
853         (DEBUG_LINK): Remove -debugtype:both.
855 2006-12-27  Eli Zaretskii  <eliz@gnu.org>
857         * INSTALL: Update table of supported Make ports.  Show "make -j"
858         command that is known to work.
860         * configure.bat: Update table of supported Make ports.
862 2006-12-24  Eli Zaretskii  <eliz@gnu.org>
864         * makefile.w32-in ($(TRES)): Don't use $<, as nmake supports it
865         only in implicit rules.  Use literal "emacs.rc" instead.
867 2006-12-23  Eli Zaretskii  <eliz@gnu.org>
869         * gmake.defs: Export XMFLAGS.
871         * makefile.w32-in (all-other-dirs-nmake, recompile-nmake): Don't
872         use $(XMFLAGS) for nmake, as it doesn't support parallelism.
874 2006-12-22  Eli Zaretskii  <eliz@gnu.org>
876         * INSTALL: Explain how to invoke GNU Make for parallel builds.
878         * makefile.w32-in (bootstrap-gmake): Pass XMFLAGS="$(XMFLAGS)"
879         command-line argument to sub-Make in src, since src/makefile.w32-in
880         invokes Make recursively during bootstrap.
881         (clean): Delete stamp_BLD.
882         (bootstrap): Make `all' explicitly in a recursive Make.
884         * gmake.defs (stamp_BLD): Rename from $(BLD).  Create a file
885         stamp_BLD after creating the $(BLD) directory.
887         * nmake.defs (stamp_BLD): Rename from $(BLD).  Create a file
888         stamp_BLD after creating the $(BLD) directory.
890         * makefile.w32-in (addpm, ddeclient, cmdproxy, addsection)
891         (preprep, $(TRES), runemacs)
892         ($(BLD)/addpm.$(O), $(BLD)/ddeclient.$(O), $(BLD)/runemacs.$(O))
893         ($(BLD)/cmdproxy.$(O), (BLD)/addsection.$(O), $(BLD)/preprep.$(O)):
894         Depend on stamp_BLD instead of on $(BLD).
895         (XMFLAGS): New macro.
896         (all-other-dirs-nmake, all-other-dirs-gmake, recompile-nmake)
897         (recompile-gmake, bootstrap-gmake, bootstrap-clean-gmake)
898         (install-other-dirs-gmake, info-gmake, clean-other-dirs-gmake)
899         (cleanall-other-dirs-gmake): Pass $(XMFLAGS) to sub-Make.
901 2006-12-20  Eli Zaretskii  <eliz@gnu.org>
903         * makefile.w32-in ($(TRES)): Depend on $(BLD).  Use $< instead of
904         $(ALL_DEPS).
905         ($(BLD)/addpm.$(O), $(BLD)/ddeclient.$(O), $(BLD)/runemacs.$(O)
906         ($(BLD)/cmdproxy.$(O), $(BLD)/addsection.$(O), $(BLD)/preprep.$(O)):
907         New dependency on $(BLD).
908         (all-other-dirs-nmake, all-other-dirs-gmake, bootstrap-nmake)
909         (bootstrap-gmake): Depend on addsection.
911 2006-10-29  Juanma Barranquero  <lekktu@gmail.com>
913         * runemacs.c (WinMain): Process all recognized arguments, not just
914         the first one.  Remove unused variable sec_desc.
916 2006-09-24  Eli Zaretskii  <eliz@gnu.org>
918         * config.nt (HAVE_LANGINFO_CODESET): Define.
920         * inc/langinfo.h: New file.
922         * inc/nl_types.h: New file.
924 2006-09-15  Jay Belanger  <belanger@truman.edu>
926         * COPYING: Replace "Library Public License" by "Lesser Public
927         License" throughout.
929 2006-07-27  Jason Rumney  <jasonr@gnu.org>
931         * INSTALL: Add notes about Cygwin make to impatient section.
933 2006-06-02  Eli Zaretskii  <eliz@gnu.org>
935         * INSTALL: Add Make 3.81 to the list of Make & shell combinations
936         known to work.
938 2006-03-12  Jason Rumney  <jasonr@gnu.org>
940         * addpm.c (add_registry): Don't change the registry unless keys
941         already exist from a previous version.
943         * makefile.w32-in (install): Use -q when invoking addpm.
945         * addpm.c (main): Accept -q as alternative for /q.
947 2006-03-11  Jason Rumney  <jasonr@gnu.org>
949         * runemacs.c (WinMain): Set screen buffer to 80x25.
951 2005-12-24  Eli Zaretskii  <eliz@gnu.org>
953         * gmake.defs (TEMACS_EXTRA_LINK): Remove redundant -g.
954         (DEBUG_FLAG, DEBUG_LINK): Upgrade to "-gstabs+ -g3".
956 2005-12-09  Eli Zaretskii  <eliz@gnu.org>
958         * INSTALL: Add explanation of how to debug with GDB starting from
959         the Emacs Abort dialog.
961 2005-11-26  Chong Yidong  <cyd@stupidchicken.com>
963         * emacs.rc: Use new icons.
965 2005-11-26  Eli Zaretskii  <eliz@gnu.org>
967         * emacs21.ico: Renamed from emacs.ico.
968         * emacs.ico: New icons from Andrew Zhilin
969         <andrew_zhilin@yahoo.com>.
971 2005-09-10  Eli Zaretskii  <eliz@gnu.org>
973         * config.nt (HAVE_GET_CURRENT_DIR_NAME): Undefine.
975 2005-08-10  Juanma Barranquero  <lekktu@gmail.com>
977         * .cvsignore: Add `obj' and `oo' for in-place installations.
979 2005-07-30  Eli Zaretskii  <eliz@gnu.org>
981         * config.nt (HAVE_GETOPT_H, HAVE_GETOPT_LONG_ONLY): Undefine.
983 2005-07-29  Juanma Barranquero  <lekktu@gmail.com>
985         * configure.bat: Don't create lisp/Makefile.unix.
987 2005-07-28  Juanma Barranquero  <lekktu@gmail.com>
989         * .cvsignore: Add `makefile' and `config.log'.
991 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
993         Merge gnulib getopt implementation into Emacs.
995         * inc/gettext.h: Remove; no longer needed now that
996         lib-src/gettext.h exists.
998 2005-07-16  Eli Zaretskii  <eliz@gnu.org>
1000         * configure.bat: Finish config.log with a line that indicates that
1001         the configure step was successful.
1003 2005-07-04  Lute Kamstra  <lute@gnu.org>
1005         Update FSF's address in GPL notices.
1007 2005-06-11  Eli Zaretskii  <eliz@gnu.org>
1009         * configure.bat: If their fc.exe returns a meaningful exit status,
1010         don't overwrite src/config.h and src/epaths.h with identical
1011         copies.
1013         * INSTALL: Warn about using "cvs up -kb" if one intends to commit
1014         changes.  Add a pointer to another site with detailed configure
1015         and build instructions.  Suggest to look at config.log when
1016         configure fails.  Add MinGW Make 3.80 to the list of successful
1017         combinations.
1019         * gmake.defs (ARCH_CFLAGS): Use $(MCPU_FLAG) instead of a literal
1020         "-mcpu=i686".
1022         * configure.bat: Update copyright years.
1023         Delete config.log before doing anything else.
1024         Write additional diagnostics to config.log in case of failures to
1025         compile test programs, including the failed test program itself.
1026         Add a test for support of -mtune=pentium4 switch to GCC; if it is
1027         supported, set up MCPU_FLAG variable on the various Makefiles to
1028         use that switch during compilations.  (This avoids GCC warning
1029         about -mcpu being deprecated.)
1031 2005-06-10  Eli Zaretskii  <eliz@gnu.org>
1033         * addsection.c (copy_executable_and_add_section): Pass non-zero
1034         `verbose' arg to COPY_CHUNK only if DEBUG_DUMP is defined in the
1035         environment.  Print section names with %.8s.
1036         (COPY_CHUNK): New 4th arg `verbose'; print diagnostic messages
1037         only if non-zero.  All callers changed.
1039 2005-06-05  Eli Zaretskii  <eliz@gnu.org>
1041         * inc/sys/socket.h: Change arg 4 of sys_setsockopt to
1042         `const void *', for consistency with Posix.
1044 2005-06-04  Eli Zaretskii  <eliz@gnu.org>
1046         * inc/pwd.h (getpwnam, getpwuid): Add prototypes.
1048 2005-05-24  Juanma Barranquero  <lekktu@gmail.com>
1050         * INSTALL: Add more pointers to ports of Unix tools to Windows,
1051         and to the Emacs Wiki (which contains building instructions for
1052         Windows).  Reword image library instructions and remove obsolete
1053         incompatibility information.
1055 2005-04-23  David Hunter  <hunterd42@comcast.net>  (tiny change)
1057         * config.nt (HAVE_PWD_H): Undef.
1059 2004-06-07  Juanma Barranquero  <lektu@terra.es>
1061         * INSTALL: Clarify paragraph about compatibility between image
1062         libraries and builds of Emacs with several compilers.
1064 2004-06-06  Juanma Barranquero  <lektu@terra.es>
1066         * makefile.w32-in (bootstrap-nmake): When nmake'ing bootstrap on
1067         the lisp/ directory, set SHELL to $(SHELLTYPE); this avoids
1068         calling non-existent cmdproxy.exe on bootstrapping after a
1069         previous install followed by realclean.
1071         * nmake.defs: Add quote in comment to resync font-locking.
1073 2004-06-04  Juanma Barranquero  <lektu@terra.es>
1075         * INSTALL: Reword the section on image support.  Add reference to
1076         GnuWin32.  Mention problems when mixing binaries from different
1077         compilers.
1079 2004-05-06  Jason Rumney  <jasonr@gnu.org>
1081         * configure.bat: Use -mno-cygwin to check for image libraries
1082         when needed.
1084 2004-05-03  Jason Rumney  <jasonr@gnu.org>
1086         * makefile.nt, ebuild.bat, install.bat, fast-install.bat:
1087         * makefile.def: Remove.
1089         * nmake.defs (SYS_LDFLAGS): Add -nologo.
1091         * makefile.w32-in (info-gmake, info-nmake): New targets.
1092         (info): Use them.
1094 2004-04-23  Juanma Barranquero  <lektu@terra.es>
1096         * nmake.defs:
1097         * gmake.defs:
1098         * makefile.w32-in:
1099         * makefile.def:
1100         * makefile.nt: Add "-*- makefile -*-" mode tag.
1102 2004-04-10  Benjamin Riefenstahl  <Benjamin.Riefenstahl@epost.de>
1104         * runemacs.c (WinMain): Let Emacs environment default to parent.
1106 2004-03-11  Jason Rumney  <jasonr@gnu.org>
1108         * paths.h: Remove PATH_LOCK, add PATH_BITMAPS.
1110 2004-03-10  Juanma Barranquero  <lektu@terra.es>
1112         * makefile.w32-in (install): Don't try to copy
1113         ../lib-src/fns-*.el, as it isn't used anymore.
1115 2004-01-28  Peter Runestig  <peter@runestig.com>
1117         * gmake.defs, nmake.defs: Add linking to ``winspool.lib''.
1119 2003-12-24  Miles Bader  <miles@gnu.ai.mit.edu>
1121         * .cvsignore: Add `.arch-inventory'.
1123 2003-11-22  Lars Hansen  <larsh@math.ku.dk>
1125         * inc/grp.h: New file.
1127 2003-09-03  Peter Runestig  <peter@runestig.com>
1129         * configure.bat: Create ``makefile'' in directories man, lispref
1130         and lispintro.
1132         * makefile.w32-in (force-info, info): New targets.
1134         * envadd.bat: New file.
1136         * multi-install-info.bat: New file.
1138 2003-06-27  Jan Djärv  <jan.h.d@swipnet.se>
1140         * config.nt (my_strftime): New define.
1142 2003-02-01  Jason Rumney  <jasonr@gnu.org>
1144         * configure.bat: Automatically detect libXpm.
1145         Suppress compiler output when testing for image libraries.
1146         Give names of un-found libraries in messages.
1148 2003-01-31  Juanma Barranquero  <lektu@terra.es>
1150         * configure.bat: Automatically detect giflib and tifflib.
1152 2003-01-29  Jason Rumney  <jasonr@gnu.org>
1154         * gmake.defs (CURDIR): Disable cygpath kludge.
1156 2003-01-29  KOBAYASHI Yasuhiro  <kobayays@otsukakj.co.jp>
1158         * configure.bat: Avoid endless loop when configuring without image
1159         support.
1161 2003-01-26  Jason Rumney  <jasonr@gnu.org>
1163         * configure.bat: Automatically detect jpeglib.
1165 2003-01-25  Jason Rumney  <jasonr@gnu.org>
1167         * configure.bat: Automatically detect libpng.
1169 2003-01-21  Jason Rumney  <jasonr@gnu.org>
1171         * icons/hand.cur: New file.
1173 2003-01-21  David Ponce  <david@dponce.com>
1175         * emacs.rc (2000-10-19T07:24:01Z!eliz@gnu.org): Declare hand cursor resource.
1177 2003-01-15  Andrew Innes  <andrewi@gnu.org>
1179         * gmake.defs (CURDIR): Convert to native Windows format (with
1180         forward slashes), to support building with Cygwin builds of make.
1182 2002-11-17  Ben Key  <BKey1@tampabay.rr.com>
1184         * nmake.defs:
1185         * gmake.defs: Made changes so that Emacs would link with
1186         WinMM.lib.  This change was required for my addition of a Windows
1187         compatible implementation of play-sound-internal.
1189 2002-09-03  Peter Runestig  <peter@runestig.com>  (tiny change)
1191         * emacs.rc: Version updated to 21.3.50.
1193 2002-06-13  Jason Rumney  <jasonr@gnu.org>
1195         * addpm.c (env_vars): Remove EMACSLOCKDIR.
1197         * makefile.w32-in (maybe-bootstrap, doit, maybe-bootstrap-CMD)
1198         (maybe-bootstrap-SH): New targets.
1199         (all): Depend on maybe-bootstrap.
1201 2002-05-03  Jason Rumney  <jasonr@gnu.org>
1203         * inc/sys/socket.h (F_SETFL, O_NDELAY): Define.
1204         (sys_getpeername, fcntl): Declare as wrappers.
1206 2002-04-10  Juanma Barranquero  <lektu@terra.es>
1208         * makefile.w32-in (bootstrap-nmake, bootstrap-gmake): Make DOC
1209         after compiling .el files.
1211 2002-03-20  Jason Rumney  <jasonr@gnu.org>
1213         * inc/sys/socket.h (sys_setsockopt, sys_listen, sys_getsockname)
1214         (sys_accept, sys_recvfrom, sys_sendto): Declare as wrappers.
1216 2002-03-19  Kim F. Storm  <storm@cua.dk>
1218         * config.nt (HAVE_SENDTO, HAVE_RECVFROM, HAVE_GETSOCKOPT)
1219         (HAVE_SETSOCKOPT, HAVE_GETSOCKNAME, HAVE_GETPEERNAME): Define.
1220         (HAVE_SYS_UN_H): Undef.
1221         From David Ponce <dponce@voila.fr>.
1223 2002-03-13  Jason Rumney  <jasonr@gnu.org>
1225         * config.nt (STRFTIME_NO_POSIX2): Define.
1227 2002-02-18  Jason Rumney  <jasonr@gnu.org>
1229         * emacs.rc: Define VS_VERSION_INFO if not already.
1230         Update version info.
1232 2002-01-04  Andrew Innes  <andrewi@gnu.org>
1234         * gmake.defs (CFLAGS): Define _WIN32_WINNT as 0x0400, in order to
1235         pick up relevant bits of the Windows API definitions.
1237         * nmake.defs (CFLAGS): Define _WIN32_WINNT as 0x0400, in order to
1238         pick up relevant bits of the Windows API definitions.
1240 2001-12-14  Andrew Innes  <andrewi@gnu.org>
1242         * makefile.w32-in (bootstrap): Build addsection program before
1243         bootstrap (required for post-processing temacs.exe).
1245 2001-12-08  Pavel Janík  <Pavel@Janik.cz>
1247         * COPYING: New file.
1249 2001-12-03  Andrew Innes  <andrewi@gnu.org>
1251         * makefile.w32-in (bootstrap-nmake):
1252         (bootstrap-gmake): Extend bootstrap process to first do
1253         bootstrap-clean in lisp dir and rebuild the DOC file.
1254         (bootstrap): Do a "normal" make after the bootstrap work.
1256 2001-11-20  Jason Rumney  <jasonr@gnu.org>
1258         * INSTALL: Update table of versions of make that are suitable
1259         for building Emacs, based on recent feedback.
1261         * TODO, _emacs, emacs.bat.in, debug.bat.in: Remove.
1263 2001-11-19  Andrew Innes  <andrewi@gnu.org>
1265         * ftime-nostartup.bat: New file.
1267         * ftime.bat: Don't include libc.lib for profiling - the profiler
1268         corrupts part of memcpy.
1270 2001-11-17  Jason Rumney  <jasonr@gnu.org>
1272         * nmake.defs (SYS_LDFLAGS): Add setargv.obj for wildcard
1273         expansion.  From Juanma Barranquero <lektu@terra.es>.
1275 2001-10-20  Gerd Moellmann  <gerd@gnu.org>
1277         * (Version 21.1 released.)
1279 2001-10-12  Andrew Innes  <andrewi@gnu.org>
1281         * inc/pwd.h (uid_t, gid_t): New typedefs.
1283 2001-10-05  Gerd Moellmann  <gerd@gnu.org>
1285         * Branch for 21.1.
1287 2001-09-08  Eli Zaretskii  <eliz@is.elta.co.il>
1289         * README: Update the address of the mailing list and subscription
1290         instructions.  From Geoff Voelker <voelker@cs.ucsd.edu>.
1292 2001-09-06  Eli Zaretskii  <eliz@is.elta.co.il>
1294         * INSTALL: Suggest to avoid using WinZip.
1296         * configure.bat: Make sure ../site-lisp exists; create if necessary.
1298 2001-09-05  Eli Zaretskii  <eliz@is.elta.co.il>
1300         * INSTALL: Mention that "make install" can be "nmake install".
1302 2001-09-04  Eli Zaretskii  <eliz@is.elta.co.il>
1304         * makefile.w32-in ($(INSTALL_DIR)/bin): Depend on $(INSTALL_DIR),
1305         since some versions of `mkdir' don't automatically create parent
1306         directories.  From Bruno Grossniklaus <bruno.grossniklaus@ubs.com>.
1308 2001-08-31  Eli Zaretskii  <eliz@is.elta.co.il>
1310         * subdirs.el: New file.
1312         * configure.bat: Copy subdirs.el to the site-lisp directory.
1314         * makefile.w32-in (install): Copy subdirs.el to the installation
1315         directory.
1317 2001-06-20  Jason Rumney  <jasonr@gnu.org>
1319         * runemacs.c (WinMain): Add quotes around command in case of spaces.
1321 2001-06-01  Andrew Innes  <andrewi@gnu.org>
1323         * gmake.defs (sh_output): Don't use $(warning ...) to output
1324         messages, since that is not supported by GNU make 3.77.
1326 2001-05-24  Jason Rumney  <jasonr@gnu.org>
1328         * INSTALL: Clarify that building with MSVC requires nmake.
1330 2001-05-17  Andrew Innes  <andrewi@gnu.org>
1332         * gmake.defs (NEW_CYGWIN): Output message about spurious error
1333         message that is to be ignored.
1335 2001-05-13  Andrew Innes  <andrewi@gnu.org>
1337         * TODO: Remove file, since it is completely out of date.
1339         * README: Add copyright notice.
1341         * INSTALL: Add copyright notice.
1343 2001-04-18  Andrew Innes  <andrewi@gnu.org>
1345         * nmake.defs (EMACSLOADPATH): Ensure EMACSLOADPATH is defined in
1346         the environment.
1348         * gmake.defs (SETLOADPATH): Remove definition.
1349         (EMACSLOADPATH): Ensure EMACSLOADPATH is defined in the
1350         environment.
1352 2001-03-26  Eli Zaretskii  <eliz@is.elta.co.il>
1354         * configure.bat: Make the checkw32api* labels be distinct in the
1355         first 8 characters.
1357 2001-03-17  Andrew Innes  <andrewi@gnu.org>
1359         * cmdproxy.c (get_next_token): Fix indefinite loop bug scanning
1360         escaped quotes.
1362         * gmake.defs (DEBUG_LINK): New macro.
1363         (LINK_FLAGS): Use it.
1365         * nmake.defs (DEBUG_LINK): New macro.
1366         (LINK_FLAGS): Use it.
1368 2001-03-06  Andrew Innes  <andrewi@gnu.org>
1370         * INSTALL: Add --ldflags to configure line for building with
1371         recent versions of Cygwin GCC.
1373 2001-03-05  Eli Zaretskii  <eliz@is.elta.co.il>
1375         * configure.bat: Use correct options when compiling a test program
1376         with Cygwin.  From David Ponce <dponce@voila.fr>.
1378 2001-02-24  Andrew Innes  <andrewi@gnu.org>
1380         * _emacs: Remove obsolete file.
1382         * emacs.bat.in: Remove obsolete file.
1384         * debug.bat.in: Remove obsolete file.
1386         * inc/sys/socket.h: Add copyright notice.
1388         * paths.h: Add copyright notice.
1390         * makefile.nt: Update copyright notice.
1392         * makefile.def: Update copyright notice.
1394         * configure.bat: Update copyright notice.
1396         * nmake.defs: Add copyright notice.
1398         * gmake.defs: Add copyright notice.
1400         * makefile.w32-in: Add copyright notice.
1402 2001-02-05  Andrew Innes  <andrewi@gnu.org>
1404         * nmake.defs (THISDIR): New definition.
1406         * gmake.defs (THISDIR): New definition.
1408 2001-02-03  Andrew Innes  <andrewi@gnu.org>
1410         * configure.bat: Leave a space before >> only when there is a
1411         preceding digit.  Add a comment about the importance of this.
1413         * README: Replace outdated information.
1415         * INSTALL (Trouble-shooting): Add note about need to specify extra
1416         compiler flags with recent Cygwin ports of gcc.
1418 2001-02-01  Eli Zaretskii  <eliz@is.elta.co.il>
1420         * configure.bat: Use "rm -f" instead of "del /f", as the latter
1421         is not supported by Windows 9X's COMMAND.COM.
1423 2001-01-31  Eli Zaretskii  <eliz@is.elta.co.il>
1425         * configure.bat: Make sure redirection is preceded by a blank, to
1426         avoid problems with "1>>foo" when CMD.EXE is the shell, which eats
1427         up the "1" part.  From Rob Giardina <rob@criticalpointsoftware.com>.
1429 2001-01-30  Eli Zaretskii  <eliz@is.elta.co.il>
1431         * INSTALL: Copy the table of tested combinations of development
1432         tools from configure.bat.  Add suggestion to install Bash on
1433         Windows 9X.
1435         * configure.bat: Don't copy lisp/Makefile, it doesn't exist; copy
1436         lisp/Makefile.in instead.  Use "rm -f" where more than one file
1437         needs to be deleted, since command.com in Windows 9X doesn't grok
1438         more than one argument.
1440 2001-01-24  Andrew Innes  <andrewi@gnu.org>
1442         * makefile.w32-in (cleanall-other-dirs-nmake):
1443         (cleanall-other-dirs-gmake): New targets.
1444         (cleanall): Invoke them.
1446 2001-01-19  Andrew Innes  <andrewi@gnu.org>
1448         * addpm.c (env_vars): Add a version-independent site-lisp
1449         directory to EMACSLOADPATH, after the version dependent one.
1451 2001-01-06  Andrew Innes  <andrewi@gnu.org>
1453         * README: Update info about compilers.
1455         * makefile.w32-in: Use $(MAKETYPE) instead of $(SHELLTYPE) to
1456         select correct rule for invoking make in another directory.  Amend
1457         rules accordingly.
1458         (clean): Delete $(COMPILER_TEMP_FILES) instead of *.pdb.
1460         * nmake.defs (EMACS_ICON_PATH): Delete definition.
1461         (COMPILER_TEMP_FILES): New definition.
1462         (MAKETYPE): New definition.
1464         * gmake.defs (EMACS_ICON_PATH): Delete definition.
1465         (COMPILER_TEMP_FILES): New definition.
1466         (MAKETYPE): New definition.
1468         * makefile.def (EMACS_ICON_PATH): Delete definition.
1470         * configure.bat: Be careful not to add trailing spaces when
1471         outputting to config.settings.
1473 2001-01-02  Andrew Innes  <andrewi@gnu.org>
1475         * config.nt (RE_TRANSLATE): Use CHAR_TABLE_TRANSLATE macro rather
1476         than the function.
1478 2000-12-17  Andrew Innes  <andrewi@gnu.org>
1480         * makefile.w32-in (install): Copy directories to the correct
1481         places.
1482         (real_install): Remove obsolete target.
1484 2000-12-06  Andrew Innes  <andrewi@gnu.org>
1486         * nmake.defs (CURDIR): New define.
1487         (INSTALL_DIR): Use it.
1489         * gmake.defs (NEW_CYGWIN): New define.
1490         (DQUOTE) [NEW_CYGWIN]: Cygnus changed the quoting rules since b20,
1491         so we need to adjust how we escape embedded quotes.
1492         (SETLOADPATH): Set EMACSLOADPATH to an absolute directory,
1493         relative to $(CURDIR).
1495 2000-11-25  Jason Rumney  <jasonr@gnu.org>
1497         * config.nt (GC_MARK_STACK, GC_SETJMP_WORKS): Define.
1499 2000-10-17  Andrew Innes  <andrewi@gnu.org>
1501         * makefile.w32-in (recompile): New target to recompile lisp
1502         directory.
1503         (recompile-CMD, recompile-SH): New support targets.
1505 2000-09-24  Jason Rumney  <jasonr@gnu.org>
1507         * config.nt (NO_RETURN): Define it.
1509 2000-09-17  Andrew Innes  <andrewi@gnu.org>
1511         * gmake.defs: Revert to Unix line endings.
1513         * nmake.defs: Revert to Unix line endings.
1515 2000-09-16  Andrew Innes  <andrewi@gnu.org>
1517         * gmake.defs (SETLOADPATH): Change definition to work from any
1518         subdirectory.
1520 2000-09-14  Andrew Innes  <andrewi@gnu.org>
1522         * makefile.w32-in: Revert to Unix line endings.
1524 2000-09-14  Andrew Innes  <andrewi@gnu.org>
1526         * INSTALL: Add note about expected error messages when configure
1527         is run.
1529         * configure.bat: Simplify the generation of makefiles (don't need
1530         to generate various top-level targets that invoke make in other
1531         directories).
1533         * gmake.defs (SHELLTYPE): New define.
1534         (SETLOADPATH): New define.
1536         * nmake.defs (SHELLTYPE): New define.
1538         * makefile.w32-in: Standardize indentation somewhat.
1539         Add bootstrap support.
1540         Pass $(MFLAGS) when invoking make recursively.
1541         Add shell-specific variants of top-level targets that invoke make
1542         recursively in other directories, and add necessary computed
1543         dependencies.
1545 2000-09-03  Andrew Innes  <andrewi@gnu.org>
1547         * makefile.w32-in: Change to DOS line endings.
1549         * configure.bat: Change to DOS line endings.
1551         * addsection.c (_ANONYMOUS_UNION) [__GNUC__]: New define.
1552         (_ANONYMOUS_STRUCT) [__GNUC__]: New define.
1554         * preprep.c (_ANONYMOUS_UNION) [__GNUC__]: New define.
1555         (_ANONYMOUS_STRUCT) [__GNUC__]: New define.
1557         * gmake.defs (CFLAGS): No need for -D_ANONYMOUS_UNION
1558         -D_ANONYMOUS_STRUCT on compile line.
1559         (EMACS_EXTRA_C_FLAGS): No need for -DORDINARY_LINK.
1560         (ARCH_CFLAGS): Change optimization flags to -O2.
1561         (FOREACH, FORVAR, FORDO, ENDFOR): New definitions.
1562         (ARGQUOTE, DQUOTE): New defines.
1564         * nmake.defs (CFLAGS): No need for -D_ANONYMOUS_UNION
1565         -D_ANONYMOUS_STRUCT on compile line.
1566         (FOREACH, FORVAR, FORDO, ENDFOR): New definitions.
1567         (ARGQUOTE, DQUOTE): New defines.
1569 2000-08-22  Andrew Innes  <andrewi@gnu.org>
1571         * configure.bat: New file.
1573         * gmake.defs: New file.
1575         * nmake.defs: New file.
1577         * makefile.w32-in: New file.
1579         * INSTALL: Rewrite to match new configure process.
1581         * config.nt [WINDOWSNT]: Don't declare getenv.
1582         (EMACS_CONFIG_OPTIONS): Define according to compiler being used.
1584         * addpm.c (main): Accept /q to mean install based on addpm's
1585         location without asking.  Remove reference to emacs.bat which is
1586         now obsolete.
1588         * addsection.c (PTR_TO_OFFSET): Cast ptr to unsigned char*.
1590         * paths.h: Use forward slash as directory separator in all path
1591         definitions.
1592         (PATH_DUMPLOADSEARCH): Revert to definition used on Unix.
1594         * preprep.c (PTR_TO_OFFSET): Cast ptr to unsigned char *.
1596         * runemacs.c: Remove WIN32 define.
1598         * inc/sys/file.h (F_OK, X_OK, W_OK, R_OK, D_OK): Define if D_OK is
1599         not defined.
1601         * inc/sys/socket.h (_WINSOCK_H): Undefine if defined.
1602         (fd_set): Define to new name, after including winsock.h, so we can
1603         provide our own implementation.
1605 2000-07-05  Andrew Innes  <andrewi@gnu.org>
1607         * ebuild.bat: Add support for specifying make arguments.
1609         * makefile.nt: Add support for `bootstrap' and related targets.
1611 2000-06-11  Jason Rumney  <jasonr@gnu.org>
1613         * config.nt: Define POINTER_TYPE, PTR, PROTOTYPES and __P.
1615 2000-02-06  Andrew Innes  <andrewi@gnu.org>
1617         * inc/sys/time.h: Add inclusion protection.
1619         * makefile.def (SYS_LDFLAGS): Add -nologo.
1621 1999-11-22  Andrew Innes  <andrewi@gnu.org>
1623         * install.bat: Pass on command line arguments to make.
1625         * makefile.nt (fast_install): Bring commands up-to-date, and fix typo.
1627 1999-11-21  Andrew Innes  <andrewi@gnu.org>
1629         * makefile.nt (all): Build leim if present.
1630         (install): Install leim if present.
1631         (clean): Clean leim if present.
1633         * addpm.c (env_vars): Include leim in default EMACSLOADPATH
1634         definition.
1636         * emacs.bat.in (EMACSLOADPATH): Include leim.
1638 1999-07-12  Richard Stallman  <rms@gnu.org>
1640         * Version 20.4 released.
1642 1999-06-16  Andrew Innes  <andrewi@gnu.org>
1644         * emacs.rc: Use an icon with a transparent background, to be in
1645         keeping with other applications.
1647 1999-06-03  Andrew Innes  <andrewi@gnu.org>
1649         * preprep.c: Fix typo.
1651 1999-05-02  Andrew Innes  <andrewi@gnu.org>
1653         * config.h: Remove obsolete file.
1655         * preprep.c (copy_executable_and_move_sections): Ifdef out a
1656         couple of unused switch cases that aren't defined on all
1657         platforms.
1659         * ftime.bat: Add another variation of the profile command, which
1660         only profiles extended commands.
1662 1999-03-31  Geoff Voelker  <voelker@cs.washington.edu>
1664         * cmdproxy.c (main): Fix parens.
1666 1999-03-25  Andrew Innes  <andrewi@gnu.org>
1668         * cmdproxy.c (main): Call GetShortPathName to normalize program
1669         names for comparison.
1671 1999-03-05  Geoff Voelker  <voelker@cs.washington.edu>
1673         * makefile.def: Compile multiple .c files when possible.
1674         Use BLD instead of assuming i386.
1675         * makefile.nt: Remove common multiple file compilation commands.
1677 1999-03-04  Geoff Voelker  <voelker@cs.washington.edu>
1679         * cmdproxy.c (main): Add missing parens.
1681 1999-02-20  Andrew Innes  <andrewi@gnu.org>
1683         * preprep.c: New program to allow dumped image to be profiled.
1685         * makefile.nt (preprep): New target.
1686         (ALL): Build it.
1688         * makefile.def (ARCH_CFLAGS): Set struct packing to 8.
1690         * ftime.bat: Invoke preprep to prepare dumped image for profiling.
1691         Change prep options to profile libc functions and skip the startup
1692         code.
1694 1999-02-15  Geoff Voelker  <voelker@cs.washington.edu>
1696         * makefile.nt: Create installation directory as first step.
1698 1999-01-31  Andrew Innes  <andrewi@gnu.org>
1700         * addsection.c (ROUND_UP_DST_AND_ZERO): Renamed from
1701         ROUND_UP_DST.  Zeroes the alignment slop.
1702         (copy_executable_and_add_section): Update the
1703         SizeOfHeaders field properly.
1705 1999-01-27  Andrew Innes  <andrewi@gnu.org>
1707         * makefile.nt: Do make version comparison as strings.
1709 1999-01-26  Andrew Innes  <andrewi@harlequin.co.uk>
1711         * runemacs.c (WinMain): Pass explicit environment block to
1712         CreateProcess, to work around a bug in Windows 95/98.
1714 1999-01-22  Geoff Voelker  <voelker@cs.washington.edu>
1716         * icons: New directory with Davenport's icons.
1717         * icons/sink.ico: Renamed from emacs.ico.
1719         * makefile.nt (install, fast_install): Install Windows icons
1720         into etc/icons.
1722         * emacs.rc (ICON): Use icons/gnu2a32.ico as the default icon.
1724 1999-01-17  Andrew Innes  <andrewi@gnu.org>
1726         * makefile.nt (ALL): List top-level targets.
1727         (addsection): New top-level target.
1728         (install): Copy fns-*.el to bin directory.
1730         * addsection.c: New program to add static heap section to
1731         temacs.exe after linking, in support of new unexec method.
1733 1998-12-28  Andrew Innes  <andrewi@delysid.gnu.org>
1735         * cmdproxy.c (spawn): Pass directory for child as parameter.
1736         (main): Save startup directory to give to spawn, then change
1737         directory to location of .exe in order not to prevent startup
1738         directory from being deleted.
1740 1998-12-08  Geoff Voelker  <voelker@cs.washington.edu>
1742         * makefile.nt: Do string comparision of _NMAKE_VER.
1744 1998-12-02  Geoff Voelker  <voelker@cs.washington.edu>
1746         * config.nt (LOCALTIME_CACHE): Define.
1748 1998-11-13  Andrew Innes  <andrewi@delysid.gnu.org>
1750         * install.bat: Convert to DOS format.
1752 1998-11-10  Andrew Innes  <andrewi@harlequin.co.uk>
1754         * cmdproxy.c (main): Set environment size only when running
1755         command.com.
1757 1998-11-03  Theodore Jump  <tjump@tertius.com>
1759         * makefile.def (SYS_LDFLAGS): Use swapfile when running from cd or net.
1760         (DEL_TREE): Use rd instead of rmdir.
1761         (ARCH_CFLAGS): Optimize for P6.  Align structures on 8-byte boundaries.
1762         * makefile.nt: Compile multiple source files when possible.
1764 1998-10-05  Geoff Voelker  <voelker@cs.washington.edu>
1766         * cmdproxy.c (main): Treat command line options as case-insensitive.
1768 1998-08-19  Richard Stallman  <rms@psilocin.ai.mit.edu>
1770         * Version 20.3 released.
1772 1998-07-20  Geoff Voelker  <voelker@cs.washington.edu>
1774         * addpm.c (main): Explicitly check result of message box for OK.
1776 1998-06-05  Andrew Innes  <andrewi@harlequin.co.uk>
1778         * inc/sys/file.h (D_OK): Define new macro.
1780 1998-06-01  Andrew Innes  <andrewi@mescaline.gnu.org>
1782         * makefile.def (CFLAGS): Do not define HAVE_NTGUI.
1784 1998-05-30  Geoff Voelker  <voelker@cs.washington.edu>
1786         * emacs.rc (VS_VERSION_INFO): Define.
1788 1998-04-23  Geoff Voelker  <voelker@cs.washington.edu>
1790         * makefile.nt (emacs.bat, debug.bat): Create them in the
1791         installation directory.
1793 1998-04-23  Andrew Innes  <andrewi@harlequin.co.uk>
1795         * ddeclient.c: New file.  (Support program for performing limited
1796         interprocess communication on Windows.)
1798         * makefile.nt: Build ddeclient.
1800         * cmdproxy.c (main): Only set environment size for real shell, and
1801         provide extra directory argument, when running on Windows 95.
1803 1998-04-17  Geoff Voelker  <voelker@cs.washington.edu>
1805         * cmdproxy.c (fail): Exit with a negative return value.
1806         (spawn): Return subprocess return code as an argument.
1807         Explicitly copy environment block.
1808         (main): Update to use return value argument with spawn.
1809         Retry if spawn failed when a subshell was not tried.
1811         * config.nt: Include new macros from src/config.in.
1812         (GNU_MALLOC, REL_ALLOC): Define.
1813         (RE_TRANSLATE_TYPE): Use Lisp_Object as type.
1814         (RE_TRANSLATE): Use char_table_translate.
1816         * makefile.def (CP_DIR): Preserve attributes.
1818         * makefile.nt (clean): Delete patch generated files, optimized
1819         build directory.
1821 1997-10-01  Geoff Voelker  <voelker@cs.washington.edu>
1823         * addpm.c (env_vars): Fix misplaced % in SHELL entry.
1825 1997-09-19  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
1827         * Version 20.2 released.
1829 1997-09-15  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
1831         * Version 20.1 released.
1833 1997-09-11  Geoff Voelker  <voelker@cs.washington.edu>
1835         * debug.bat.in: New file.
1836         * makefile.nt (debug.bat): New target.
1838 1997-09-02  Andrew Innes  <andrewi@harlequin.co.uk>
1840         * addpm.c (env_vars): Put site-lisp before lisp in EMACSLOADPATH.
1841         Quote group name.  Allow different icons to be specified.
1843         * cmdproxy.c (get_env_size): New function.
1844         (spawn): Explicitly pass in environment when creating subprocess.
1845         (main): Cleanup error messages.
1846         Specify dynamically sized environment block for real shell.
1847         Pass on unhandled switches to real shell.
1848         Quote program name.
1850         * makefile.def (CFLAGS_COMMON): Place pdb file in object build
1851         directory.
1852         (CFLAGS) [!MSVCNT11]: Define _CRTAPI1.
1854         * runemacs.c (WinMain): Allow Emacs process to be started with
1855         high or low priority.
1857         * emacs.bat.in: Remove OS dependent operations.
1859 1997-09-02  Geoff Voelker  <voelker@cs.washington.edu>
1861         * addpm.c (env_vars): No longer set INFOPATH.
1863         * cmdproxy.c (get_next_token): Null terminate token returned.
1865         * emacs.bat.in (INFOPATH): No longer set INFOPATH.
1867 1997-08-10  Andrew Innes  <andrewi@harlequin.co.uk>
1869         * addpm.c (env_vars): Set SHELL to cmdproxy.
1870         (main): Initialize idDde to 0.
1871         Determine emacs_path from module file name.
1872         Prompt for install.
1874         * makefile.def (MSVCNT11): Conditionally define it.
1875         (BASE_LIBS): Do not use oldnames.lib.
1876         (SYS_LDFLAGS): Use pdb files.
1877         (CFLAGS_COMMON) [!spd]: Define EMACSDEBUG.
1878         (ARCH_CFLAGS) [i386 && spd]: Use space optimizations.
1879         (ARCH_CFLAGS) [alpha && spd]: Use optimizations.
1881         * makefile.nt (ALL): Build cmdproxy.
1882         (cmdproxy): New target.
1883         (install): Install cmdproxy.
1885         * ftime.bat, debug.bat, cmdproxy.c: New files.
1887 1997-07-10  Geoff Voelker  <voelker@cs.washington.edu>
1889         * inc/sys/socket.h (shutdown): Define.
1890         (sys_shutdown): Export.
1892 1997-07-08  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
1894         * config.nt (RE_TRANSLATE): Copy definition from config.in.
1896 1997-07-01  Geoff Voelker  <voelker@cs.washington.edu>
1898         * config.nt: Update file comments.
1899         Update undefs added/removed in src/config.in.
1901 1997-06-19  Geoff Voelker  <voelker@cs.washington.edu>
1903         * makefile.def, emacs.bat: Use windows95 and windowsnt instead
1904         of win95 and winnt, respectively.
1906 1997-01-04  Geoff Voelker  <voelker@cs.washington.edu>
1908         * makefile.nt (real_install): Create site-lisp in installation dir.
1909         * addpm.c (env_vars): Add site-lisp to EMACSLOADPATH.
1910         * emacs.bat.in: Add site-lisp to EMACSLOADPATH.
1912 1996-08-11  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
1914         * Version 19.33 released.
1916 1996-08-09  Geoff Voelker  <voelker@cs.washington.edu>
1918         * runemacs.c (WinMain): Put a space between the binary and its args.
1920 1996-07-31  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
1922         * Version 19.32 released.
1924 1996-07-16  Andrew Innes  <andrewi@harlequin.co.uk>
1926         * makefile.nt (clean): Use OBJDIR macro.
1928 1996-06-03  Kim F. Storm  <kfs@olicom.dk>
1930         * runemacs.c (CHOOSE_NEWEST_EXE): New parameter macro.
1931         Not defined by default.
1932         (WinMain): Add conditional testing CHOOSE_NEWEST_EXE.
1933         (WinMain): Convert backslashes to slashes in env var values.
1935         * addpm.c (env_vars): Use slashes, not backslashes.
1937 1996-05-25  Karl Heuer  <kwzh@gnu.ai.mit.edu>
1939         * Version 19.31 released.
1941 1996-05-13  Andrew Innes  <andrewi@harlequin.co.uk>
1943         * install.bat: Set BUILD_TYPE and INSTALL_DIR before calling make;
1944         undo settings afterwards.
1946 1996-05-08  Andrew Innes  <andrewi@harlequin.co.uk>
1948         * addpm.c (env_vars): Set SHELL registry entry to value of COMSPEC
1949         environment variable.
1951 1996-05-03  Andrew Innes  <andrewi@harlequin.co.uk>
1953         * install.bat: Allow for optimized build.
1954         * makefile.def [BUILD_TYPE]: Build optimized version in its own dir.
1955         (ARCH_CFLAGS) [BUILD_TYPE == spd]: Build optimized version.
1957 1996-05-03  Andrew Innes  <andrewi@harlequin.co.uk>
1959         * addpm.c (REG_ROOT): Don't use a trailing backslash.
1960         (env_vars): Rename field emacs_path to emacs_dir.
1961         (main): Add link to runemacs instead of emacs.
1963         * install.bat: Check if INSTALL_DIR is passed as an argument.
1965         * makefile.def (CONFIG_H) [WIN95]: Use config.nt.
1967         * makefile.nt: Build and install runemacs.exe.
1969         * runemacs.c: New file.
1971         * config.w95: File removed.
1973         * inc/netdb.h, inc/unistd.h, inc/arpa/inet.h, inc/netinet/in.h,
1974         inc/sys/socket.h, inc/sys/time.h: New header files.
1976         * inc/sys/file.h (F_OK, X_OK, W_OK, R_OK): New macros.
1978 1996-03-27  Geoff Voelker  <voelker@cs.washington.edu>
1980         * makefile.def (DEL): Defined.
1981         (DEL_TREE) [win95]: Defined.
1982         (SYS_LDFLAGS): Set executable versions to 3.10.
1984         * makefile.nt: Change uses of del to $(DEL).
1986 1996-01-17  Erik Naggum  <erik@naggum.no>
1988         * All files: Update FSF's address in comment preamble.
1990 1996-01-03  George V. Reilly  <georger@microcrafts.com>
1992         * emacs.ico: Now the proverbial kitchen sink icon.
1994 1995-11-24  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
1996         * Version 19.30 released.
1998 1995-11-22  Geoff Voelker  <voelker@cs.washington.edu>
2000         * makefile.def (CP_DIR): Use platform independent switches for xcopy.
2002         * makefile.nt (install, fast_install, real_install, clean):
2003         Don't use switches to del not supported by Win95.
2005 1995-11-07  Kevin Gallo  <kgallo@microsoft.com>
2007         * makefile.nt (addpm.exe): Link with $(ADVAPI32).
2008         (install, fast_install): Change same-dir test to create test file in
2009         installation tree and thereby support read-only shares.
2010         (clean): Remove .pdb files.
2012         * makefile.def (NTGUI): New macro.
2013         [NTGUI] (CFLAGS): Define HAVE_NTGUI.
2015         * config.nt, config.w95: Update to latest src/config.in.
2017         * addpm.c (env_vars): New variable.
2018         (add_registry): New procedure.
2019         (main): Use values of configuration environment variables from
2020         the registry if defined, the process environment otherwise.
2022 1995-06-19  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
2024         * Version 19.29 released.
2026         * makefile.nt (addpm.exe): Change WinMainCRTStartup to mainCRTStartup.
2028 1995-06-13  Geoff Voelker  <voelker@cs.washington.edu>
2030         * makefile.nt: Define .c to .obj suffix rule.
2031         (addpm.obj): Compile directly, use CFLAGS.
2032         (addpm.exe): Link from addpm.obj.
2034         * makefile.def (MSVCNT11): Defined.
2035         (BASE_LIBS) [MSVCNT11]: Use oldnames.lib.
2036         (CFLAGS_COMMON): Defined.
2037         (CFLAGS) [MSVCNT11]: Define _CRTAPI1 to _cdecl.
2039 1995-06-09  Geoff Voelker  <voelker@cs.washington.edu>
2041         * emacs.bat.in: Renamed from emacs.bat.
2042         (emacs_dir): Renamed from emacs_path.
2043         Definition removed.
2045         * addpm.c: New file.
2046         * makefile.nt (ALL, addpm, addpm.exe, addpm.obj): Defined.
2047         (all): Depend upon $(BLD) and $(ALL).
2048         (install): Depend upon emacs.bat.
2049         Create program item for Emacs.
2050         (clean): Delete obj.
2051         (emacs.bat): Defined.
2052         * makefile.def (EMACS_ICON_PATH, ADDPM): Defined.
2054 1995-05-27  Geoff Voelker  <voelker@cs.washington.edu>
2056         * ebuild.bat, emacs.bat, fast-install.bat, install.bat:
2057         Add carriage returns; necessary for batch files on Win95.
2059 1995-05-25  Geoff Voelker  <voelker@cs.washington.edu>
2061         * config.w95: Created.
2062         * config.h: Changed to config.nt.
2064         * makefile.nt (SUBDIRS): Commented out.
2065         (all, install, clean): Expand for-loops.
2066         (BUILD_CMD, INSTALL_CMD, CLEAN_CMD): Defined.
2068         * makefile.def (SYS_LIB_DIR, SYS_INC_DIR): Undefined.
2069         (ARCH): New definition.
2070         (CPU, CONFIG_H, OS_TYPE): Defined.
2071         (INCLUDE, LIB): Checked if valid.
2072         (ntwin32.mak): Included.
2073         (AR, CC, LINK): New definition.
2074         (ADVAPI32, libc, BASE_LIBS): Defined.
2075         (SYS_LDFLAGS): New definition.
2076         Update comments and preprocessor conditionals.
2078         * emacs.bat (SHELL): Conditionally defined.
2079         (HOME): Conditionally defined.
2080         (emacs_path, HOME): Update comments.
2081         Turn off all echo.
2083 1995-05-09  Geoff Voelker  <voelker@cs.washington.edu>
2085         * _emacs, config.h, ebuild.bat, emacs.bat, emacs.rc,
2086         fast-install.bat, install.bat, makefile.def, makefile.nt, paths.h,
2087         inc/pwd.h, inc/sys/dir.h, inc/sys/file.h, inc/sys/ioctl.h,
2088         inc/sys/param.h: Removed carriage-returns.
2090 1995-05-06  Geoff Voelker  <voelker@cs.washington.edu>
2092         * makefile.def (CVTRES): Defined.
2094         * emacs.ico, emacs.rc: New files by Kevin Gallo.
2096 1995-04-10  Geoff Voelker  <voelker@cs.washington.edu>
2098         * src: Remove directory.
2100         * src\config.h, src\paths.h: Moved to parent dir, src removed.
2102 1995-04-09  Geoff Voelker  <voelker@cs.washington.edu>
2104         * makefile.def (INSTALL_DIR): Changed to generic directory.
2106         * emacs.bat: Added arguments when emacs.exe invoked.
2108         * ebuild.cmd, emacs.cmd, install.cmd: Changed extension to .bat.
2110 1994-12-13  Geoff Voelker  <voelker@cs.washington.edu>
2112         * makefile.def (CC): In configuration section.
2113         (COMPAT_LIB): Defined.
2115 1994-11-01  Geoff Voelker  <voelker@cs.washington.edu>
2117         * src/paths.h: New file.
2119         * src/config.h: New file.
2121         * inc/pwd.h: New file.
2123         * inc/sys/dir.h: New file.
2125         * inc/sys/file.h: New file.
2127         * inc/sys/ioctl.h: New file.
2129         * inc/sys/param.h: New file.
2131         * todo: New file.
2133         * README: New file.
2135         * makefile.nt: New file.
2137         * makefile.def: New file.
2139         * install.cmd: New file.
2141         * INSTALL: New file.
2143         * fast-install.cmd: New file.
2145         * emacs.cmd: New file.
2147         * ebuild.cmd: New file.
2149         * _emacs: New file.
2151 ;; Local Variables:
2152 ;; coding: utf-8
2153 ;; add-log-time-zone-rule: t
2154 ;; End:
2156   Copyright (C) 1995-1999, 2001-2011  Free Software Foundation, Inc.
2158   This file is part of GNU Emacs.
2160   GNU Emacs is free software: you can redistribute it and/or modify
2161   it under the terms of the GNU General Public License as published by
2162   the Free Software Foundation, either version 3 of the License, or
2163   (at your option) any later version.
2165   GNU Emacs is distributed in the hope that it will be useful,
2166   but WITHOUT ANY WARRANTY; without even the implied warranty of
2167   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
2168   GNU General Public License for more details.
2170   You should have received a copy of the GNU General Public License
2171   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.