aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog14
-rw-r--r--matchbox/managers/maemo/Makefile.am4
-rw-r--r--matchbox/managers/simple/Makefile.am5
3 files changed, 16 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 4ba0ae7..275884a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2008-09-12 Tomas Frydrych <tf@linux.intel.com>
+
+ * matchbox/managers/simple/Makefile.am:
+ * matchbox/managers/maemo/Makefile.am:
+
+ Fixed order of libraries for the linker so we can build
+ with --as-needed.
+
2008-08-12 Robert Bragg <bob@o-hand.com>
* configure.ac
@@ -16,7 +24,7 @@
out the right thing to do.
2008-07-31 Robert Bragg <bob@o-hand.com>
-
+
* matchbox/core/mb-wm-client.c:
Plumbs in a call to mb_wm_handle_hang_client in
mb_wm_client_ping_timeout_cb, so that derivative managers can now just
@@ -24,7 +32,7 @@
handle unresponsive clients.
2008-07-30 Robert Bragg <bob@o-hand.com>
-
+
* matchbox/core/mb-wm-client.c:
Adds a check in mb_wm_client_ping_start that the client supports
the NET_WM_PING protocol.
@@ -34,7 +42,7 @@
a problem in a derivative WM that was attempting just that.)
2008-07-29 Robert Bragg <bob@o-hand.com>
-
+
* matchbox/theme-engines/mb-wm-theme-png.c:
mb_wm_theme_png_get_button_position now propery determines the button
positions in the case that the decor has been expanded larger than the
diff --git a/matchbox/managers/maemo/Makefile.am b/matchbox/managers/maemo/Makefile.am
index 55d65e8..98fe7f5 100644
--- a/matchbox/managers/maemo/Makefile.am
+++ b/matchbox/managers/maemo/Makefile.am
@@ -33,11 +33,11 @@ matchbox_window_manager_2_maemo_LDFLAGS = \
$(LDFLAGS)
matchbox_window_manager_2_maemo_LDADD = \
- @MBWM_LIBS@ \
@MBWM_CORE_LIB@ \
$(THEME_LIBS) \
$(CLIENT_LIBS) \
- $(COMPMGR_LIBS)
+ $(COMPMGR_LIBS) \
+ @MBWM_LIBS@
matchbox_window_manager_2_maemo_DEPENDENCIES = \
@MBWM_CORE_LIB@ \
diff --git a/matchbox/managers/simple/Makefile.am b/matchbox/managers/simple/Makefile.am
index 39d99c9..6bae28c 100644
--- a/matchbox/managers/simple/Makefile.am
+++ b/matchbox/managers/simple/Makefile.am
@@ -28,11 +28,12 @@ matchbox_window_manager_2_simple_LDFLAGS = \
$(LDFLAGS)
matchbox_window_manager_2_simple_LDADD = \
- @MBWM_LIBS@ \
@MBWM_CORE_LIB@ \
$(THEME_LIBS) \
$(CLIENT_LIBS) \
- $(COMPMGR_LIBS)
+ $(COMPMGR_LIBS) \
+ @MBWM_LIBS@
+
matchbox_window_manager_2_simple_DEPENDENCIES = \
@MBWM_CORE_LIB@ \