Mercurial > hg > xemacs-beta
annotate modules/ChangeLog @ 5043:d0c14ea98592
various frame-geometry fixes
-------------------- ChangeLog entries follow: --------------------
src/ChangeLog addition:
2010-02-15 Ben Wing <ben@xemacs.org>
* EmacsFrame.c:
* EmacsFrame.c (EmacsFrameResize):
* console-msw-impl.h:
* console-msw-impl.h (struct mswindows_frame):
* console-msw-impl.h (FRAME_MSWINDOWS_TARGET_RECT):
* device-tty.c:
* device-tty.c (tty_asynch_device_change):
* event-msw.c:
* event-msw.c (mswindows_wnd_proc):
* faces.c (Fface_list):
* faces.h:
* frame-gtk.c:
* frame-gtk.c (gtk_set_initial_frame_size):
* frame-gtk.c (gtk_set_frame_size):
* frame-msw.c:
* frame-msw.c (mswindows_init_frame_1):
* frame-msw.c (mswindows_set_frame_size):
* frame-msw.c (mswindows_size_frame_internal):
* frame-msw.c (msprinter_init_frame_3):
* frame.c:
* frame.c (enum):
* frame.c (Fmake_frame):
* frame.c (adjust_frame_size):
* frame.c (store_minibuf_frame_prop):
* frame.c (Fframe_property):
* frame.c (Fframe_properties):
* frame.c (Fframe_displayable_pixel_height):
* frame.c (Fframe_displayable_pixel_width):
* frame.c (internal_set_frame_size):
* frame.c (Fset_frame_height):
* frame.c (Fset_frame_pixel_height):
* frame.c (Fset_frame_displayable_pixel_height):
* frame.c (Fset_frame_width):
* frame.c (Fset_frame_pixel_width):
* frame.c (Fset_frame_displayable_pixel_width):
* frame.c (Fset_frame_size):
* frame.c (Fset_frame_pixel_size):
* frame.c (Fset_frame_displayable_pixel_size):
* frame.c (frame_conversion_internal_1):
* frame.c (get_frame_displayable_pixel_size):
* frame.c (change_frame_size_1):
* frame.c (change_frame_size):
* frame.c (generate_title_string):
* frame.h:
* gtk-xemacs.c:
* gtk-xemacs.c (gtk_xemacs_size_request):
* gtk-xemacs.c (gtk_xemacs_size_allocate):
* gtk-xemacs.c (gtk_xemacs_paint):
* gutter.c:
* gutter.c (update_gutter_geometry):
* redisplay.c (end_hold_frame_size_changes):
* redisplay.c (redisplay_frame):
* toolbar.c:
* toolbar.c (update_frame_toolbars_geometry):
* window.c:
* window.c (frame_pixsize_valid_p):
* window.c (check_frame_size):
Various fixes to frame geometry to make it a bit easier to understand
and fix some bugs.
1. IMPORTANT: Some renamings. Will need to be applied carefully to
the carbon repository, in the following order:
-- pixel_to_char_size -> pixel_to_frame_unit_size
-- char_to_pixel_size -> frame_unit_to_pixel_size
-- pixel_to_real_char_size -> pixel_to_char_size
-- char_to_real_pixel_size -> char_to_pixel_size
-- Reverse second and third arguments of change_frame_size() and
change_frame_size_1() to try to make functions consistent in
putting width before height.
-- Eliminate old round_size_to_char, because it didn't really
do anything differently from round_size_to_real_char()
-- round_size_to_real_char -> round_size_to_char; any places that
called the old round_size_to_char should just call the new one.
2. IMPORTANT FOR CARBON: The set_frame_size() method is now passed
sizes in "frame units", like all other frame-sizing functions,
rather than some hacked-up combination of char-cell units and
total pixel size. This only affects window systems that use
"pixelated geometry", and I'm not sure if Carbon is one of them.
MS Windows is pixelated, X and GTK are not. For pixelated-geometry
systems, the size in set_frame_size() is in displayable pixels
rather than total pixels and needs to be converted appropriately;
take a look at the changes made to mswindows_set_frame_size()
method if necessary.
3. Add a big long comment in frame.c describing how frame geometry
works.
4. Remove MS Windows-specific character height and width fields,
duplicative and unused.
5. frame-displayable-pixel-* and set-frame-displayable-pixel-*
didn't use to work on MS Windows, but they do now.
6. In general, clean up the handling of "pixelated geometry" so
that fewer functions have to worry about this. This is really
an abomination that should be removed entirely but that will
have to happen later. Fix some buggy code in
frame_conversion_internal() that happened to "work" because it
was countered by oppositely buggy code in change_frame_size().
7. Clean up some frame-size code in toolbar.c and use functions
already provided in frame.c instead of rolling its own.
8. Fix check_frame_size() in window.c, which formerly didn't take
pixelated geometry into account.
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Mon, 15 Feb 2010 22:14:11 -0600 |
parents | c0934cef10c6 |
children | a9c41067dd88 0ac12485616c |
rev | line source |
---|---|
4993
c0934cef10c6
convert some source files to utf-8
Ben Wing <ben@xemacs.org>
parents:
4981
diff
changeset
|
1 2010-02-06 Ben Wing <ben@xemacs.org> |
c0934cef10c6
convert some source files to utf-8
Ben Wing <ben@xemacs.org>
parents:
4981
diff
changeset
|
2 |
c0934cef10c6
convert some source files to utf-8
Ben Wing <ben@xemacs.org>
parents:
4981
diff
changeset
|
3 * canna/canna_api.c: |
c0934cef10c6
convert some source files to utf-8
Ben Wing <ben@xemacs.org>
parents:
4981
diff
changeset
|
4 * canna/canna_api.c (storeResults): |
c0934cef10c6
convert some source files to utf-8
Ben Wing <ben@xemacs.org>
parents:
4981
diff
changeset
|
5 * canna/canna_api.c (Fcanna_set_bunsetsu): |
c0934cef10c6
convert some source files to utf-8
Ben Wing <ben@xemacs.org>
parents:
4981
diff
changeset
|
6 * canna/canna_api.c (Fcanna_initialize): |
c0934cef10c6
convert some source files to utf-8
Ben Wing <ben@xemacs.org>
parents:
4981
diff
changeset
|
7 * canna/canna_api.c (Fcanna_store_yomi): |
c0934cef10c6
convert some source files to utf-8
Ben Wing <ben@xemacs.org>
parents:
4981
diff
changeset
|
8 * canna/canna_api.c (Fcanna_henkan_end): |
c0934cef10c6
convert some source files to utf-8
Ben Wing <ben@xemacs.org>
parents:
4981
diff
changeset
|
9 Convert file to utf-8. |
c0934cef10c6
convert some source files to utf-8
Ben Wing <ben@xemacs.org>
parents:
4981
diff
changeset
|
10 |
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
11 2010-02-05 Ben Wing <ben@xemacs.org> |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
12 |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
13 * postgresql/postgresql.c: |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
14 * postgresql/postgresql.c (CHECK_LIVE_CONNECTION): |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
15 * postgresql/postgresql.c (Fpq_connectdb): |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
16 * postgresql/postgresql.c (Fpq_connect_start): |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
17 * postgresql/postgresql.c (Fpq_lo_import): |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
18 * postgresql/postgresql.c (Fpq_lo_export): |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
19 * ldap/eldap.c (Fldap_open): |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
20 * ldap/eldap.c (Fldap_search_basic): |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
21 * ldap/eldap.c (Fldap_add): |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
22 * ldap/eldap.c (Fldap_modify): |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
23 * ldap/eldap.c (Fldap_delete): |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
24 * canna/canna_api.c (Fcanna_initialize): |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
25 * canna/canna_api.c (Fcanna_store_yomi): |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
26 * canna/canna_api.c (Fcanna_parse): |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
27 * canna/canna_api.c (Fcanna_henkan_begin): |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
28 EXTERNAL_TO_C_STRING returns its argument instead of storing it |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
29 in a parameter, and is renamed to EXTERNAL_TO_ITEXT. Similar |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
30 things happen to related macros. See entry in src/ChangeLog. |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
31 |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
32 More Mule-izing of postgresql.c. Extract out common code |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
33 between `pq-connectdb' and `pq-connect-start'. Fix places |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
34 that signal an error string using a formatted string to instead |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
35 follow the standard and have a fixed reason followed by the |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
36 particular error message stored as one of the frobs. |
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4953
diff
changeset
|
37 |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
38 2010-01-27 Ben Wing <ben@xemacs.org> |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
39 |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
40 * postgresql/postgresql.c (print_pgconn): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
41 * postgresql/postgresql.c (print_pgresult): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
42 * postgresql/postgresql.c (Fpq_conn_defaults): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
43 * postgresql/postgresql.c (Fpq_pgconn): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
44 * postgresql/postgresql.c (Fpq_res_status): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
45 * postgresql/postgresql.c (Fpq_result_error_message): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
46 * postgresql/postgresql.c (Fpq_fname): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
47 * postgresql/postgresql.c (Fpq_get_value): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
48 * postgresql/postgresql.c (Fpq_cmd_status): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
49 * postgresql/postgresql.c (Fpq_cmd_tuples): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
50 * postgresql/postgresql.c (Fpq_notifies): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
51 * postgresql/postgresql.c (Fpq_get_line): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
52 * postgresql/postgresql.c (Fpq_get_line_async): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
53 * postgresql/postgresql.c (FROB): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
54 * postgresql/postgresql.c (init_postgresql_from_environment): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
55 * ldap/eldap.c: |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
56 * ldap/eldap.c (Fldap_open): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
57 * ldap/eldap.c (Fldap_search_basic): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
58 * canna/canna_api.c: |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
59 * canna/canna_api.c (make_euc_string): |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
60 Rename: |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
61 |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
62 write_c_string -> write_cistring |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
63 build_intstring -> build_istring |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
64 build_string -> build_cistring |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
65 build_ext_string -> build_extstring |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
66 make_ext_string -> make_extstring |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
67 buffer_insert_c_string -> buffer_insert_ascstring |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
68 intern_int -> intern_istring |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
69 |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
70 See comment in src/ChangeLog about this. |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
71 |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
72 2010-01-26 Ben Wing <ben@xemacs.org> |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
73 |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
74 * postgresql/postgresql.c: |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
75 * postgresql/postgresql.c (CHECK_LIVE_CONNECTION): |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
76 * postgresql/postgresql.c (print_pgresult): |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
77 * postgresql/postgresql.c (Fpq_conn_defaults): |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
78 * postgresql/postgresql.c (Fpq_connectdb): |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
79 * postgresql/postgresql.c (Fpq_connect_start): |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
80 * postgresql/postgresql.c (Fpq_result_status): |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
81 * postgresql/postgresql.c (Fpq_res_status): |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
82 Mule-ize large parts of it. |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
83 |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
84 2010-01-26 Ben Wing <ben@xemacs.org> |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
85 |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
86 * ldap/eldap.c (print_ldap): |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
87 * ldap/eldap.c (allocate_ldap): |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
88 Use write_ascstring(). |
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
89 |
4932 | 90 2010-01-24 Ben Wing <ben@xemacs.org> |
91 | |
92 * postgresql/postgresql.c (CHECK_LIVE_CONNECTION): | |
93 * postgresql/postgresql.c (print_pgconn): | |
94 * postgresql/postgresql.c (Fpq_connectdb): | |
95 * postgresql/postgresql.c (Fpq_connect_start): | |
96 * postgresql/postgresql.c (Fpq_exec): | |
97 * postgresql/postgresql.c (Fpq_get_result): | |
98 Fix g++ 4.3 complaints about implicit conversions of string | |
99 literals (const char *) to char *. | |
100 | |
4879
c356806cc933
fix compile errors when --with-msw=no
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
101 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
|
102 |
c356806cc933
fix compile errors when --with-msw=no
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
103 * common/Makefile.common: |
c356806cc933
fix compile errors when --with-msw=no
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
104 * common/Makefile.common (.PHONY): |
c356806cc933
fix compile errors when --with-msw=no
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
105 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
|
106 import library even when --with-msw=no. |
c356806cc933
fix compile errors when --with-msw=no
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
107 |
4835
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4759
diff
changeset
|
108 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
|
109 |
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4759
diff
changeset
|
110 * ldap/eldap.c (Fldap_search_basic): |
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4759
diff
changeset
|
111 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
|
112 |
4759
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4737
diff
changeset
|
113 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
|
114 |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4737
diff
changeset
|
115 * 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
|
116 |
4737
dce479915b74
Clarify the GPL status of several sample module files. J. Kean Johnston
Jerry James <james@xemacs.org>
parents:
4710
diff
changeset
|
117 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
|
118 |
dce479915b74
Clarify the GPL status of several sample module files. J. Kean Johnston
Jerry James <james@xemacs.org>
parents:
4710
diff
changeset
|
119 * 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
|
120 * 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
|
121 * 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
|
122 * 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
|
123 |
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
|
124 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
|
125 |
3a87551bfeb5
Fixes for a number of minor warnings issued by gcc. See xemacs-patches message
Jerry James <james@xemacs.org>
parents:
4636
diff
changeset
|
126 * 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
|
127 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
|
128 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
|
129 |
4636
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4420
diff
changeset
|
130 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
|
131 |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4420
diff
changeset
|
132 * 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
|
133 |
4420
6ed8c4ccc17e
Update install-sh to version with a clear license.
Jerry James <james@xemacs.org>
parents:
4042
diff
changeset
|
134 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
|
135 |
6ed8c4ccc17e
Update install-sh to version with a clear license.
Jerry James <james@xemacs.org>
parents:
4042
diff
changeset
|
136 * 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
|
137 * ldap/install-sh: Ditto. |
6ed8c4ccc17e
Update install-sh to version with a clear license.
Jerry James <james@xemacs.org>
parents:
4042
diff
changeset
|
138 * postgresql/install-sh: Ditto. |
6ed8c4ccc17e
Update install-sh to version with a clear license.
Jerry James <james@xemacs.org>
parents:
4042
diff
changeset
|
139 * sample/external/install-sh: Ditto. |
6ed8c4ccc17e
Update install-sh to version with a clear license.
Jerry James <james@xemacs.org>
parents:
4042
diff
changeset
|
140 * sample/internal/install-sh: Ditto. |
6ed8c4ccc17e
Update install-sh to version with a clear license.
Jerry James <james@xemacs.org>
parents:
4042
diff
changeset
|
141 |
4042 | 142 2007-06-23 Stephen J. Turnbull <stephen@xemacs.org> |
143 | |
144 * canna/canna_api.c (Fcanna_set_bunsetsu): | |
145 (Fcanna_initialize): | |
146 Suppress warnings about loss of precision on amd64. | |
147 | |
4027 | 148 2007-06-23 Stephen J. Turnbull <stephen@xemacs.org> |
149 | |
150 * ldap/eldap.h: Declare that we use deprecated API. | |
151 Thanks to Mats Lidell <matsl@xemacs.org> for the report & patch: | |
152 <871wgnqunm.fsf@spencer.lidell.homelinux.net>. | |
153 | |
3975 | 154 2007-05-21 Stephen J. Turnbull <stephen@xemacs.org> |
155 | |
156 * XEmacs 21.5.28 "fuki" is released. | |
157 | |
3830 | 158 2007-02-16 Stephen J. Turnbull <stephen@xemacs.org> |
159 | |
160 * canna/canna_api.c: Move CANNA_NEW_WCHAR_AWARE to config.h. | |
161 Clean up ancient cruft for IROHA (Canna v.1) support. | |
162 | |
3820 | 163 2007-02-08 Adrian Aichner <adrian@xemacs.org> |
164 | |
165 * postgresql/postgresql.c: Update Steve L. Baur's address on his | |
166 request. | |
167 * postgresql/postgresql.h: Ditto. | |
168 | |
3402 | 169 2006-05-16 Stephen J. Turnbull <stephen@xemacs.org> |
170 | |
171 * XEmacs 21.5.27 "fiddleheads" is released. | |
172 | |
3323 | 173 2006-03-31 Stephen J. Turnbull <stephen@xemacs.org> |
174 | |
175 * XEmacs 21.5.26 "endive" is released. | |
176 | |
3259 | 177 2006-02-26 Stephen J. Turnbull <stephen@xemacs.org> |
178 | |
179 * XEmacs 21.5.25 "eggplant" is released. | |
180 | |
3150 | 181 2005-12-18 Stephen J. Turnbull <stephen@xemacs.org> |
182 | |
183 * XEmacs 21.5.24 "dandelion" is released. | |
184 | |
3083 | 185 2005-11-22 Ben Wing <ben@xemacs.org> |
186 | |
187 * common/Makefile.common (mostlyclean): | |
188 Ignore errors from rm during clean. | |
189 | |
3071 | 190 2005-11-16 Stephen J. Turnbull <stephen@xemacs.org> |
191 | |
192 * canna/canna_api.c: Small fixes to Mule-ization patch. | |
193 | |
194 2005-11-01 Ben Wing <ben@xemacs.org> | |
195 | |
196 * canna/canna_api.c: Mule-ization. | |
197 | |
3062 | 198 2005-11-13 Ben Wing <ben@xemacs.org> |
199 | |
200 * common/Makefile.common: | |
201 * common/Makefile.common (.PHONY): | |
202 * common/Makefile.common (install): | |
203 Add targets distclean-noconfig, realclean-noconfig, extraclean-noconfig. | |
204 Do some refactoring for cleanliness. Put in some magic cookies in | |
205 comments so this file gets read as a make file by XEmacs. | |
206 | |
3043 | 207 2005-11-02 Marcus Crestani <crestani@xemacs.org> |
208 | |
209 * canna/.cvsignore: New. | |
210 | |
3031 | 211 2005-10-26 Stephen J. Turnbull <stephen@xemacs.org> |
212 | |
213 * XEmacs 21.5.23 "daikon" is released. | |
214 | |
3029 | 215 2005-10-22 Stephen J. Turnbull <stephen@xemacs.org> |
216 | |
217 Warning elimination: | |
218 | |
219 * ldap/eldap.c (Fldap_add): Remove declaration of `current', which | |
220 is now declared by EXTERNAL_LIST_LOOP_2. | |
221 (Fldap_modify): Remove redundant variable `gcpro2', | |
222 | |
3024 | 223 2005-10-25 Ben Wing <ben@xemacs.org> |
224 | |
225 * postgresql/postgresql.c (allocate_pgconn): | |
226 * postgresql/postgresql.c (allocate_pgresult): | |
227 * postgresql/postgresql.h (struct Lisp_PGconn): | |
228 * postgresql/postgresql.h (struct Lisp_PGresult): | |
229 MC-Alloc refactoring. | |
230 | |
231 2005-10-25 Ben Wing <ben@xemacs.org> | |
232 | |
233 * ldap/eldap.c (allocate_ldap): | |
234 * ldap/eldap.h (struct Lisp_LDAP): | |
235 MC-Alloc refactoring. | |
236 | |
3010 | 237 2005-10-21 Stephen J. Turnbull <stephen@xemacs.org> |
238 | |
239 UNDO: | |
240 * canna/canna-api.c: | |
241 * canna/Makefile.in.in (MODNAME,SRCS): | |
242 Rename module from canna_api to canna-api. | |
243 | |
3007 | 244 2005-10-21 Stephen J. Turnbull <stephen@xemacs.org> |
245 | |
246 * canna/configure: Create and CVS add. | |
247 | |
2973 | 248 2005-10-04 Stephen J. Turnbull <stephen@xemacs.org> |
249 | |
250 * canna/Makefile.in.in (MODVER): Bump to 0.5. | |
251 | |
252 * canna/canna-api.c: | |
253 * canna/Makefile.in.in (MODNAME,SRCS): | |
254 Rename module from canna_api to canna-api. | |
255 | |
256 2005-09-22 Stephen J. Turnbull <stephen@xemacs.org> | |
257 | |
258 * canna: New module. | |
259 | |
260 * canna/canna_api.c: Move from $srcdir/src/mule-canna.c. Add module | |
261 initialization function and some boilerplate. Change name to | |
262 canna_api to reflect changed role. | |
263 | |
264 * canna/configure.ac: | |
265 * canna/Makefile.in.in: | |
266 * canna/install-sh: | |
267 Standard module boilerplate, adapted to Canna. | |
268 | |
2931 | 269 2005-09-14 Stephen J. Turnbull <stephen@xemacs.org> |
270 | |
271 * XEmacs 21.5.22 "cucumber" is released. | |
272 | |
2812 | 273 2005-06-09 Craig Lanning <CraigL@sc.rr.com> |
274 | |
275 * ldap/.cvsignore: | |
276 * sample/external/.cvsignore: | |
277 * sample/internal/.cvsignore: | |
278 Added GNUmakefile, Makefile, and Makefile.in | |
279 | |
2791 | 280 2005-05-28 Stephen J. Turnbull <stephen@xemacs.org> |
281 | |
282 * XEmacs 21.5.21 "corn" is released. | |
283 | |
2720 | 284 2005-04-01 Marcus Crestani <crestani@xemacs.org> |
285 | |
286 The new allocator. | |
287 | |
288 Remove Lcrecords: | |
289 | |
290 * postgresql/postgresql.c (allocate_pgconn): Allocate with new | |
291 allocator. | |
292 * postgresql/postgresql.c (allocate_pgresult): Allocate PGresult | |
293 with new allocator. | |
294 * postgresql/postgresql.h (struct Lisp_PGconn): Add | |
295 lrecord_header. | |
296 * postgresql/postgresql.h (struct Lisp_PGresult): Add | |
297 lrecord_header. | |
298 * ldap/eldap.c (allocate_ldap): Allocate with new allocator. | |
299 * ldap/eldap.h (struct Lisp_LDAP): Add lrecord_header. | |
300 | |
2653 | 301 2005-03-11 Stephen J. Turnbull <stephen@xemacs.org> |
302 | |
303 * XEmacs 21.5.20 "cilantro" is released. | |
304 | |
2594 | 305 2005-02-18 Stephen J. Turnbull <stephen@xemacs.org> |
306 | |
307 * XEmacs 21.5.19 "chives" is released. | |
308 | |
2387 | 309 2004-11-13 Ben Wing <ben@xemacs.org> |
310 | |
311 * ldap/eldap.c (Fldap_modify): | |
312 Need braces around EXTERNAL_LIST_LOOP_2. | |
313 | |
2377 | 314 2004-01-28 Stephen J. Turnbull <stephen@xemacs.org> |
315 | |
316 * common/Makefile.common (CFLAGS): Use XE_CFLAGS. | |
317 | |
2367 | 318 2004-10-27 Ben Wing <ben@xemacs.org> |
319 | |
320 * ldap/eldap.c: | |
321 * ldap/eldap.c (Fldap_open): | |
322 * ldap/eldap.c (Fldap_search_basic): | |
323 * ldap/eldap.c (Fldap_add): | |
324 * ldap/eldap.c (Fldap_modify): | |
325 * ldap/eldap.c (Fldap_delete): | |
326 Mule-ize. | |
327 Use EXTERNAL_LIST_LOOP_2 instead of deleted EXTERNAL_LIST_LOOP. | |
328 | |
2346 | 329 2004-10-22 Stephen J. Turnbull <stephen@xemacs.org> |
330 | |
331 * XEmacs 21.5.18 "chestnut" is released. | |
332 | |
2286 | 333 2004-09-14 Jerry James <james@xemacs.org> |
334 | |
335 * postgresql/postgresql.c: | |
336 * ldap/eldap.c: | |
337 Mark unused parameters with the UNUSED macro. | |
338 | |
2272 | 339 2004-09-14 Jerry James <james@xemacs.org> |
340 | |
341 * ldap/eldap.c (Fldap_open): Change ldap_passwd to ldap_password | |
342 to eliminate a gcc shadow warning. | |
343 | |
2268 | 344 2004-09-13 Jerry James <james@xemacs.org> |
345 | |
346 * ldap/eldap.c (signal_ldap_error): Mark as noreturn. | |
347 | |
1964 | 348 2004-03-22 Stephen J. Turnbull <stephen@xemacs.org> |
349 | |
350 * XEmacs 21.5.17 "chayote" is released. | |
351 | |
1716 | 352 2003-09-26 Steve Youngs <youngs@xemacs.org> |
353 | |
354 * XEmacs 21.5.16 "celeriac" is released. | |
355 | |
1706 | 356 2003-09-21 Jerry James <james@xemacs.org> |
357 | |
358 * postgresql/postgresql.c (unload_postgresql): Do not mangle the | |
359 unload function name when compiling with C++. | |
360 * ldap/eldap.c (unload_eldap): Ditto. | |
361 | |
1665 | 362 2003-09-03 Steve Youngs <youngs@xemacs.org> |
363 | |
364 * XEmacs 21.5.15 "celery" is released. | |
365 | |
1650 | 366 2003-08-28 Jerry James <james@xemacs.org> |
367 | |
368 * common/Makefile.common (LIBSTDCPP): New. | |
369 * common/Makefile.common (.c.o): Use it to avoid undefined symbol | |
370 errors when compiling modules with g++. | |
371 | |
1632 | 372 2003-08-18 Jerry James <james@xemacs.org> |
373 | |
374 * postgresql/postgresql.c: Include emodules.h when building a module. | |
375 * ldap/eldap.c: Ditto. | |
376 * common/Makefile.common: Make module makefiles processable by cpp. | |
377 * common/Makefile.common (IMPORT_LIB): New. | |
378 * common/Makefile.common: Use it. | |
379 | |
1522 | 380 2003-06-11 Jerry James <james@xemacs.org> |
381 | |
382 * common/Makefile.common: The last change re-broke FreeBSD module | |
383 building. Expand srcdir in SRC_SRCS with configure to fix it. | |
384 | |
1520 | 385 2003-06-10 Jerry James <james@xemacs.org> |
386 | |
387 * common/Makefile.common: Change GNUish := to =. | |
388 | |
1510 | 389 2003-06-01 Steve Youngs <youngs@xemacs.org> |
390 | |
391 * XEmacs 21.5.14 "cassava" is released. | |
392 | |
1490 | 393 2003-05-09 Andrew Begel <abegel@CS.Berkeley.EDU> |
394 | |
395 * common/Makefile.common: Move use of srcdir below its definition. | |
396 * sample/internal/Makefile.in.in: Ditto. | |
397 * sample/external/Makefile.in.in: Ditto. | |
398 | |
1489 | 399 2003-05-20 Jerry James <james@xemacs.org> |
400 | |
401 * sample/internal/Makefile.in.in: Expand $^ for makes that don't | |
402 understand it. | |
403 * sample/external/Makefile.in.in: Ditto. | |
404 * common/Makefile.common: Ditto. | |
405 | |
1473 | 406 2003-05-10 Steve Youngs <youngs@xemacs.org> |
407 | |
408 * XEmacs 21.5.13 "cauliflower" is released. | |
409 | |
1431 | 410 2003-04-24 Steve Youngs <youngs@xemacs.org> |
411 | |
412 * XEmacs 21.5.12 "carrot" is released. | |
413 | |
1307 | 414 2003-02-16 Steve Youngs <youngs@xemacs.org> |
415 | |
416 * XEmacs 21.5.11 "cabbage" is released. | |
417 | |
1270 | 418 2003-02-07 Jerry James <james@xemacs.org> |
419 | |
420 * ldap/eldap.c: Add unload_eldap prototype to fix warning. | |
421 | |
1252 | 422 2003-01-30 Robert Pluim <rpluim@bigfoot.com> |
423 | |
424 * Makefile.common: FreeBSD make compatability fixes: expand | |
425 SRC_SRCS immediately, use MODCC rather than CC to prevent | |
426 overriding by top-level makefile. | |
427 | |
1220 | 428 2003-01-15 Jerry James <james@eecs.ku.edu> |
429 | |
430 * ldap/eldap.c: Apply Ben's postgresql change to LDAP also. | |
431 | |
1204 | 432 2002-12-16 Ben Wing <ben@xemacs.org> |
433 | |
434 * postgresql/postgresql.c: | |
435 remove ifdef USE_KKCC. | |
436 | |
1187 | 437 2003-01-04 Steve Youngs <youngs@xemacs.org> |
438 | |
439 * XEmacs 21.5.10 "burdock" is released. | |
440 | |
1111 | 441 2002-11-17 Ben Wing <ben@xemacs.org> |
442 | |
443 * postgresql/Makefile.in.in: | |
444 * postgresql/Makefile.in.in (SRCS): | |
445 * postgresql/Makefile.in.in (SRC_SRCS): Removed. | |
446 * postgresql/Makefile.in.in (OBJS): Removed. | |
447 * postgresql/Makefile.in.in (SHELL): Removed. | |
448 * postgresql/Makefile.in.in (RM): Removed. | |
449 * postgresql/Makefile.in.in (PROGNAME): Removed. | |
450 * postgresql/Makefile.in.in (CFLAGS): Removed. | |
451 * postgresql/Makefile.in.in (INSTALL): Removed. | |
452 * postgresql/Makefile.in.in (version): Removed. | |
453 * postgresql/Makefile.in.in (prefix): Removed. | |
454 * postgresql/Makefile.in.in (exec_prefix): Removed. | |
455 * postgresql/Makefile.in.in (libdir): Removed. | |
456 * postgresql/Makefile.in.in (instvardir): Removed. | |
457 * postgresql/Makefile.in.in (configuration): Removed. | |
458 * postgresql/Makefile.in.in (moduledir): Removed. | |
459 * postgresql/Makefile.in.in (with_modules): Removed. | |
460 * postgresql/Makefile.in.in (srcdir): Removed. | |
461 * postgresql/Makefile.in.in (VPATH): Removed. | |
462 * postgresql/Makefile.in.in (CC): Removed. | |
463 * postgresql/Makefile.in.in (MODARCHDIR): Removed. | |
464 * postgresql/Makefile.in.in (MAKE_DOCFILE): Removed. | |
465 * postgresql/Makefile.in.in (MODCFLAGS): Removed. | |
466 * postgresql/Makefile.in.in (INSTALLPATH): Removed. | |
467 * postgresql/Makefile.in.in (INSTALL_PROGRAM): Removed. | |
468 * postgresql/Makefile.in.in (OBJECT_TO_BUILD): Removed. | |
469 * postgresql/Makefile.in.in (.PHONY): Removed. | |
470 * postgresql/Makefile.in.in (all): Removed. | |
471 * postgresql/Makefile.in.in (.c.o): Removed. | |
472 * postgresql/Makefile.in.in (clean): Removed. | |
473 * postgresql/Makefile.in.in (distclean): Removed. | |
474 * postgresql/Makefile.in.in (install): Removed. | |
475 Move common stuff into modues/common/Makefile.common. (Also | |
476 add extraclean target and a couple of other fixes in that file.) | |
477 | |
478 * postgresql/configure.ac: | |
479 Extract out common configure stuff into | |
480 modules/common/configure-{pre,post}.ac. | |
481 | |
482 * postgresql/postgresql.c (WARNING): | |
483 Fix warning. | |
484 | |
485 2002-11-17 Ben Wing <ben@xemacs.org> | |
486 | |
487 * ldap/Makefile.in.in: | |
488 * ldap/Makefile.in.in (SRCS): | |
489 * ldap/Makefile.in.in (SRC_SRCS): Removed. | |
490 * ldap/Makefile.in.in (OBJS): Removed. | |
491 * ldap/Makefile.in.in (SHELL): Removed. | |
492 * ldap/Makefile.in.in (RM): Removed. | |
493 * ldap/Makefile.in.in (PROGNAME): Removed. | |
494 * ldap/Makefile.in.in (CFLAGS): Removed. | |
495 * ldap/Makefile.in.in (INSTALL): Removed. | |
496 * ldap/Makefile.in.in (version): Removed. | |
497 * ldap/Makefile.in.in (prefix): Removed. | |
498 * ldap/Makefile.in.in (exec_prefix): Removed. | |
499 * ldap/Makefile.in.in (libdir): Removed. | |
500 * ldap/Makefile.in.in (instvardir): Removed. | |
501 * ldap/Makefile.in.in (configuration): Removed. | |
502 * ldap/Makefile.in.in (moduledir): Removed. | |
503 * ldap/Makefile.in.in (with_modules): Removed. | |
504 * ldap/Makefile.in.in (srcdir): Removed. | |
505 * ldap/Makefile.in.in (VPATH): Removed. | |
506 * ldap/Makefile.in.in (CC): Removed. | |
507 * ldap/Makefile.in.in (MODARCHDIR): Removed. | |
508 * ldap/Makefile.in.in (MAKE_DOCFILE): Removed. | |
509 * ldap/Makefile.in.in (MODCFLAGS): Removed. | |
510 * ldap/Makefile.in.in (INSTALLPATH): Removed. | |
511 * ldap/Makefile.in.in (INSTALL_PROGRAM): Removed. | |
512 * ldap/Makefile.in.in (OBJECT_TO_BUILD): Removed. | |
513 * ldap/Makefile.in.in (.PHONY): Removed. | |
514 * ldap/Makefile.in.in (all): Removed. | |
515 * ldap/Makefile.in.in (.c.o): Removed. | |
516 * ldap/Makefile.in.in (clean): Removed. | |
517 * ldap/Makefile.in.in (distclean): Removed. | |
518 * ldap/Makefile.in.in (install): Removed. | |
519 Move common stuff into modues/common/Makefile.common. (Also | |
520 add extraclean target and a couple of other fixes in that file.) | |
521 | |
522 * ldap/configure.ac: | |
523 * ldap/configure.ac (have_ldap): | |
524 Extract out common configure stuff into | |
525 modules/common/configure-{pre,post}.ac. | |
526 | |
527 2002-11-17 Ben Wing <ben@xemacs.org> | |
528 | |
529 * common/Makefile.common: | |
530 * common/Makefile.common (SHELL): | |
531 Common stuff is here. | |
532 | |
1011 | 533 2002-09-20 Steve Youngs <youngs@xemacs.org> |
534 | |
535 * postgresql/Makefile.in.in (LDFLAGS): Add @ld_switch_all@ to pick | |
536 up '--site-libraries'. | |
537 | |
538 * ldap/Makefile.in.in (LDFLAGS): Ditto. | |
539 | |
996 | 540 2002-08-08 Jerry James <james@xemacs.org> |
541 | |
542 * auto-autoloads.el: New file containing module autoloads. | |
543 * auto-autoloads.elc: Ditto. | |
544 * README: Update to reflect the new architecture. | |
545 * ldap/configure.ac: New file. | |
546 * ldap/configure: Ditto. | |
547 * ldap/eldap.h: Copy the version from src. | |
548 * ldap/eldap.c: Ditto. Add autoloads. | |
549 * ldap/eldap.c (unload_eldap): New function to unstaticpro symbols | |
550 defined in this file. | |
551 * ldap/install-sh: New script for independent module building. | |
552 * ldap/Makefile: Remove in favor of autoconf solution. | |
553 * ldap/Makefile.in.in: New file containing the autoconf solution. | |
554 * postgresql: New directory. | |
555 * postgresql/.cvsignore: New file. | |
556 * postgresql/configure.ac: Ditto. | |
557 * postgresql/configure: Ditto. | |
558 * postgresql/install-sh: New script for independent module | |
559 building. | |
560 * postgresql/Makefile.in.in: New file. | |
561 * postgresql/postgresql.h: Copy the version from src. | |
562 * postgresql/postgresql.c: Ditto. Add autoloads. | |
563 * sample/Makefile: Move to internal and external subdirectories. | |
564 * sample/sample.c: Ditto. | |
565 * sample/external: New directory containing sample external | |
566 modules. | |
567 * sample/external/.cvsignore: New file. | |
568 * sample/external/configure.ac: Ditto. | |
569 * sample/external/install-sh: Ditto. | |
570 * sample/external/Makefile.in.in: New. | |
571 * sample/external/sample.c: Move from next higher directory. | |
572 * sample/internal: New directory containing sample internal | |
573 modules. | |
574 * sample/internal/.cvsignore: New file. | |
575 * sample/internal/configure.ac: Ditto. | |
576 * sample/internal/install-sh: Ditto. | |
577 * sample/internal/Makefile.in.in: New. | |
578 * sample/internal/sample.c: Move from next higher directory. | |
579 | |
981 | 580 2002-08-30 Steve Youngs <youngs@xemacs.org> |
581 | |
582 * XEmacs 21.5.9 "brussels sprouts" is released. | |
583 | |
933 | 584 2002-07-27 Steve Youngs <youngs@xemacs.org> |
585 | |
586 * XEmacs 21.5.8 "broccoli" is released. | |
587 | |
894 | 588 2002-07-02 Stephen J. Turnbull <stephen@xemacs.org> |
589 | |
590 * XEmacs 21.5.7 "broccoflower" is released. | |
591 | |
804 | 592 2002-04-05 Stephen J. Turnbull <stephen@xemacs.org> |
593 | |
594 * XEmacs 21.5.6 "bok choi" is released. | |
595 | |
774 | 596 2002-03-12 Ben Wing <ben@xemacs.org> |
597 | |
3322 | 598 * The Great Mule Merge of March 2002: |
599 see node by that name in the Internals Manual. | |
774 | 600 |
768 | 601 2002-03-05 Stephen J. Turnbull <stephen@xemacs.org> |
602 | |
603 * XEmacs 21.5.5 "beets" is released. | |
604 | |
754 | 605 2002-02-14 Sean MacLennan <seanm@seanm.ca> |
606 | |
607 * base64/base64.c - update Bufpos => Charbpos | |
608 | |
609 |