Today, I update E17 svn.
And compiled whole libraries and e.
But I got an error.
And even, I cant start the XWindow.
environment:
- debian 4.0 (etch)
- `libdbus-1-dev` installed.
- `automake1.10` installed.
- E17 SVN revision 36582.
problem:
- compile fail with `e_dbus` library.
- got an following error.
[../../src/lib/dbus/.libs/libedbus.so: undefined reference to `dbus_watch_get_unix_fd`]
solved:
- modify `hd->fd = dbus_watch_get_unix_fd(hd->watch)` to `hd->fd = dbus_watch_get_fd(hd->watch)` on `src/e_dbus/src/lib/dbus/e_dbus.c` file.
cause:
- dbus_watch_get_unix_fd(..) function supported only in dbus >= 1.1.1.
- Exact version of `libdbus-1-dev` is `1.0.2-1`
And compiled whole libraries and e.
But I got an error.
And even, I cant start the XWindow.
environment:
- debian 4.0 (etch)
- `libdbus-1-dev` installed.
- `automake1.10` installed.
- E17 SVN revision 36582.
problem:
- compile fail with `e_dbus` library.
- got an following error.
[../../src/lib/dbus/.libs/libedbus.so: undefined reference to `dbus_watch_get_unix_fd`]
solved:
- modify `hd->fd = dbus_watch_get_unix_fd(hd->watch)` to `hd->fd = dbus_watch_get_fd(hd->watch)` on `src/e_dbus/src/lib/dbus/e_dbus.c` file.
cause:
- dbus_watch_get_unix_fd(..) function supported only in dbus >= 1.1.1.
- Exact version of `libdbus-1-dev` is `1.0.2-1`


덧글