1 2003-01-15 Havoc Pennington <hp@redhat.com>
3 * test/Makefile.am: fix so that test source code ends up in the
4 distribution on make distcheck
6 2003-01-15 Havoc Pennington <hp@redhat.com>
12 2003-01-15 Havoc Pennington <hp@redhat.com>
14 * dbus/dbus-test.c (dbus_internal_symbol_do_not_use_run_tests):
15 fix build when --disable-tests
17 * Makefile.am (EXTRA_DIST): put HACKING in here
19 * HACKING: document procedure for making a tarball release.
21 2003-01-14 Anders Carlsson <andersca@codefactory.se>
23 * bus/connection.c: (connection_error_handler),
24 (bus_connection_setup):
26 Make sure that the DBusConnectionData struct is NULLed
27 out to prevent a segfault.
29 * dbus/dbus-errors.c: (dbus_result_to_string):
31 * dbus/dbus-message.c: (dbus_message_get_fields),
32 (dbus_message_get_fields_valist), (_dbus_message_test):
33 * dbus/dbus-message.h:
34 Make dbus_message_get_fields return a result code so we can
35 track invalid fields as well as oom.
37 2003-01-11 Havoc Pennington <hp@pobox.com>
39 * configure.in: change --enable-test/--enable-ansi action-if-given
40 to enable_foo=$enableval instead of enable_foo=yes
42 2003-01-08 Havoc Pennington <hp@pobox.com>
44 * dbus/dbus-string.c (_dbus_string_align_length): new function
46 * dbus/dbus-test-main.c: move main() for test app here
48 (dbus_internal_symbol_do_not_use_run_tests): we have to export a
49 symbol to run tests, because dbus-test isn't in the main
54 * dbus/dbus-message.c (dbus_message_write_header): add newlines
55 for people with narrow emacs ;-). Assert client_serial was filled
56 in. Assert message->name != NULL.
57 (dbus_message_append_fields): have "first_field_type" arg separate
58 from va list, needed for C++ binding that also uses varargs IIRC
59 and helps with type safety
60 (dbus_message_new): add @todo about using DBusString to store
61 service/name internally
62 (dbus_message_new): don't leak ->service and ->name on OOM later
64 (dbus_message_unref): free the service name
65 (dbus_message_get_fields): same change to varargs
67 (_dbus_message_loader_return_buffer): assert that the message data
68 is aligned (if not it's a bug in our code). Put in verbose griping
69 about why we set corrupted = TRUE.
70 (decode_header_data): add FIXME that char* is evil. Was going to
71 add FIXME about evil locale-specific string.h strncmp, but just
72 switched to wacky string-as-uint32 optimization. Move check for
73 "no room for field name" above get_const_data_len() to avoid
74 assertion failure in get_const_data_len if we have trailing 2
75 bytes or the like. Check for service and name fields being
76 provided twice. Don't leak service/name on error. Require field
77 names to be aligned to 4 bytes.
79 * dbus/dbus-marshal.c: move byte swap stuff to header
80 (_dbus_pack_int32): uscore-prefix
81 (_dbus_unpack_int32): uscore-prefix
82 (_dbus_unpack_uint32): export
83 (_dbus_demarshal_string): add @todo complaining about use of
85 (_dbus_marshal_get_field_end_pos): add @todo about bad error
86 handling allowing corrupt data to go unchecked
88 2003-01-08 Havoc Pennington <hp@redhat.com>
90 * dbus/dbus-transport-unix.c (unix_do_iteration): add read/write
91 to the select() as needed for authentication. (should be using
92 _dbus_poll() not select, but for another day)
94 * dbus/dbus.h: include dbus/dbus-protocol.h
96 2003-01-08 Anders Carlsson <andersca@codefactory.se>
98 * dbus/Makefile.am (dbusinclude_HEADERS): Install
101 2003-01-08 Anders Carlsson <andersca@codefactory.se>
103 * dbus/dbus-internals.c: (_dbus_type_to_string):
104 New function that returns a string describing a type.
106 * dbus/dbus-marshal.c: (_dbus_demarshal_byte_array):
107 * dbus/dbus-marshal.h:
108 * dbus/dbus-message.c: (dbus_message_get_fields_valist),
109 (dbus_message_iter_get_field_type), (dbus_message_iter_get_double),
110 (dbus_message_iter_get_byte_array):
111 * dbus/dbus-message.h:
112 Add new convenience functions for appending and getting message fields.
113 Also add demarshalling routines for byte arrays.
115 2003-01-07 Anders Carlsson <andersca@codefactory.se>
117 * dbus/dbus-connection-internal.h:
118 * dbus/dbus-connection.c: (_dbus_connection_new_for_transport),
119 (_dbus_connection_get_next_client_serial),
120 (dbus_connection_send_message):
121 * dbus/dbus-internals.h:
122 * dbus/dbus-marshal.c: (unpack_uint32), (dbus_unpack_int32),
123 (dbus_pack_int32), (_dbus_marshal_double), (_dbus_marshal_int32),
124 (_dbus_marshal_uint32), (_dbus_demarshal_double),
125 (_dbus_demarshal_int32), (_dbus_demarshal_uint32),
126 (_dbus_demarshal_string), (_dbus_marshal_get_field_end_pos),
127 (_dbus_verbose_bytes), (_dbus_marshal_test):
128 * dbus/dbus-marshal.h:
129 * dbus/dbus-message-internal.h:
130 * dbus/dbus-message.c: (_dbus_message_set_client_serial),
131 (dbus_message_write_header), (_dbus_message_lock),
132 (dbus_message_new), (dbus_message_ref), (dbus_message_unref),
133 (dbus_message_get_name), (dbus_message_append_int32),
134 (dbus_message_append_uint32), (dbus_message_append_double),
135 (dbus_message_append_string), (dbus_message_append_byte_array),
136 (dbus_message_get_fields_iter), (dbus_message_iter_ref),
137 (dbus_message_iter_unref), (dbus_message_iter_has_next),
138 (dbus_message_iter_next), (dbus_message_iter_get_field_type),
139 (dbus_message_iter_get_string), (dbus_message_iter_get_int32),
140 (dbus_message_iter_get_uint32), (dbus_message_iter_get_double),
141 (decode_header_data), (_dbus_message_loader_return_buffer),
142 (message_iter_test), (_dbus_message_test):
143 * dbus/dbus-message.h:
144 * dbus/dbus-protocol.h:
145 * dbus/dbus-test.c: (main):
147 * glib/test-dbus-glib.c: (message_handler), (main):
148 * test/echo-client.c: (main):
149 * test/watch.c: (check_messages):
150 Make messages sendable and receivable for real.
152 2003-01-07 Anders Carlsson <andersca@codefactory.se>
154 * dbus/dbus-marshal.c: (_dbus_marshal_double),
155 (_dbus_marshal_string), (_dbus_marshal_byte_array):
156 * dbus/dbus-message.c: (dbus_message_append_int32),
157 (dbus_message_append_uint32), (dbus_message_append_double),
158 (dbus_message_append_string), (dbus_message_append_byte_array):
159 Handle OOM restoration.
161 2003-01-07 Anders Carlsson <andersca@codefactory.se>
163 * dbus/dbus-marshal.c: (_dbus_marshal_string),
164 (_dbus_demarshal_string), (_dbus_marshal_test):
165 * dbus/dbus-marshal.h:
166 * dbus/dbus-message.c: (dbus_message_get_name),
167 Document these functions.
169 (dbus_message_append_int32), (dbus_message_append_uint32),
170 (dbus_message_append_double), (dbus_message_append_string),
171 (dbus_message_append_byte_array):
172 * dbus/dbus-message.h:
173 Add functions for adding message fields of different types.
175 * dbus/dbus-protocol.h:
176 Add the different types.
178 2003-01-05 Havoc Pennington <hp@pobox.com>
180 * bus/connection.c: implement routines for handling connections,
181 first thing is keeping a list of owned services on each connection
182 and setting up watches etc.
184 * bus/services.c: implement a mapping from service names to lists
187 * dbus/dbus-hash.c: add DBUS_HASH_POINTER
189 * dbus/dbus-threads.c (dbus_static_mutex_lock): add functions
190 to use static mutexes for global data
192 * dbus/dbus-connection.c (dbus_connection_set_data): add new
193 collection of functions to set/get application-specific data
194 on the DBusConnection.
196 2003-01-04 Havoc Pennington <hp@pobox.com>
198 * dbus/dbus-sysdeps.c (_dbus_sleep_milliseconds): new function
199 (_dbus_poll): new function
201 * dbus/dbus-internals.h (_DBUS_STRUCT_OFFSET): new macro
204 * bus/loop.c: initial code for the daemon main loop
206 2003-01-04 Havoc Pennington <hp@pobox.com>
208 * test/watch.c (error_handler): make it safe if the error handler
209 is called multiple times (if we s/error handler/disconnect
210 handler/ we should just guarantee it's called only once)
212 * dbus/dbus-transport.c (_dbus_transport_disconnect): call the
213 error handler on disconnect (it's quite possible we should
214 just change the error handler to a "disconnect handler," I'm
215 not sure we have any other meaningful errors)
217 * configure.in: check for getpwnam_r
219 * dbus/dbus-transport.c, dbus/dbus-transport-unix.c,
220 dbus/dbus-auth.c: add credentials support, add EXTERNAL auth
221 mechanism as in SASL spec, using socket credentials
223 * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): new function
224 (_dbus_send_credentials_unix_socket): new function
226 * dbus/dbus-sysdeps.c (_dbus_accept_unix_socket): rename just
228 (_dbus_write): only check errno if <0 returned
229 (_dbus_write_two): ditto
231 2003-01-02 Anders Carlsson <andersca@codefactory.se>
233 * dbus/dbus-marshal.c: (_dbus_marshal_utf8_string),
234 (_dbus_marshal_byte_array), (_dbus_demarshal_utf8_string),
235 (_dbus_marshal_test):
236 * dbus/dbus-marshal.h:
237 Add _dbus_marshal_byte_array and rename _dbus_marshal_string
238 to _dbus_marshal_utf8_string. Also fix some tests.
240 2002-12-28 Harri Porten <porten@kde.org>
242 * configure.in: added check for C++ compiler and a very cheesy
243 check for the Qt integration
245 * Makefile.am (SUBDIRS): compile qt subdir if support is enabled
247 * qt/Makefile.am: added
249 * qt/.cvsignore: added
251 * qt/dbus-qthread.cc, qt/dbus-qthread.cpp: renamed former to
252 latter, added #ifdef QT_THREAD_SUPPORT guard.
254 * dbus/Makefile.am: added missing headers for make dist
256 2002-12-28 Kristian Rietveld <kris@gtk.org>
258 * dbus/Makefile.am: fixup export-symbols-regex.
260 2002-12-27 Anders Carlsson <andersca@codefactory.se>
262 * acinclude.m4: Add this file and put the
263 PKG_CHECK_MODULE macro in it.
265 2002-12-27 Anders Carlsson <andersca@codefactory.se>
267 * dbus/dbus-marshal.c: (_dbus_marshal_string),
268 (_dbus_demarshal_double), (_dbus_demarshal_int32),
269 (_dbus_demarshal_uint32), (_dbus_demarshal_string),
270 (_dbus_marshal_test):
271 Make the demarshalling routines align the pos argument.
272 Add string marshalling tests and fix the obvious bugs
275 2002-12-26 Havoc Pennington <hp@pobox.com>
277 * dbus/dbus-auth.c: fixes fixes fixes
279 * dbus/dbus-transport-unix.c: wire up support for
280 encoding/decoding data on the wire
282 * dbus/dbus-auth.c (_dbus_auth_encode_data)
283 (_dbus_auth_decode_data): append to target string
284 instead of nuking it.
286 2002-12-26 Havoc Pennington <hp@pobox.com>
288 * dbus/dbus-marshal.h (DBUS_COMPILER_BYTE_ORDER): #ifdef
289 WORDS_BIGENDIAN then compiler byte order is DBUS_BIG_ENDIAN,
292 * dbus/dbus-marshal.c: Add macros to do int swapping in-place and
293 avoid swap_bytes() overhead (ignoring possible assembly stuff for
294 now). Main point is because I wanted unpack_uint32 to implement
296 (_dbus_verbose_bytes): new function
298 * dbus/dbus-string.c (_dbus_string_validate_ascii): new function
300 * dbus/dbus-message.c (_dbus_message_loader_get_is_corrupted): add
301 mechanism to handle a corrupt message stream
302 (_dbus_message_loader_new): fix preallocation to only prealloc,
305 * dbus/dbus-string.c (_dbus_string_skip_blank): fix this function
306 (_dbus_string_test): enhance tests for copy/move and fix the
309 * dbus/dbus-transport-unix.c: Hold references in more places to
310 avoid reentrancy problems
312 * dbus/dbus-transport.c: ditto
314 * dbus/dbus-connection.c (dbus_connection_dispatch_message): don't
315 leak reference count in no-message case
317 * test/watch.c (do_mainloop): handle adding/removing watches
318 during iteration over the watches. Also, ref the connection/server
319 stored on a watch, so we don't try to mangle a destroyed one.
321 * dbus/dbus-transport-unix.c (do_authentication): perform
324 * dbus/dbus-auth.c (get_state): add a state
325 AUTHENTICATED_WITH_UNUSED_BYTES and return it if required
326 (_dbus_auth_get_unused_bytes): append the unused bytes
327 to the passed in string, rather than prepend
329 * dbus/dbus-transport.c (_dbus_transport_init_base): create
330 the auth conversation DBusAuth
332 * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd)
333 (_dbus_transport_new_for_domain_socket): when creating a
334 transport, pass in whether it's a client-side or server-side
335 transport so we know which DBusAuth to create
337 2002-12-03 Havoc Pennington <hp@pobox.com>
339 * dbus/dbus-transport-unix.c (unix_finalize): finalize base
340 _after_ finalizing the derived members
341 (unix_connection_set): unref watch if we fail to add it
343 * dbus/dbus-connection.c (dbus_connection_unref): delete the
344 transport first, so that the connection owned by the
345 transport will be valid as the transport finalizes.
347 * dbus/dbus-transport-unix.c (unix_finalize): free the write_watch
348 if necessary, and remove watches from the connection.
350 * dbus/dbus-watch.c (_dbus_watch_list_free): improve a comment
352 2002-12-26 Anders Carlsson <andersca@codefactory.se>
354 * dbus/dbus-marshal.c: (_dbus_marshal_string),
355 (_dbus_demarshal_double), (_dbus_demarshal_int32),
356 (_dbus_demarshal_uint32), (_dbus_demarshal_string),
357 (_dbus_marshal_test):
358 * dbus/dbus-marshal.h:
359 Add string marshal functions and have the demarshal functions
360 return the new position.
362 2002-12-25 Havoc Pennington <hp@pobox.com>
364 * doc/dbus-sasl-profile.txt: docs on the authentication protocol,
365 it is a simple protocol that just maps directly to SASL.
367 * dbus/dbus-auth.h, dbus/dbus-auth.c: authentication protocol
368 initial implementation, not actually used yet.
370 * dbus/dbus-string.c (_dbus_string_find): new function
371 (_dbus_string_equal): new function
372 (_dbus_string_base64_encode): new function
373 (_dbus_string_base64_decode): new function
375 2002-12-25 Anders Carlsson <andersca@codefactory.se>
378 * dbus/dbus-marshal.c: (swap_bytes), (_dbus_marshal_double),
379 (_dbus_marshal_int32), (_dbus_marshal_uint32),
380 (_dbus_demarshal_double), (_dbus_demarshal_int32),
381 (_dbus_demarshal_uint32), (_dbus_marshal_test):
382 * dbus/dbus-marshal.h:
383 * dbus/dbus-protocol.h:
384 * dbus/dbus-test.c: (main):
386 Add un-optimized marshalling/demarshalling routines.
388 2002-12-25 Harri Porten <porten@kde.org>
390 * qt/dbus-qt.h: adjusted ctor and getter to KDE/Qt conventions
392 2002-12-24 Zack Rusin <zack@kde.org>
394 * qt/dbus-qthread.cc: adding - integrates QMutex into Dbus
395 * qt/dbus-qt.h: skeleton with two sample implemenatation of the
398 2002-12-24 Havoc Pennington <hp@pobox.com>
400 * glib/dbus-gthread.c: fix include
402 * glib/dbus-glib.h: rename DBusMessageHandler for now.
403 I think glib API needs to change, though, as you don't
404 want to use DBusMessageFunction, you want to use the
405 DBusMessageHandler object. Probably
406 dbus_connection_open_with_g_main_loop()
407 and dbus_connection_setup_g_main_loop() or something like that
408 (but think of better names...) that just create a connection
409 that has watch/timeout functions etc. already set up.
411 * dbus/dbus-connection.c
412 (dbus_connection_send_message_with_reply): new function just to
413 show how the message handler helps us deal with replies.
415 * dbus/dbus-list.c (_dbus_list_remove_last): new function
417 * dbus/dbus-string.c (_dbus_string_test): free a string that
420 * dbus/dbus-hash.c: use memory pools for the hash entries
421 (rebuild_table): be more paranoid about overflow, and
422 shrink table when we can
423 (_dbus_hash_test): reduce number of sprintfs and write
424 valid C89. Add tests for case where we grow and then
425 shrink the hash table.
427 * dbus/dbus-mempool.h, dbus/dbus-mempool.c: memory pools
429 * dbus/dbus-connection.c (dbus_connection_register_handler)
430 (dbus_connection_unregister_handler): new functions
432 * dbus/dbus-message.c (dbus_message_get_name): new
434 * dbus/dbus-list.c: fix docs typo
436 * dbus/dbus-message-handler.h, dbus/dbus-message-handler.c:
437 an object representing a handler for messages.
439 2002-12-16 Anders Carlsson <andersca@codefactory.se>
442 * glib/dbus-gthread.c: (dbus_gthread_init):
443 Don't use the gdbus prefix for public functions.
445 2002-12-16 Anders Carlsson <andersca@codefactory.se>
449 Add GLib checks and fixup .pc files
453 * glib/dbus-gmain.c: (gdbus_connection_prepare),
454 (gdbus_connection_check), (gdbus_connection_dispatch),
455 (gdbus_add_connection_watch), (gdbus_remove_connection_watch),
456 (dbus_connection_gsource_new):
457 * glib/dbus-gthread.c: (dbus_gmutex_new), (dbus_gmutex_free),
458 (dbus_gmutex_lock), (dbus_gmutex_unlock), (dbus_gthread_init):
459 * glib/test-dbus-glib.c: (message_handler), (main):
462 2002-12-15 Harri Porten <porten@kde.org>
464 * autogen.sh: check for libtoolize before attempting to use it
466 * dbus/dbus-transport-unix.c: include <sys/time.h> for timeval
469 * .cvsignore: ignore more stamp files
471 * dbus/dbus-watch.c (_dbus_watch_list_new): fixed doc error
473 * test/Makefile.am: added -I$(top_srcdir) to be able to compile
474 without make install.
476 2002-12-15 Havoc Pennington <hp@pobox.com>
478 * dbus/dbus-threads.c: add thread stubs that a higher library
479 layer can fill in. e.g. the GLib wrapper might fill them in with
480 GThread stuff. We still need to use this thread API to
481 thread-safe-ize the library.
483 2002-12-12 Havoc Pennington <hp@pobox.com>
485 * dbus/dbus-transport-unix.c, dbus/dbus-server-unix.c: use the
486 below new interfaces and include fewer system headers.
488 * dbus/dbus-sysdeps.c (_dbus_read): new function
489 (_dbus_write): new function
490 (_dbus_write_two): new function
491 (_dbus_connect_unix_socket): new function
492 (_dbus_listen_unix_socket): new function
494 * dbus/dbus-message-internal.h: change interfaces to use
497 2002-12-11 Havoc Pennington <hp@pobox.com>
499 * dbus/dbus-types.h: add dbus_unichar
501 * dbus/dbus-internals.c (_dbus_verbose): use _dbus_getenv
503 * dbus/dbus-connection.c (dbus_connection_send_message): return
506 * dbus/dbus-transport.c: include dbus-watch.h
508 * dbus/dbus-connection.c: include dbus-message-internal.h
510 * HACKING: add file with coding guidelines stuff.
512 * dbus/dbus-string.h, dbus/dbus-string.c: Encapsulate all string
513 handling here, for security purposes (as in vsftpd). Not actually
514 using this class yet.
516 * dbus/dbus-sysdeps.h, dbus/dbus-sysdeps.c: Encapsulate all
517 system/libc usage here, as in vsftpd, for ease of auditing (and
518 should also simplify portability). Haven't actually moved all the
519 system/libc usage into here yet.
521 2002-11-25 Havoc Pennington <hp@pobox.com>
523 * dbus/dbus-internals.c (_dbus_verbose): fix to not
524 always print the first verbose message.
526 2002-11-24 Havoc Pennington <hp@pobox.com>
528 * test/echo-client.c, test/echo-server.c: cheesy test
531 * configure.in (AC_CHECK_FUNCS): check for writev
533 * dbus/dbus-message.c (_dbus_message_get_network_data): new
536 * dbus/dbus-list.c (_dbus_list_foreach): new function
538 * dbus/dbus-internals.c (_dbus_verbose): new function
540 * dbus/dbus-server.c, dbus/dbus-server.h: public object
541 representing a server that listens for connections.
543 * dbus/.cvsignore: create
545 * dbus/dbus-errors.h, dbus/dbus-errors.c:
546 public API for reporting errors
548 * dbus/dbus-connection.h, dbus/dbus-connection.c:
549 public object representing a connection that
550 sends/receives messages. (Same object used for
551 both client and server.)
553 * dbus/dbus-transport.h, dbus/dbus-transport.c:
554 Basic abstraction for different kinds of stream
555 that we might read/write messages from.
557 2002-11-23 Havoc Pennington <hp@pobox.com>
559 * dbus/dbus-internals.h (_DBUS_INT_MAX): add _DBUS_INT_MIN
562 * dbus/dbus-test.c (main): add list test, and include
563 dbus-test.h as intended
565 * dbus/dbus-hash.c (_dbus_hash_table_remove_string)
566 (_dbus_hash_table_remove_int): return value indicates
567 whether the entry existed to remove
569 * dbus/dbus-list.c: add linked list utility class,
572 * dbus/dbus-hash.c: add TODO item about shrinking the hash bucket
575 2002-11-23 Havoc Pennington <hp@pobox.com>
577 * Doxyfile.in (INCLUDE_FILE_PATTERNS): expand DBUS_BEGIN_DECLS/
578 DBUS_END_DECLS to nothing, that should fix this once and for all
580 * Doxyfile.in (JAVADOC_AUTOBRIEF): set to YES
582 * dbus/dbus-message.c, dbus/dbus-hash.c:
583 add some missing @brief
585 2002-11-23 Havoc Pennington <hp@pobox.com>
587 * dbus/dbus-message.h: put semicolons after DEBUG_BEGIN_DECLS
588 to avoid confusing Doxygen
590 * dbus/dbus-hash.c: @} not }@
592 * dbus/dbus-message.c (struct DBusMessage): split out
595 2002-11-23 Havoc Pennington <hp@pobox.com>
597 * configure.in: pile on more warning flags if using gcc
599 * Doxyfile.in (EXTRACT_STATIC): set to NO, so we don't have
600 to document static functions
602 * configure.in: add summary to end of configure so it
603 looks nice and attractive
605 * dbus/dbus-hash.c: finish implementation and write unit
608 * configure.in: add --enable-tests to enable unit tests
610 * dbus/dbus-test.c: test program to run unit tests
611 for all files in dbus/*, initially runs a test for
614 * dbus/dbus-internals.h: file to hold some internal utility stuff
616 2002-11-22 Havoc Pennington <hp@redhat.com>
618 * dbus/dbus-hash.c: copy in Tcl hash table, not yet
619 "ported" away from Tcl
621 * dbus/dbus-types.h: header for types such as dbus_bool_t
623 2002-11-22 Havoc Pennington <hp@redhat.com>
625 * dbus/dbus.h: fixups for doc warnings
627 * Doxyfile.in (FILE_PATTERNS): we need to scan .h to pick up
629 (QUIET): make it quiet so we can see warnings
631 * dbus/dbus-memory.c: teach D-BUS to allocate and free memory
633 2002-11-22 Havoc Pennington <hp@redhat.com>
635 * Makefile.am: include "Doxyfile" target in all-local
637 * configure.in: generate the Doxyfile
639 * Doxyfile.in: move Doxyfile here, so we can use
640 configure to generate a Doxyfile with the right
643 2002-11-22 Havoc Pennington <hp@redhat.com>
645 * dbus/dbus-message.c: move inline docs into .c file
647 * Doxyfile (OUTPUT_DIRECTORY): move output to doc/api
648 so all docs are under doc/
649 (MAN_EXTENSION): generate man pages. Use extension
650 ".3dbus" which matches ".3qt" on my system,
651 I guess this is OK, I don't know really.
652 (FILE_PATTERNS): look for .c files not .h, makes sense
655 2002-11-22 Havoc Pennington <hp@pobox.com>
657 * Makefile.am (SUBDIRS): rename subdir "server" to "bus"
658 because any app can be a server, and any app can be a client,
659 the bus is a special kind of server.
661 Thu Nov 21 23:35:31 2002 Zack Rusin <zack@kde.org>
663 * Doxyfile : adding. Still needs Makefile rules to be generated
664 automatically (just run "doxygen" in the toplevel dir for now to
667 * dbus/dbus-message.h : Adding sample docs (javadoc since
668 resembles gtk-doc a little more)
670 * dbus/dbus.h : Adding sample docs
672 2002-11-21 Havoc Pennington <hp@redhat.com>
674 * dbus/Makefile.am (INCLUDES): define DBUS_COMPILATION
675 so we can allow ourselves to include files directly,
676 instead of having to use dbus.h
678 * dbus/dbus.h: fill in
680 * dbus/dbus-message.h: sketch out a sample header file.
681 Include griping if you include it directly instead of
684 * dbus/dbus-macros.h: new file with macros for extern "C",
685 TRUE/FALSE, NULL, etc.
687 * doc/file-boilerplate.c: put include guards in here
689 2002-11-21 Havoc Pennington <hp@redhat.com>
691 * doc/file-boilerplate.c: include both AFL and GPL boilerplate.
693 * COPYING: include the GPL as well, and license code
694 under both AFL and GPL.
696 2002-11-21 Havoc Pennington <hp@redhat.com>
698 * acconfig.h: get rid of this
700 * autogen.sh (run_configure): add --no-configure option
702 * configure.in: remove AC_ARG_PROGRAM to make
703 autoconf complain less. add AC_PREREQ.
704 add AC_DEFINE third arg.
706 2002-11-21 Anders Carlsson <andersca@codefactory.se>
709 Fix references so we can distcheck.
711 2002-11-21 Havoc Pennington <hp@redhat.com>
713 * Initial module creation