Mercurial > hg > xemacs-beta
annotate modules/ChangeLog @ 4932:8b63e21b0436
fix compile issues with gcc 4
-------------------- ChangeLog entries follow: --------------------
ChangeLog addition:
2010-01-24 Ben Wing <ben@xemacs.org>
* aclocal.m4 (XE_SHLIB_STUFF):
Use -export-all-symbols instead of -export-dynamic on PE targets
(Cygwin and MinGW).
* configure.ac (XE_EXPAND_VARIABLE):
* configure.ac (TAB):
Create variable XEMACS_CC_GPP to check whether we're running g++.
Don't just check for an executable called `g++' -- it might be
called g++-4 or whatever. Instead, check for either named `g++*'
or claiming to be g++ when called with --version. Rewrite code do
use the variable.
Add -fno-strict-aliasing to optimization flags when GCC and
optimized, and in all cases with g++, since under these circumstances
strict aliasing is otherwise assumed, and XEmacs can't easily be
made to respect its restrictions.
* configure: Regenerate.
lib-src/ChangeLog addition:
2010-01-24 Ben Wing <ben@xemacs.org>
* fakemail.c (args_size):
* fakemail.c (parse_header):
* ootags.c (C_entries):
Fix warnings about possible use of uninitialized vars.
lwlib/ChangeLog addition:
2010-01-24 Ben Wing <ben@xemacs.org>
* xlwgauge.c (GaugeResize):
* xlwgauge.c (GaugeSize):
Fix warnings about possible use of uninitialized vars.
modules/ChangeLog addition:
2010-01-24 Ben Wing <ben@xemacs.org>
* postgresql/postgresql.c (CHECK_LIVE_CONNECTION):
* postgresql/postgresql.c (print_pgconn):
* postgresql/postgresql.c (Fpq_connectdb):
* postgresql/postgresql.c (Fpq_connect_start):
* postgresql/postgresql.c (Fpq_exec):
* postgresql/postgresql.c (Fpq_get_result):
Fix g++ 4.3 complaints about implicit conversions of string
literals (const char *) to char *.
src/ChangeLog addition:
2010-01-24 Ben Wing <ben@xemacs.org>
* chartab.c (decode_char_table_range):
* extents.c (extent_fragment_update):
* objects-msw.c (initialize_font_instance):
* process.c (Fgetenv):
* redisplay-output.c (get_next_display_block):
Fix warnings about possible use of uninitialized vars.
* compiler.h:
* compiler.h (REGISTER):
* event-stream.c (is_scrollbar_event):
* window.c (window_scrollbar_width):
* window.c (window_scrollbar_height):
* window.c (window_left_window_gutter_width):
* window.c (window_right_window_gutter_width):
Add USED_IF_SCROLLBARS. Use it to fix warnings about unused
vars when --with-scrollbars=no.
* config.h.in:
Change comment to explain better why DECLARE_INLINE_HEADER
is needed.
* dialog-msw.c:
* emacs.c (SHEBANG_EXE_PROGNAME_LENGTH):
* emacs.c (main_1):
* event-msw.c (struct mswin_message_debug):
* event-msw.c (debug_output_mswin_message):
* font-mgr.c:
* font-mgr.c (Ffc_config_filename):
* glyphs-msw.c (struct):
* glyphs-msw.c (bitmap_table):
* glyphs-x.c (update_widget_face):
* intl-win32.c (struct lang_to_string):
* intl-win32.c (lang_to_string_table):
* nas.c:
* objects-xlike-inc.c:
* objects-xlike-inc.c (xft_find_charset_font):
* syswindows.h:
* win32.c (mswindows_output_last_error):
Fix g++ 4.3 complaints about implicit conversions of string
literals (const char *) to char *.
* lisp.h:
G++ 4.3 needs #include <limits> to avoid errors about min/max.
* lisp.h (disabled_assert_with_message):
Use disabled_assert* whenever asserts are disabled. Rewrite
disabled_assert* to avoid complaints about unused vars by
pretending to use the vars but casting them to (void).
Remove code that defined assert() weirdly if DEBUG_XEMACS but
not USE_ASSERTIONS -- configure sets USE_ASSERTIONS automatically
when DEBUG_XEMACS, and if the user has forced it off, then
so be it.
* lisp.h (SYMBOL_KEYWORD):
Put some of the combined `extern Lisp_Object's back under
the file they are declared in. Cosmetic fix.
* number.h:
Remove `extern Lisp_Object' decls that duplicate lisp.h,
since they have different C vs. C++ linkage.
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Sun, 24 Jan 2010 22:04:58 -0600 |
parents | c356806cc933 |
children | 19a72041c5ed |
rev | line source |
---|---|
4932 | 1 2010-01-24 Ben Wing <ben@xemacs.org> |
2 | |
3 * postgresql/postgresql.c (CHECK_LIVE_CONNECTION): | |
4 * postgresql/postgresql.c (print_pgconn): | |
5 * postgresql/postgresql.c (Fpq_connectdb): | |
6 * postgresql/postgresql.c (Fpq_connect_start): | |
7 * postgresql/postgresql.c (Fpq_exec): | |
8 * postgresql/postgresql.c (Fpq_get_result): | |
9 Fix g++ 4.3 complaints about implicit conversions of string | |
10 literals (const char *) to char *. | |
11 | |
4879
c356806cc933
fix compile errors when --with-msw=no
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
12 2010-01-16 Ben Wing <ben@xemacs.org> |
c356806cc933
fix compile errors when --with-msw=no
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
13 |
c356806cc933
fix compile errors when --with-msw=no
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
14 * common/Makefile.common: |
c356806cc933
fix compile errors when --with-msw=no
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
15 * common/Makefile.common (.PHONY): |
c356806cc933
fix compile errors when --with-msw=no
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
16 Use WIN32_ANY not HAVE_MS_WINDOWS so we still link with the |
c356806cc933
fix compile errors when --with-msw=no
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
17 import library even when --with-msw=no. |
c356806cc933
fix compile errors when --with-msw=no
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
18 |
4835
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4759
diff
changeset
|
19 2010-01-11 Ben Wing <ben@xemacs.org> |
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4759
diff
changeset
|
20 |
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4759
diff
changeset
|
21 * ldap/eldap.c (Fldap_search_basic): |
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4759
diff
changeset
|
22 Cast to Extbyte * to avoid C++ compile error. |
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4759
diff
changeset
|
23 |
4759
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4737
diff
changeset
|
24 2009-11-10 Jerry James <james@xemacs.org> |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4737
diff
changeset
|
25 |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4737
diff
changeset
|
26 * canna/canna_api.c (Fcanna_initialize): Drop support for the NEC EWS. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4737
diff
changeset
|
27 |
4737
dce479915b74
Clarify the GPL status of several sample module files. J. Kean Johnston
Jerry James <james@xemacs.org>
parents:
4710
diff
changeset
|
28 2009-11-09 Jerry James <james@xemacs.org> |
dce479915b74
Clarify the GPL status of several sample module files. J. Kean Johnston
Jerry James <james@xemacs.org>
parents:
4710
diff
changeset
|
29 |
dce479915b74
Clarify the GPL status of several sample module files. J. Kean Johnston
Jerry James <james@xemacs.org>
parents:
4710
diff
changeset
|
30 * sample/external/Makefile.in.in: Clarify GPL status. |
dce479915b74
Clarify the GPL status of several sample module files. J. Kean Johnston
Jerry James <james@xemacs.org>
parents:
4710
diff
changeset
|
31 * sample/external/configure.ac: Ditto. |
dce479915b74
Clarify the GPL status of several sample module files. J. Kean Johnston
Jerry James <james@xemacs.org>
parents:
4710
diff
changeset
|
32 * sample/external/sample.c: Ditto. |
dce479915b74
Clarify the GPL status of several sample module files. J. Kean Johnston
Jerry James <james@xemacs.org>
parents:
4710
diff
changeset
|
33 * sample/internal/sample.c: Ditto. |
dce479915b74
Clarify the GPL status of several sample module files. J. Kean Johnston
Jerry James <james@xemacs.org>
parents:
4710
diff
changeset
|
34 |
4710
3a87551bfeb5
Fixes for a number of minor warnings issued by gcc. See xemacs-patches message
Jerry James <james@xemacs.org>
parents:
4636
diff
changeset
|
35 2009-10-05 Jerry James <james@xemacs.org> |
3a87551bfeb5
Fixes for a number of minor warnings issued by gcc. See xemacs-patches message
Jerry James <james@xemacs.org>
parents:
4636
diff
changeset
|
36 |
3a87551bfeb5
Fixes for a number of minor warnings issued by gcc. See xemacs-patches message
Jerry James <james@xemacs.org>
parents:
4636
diff
changeset
|
37 * ldap/eldap.c (Fldap_search_basic): quiet gcc warnings due to |
3a87551bfeb5
Fixes for a number of minor warnings issued by gcc. See xemacs-patches message
Jerry James <james@xemacs.org>
parents:
4636
diff
changeset
|
38 NEW_LISP_STRING_TO_EXTERNAL modifying a variable while computing a |
3a87551bfeb5
Fixes for a number of minor warnings issued by gcc. See xemacs-patches message
Jerry James <james@xemacs.org>
parents:
4636
diff
changeset
|
39 result to be passed as a parameter. |
3a87551bfeb5
Fixes for a number of minor warnings issued by gcc. See xemacs-patches message
Jerry James <james@xemacs.org>
parents:
4636
diff
changeset
|
40 |
4636
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4420
diff
changeset
|
41 2009-05-18 Stephen J. Turnbull <stephen@xemacs.org> |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4420
diff
changeset
|
42 |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4420
diff
changeset
|
43 * XEmacs 21.5.29 "garbanzo" is released. |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4420
diff
changeset
|
44 |
4420
6ed8c4ccc17e
Update install-sh to version with a clear license.
Jerry James <james@xemacs.org>
parents:
4042
diff
changeset
|
45 2008-02-12 Jerry James <james@xemacs.org> |
6ed8c4ccc17e
Update install-sh to version with a clear license.
Jerry James <james@xemacs.org>
parents:
4042
diff
changeset
|
46 |
6ed8c4ccc17e
Update install-sh to version with a clear license.
Jerry James <james@xemacs.org>
parents:
4042
diff
changeset
|
47 * canna/install-sh: Update to latest FSF version. |
6ed8c4ccc17e
Update install-sh to version with a clear license.
Jerry James <james@xemacs.org>
parents:
4042
diff
changeset
|
48 * ldap/install-sh: Ditto. |
6ed8c4ccc17e
Update install-sh to version with a clear license.
Jerry James <james@xemacs.org>
parents:
4042
diff
changeset
|
49 * postgresql/install-sh: Ditto. |
6ed8c4ccc17e
Update install-sh to version with a clear license.
Jerry James <james@xemacs.org>
parents:
4042
diff
changeset
|
50 * sample/external/install-sh: Ditto. |
6ed8c4ccc17e
Update install-sh to version with a clear license.
Jerry James <james@xemacs.org>
parents:
4042
diff
changeset
|
51 * sample/internal/install-sh: Ditto. |
6ed8c4ccc17e
Update install-sh to version with a clear license.
Jerry James <james@xemacs.org>
parents:
4042
diff
changeset
|
52 |
4042 | 53 2007-06-23 Stephen J. Turnbull <stephen@xemacs.org> |
54 | |
55 * canna/canna_api.c (Fcanna_set_bunsetsu): | |
56 (Fcanna_initialize): | |
57 Suppress warnings about loss of precision on amd64. | |
58 | |
4027 | 59 2007-06-23 Stephen J. Turnbull <stephen@xemacs.org> |
60 | |
61 * ldap/eldap.h: Declare that we use deprecated API. | |
62 Thanks to Mats Lidell <matsl@xemacs.org> for the report & patch: | |
63 <871wgnqunm.fsf@spencer.lidell.homelinux.net>. | |
64 | |
3975 | 65 2007-05-21 Stephen J. Turnbull <stephen@xemacs.org> |
66 | |
67 * XEmacs 21.5.28 "fuki" is released. | |
68 | |
3830 | 69 2007-02-16 Stephen J. Turnbull <stephen@xemacs.org> |
70 | |
71 * canna/canna_api.c: Move CANNA_NEW_WCHAR_AWARE to config.h. | |
72 Clean up ancient cruft for IROHA (Canna v.1) support. | |
73 | |
3820 | 74 2007-02-08 Adrian Aichner <adrian@xemacs.org> |
75 | |
76 * postgresql/postgresql.c: Update Steve L. Baur's address on his | |
77 request. | |
78 * postgresql/postgresql.h: Ditto. | |
79 | |
3402 | 80 2006-05-16 Stephen J. Turnbull <stephen@xemacs.org> |
81 | |
82 * XEmacs 21.5.27 "fiddleheads" is released. | |
83 | |
3323 | 84 2006-03-31 Stephen J. Turnbull <stephen@xemacs.org> |
85 | |
86 * XEmacs 21.5.26 "endive" is released. | |
87 | |
3259 | 88 2006-02-26 Stephen J. Turnbull <stephen@xemacs.org> |
89 | |
90 * XEmacs 21.5.25 "eggplant" is released. | |
91 | |
3150 | 92 2005-12-18 Stephen J. Turnbull <stephen@xemacs.org> |
93 | |
94 * XEmacs 21.5.24 "dandelion" is released. | |
95 | |
3083 | 96 2005-11-22 Ben Wing <ben@xemacs.org> |
97 | |
98 * common/Makefile.common (mostlyclean): | |
99 Ignore errors from rm during clean. | |
100 | |
3071 | 101 2005-11-16 Stephen J. Turnbull <stephen@xemacs.org> |
102 | |
103 * canna/canna_api.c: Small fixes to Mule-ization patch. | |
104 | |
105 2005-11-01 Ben Wing <ben@xemacs.org> | |
106 | |
107 * canna/canna_api.c: Mule-ization. | |
108 | |
3062 | 109 2005-11-13 Ben Wing <ben@xemacs.org> |
110 | |
111 * common/Makefile.common: | |
112 * common/Makefile.common (.PHONY): | |
113 * common/Makefile.common (install): | |
114 Add targets distclean-noconfig, realclean-noconfig, extraclean-noconfig. | |
115 Do some refactoring for cleanliness. Put in some magic cookies in | |
116 comments so this file gets read as a make file by XEmacs. | |
117 | |
3043 | 118 2005-11-02 Marcus Crestani <crestani@xemacs.org> |
119 | |
120 * canna/.cvsignore: New. | |
121 | |
3031 | 122 2005-10-26 Stephen J. Turnbull <stephen@xemacs.org> |
123 | |
124 * XEmacs 21.5.23 "daikon" is released. | |
125 | |
3029 | 126 2005-10-22 Stephen J. Turnbull <stephen@xemacs.org> |
127 | |
128 Warning elimination: | |
129 | |
130 * ldap/eldap.c (Fldap_add): Remove declaration of `current', which | |
131 is now declared by EXTERNAL_LIST_LOOP_2. | |
132 (Fldap_modify): Remove redundant variable `gcpro2', | |
133 | |
3024 | 134 2005-10-25 Ben Wing <ben@xemacs.org> |
135 | |
136 * postgresql/postgresql.c (allocate_pgconn): | |
137 * postgresql/postgresql.c (allocate_pgresult): | |
138 * postgresql/postgresql.h (struct Lisp_PGconn): | |
139 * postgresql/postgresql.h (struct Lisp_PGresult): | |
140 MC-Alloc refactoring. | |
141 | |
142 2005-10-25 Ben Wing <ben@xemacs.org> | |
143 | |
144 * ldap/eldap.c (allocate_ldap): | |
145 * ldap/eldap.h (struct Lisp_LDAP): | |
146 MC-Alloc refactoring. | |
147 | |
3010 | 148 2005-10-21 Stephen J. Turnbull <stephen@xemacs.org> |
149 | |
150 UNDO: | |
151 * canna/canna-api.c: | |
152 * canna/Makefile.in.in (MODNAME,SRCS): | |
153 Rename module from canna_api to canna-api. | |
154 | |
3007 | 155 2005-10-21 Stephen J. Turnbull <stephen@xemacs.org> |
156 | |
157 * canna/configure: Create and CVS add. | |
158 | |
2973 | 159 2005-10-04 Stephen J. Turnbull <stephen@xemacs.org> |
160 | |
161 * canna/Makefile.in.in (MODVER): Bump to 0.5. | |
162 | |
163 * canna/canna-api.c: | |
164 * canna/Makefile.in.in (MODNAME,SRCS): | |
165 Rename module from canna_api to canna-api. | |
166 | |
167 2005-09-22 Stephen J. Turnbull <stephen@xemacs.org> | |
168 | |
169 * canna: New module. | |
170 | |
171 * canna/canna_api.c: Move from $srcdir/src/mule-canna.c. Add module | |
172 initialization function and some boilerplate. Change name to | |
173 canna_api to reflect changed role. | |
174 | |
175 * canna/configure.ac: | |
176 * canna/Makefile.in.in: | |
177 * canna/install-sh: | |
178 Standard module boilerplate, adapted to Canna. | |
179 | |
2931 | 180 2005-09-14 Stephen J. Turnbull <stephen@xemacs.org> |
181 | |
182 * XEmacs 21.5.22 "cucumber" is released. | |
183 | |
2812 | 184 2005-06-09 Craig Lanning <CraigL@sc.rr.com> |
185 | |
186 * ldap/.cvsignore: | |
187 * sample/external/.cvsignore: | |
188 * sample/internal/.cvsignore: | |
189 Added GNUmakefile, Makefile, and Makefile.in | |
190 | |
2791 | 191 2005-05-28 Stephen J. Turnbull <stephen@xemacs.org> |
192 | |
193 * XEmacs 21.5.21 "corn" is released. | |
194 | |
2720 | 195 2005-04-01 Marcus Crestani <crestani@xemacs.org> |
196 | |
197 The new allocator. | |
198 | |
199 Remove Lcrecords: | |
200 | |
201 * postgresql/postgresql.c (allocate_pgconn): Allocate with new | |
202 allocator. | |
203 * postgresql/postgresql.c (allocate_pgresult): Allocate PGresult | |
204 with new allocator. | |
205 * postgresql/postgresql.h (struct Lisp_PGconn): Add | |
206 lrecord_header. | |
207 * postgresql/postgresql.h (struct Lisp_PGresult): Add | |
208 lrecord_header. | |
209 * ldap/eldap.c (allocate_ldap): Allocate with new allocator. | |
210 * ldap/eldap.h (struct Lisp_LDAP): Add lrecord_header. | |
211 | |
2653 | 212 2005-03-11 Stephen J. Turnbull <stephen@xemacs.org> |
213 | |
214 * XEmacs 21.5.20 "cilantro" is released. | |
215 | |
2594 | 216 2005-02-18 Stephen J. Turnbull <stephen@xemacs.org> |
217 | |
218 * XEmacs 21.5.19 "chives" is released. | |
219 | |
2387 | 220 2004-11-13 Ben Wing <ben@xemacs.org> |
221 | |
222 * ldap/eldap.c (Fldap_modify): | |
223 Need braces around EXTERNAL_LIST_LOOP_2. | |
224 | |
2377 | 225 2004-01-28 Stephen J. Turnbull <stephen@xemacs.org> |
226 | |
227 * common/Makefile.common (CFLAGS): Use XE_CFLAGS. | |
228 | |
2367 | 229 2004-10-27 Ben Wing <ben@xemacs.org> |
230 | |
231 * ldap/eldap.c: | |
232 * ldap/eldap.c (Fldap_open): | |
233 * ldap/eldap.c (Fldap_search_basic): | |
234 * ldap/eldap.c (Fldap_add): | |
235 * ldap/eldap.c (Fldap_modify): | |
236 * ldap/eldap.c (Fldap_delete): | |
237 Mule-ize. | |
238 Use EXTERNAL_LIST_LOOP_2 instead of deleted EXTERNAL_LIST_LOOP. | |
239 | |
2346 | 240 2004-10-22 Stephen J. Turnbull <stephen@xemacs.org> |
241 | |
242 * XEmacs 21.5.18 "chestnut" is released. | |
243 | |
2286 | 244 2004-09-14 Jerry James <james@xemacs.org> |
245 | |
246 * postgresql/postgresql.c: | |
247 * ldap/eldap.c: | |
248 Mark unused parameters with the UNUSED macro. | |
249 | |
2272 | 250 2004-09-14 Jerry James <james@xemacs.org> |
251 | |
252 * ldap/eldap.c (Fldap_open): Change ldap_passwd to ldap_password | |
253 to eliminate a gcc shadow warning. | |
254 | |
2268 | 255 2004-09-13 Jerry James <james@xemacs.org> |
256 | |
257 * ldap/eldap.c (signal_ldap_error): Mark as noreturn. | |
258 | |
1964 | 259 2004-03-22 Stephen J. Turnbull <stephen@xemacs.org> |
260 | |
261 * XEmacs 21.5.17 "chayote" is released. | |
262 | |
1716 | 263 2003-09-26 Steve Youngs <youngs@xemacs.org> |
264 | |
265 * XEmacs 21.5.16 "celeriac" is released. | |
266 | |
1706 | 267 2003-09-21 Jerry James <james@xemacs.org> |
268 | |
269 * postgresql/postgresql.c (unload_postgresql): Do not mangle the | |
270 unload function name when compiling with C++. | |
271 * ldap/eldap.c (unload_eldap): Ditto. | |
272 | |
1665 | 273 2003-09-03 Steve Youngs <youngs@xemacs.org> |
274 | |
275 * XEmacs 21.5.15 "celery" is released. | |
276 | |
1650 | 277 2003-08-28 Jerry James <james@xemacs.org> |
278 | |
279 * common/Makefile.common (LIBSTDCPP): New. | |
280 * common/Makefile.common (.c.o): Use it to avoid undefined symbol | |
281 errors when compiling modules with g++. | |
282 | |
1632 | 283 2003-08-18 Jerry James <james@xemacs.org> |
284 | |
285 * postgresql/postgresql.c: Include emodules.h when building a module. | |
286 * ldap/eldap.c: Ditto. | |
287 * common/Makefile.common: Make module makefiles processable by cpp. | |
288 * common/Makefile.common (IMPORT_LIB): New. | |
289 * common/Makefile.common: Use it. | |
290 | |
1522 | 291 2003-06-11 Jerry James <james@xemacs.org> |
292 | |
293 * common/Makefile.common: The last change re-broke FreeBSD module | |
294 building. Expand srcdir in SRC_SRCS with configure to fix it. | |
295 | |
1520 | 296 2003-06-10 Jerry James <james@xemacs.org> |
297 | |
298 * common/Makefile.common: Change GNUish := to =. | |
299 | |
1510 | 300 2003-06-01 Steve Youngs <youngs@xemacs.org> |
301 | |
302 * XEmacs 21.5.14 "cassava" is released. | |
303 | |
1490 | 304 2003-05-09 Andrew Begel <abegel@CS.Berkeley.EDU> |
305 | |
306 * common/Makefile.common: Move use of srcdir below its definition. | |
307 * sample/internal/Makefile.in.in: Ditto. | |
308 * sample/external/Makefile.in.in: Ditto. | |
309 | |
1489 | 310 2003-05-20 Jerry James <james@xemacs.org> |
311 | |
312 * sample/internal/Makefile.in.in: Expand $^ for makes that don't | |
313 understand it. | |
314 * sample/external/Makefile.in.in: Ditto. | |
315 * common/Makefile.common: Ditto. | |
316 | |
1473 | 317 2003-05-10 Steve Youngs <youngs@xemacs.org> |
318 | |
319 * XEmacs 21.5.13 "cauliflower" is released. | |
320 | |
1431 | 321 2003-04-24 Steve Youngs <youngs@xemacs.org> |
322 | |
323 * XEmacs 21.5.12 "carrot" is released. | |
324 | |
1307 | 325 2003-02-16 Steve Youngs <youngs@xemacs.org> |
326 | |
327 * XEmacs 21.5.11 "cabbage" is released. | |
328 | |
1270 | 329 2003-02-07 Jerry James <james@xemacs.org> |
330 | |
331 * ldap/eldap.c: Add unload_eldap prototype to fix warning. | |
332 | |
1252 | 333 2003-01-30 Robert Pluim <rpluim@bigfoot.com> |
334 | |
335 * Makefile.common: FreeBSD make compatability fixes: expand | |
336 SRC_SRCS immediately, use MODCC rather than CC to prevent | |
337 overriding by top-level makefile. | |
338 | |
1220 | 339 2003-01-15 Jerry James <james@eecs.ku.edu> |
340 | |
341 * ldap/eldap.c: Apply Ben's postgresql change to LDAP also. | |
342 | |
1204 | 343 2002-12-16 Ben Wing <ben@xemacs.org> |
344 | |
345 * postgresql/postgresql.c: | |
346 remove ifdef USE_KKCC. | |
347 | |
1187 | 348 2003-01-04 Steve Youngs <youngs@xemacs.org> |
349 | |
350 * XEmacs 21.5.10 "burdock" is released. | |
351 | |
1111 | 352 2002-11-17 Ben Wing <ben@xemacs.org> |
353 | |
354 * postgresql/Makefile.in.in: | |
355 * postgresql/Makefile.in.in (SRCS): | |
356 * postgresql/Makefile.in.in (SRC_SRCS): Removed. | |
357 * postgresql/Makefile.in.in (OBJS): Removed. | |
358 * postgresql/Makefile.in.in (SHELL): Removed. | |
359 * postgresql/Makefile.in.in (RM): Removed. | |
360 * postgresql/Makefile.in.in (PROGNAME): Removed. | |
361 * postgresql/Makefile.in.in (CFLAGS): Removed. | |
362 * postgresql/Makefile.in.in (INSTALL): Removed. | |
363 * postgresql/Makefile.in.in (version): Removed. | |
364 * postgresql/Makefile.in.in (prefix): Removed. | |
365 * postgresql/Makefile.in.in (exec_prefix): Removed. | |
366 * postgresql/Makefile.in.in (libdir): Removed. | |
367 * postgresql/Makefile.in.in (instvardir): Removed. | |
368 * postgresql/Makefile.in.in (configuration): Removed. | |
369 * postgresql/Makefile.in.in (moduledir): Removed. | |
370 * postgresql/Makefile.in.in (with_modules): Removed. | |
371 * postgresql/Makefile.in.in (srcdir): Removed. | |
372 * postgresql/Makefile.in.in (VPATH): Removed. | |
373 * postgresql/Makefile.in.in (CC): Removed. | |
374 * postgresql/Makefile.in.in (MODARCHDIR): Removed. | |
375 * postgresql/Makefile.in.in (MAKE_DOCFILE): Removed. | |
376 * postgresql/Makefile.in.in (MODCFLAGS): Removed. | |
377 * postgresql/Makefile.in.in (INSTALLPATH): Removed. | |
378 * postgresql/Makefile.in.in (INSTALL_PROGRAM): Removed. | |
379 * postgresql/Makefile.in.in (OBJECT_TO_BUILD): Removed. | |
380 * postgresql/Makefile.in.in (.PHONY): Removed. | |
381 * postgresql/Makefile.in.in (all): Removed. | |
382 * postgresql/Makefile.in.in (.c.o): Removed. | |
383 * postgresql/Makefile.in.in (clean): Removed. | |
384 * postgresql/Makefile.in.in (distclean): Removed. | |
385 * postgresql/Makefile.in.in (install): Removed. | |
386 Move common stuff into modues/common/Makefile.common. (Also | |
387 add extraclean target and a couple of other fixes in that file.) | |
388 | |
389 * postgresql/configure.ac: | |
390 Extract out common configure stuff into | |
391 modules/common/configure-{pre,post}.ac. | |
392 | |
393 * postgresql/postgresql.c (WARNING): | |
394 Fix warning. | |
395 | |
396 2002-11-17 Ben Wing <ben@xemacs.org> | |
397 | |
398 * ldap/Makefile.in.in: | |
399 * ldap/Makefile.in.in (SRCS): | |
400 * ldap/Makefile.in.in (SRC_SRCS): Removed. | |
401 * ldap/Makefile.in.in (OBJS): Removed. | |
402 * ldap/Makefile.in.in (SHELL): Removed. | |
403 * ldap/Makefile.in.in (RM): Removed. | |
404 * ldap/Makefile.in.in (PROGNAME): Removed. | |
405 * ldap/Makefile.in.in (CFLAGS): Removed. | |
406 * ldap/Makefile.in.in (INSTALL): Removed. | |
407 * ldap/Makefile.in.in (version): Removed. | |
408 * ldap/Makefile.in.in (prefix): Removed. | |
409 * ldap/Makefile.in.in (exec_prefix): Removed. | |
410 * ldap/Makefile.in.in (libdir): Removed. | |
411 * ldap/Makefile.in.in (instvardir): Removed. | |
412 * ldap/Makefile.in.in (configuration): Removed. | |
413 * ldap/Makefile.in.in (moduledir): Removed. | |
414 * ldap/Makefile.in.in (with_modules): Removed. | |
415 * ldap/Makefile.in.in (srcdir): Removed. | |
416 * ldap/Makefile.in.in (VPATH): Removed. | |
417 * ldap/Makefile.in.in (CC): Removed. | |
418 * ldap/Makefile.in.in (MODARCHDIR): Removed. | |
419 * ldap/Makefile.in.in (MAKE_DOCFILE): Removed. | |
420 * ldap/Makefile.in.in (MODCFLAGS): Removed. | |
421 * ldap/Makefile.in.in (INSTALLPATH): Removed. | |
422 * ldap/Makefile.in.in (INSTALL_PROGRAM): Removed. | |
423 * ldap/Makefile.in.in (OBJECT_TO_BUILD): Removed. | |
424 * ldap/Makefile.in.in (.PHONY): Removed. | |
425 * ldap/Makefile.in.in (all): Removed. | |
426 * ldap/Makefile.in.in (.c.o): Removed. | |
427 * ldap/Makefile.in.in (clean): Removed. | |
428 * ldap/Makefile.in.in (distclean): Removed. | |
429 * ldap/Makefile.in.in (install): Removed. | |
430 Move common stuff into modues/common/Makefile.common. (Also | |
431 add extraclean target and a couple of other fixes in that file.) | |
432 | |
433 * ldap/configure.ac: | |
434 * ldap/configure.ac (have_ldap): | |
435 Extract out common configure stuff into | |
436 modules/common/configure-{pre,post}.ac. | |
437 | |
438 2002-11-17 Ben Wing <ben@xemacs.org> | |
439 | |
440 * common/Makefile.common: | |
441 * common/Makefile.common (SHELL): | |
442 Common stuff is here. | |
443 | |
1011 | 444 2002-09-20 Steve Youngs <youngs@xemacs.org> |
445 | |
446 * postgresql/Makefile.in.in (LDFLAGS): Add @ld_switch_all@ to pick | |
447 up '--site-libraries'. | |
448 | |
449 * ldap/Makefile.in.in (LDFLAGS): Ditto. | |
450 | |
996 | 451 2002-08-08 Jerry James <james@xemacs.org> |
452 | |
453 * auto-autoloads.el: New file containing module autoloads. | |
454 * auto-autoloads.elc: Ditto. | |
455 * README: Update to reflect the new architecture. | |
456 * ldap/configure.ac: New file. | |
457 * ldap/configure: Ditto. | |
458 * ldap/eldap.h: Copy the version from src. | |
459 * ldap/eldap.c: Ditto. Add autoloads. | |
460 * ldap/eldap.c (unload_eldap): New function to unstaticpro symbols | |
461 defined in this file. | |
462 * ldap/install-sh: New script for independent module building. | |
463 * ldap/Makefile: Remove in favor of autoconf solution. | |
464 * ldap/Makefile.in.in: New file containing the autoconf solution. | |
465 * postgresql: New directory. | |
466 * postgresql/.cvsignore: New file. | |
467 * postgresql/configure.ac: Ditto. | |
468 * postgresql/configure: Ditto. | |
469 * postgresql/install-sh: New script for independent module | |
470 building. | |
471 * postgresql/Makefile.in.in: New file. | |
472 * postgresql/postgresql.h: Copy the version from src. | |
473 * postgresql/postgresql.c: Ditto. Add autoloads. | |
474 * sample/Makefile: Move to internal and external subdirectories. | |
475 * sample/sample.c: Ditto. | |
476 * sample/external: New directory containing sample external | |
477 modules. | |
478 * sample/external/.cvsignore: New file. | |
479 * sample/external/configure.ac: Ditto. | |
480 * sample/external/install-sh: Ditto. | |
481 * sample/external/Makefile.in.in: New. | |
482 * sample/external/sample.c: Move from next higher directory. | |
483 * sample/internal: New directory containing sample internal | |
484 modules. | |
485 * sample/internal/.cvsignore: New file. | |
486 * sample/internal/configure.ac: Ditto. | |
487 * sample/internal/install-sh: Ditto. | |
488 * sample/internal/Makefile.in.in: New. | |
489 * sample/internal/sample.c: Move from next higher directory. | |
490 | |
981 | 491 2002-08-30 Steve Youngs <youngs@xemacs.org> |
492 | |
493 * XEmacs 21.5.9 "brussels sprouts" is released. | |
494 | |
933 | 495 2002-07-27 Steve Youngs <youngs@xemacs.org> |
496 | |
497 * XEmacs 21.5.8 "broccoli" is released. | |
498 | |
894 | 499 2002-07-02 Stephen J. Turnbull <stephen@xemacs.org> |
500 | |
501 * XEmacs 21.5.7 "broccoflower" is released. | |
502 | |
804 | 503 2002-04-05 Stephen J. Turnbull <stephen@xemacs.org> |
504 | |
505 * XEmacs 21.5.6 "bok choi" is released. | |
506 | |
774 | 507 2002-03-12 Ben Wing <ben@xemacs.org> |
508 | |
3322 | 509 * The Great Mule Merge of March 2002: |
510 see node by that name in the Internals Manual. | |
774 | 511 |
768 | 512 2002-03-05 Stephen J. Turnbull <stephen@xemacs.org> |
513 | |
514 * XEmacs 21.5.5 "beets" is released. | |
515 | |
754 | 516 2002-02-14 Sean MacLennan <seanm@seanm.ca> |
517 | |
518 * base64/base64.c - update Bufpos => Charbpos | |
519 | |
520 |