annotate netinstall/ChangeLog @ 1315:70921960b980

[xemacs-hg @ 2003-02-20 08:19:28 by ben] check in makefile fixes et al Makefile.in.in: Major surgery. Move all stuff related to building anything in the src/ directory into src/. Simplify the dependencies -- everything in src/ is dependent on the single entry `src' in MAKE_SUBDIRS. Remove weirdo targets like `all-elc[s]', dump-elc[s], etc. mule/mule-msw-init.el: Removed. Delete this file. mule/mule-win32-init.el: New file, with stuff from mule-msw-init.el -- not just for MS Windows native, boys and girls! bytecomp.el: Change code inserted to catch trying to load a Mule-only .elc file in a non-Mule XEmacs. Formerly you got the rather cryptic "The required feature `mule' cannot be provided". Now you get "Loading this file requires Mule support". finder.el: Remove dependency on which directory this function is invoked from. update-elc.el: Don't mess around with ../src/BYTECOMPILE_CHANGE. Now that Makefile.in.in and xemacs.mak are in sync, both of them use NEEDTODUMP and the other one isn't used. dumped-lisp.el: Rewrite in terms of `list' and `nconc' instead of assemble-list, so we can have arbitrary forms, not just `when-feature'. very-early-lisp.el: Nuke this file. finder-inf.el, packages.el, update-elc.el, update-elc-2.el, loadup.el, make-docfile.el: Eliminate references to very-early-lisp. msw-glyphs.el: Comment clarification. xemacs.mak: Add macros DO_TEMACS, DO_XEMACS, and a few others; this macro section is now completely in sync with src/Makefile.in.in. Copy check-features, load-shadows, and rebuilding finder-inf.el from src/Makefile.in.in. The main build/dump/recompile process is now synchronized with src/Makefile.in.in. Change `WARNING' to `NOTE' and `error checking' to `error-checking' TO avoid tripping faux warnings and errors in the VC++ IDE. Makefile.in.in: Major surgery. Move all stuff related to building anything in the src/ directory from top-level Makefile.in.in to here. Simplify the dependencies. Rearrange into logical subsections. Synchronize the main compile/dump/build-elcs section with xemacs.mak, which is already clean and in good working order. Remove weirdo targets like `all-elc[s]', dump-elc[s], etc. Add additional levels of macros \(e.g. DO_TEMACS, DO_XEMACS, TEMACS_BATCH, XEMACS_BATCH, XEMACS_BATCH_PACKAGES) to factor out duplicated stuff. Clean up handling of "HEAP_IN_DATA" (Cygwin) so it doesn't need to ignore the return value from dumping. Add .NO_PARALLEL since various aspects of building and dumping must be serialized but do not always have dependencies between them (this is impossible in some cases). Everything related to src/ now gets built in one pass in this directory by just running `make' (except the Makefiles themselves and config.h, paths.h, Emacs.ad.h, and other generated .h files). console.c: Update list of possibly valid console types. emacs.c: Rationalize the specifying and handling of the type of the first frame. This was originally prompted by a workspace in which I got GTK to compile under C++ and in the process fixed it so it could coexist with X in the same build -- hence, a combined TTY/X/MS-Windows/GTK build is now possible under Cygwin. (However, you can't simultaneously *display* more than one kind of device connection -- but getting that to work is not that difficult. Perhaps a project for a bored grad student. I (ben) would do it but don't see the use.) To make sense of this, I added new switches that can be used to specifically indicate the window system: -x [aka --use-x], -tty \[aka --use-tty], -msw [aka --use-ms-windows], -gtk [aka --use-gtk], and -gnome [aka --use-gnome, same as --use-gtk]. -nw continues as an alias for -tty. When none have been given, XEmacs checks for other parameters implying particular device types (-t -> tty, -display -> x [or should it have same treatment as DISPLAY below?]), and has ad-hoc logic afterwards: if env var DISPLAY is set, use x (or gtk? perhaps should check whether gnome is running), else MS Windows if it exsits, else TTY if it exists, else stream, and you must be running in batch mode. This also fixes an existing bug whereby compiling with no x, no mswin, no tty, when running non- interactively (e.g. to dump) I get "sorry, must have TTY support". emacs.c: Turn on Vstack_trace_on_error so that errors are debuggable even when occurring extremely early in reinitialization. emacs.c: Try to make sure that the user can see message output under Windows (i.e. it doesn't just disappear right away) regardless of when it occurs, e.g. in the middle of creating the first frame. emacs.c: Define new function `emacs-run-status', indicating whether XEmacs is noninteractive or interactive, whether raw, post-dump/pdump-load or run-temacs, whether we are dumping, whether pdump is in effect. event-stream.c: It's "mommas are fat", not "momas are fat". Fix other typo. event-stream.c: Conditionalize in_menu_callback check on HAVE_MENUBARS, because it won't exist on w/o menubar support, lisp.h: More hackery on RETURN_NOT_REACHED. Cygwin v3.2 DOES complain here if RETURN_NOT_REACHED() is blank, as it is for GCC 2.5+. So make it blank only for GCC 2.5 through 2.999999999999999. Declare Vstack_trace_on_error. profile.c: Need to include "profile.h" to fix warnings. sheap.c: Don't fatal() when need to rerun Make, just stderr_out() and exit(0). That way we can distinguish between a dumping failing expectedly (due to lack of stack space, triggering another dump) and unexpectedly, in which case, we want to stop building. (or go on, if -K is given) syntax.c, syntax.h: Use ints where they belong, and enum syntaxcode's where they belong, and fix warnings thereby. syntax.h: Fix crash caused by an edge condition in the syntax-cache macros. text.h: Spacing fixes. xmotif.h: New file, to get around shadowing warnings. EmacsManager.c, event-Xt.c, glyphs-x.c, gui-x.c, input-method-motif.c, xmmanagerp.h, xmprimitivep.h: Include xmotif.h. alloc.c: Conditionalize in_malloc on ERROR_CHECK_MALLOC. config.h.in, file-coding.h, fileio.c, getloadavg.c, select-x.c, signal.c, sysdep.c, sysfile.h, systime.h, text.c, unicode.c: Eliminate HAVE_WIN32_CODING_SYSTEMS, use WIN32_ANY instead. Replace defined (WIN32_NATIVE) || defined (CYGWIN) with WIN32_ANY. lisp.h: More futile attempts to walk and chew gum at the same time when dealing with subr's that don't return.
author ben
date Thu, 20 Feb 2003 08:19:44 +0000
parents 3f994430e7b9
children bd5929b8e039
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1307
3f994430e7b9 [xemacs-hg @ 2003-02-16 06:13:17 by youngs]
youngs
parents: 1187
diff changeset
1 2003-02-16 Steve Youngs <youngs@xemacs.org>
3f994430e7b9 [xemacs-hg @ 2003-02-16 06:13:17 by youngs]
youngs
parents: 1187
diff changeset
2
3f994430e7b9 [xemacs-hg @ 2003-02-16 06:13:17 by youngs]
youngs
parents: 1187
diff changeset
3 * XEmacs 21.5.11 "cabbage" is released.
3f994430e7b9 [xemacs-hg @ 2003-02-16 06:13:17 by youngs]
youngs
parents: 1187
diff changeset
4
1187
6f18092b3b3c [xemacs-hg @ 2003-01-05 05:13:26 by youngs]
youngs
parents: 981
diff changeset
5 2003-01-04 Steve Youngs <youngs@xemacs.org>
6f18092b3b3c [xemacs-hg @ 2003-01-05 05:13:26 by youngs]
youngs
parents: 981
diff changeset
6
6f18092b3b3c [xemacs-hg @ 2003-01-05 05:13:26 by youngs]
youngs
parents: 981
diff changeset
7 * XEmacs 21.5.10 "burdock" is released.
6f18092b3b3c [xemacs-hg @ 2003-01-05 05:13:26 by youngs]
youngs
parents: 981
diff changeset
8
981
0205cafe98ff [xemacs-hg @ 2002-08-30 08:25:48 by youngs]
youngs
parents: 933
diff changeset
9 2002-08-30 Steve Youngs <youngs@xemacs.org>
0205cafe98ff [xemacs-hg @ 2002-08-30 08:25:48 by youngs]
youngs
parents: 933
diff changeset
10
0205cafe98ff [xemacs-hg @ 2002-08-30 08:25:48 by youngs]
youngs
parents: 933
diff changeset
11 * XEmacs 21.5.9 "brussels sprouts" is released.
0205cafe98ff [xemacs-hg @ 2002-08-30 08:25:48 by youngs]
youngs
parents: 933
diff changeset
12
933
f6bc42928b34 [xemacs-hg @ 2002-07-27 03:52:44 by youngs]
youngs
parents: 894
diff changeset
13 2002-07-27 Steve Youngs <youngs@xemacs.org>
f6bc42928b34 [xemacs-hg @ 2002-07-27 03:52:44 by youngs]
youngs
parents: 894
diff changeset
14
f6bc42928b34 [xemacs-hg @ 2002-07-27 03:52:44 by youngs]
youngs
parents: 894
diff changeset
15 * XEmacs 21.5.8 "broccoli" is released.
f6bc42928b34 [xemacs-hg @ 2002-07-27 03:52:44 by youngs]
youngs
parents: 894
diff changeset
16
894
2367ca81af28 [xemacs-hg @ 2002-07-02 15:00:50 by stephent]
stephent
parents: 864
diff changeset
17 2002-07-02 Stephen J. Turnbull <stephen@xemacs.org>
2367ca81af28 [xemacs-hg @ 2002-07-02 15:00:50 by stephent]
stephent
parents: 864
diff changeset
18
2367ca81af28 [xemacs-hg @ 2002-07-02 15:00:50 by stephent]
stephent
parents: 864
diff changeset
19 * XEmacs 21.5.7 "broccoflower" is released.
2367ca81af28 [xemacs-hg @ 2002-07-02 15:00:50 by stephent]
stephent
parents: 864
diff changeset
20
819
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
21 2002-02-04 Andy Piper <andy@xemacs.org>
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
22
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
23 * install.cc (install_one): Munge installed filename to fit inside
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
24 dialog.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
25
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
26 2001-12-17 Andy Piper <andy@xemacs.org>
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
27
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
28 * desktop.cc (do_desktop_setup): register the whole gamut of C++
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
29 file types.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
30
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
31 2001-12-12 Andy Piper <andy@xemacs.org>
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
32
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
33 * win32.h (CDECL): reorder to remove warnings.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
34
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
35 * Makefile.in.in: add new dependencies.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
36
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
37 * desktop.h: new file.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
38
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
39 * uninstall.cc: use it.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
40
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
41 * install.cc (uninstall_one): when uninstalling xemacs remove
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
42 shortcuts also.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
43
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
44 * desktop.cc (remove_xemacs_setup): split out from
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
45 remove_desktop_setup.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
46 (remove_desktop_setup): call it.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
47
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
48 2001-12-05 Andy Piper <andy@xemacs.org>
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
49
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
50 * win32.h: re-order declarations for native windows from Fabrice
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
51 Popineau.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
52
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
53 2001-11-22 Andy Piper <andy@xemacs.org>
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
54
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
55 * Makefile.in.in (setup-bin.ini): cope with kit revisions.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
56
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
57 * source.cc (save_dialog): warning removal.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
58 (load_dialog): ditto.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
59
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
60 * msg.cc: remove cvs id.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
61
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
62 * desktop.cc (find_xemacs_version): new function. Cope with kit
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
63 revisions.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
64 (find_xemacs_exe_path): use it.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
65 (find_xemacs_exe_name): ditto.
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 804
diff changeset
66
804
aaf4e86e0a2d [xemacs-hg @ 2002-04-05 08:57:14 by stephent]
stephent
parents: 774
diff changeset
67 2002-04-05 Stephen J. Turnbull <stephen@xemacs.org>
aaf4e86e0a2d [xemacs-hg @ 2002-04-05 08:57:14 by stephent]
stephent
parents: 774
diff changeset
68
aaf4e86e0a2d [xemacs-hg @ 2002-04-05 08:57:14 by stephent]
stephent
parents: 774
diff changeset
69 * XEmacs 21.5.6 "bok choi" is released.
aaf4e86e0a2d [xemacs-hg @ 2002-04-05 08:57:14 by stephent]
stephent
parents: 774
diff changeset
70
774
703228f54913 [xemacs-hg @ 2002-03-14 03:54:10 by stephent]
stephent
parents: 768
diff changeset
71 2002-03-12 Ben Wing <ben@xemacs.org>
703228f54913 [xemacs-hg @ 2002-03-14 03:54:10 by stephent]
stephent
parents: 768
diff changeset
72
703228f54913 [xemacs-hg @ 2002-03-14 03:54:10 by stephent]
stephent
parents: 768
diff changeset
73 * The Great Mule Merge: placeholder.
703228f54913 [xemacs-hg @ 2002-03-14 03:54:10 by stephent]
stephent
parents: 768
diff changeset
74
768
e3c602a01a26 [xemacs-hg @ 2002-03-05 14:45:51 by stephent]
stephent
parents: 725
diff changeset
75 2002-03-05 Stephen J. Turnbull <stephen@xemacs.org>
e3c602a01a26 [xemacs-hg @ 2002-03-05 14:45:51 by stephent]
stephent
parents: 725
diff changeset
76
e3c602a01a26 [xemacs-hg @ 2002-03-05 14:45:51 by stephent]
stephent
parents: 725
diff changeset
77 * XEmacs 21.5.5 "beets" is released.
e3c602a01a26 [xemacs-hg @ 2002-03-05 14:45:51 by stephent]
stephent
parents: 725
diff changeset
78
725
b35d39ece38f [xemacs-hg @ 2002-01-08 16:49:21 by stephent]
stephent
parents: 707
diff changeset
79 2002-01-08 Stephen J. Turnbull <stephen@xemacs.org>
b35d39ece38f [xemacs-hg @ 2002-01-08 16:49:21 by stephent]
stephent
parents: 707
diff changeset
80
b35d39ece38f [xemacs-hg @ 2002-01-08 16:49:21 by stephent]
stephent
parents: 707
diff changeset
81 * XEmacs 21.5.4 "bamboo" is released.
b35d39ece38f [xemacs-hg @ 2002-01-08 16:49:21 by stephent]
stephent
parents: 707
diff changeset
82
707
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
83 2001-12-12 Andy Piper <andy@xemacs.org>
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
84
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
85 * win32.h (CDECL): reorder to remove warnings.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
86
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
87 * Makefile.in.in: add new dependencies.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
88
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
89 * desktop.h: new file.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
90
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
91 * uninstall.cc: use it.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
92
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
93 * install.cc (uninstall_one): when uninstalling xemacs remove
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
94 shortcuts also.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
95
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
96 * desktop.cc (remove_xemacs_setup): split out from
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
97 remove_desktop_setup.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
98 (remove_desktop_setup): call it.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
99
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
100 2001-12-05 Andy Piper <andy@xemacs.org>
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
101
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
102 * win32.h: re-order declarations for native windows from Fabrice
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
103 Popineau.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
104
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
105 2001-11-22 Andy Piper <andy@xemacs.org>
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
106
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
107 * Makefile.in.in (setup-bin.ini): cope with kit revisions.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
108
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
109 * source.cc (save_dialog): warning removal.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
110 (load_dialog): ditto.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
111
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
112 * msg.cc: remove cvs id.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
113
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
114 * desktop.cc (find_xemacs_version): new function. Cope with kit
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
115 revisions.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
116 (find_xemacs_exe_path): use it.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
117 (find_xemacs_exe_name): ditto.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
118
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
119 2001-11-21 Stephen J. Turnbull <stephen@xemacs.org>
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
120
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
121 * XEmacs 21.4.6 "Common Lisp" is released.
a307f9a2021d [xemacs-hg @ 2001-12-20 05:49:28 by andyp]
andyp
parents: 673
diff changeset
122
673
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
123 2001-10-27 Andy Piper <andy@xemacs.org>
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
124
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
125 * localdir.cc (dialog_cmd): allow download directory to be
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
126 created.
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
127 * log.cc (exit_setup): cygwin -> XEmacs
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
128 * net.cc (dialog_cmd):
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
129 (dialog_proc):
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
130 (do_net): sync with cygwin installer.
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
131 * res.rc:
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
132 * resource.h (IDS_CREATE_DIR): new.
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
133 * source.cc (load_dialog):
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
134 (save_dialog):
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
135 (dialog_cmd):
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
136 (dialog_proc):
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
137 (do_source): sync with cygwin installer.
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
138 * uninstall.cc (progress): remove log message.
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
139 * Makefile.in.in: generated setup-bin.ini correctly.
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
140
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
141 2001-10-25 Andy Piper <andy@xemacs.org>
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
142
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
143 * Merge 21.5 codeline.
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
144
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
145 2001-10-25 Andy Piper <andy@xemacs.org>
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
146
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
147 * setup.mak (OBJS): minor build fixes.
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
148 (distclean):
685b588e92d8 [xemacs-hg @ 2001-10-30 05:13:26 by andyp]
andyp
parents: 672
diff changeset
149
672
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
150 2001-10-25 Andy Piper <andy@xemacs.org>
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
151
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
152 * desktop.cc:
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
153 * desktop.cc (do_desktop_setup):
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
154 * desktop.cc (load_dialog):
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
155 * desktop.cc (save_dialog):
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
156 * desktop.cc (do_desktop): handle idl file registration.
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
157 * geturl.cc (dialog): warning removal.
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
158 * geturl.cc (get_url_to_string):
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
159 * geturl.cc (get_url_to_file): make sure the nio gets deleted
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
160 after use, this also closes the inbound socket.
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
161 * nio-ftp.cc (ftp_line): fix from cygwin installer.
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
162 * nio-ftp.cc (NetIO_FTP): fix typeo.
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
163 * res.rc: support idl types.
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
164 * resource.h (IDC_IDL_TYPE): ditto.
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
165 * state.h: ditto.
42a8626b741e [xemacs-hg @ 2001-10-26 02:42:53 by andyp]
andyp
parents: 666
diff changeset
166
666
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
167 2001-09-24 Andy Piper <andy@xemacs.org>
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
168
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
169 * desktop.cc:
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
170 * desktop.cc (make_link):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
171 * desktop.cc (find_xemacs_exe_name):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
172 * desktop.cc (remove_link):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
173 * desktop.cc (start_menu):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
174 * desktop.cc (desktop_icon):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
175 * desktop.cc (remove_desktop_setup):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
176 * desktop.cc (FROB):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
177 * desktop.cc (do_desktop_setup):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
178 * desktop.cc (check_startmenu):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
179 * desktop.cc (do_desktop): Be more exacting about removal of
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
180 desktop things.
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
181 * regedit.cc (remove1):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
182 * regedit.cc (remove_app_path):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
183 * regedit.h (remove_app_path): remove more registry pieces.
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
184 * res.rc:
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
185 * setup.mak (APPVER):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
186 * setup.mak (CCV):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
187 * setup.mak (OBJS):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
188 * setup.mak (LIBS):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
189 * setup.mak (distclean):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
190 * uninstall.cc:
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
191 * uninstall.cc (read_installed_db):
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
192 * uninstall.cc (uninstall_all): Cleanup.
146d342ff859 [xemacs-hg @ 2001-09-25 02:35:32 by andyp]
andyp
parents: 657
diff changeset
193
657
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
194 2001-09-08 Andy Piper <andy@xemacs.org>
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
195
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
196 * Makefile.in.in (OBJS):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
197 * Makefile.in.in (all):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
198 * Makefile.in.in (extraclean):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
199 * choose.cc (base):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
200 * desktop.cc:
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
201 * desktop.cc (remove_link):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
202 * desktop.cc (start_menu):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
203 * desktop.cc (desktop_icon):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
204 * desktop.cc (remove_desktop_setup):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
205 * desktop.cc (do_desktop_setup):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
206 * desktop.cc (load_dialog):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
207 * desktop.cc (save_dialog):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
208 * desktop.cc (do_desktop):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
209 * dialog.h:
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
210 * download.cc (download_one):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
211 * ini.h (pinfo):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
212 * main.cc (WinMain):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
213 * nio-ie5.cc:
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
214 * regedit.cc:
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
215 * regedit.cc (create_xemacs_root):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
216 * regedit.cc (set_app_path):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
217 * regedit.cc (set_install_path):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
218 * regedit.cc (setup_explorer):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
219 * regedit.cc (remove_app_path):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
220 * regedit.cc (remove_uninstall_path):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
221 * regedit.h (remove_app_path):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
222 * reginfo.h:
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
223 * reginfo.h (XEMACS_INFO_XEMACS_ORG_REGISTRY_NAME):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
224 * reginfo.h (XEMACS_NATIVE_ARCH_NAME):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
225 * res.rc:
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
226 * resource.h (IDD_UNINSTALL):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
227 * resource.h (IDC_TXT_TYPE):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
228 * root.cc:
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
229 * root.cc (browse_cb):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
230 * root.cc (set_default_root):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
231 * splash.cc (do_splash):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
232 * state.h:
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
233 * state.h (MIRROR_SITE):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
234 * uninstall.cc:
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
235 * uninstall.cc (dialog_proc):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
236 * uninstall.cc (progress):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
237 * uninstall.cc (uninstall_one):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
238 * uninstall.cc (do_uninstall):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
239 * uninstall.cc (read_installed_db):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
240 * uninstall.cc (uninstall_all):
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
241 * win32.h:
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
242 * win32.h (NOCOMATTRIBUTE): Update netinstaller to support
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
243 uninstallation and register standard file-types.
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
244
654
3ab33cd99bbf [xemacs-hg @ 2001-09-07 09:54:37 by stephent]
stephent
parents: 641
diff changeset
245 2001-09-07 Stephen J. Turnbull <stephen@xemacs.org>
3ab33cd99bbf [xemacs-hg @ 2001-09-07 09:54:37 by stephent]
stephent
parents: 641
diff changeset
246
3ab33cd99bbf [xemacs-hg @ 2001-09-07 09:54:37 by stephent]
stephent
parents: 641
diff changeset
247 * XEmacs 21.5.3 "asparagus" is released.
3ab33cd99bbf [xemacs-hg @ 2001-09-07 09:54:37 by stephent]
stephent
parents: 641
diff changeset
248
641
b17040ffddd1 [xemacs-hg @ 2001-07-28 08:14:27 by stephent]
stephent
parents: 522
diff changeset
249 2001-07-28 Stephen J. Turnbull <stephen@xemacs.org>
b17040ffddd1 [xemacs-hg @ 2001-07-28 08:14:27 by stephent]
stephent
parents: 522
diff changeset
250
b17040ffddd1 [xemacs-hg @ 2001-07-28 08:14:27 by stephent]
stephent
parents: 522
diff changeset
251 * XEmacs 21.5.2 "artichoke" is released.
b17040ffddd1 [xemacs-hg @ 2001-07-28 08:14:27 by stephent]
stephent
parents: 522
diff changeset
252
522
19559cacc941 [xemacs-hg @ 2001-05-09 11:46:58 by martinb]
martinb
parents: 472
diff changeset
253 2001-05-09 Martin Buchholz <martin@xemacs.org>
19559cacc941 [xemacs-hg @ 2001-05-09 11:46:58 by martinb]
martinb
parents: 472
diff changeset
254
19559cacc941 [xemacs-hg @ 2001-05-09 11:46:58 by martinb]
martinb
parents: 472
diff changeset
255 * XEmacs 21.5.1 "anise" is released.
19559cacc941 [xemacs-hg @ 2001-05-09 11:46:58 by martinb]
martinb
parents: 472
diff changeset
256
472
0edeb854dc7e [xemacs-hg @ 2001-04-18 07:37:19 by martinb]
martinb
parents: 467
diff changeset
257 2001-04-18 Martin Buchholz <martin@xemacs.org>
0edeb854dc7e [xemacs-hg @ 2001-04-18 07:37:19 by martinb]
martinb
parents: 467
diff changeset
258
0edeb854dc7e [xemacs-hg @ 2001-04-18 07:37:19 by martinb]
martinb
parents: 467
diff changeset
259 * XEmacs 21.5.0 "alfalfa" is released.
0edeb854dc7e [xemacs-hg @ 2001-04-18 07:37:19 by martinb]
martinb
parents: 467
diff changeset
260
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
261 2001-03-21 Martin Buchholz <martin@xemacs.org>
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
262
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
263 * XEmacs 21.2.46 "Urania" is released.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
264
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
265 2001-03-01 Andy Piper <andy@xemacs.org>
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
266
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
267 * desktop.cc (find_xemacs_exe_name): support 21.1 and 21.2 series.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
268
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
269 * iniparse.c: remove.
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
270
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
271 * inilex.c: remove
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 460
diff changeset
272
460
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
273 2001-02-23 Martin Buchholz <martin@xemacs.org>
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
274
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
275 * XEmacs 21.2.45 "Thelxepeia" is released.
223736d75acb Import from CVS: tag r21-2-45
cvs
parents: 458
diff changeset
276
458
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
277 2001-02-08 Martin Buchholz <martin@xemacs.org>
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
278
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
279 * XEmacs 21.2.44 "Thalia" is released.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
280
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
281 2001-02-02 Andy Piper <andy@xemacs.org>
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
282
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
283 * res.rc: update mirrors.lst location.
c33ae14dd6d0 Import from CVS: tag r21-2-44
cvs
parents: 456
diff changeset
284
456
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
285 2001-01-26 Martin Buchholz <martin@xemacs.org>
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
286
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
287 * XEmacs 21.2.43 "Terspichore" is released.
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
288
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
289 2001-01-21 Andy Piper <andy@xemacs.org>
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
290
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
291 * Makefile.in.in (%.o): use CXX to compile
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
292
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
293 * res.rc: beautify download status and install status.
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
294
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
295 * nio-ftp.cc: use xemacs-setup user for identity.
e7ef97881643 Import from CVS: tag r21-2-43
cvs
parents: 454
diff changeset
296
454
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
297 2001-01-20 Martin Buchholz <martin@xemacs.org>
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
298
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
299 * XEmacs 21.2.42 "Poseidon" is released.
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
300
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
301 2001-01-17 Andy Piper <andy@xemacs.org>
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
302
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
303 * ini.h: move extern "C" to aid win32 compilation. From Fabrice
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
304 Popineau.
d7a9135ec789 Import from CVS: tag r21-2-42
cvs
parents: 452
diff changeset
305
452
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
306 2001-01-17 Martin Buchholz <martin@xemacs.org>
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
307
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
308 * XEmacs 21.2.41 "Polyhymnia" is released.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
309
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
310 2001-01-12 Andy Piper <andy@xemacs.org>
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
311
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
312 * postinstall.cc (do_postinstall): don't pick up shells if cygwin
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
313 isn't installed.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
314
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
315 2001-01-10 Andy Piper <andy@xemacs.org>
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
316
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
317 * README.xemacs: deleted.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
318
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
319 * README: updated.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
320
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
321 * tar.cc (tar_gzctell): new function picked up from some internal
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
322 cygnus version of zlib.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
323
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
324 * Makefile.in.in (LOCALCFLAGS): use -O2
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
325 (OBJS): reinstate autoload.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
326
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
327 2001-01-09 Andy Piper <andy@xemacs.org>
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
328
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
329 * root.cc (dialog_cmd): backslash root dir.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
330
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
331 * desktop.cc (do_desktop): runemacs.exe is the exe to run.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
332
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
333 * package-net.el (package-net-batch-convert-index-to-ini): new
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
334 batch command.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
335
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
336 * Makefile.in.in (setup.ini): new target. Automatically create.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
337 (LOCALCFLAGS): use extra_includes.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
338 (setup.ini): new target.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
339
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
340 * regedit.cc (create_xemacs_root): write out the package path.
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
341
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
342 * reginfo.h (XEMACS_NATIVE_ARCH_NAME): arch dir is i386 not i586
3d3049ae1304 Import from CVS: tag r21-2-41
cvs
parents: 450
diff changeset
343
450
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
344 2001-01-08 Martin Buchholz <martin@xemacs.org>
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
345
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
346 * XEmacs 21.2.40 is released.
98528da0b7fc Import from CVS: tag r21-2-40
cvs
parents: 448
diff changeset
347
448
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
348 2000-12-31 Martin Buchholz <martin@xemacs.org>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
349
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
350 * XEmacs 21.2.39 is released.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
351
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
352 2000-12-28 Andy Piper <andy@xemacs.org>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
353
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
354 * desktop.cc (FROB): add more app paths.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
355
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
356 2000-12-24 Fabrice Popineau <Fabrice.Popineau@supelec.fr>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
357
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
358 * choose.cc (create_listview): CreateWindowEx() does not take this kind of
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
359 parameter.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
360
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
361 * choose.cc (package_sort):
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
362 * hash.cc (rev_len):
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
363 * site.cc (site_sort): must be __cdecl to be called by qsort().
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
364
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
365 * download.cc:
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
366 * install.cc:
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
367 * nio-file.cc:
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
368 * tar.cc: because of the redefinition of stat to _stat, the
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
369 inclusion of win32 headers has to be delayed.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
370
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
371 * win32.h: added some declarations, such as CDECL if
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
372 not defined, #define for functions that are not standard in msvc
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
373 libc (strdup, stat ...)
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
374
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
375 * concat.h, concat.cc (concat): must be declared CDECL
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
376
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
377 * desktop.cc: <io.h> is needed.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
378
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
379 * dialog.h (NEXT): cast needed, the first parameter of EndDialog() must
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
380 be a HWND.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
381
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
382 * diskfull.cc: syntax when declaring GDFS.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
383
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
384 * ini.cc: Various `extern "C"' declarations: yylineno, yyerror()
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
385 and fprintf(). Various CDECL declarations: yyerror(), fprintf().
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
386
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
387 * inilex.l: <stdlib.h> required.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
388
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
389 * iniparse.y: use strdup(), require "win32.h" and <string.h>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
390
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
391 * install.cc (dialog): syntax when declaring. CreateDialog()
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
392 returns a HWND.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
393
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
394 * postinstall.cc: <io.h> and <stdio.h> are needed.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
395
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
396 * regedit.cc (find_cygwin_mount): WIN32_NATIVE does not know
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
397 anything about Cygwin stuff.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
398
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
399 * setup.mak: new makefile for WIN32_NATIVE.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
400
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
401 * splash.cc (load_dialog): GetDlgItem() returns a HWND.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
402
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
403 * tar.cc: msvc knows about __int64, but not `long long'.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
404
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
405 * win32.h: <winreg.h> is missing for regedit.cc. Also, I ended up
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
406 in including <windows.h> because the files listed there are not
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
407 enough for <wininet.h>.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
408
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
409 * desktop.cc:
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
410 * fromcwd.cc:
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
411 * install.cc:
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
412 * postinstall.cc: <unistd.h> does not exist for WIN32_NATIVE
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
413
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
414 * choose.cc (do_choose):
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
415 * ini.cc (do_ini):
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
416 * nio-ftp.cc (ftp_line): the construct (x ?: y) is not standard.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
417
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
418 2000-12-24 Andy Piper <andy@xemacs.org>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
419
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
420 * choose.cc (read_installed_db): grok package versions correctly.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
421
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
422 * Makefile.in.in: add MINGW define.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
423
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
424 2000-12-18 Andy Piper <andy@xemacs.org>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
425
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
426 * res.rc: better look and feel.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
427
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
428 2000-12-18 Andy Piper <andy@xemacs.org>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
429
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
430 * desktop.cc (do_desktop_setup): more app path fiddling.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
431
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
432 2000-12-13 Andy Piper <andy@xemacs.org>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
433
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
434 * root.cc (dialog_cmd): create the root in the registry if we are successful.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
435
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
436 * desktop.cc (find_xemacs_exe_path): new function. Split out from
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
437 find_xemacs_exe ().
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
438 (find_xemacs_exe_name): ditto.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
439 (do_desktop_setup): setup app paths if we are installing xemacs
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
440 itself.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
441 (do_desktop): use new functions.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
442
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
443 * regedit.cc (create_xemacs_root): fix key name.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
444 (find_xemacs_root): set isnative whatever the key value.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
445 (set_app_path): new function. Set path for an app.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
446
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
447 2000-12-12 Andy Piper <andy@xemacs.org>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
448
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
449 * package-net.el (package-net-convert-index-to-ini): use sensible defaults.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
450
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
451 2000-12-12 Andy Piper <andy@xemacs.org>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
452
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
453 * reginfo.h: new macros.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
454
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
455 * iniparse.y: define xemacs_package.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
456
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
457 * ini.h: declare xemacs_package.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
458
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
459 * fromcwd.cc (found_file): guess core type from name.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
460
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
461 * concat.cc: kill warnings.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
462 * net.cc: ditto.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
463
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
464 * choose.cc (do_choose): pick up core package type chosen.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
465
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
466 * Makefile.in.in: make sure we can pick up a mingw zlib.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
467
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
468 * desktop.cc: fix desktop icon creation.
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
469
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
470 2000-11-12 Andy Piper <andy@xemacs.org>
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
471
3078fd1074e8 Import from CVS: tag r21-2-39
cvs
parents:
diff changeset
472 * all: port from cygwin setup.
657
ce0b3f2eff35 [xemacs-hg @ 2001-09-09 04:37:41 by andyp]
andyp
parents: 654
diff changeset
473
1307
3f994430e7b9 [xemacs-hg @ 2003-02-16 06:13:17 by youngs]
youngs
parents: 1187
diff changeset
474 %%% $Id: ChangeLog,v 1.24 2003/02/16 06:13:32 youngs Exp $
3f994430e7b9 [xemacs-hg @ 2003-02-16 06:13:17 by youngs]
youngs
parents: 1187
diff changeset
475 $Revision: 1.24 $
863
42375619fa45 [xemacs-hg @ 2002-06-04 06:03:59 by andyp]
andyp
parents: 853
diff changeset
476