diff options
author | Marcus Brinkmann <marcus.brinkmann@ruhr-uni-bochum.de> | 2010-03-16 15:55:55 +0100 |
---|---|---|
committer | Ralf Habacker <ralf.habacker@freenet.de> | 2010-04-13 21:09:09 +0200 |
commit | 3050bcfd1a95b337d4032c70dbcc5e4f4a926201 (patch) | |
tree | ed846f6e4ffd7cf2a86449cd4656f40c7f07d371 /README.wince | |
parent | 5e4ef80e098c950fa394092060eb311babbe7035 (diff) | |
download | dbus-3050bcfd1a95b337d4032c70dbcc5e4f4a926201.tar.gz dbus-3050bcfd1a95b337d4032c70dbcc5e4f4a926201.tar.bz2 dbus-3050bcfd1a95b337d4032c70dbcc5e4f4a926201.zip |
Add README for Windows CE.
Diffstat (limited to 'README.wince')
-rw-r--r-- | README.wince | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/README.wince b/README.wince new file mode 100644 index 00000000..5790dcf0 --- /dev/null +++ b/README.wince @@ -0,0 +1,81 @@ +DBus Daemon for Windows CE/Windows Mobile 6.5 +============================================= + +Bugs in upstream for any window version: +* MoveFileExA < 0 result check bug +* double dbus_free somewhere I forgot where (check in -ugly) +* alignment issue +* CreateProcess process information handle leak +* _dbus_getsid NULL vs INVALID_HANDLE_VALUE +* win_account_to_sid + +Customisation +============= + +1) At installation, the following registry value should be set to the +installation directory of the dbus installation (the directory +containing the bin, etc, share folders): + +HKLM\Software\freedesktop\DBus\Install Directory + +2) Instead of environment variable DBUS_VERBOSE, use +HKLM\Software\freedesktop\DBus\Verbose + +2) The keyring directory is MYDOCUMENTS\dbus-keyrings, not +HOMEPATH\.dbus-keyrings. + + +Compilation +=========== + +./configure --host=arm-mingw32ce CPPFLAGS=-I/path/to/expat/include LDFLAGS=-L/path/to/expat/lib + +A recent version of libtool is required, with this change: + +2010-02-28 Pierre Ossman <ossman@ossman.lkpg.cendio.se> (tiny change) + Ralf Wildenhues <Ralf.Wildenhues@gmx.de> + + Fix deplibs check fallback for 64-bit Windows and Windows CE. + * libltdl/m4/libtool.m4 (_LT_CHECK_MAGIC_METHOD): Accept file formats + 'pe-arm-wince' and 'pe-x86-64'. Add note about consistency with ... + * libltdl/config/ltmain.m4sh (func_win32_libid): ... the respective + pattern here; sync pattern from the former. + * tests/deplibs-mingw.at (deplibs without file command): New + file, new test. + * Makefile.am (TESTSUITE_AT): Update. + * NEWS: Update. + + +MB vs WCHAR +=========== + +Windows CE only supports the Unicode interface, while DBus Daemon uses +the Multi-Byte interface on Windows by default. The glue code does +not support multibyte in all cases. In particular, the _mbsrchr +function is not correctly implemented. It could be correctly +implemented, or dbus daemon could use the wchar interface more +consistently on all Windows targets. For now, the Windows CE port +will only work for filesystems without some weird characters in file +names. Is this a serious limitation? + + +Known Issues +============ + +Autolaunch is broken so far. + +Environment variables are faked. Some are punted to the registry, but +in any case they can not be used reliably for IPC. + +The test suite is not ported yet. + +dbus-pipe.c: + * Uses libc file descriptors. Needed for --print-address and + --print-pid which probably don't work yet. + +dbus-sysdeps-win.c: + * Backtraces have been disabled. + * _dbus_fd_set_close_on_exec Not supported, maybe we should disable + the warning. + * SearchPathA: Uses HKLM\\Software\\freedesktop\\DBus\\Install Directory + to locate binaries. |