diff options
author | Dodji Seketeli <dodji@openedhand.com> | 2007-09-05 17:46:49 +0200 |
---|---|---|
committer | Dodji Seketeli <dodji@openedhand.com> | 2007-09-05 17:46:49 +0200 |
commit | 6c89d1237c4fdce961b30a8eaee964af5d56565e (patch) | |
tree | c3a4e3f507c2f9cb4c5e0b734ae6e37b8d52ff94 /hw/kdrive/smi | |
parent | 28e48cd8e6e4c412a49d7177daad6d3c93c28e08 (diff) |
Kdrive: unbreak kdrive linking
* configure.ac: re-sort Kdrive libs so that symbols get properly resolved.
Basically, all some libs are present in both $KDRIVE_LIBS and $XSERVER_LIBS,
and some libs orders are not correct. So I made sure Kdrive servers don't have
to link against $KDRIVE_LIBS *and* $XSERVER_LIBS. They just have to link
against $KDRIVE_LIBS now.
* hw/kdrive/*/Makefile.am: update those makefile to reflect the change in configure.ac
Diffstat (limited to 'hw/kdrive/smi')
-rw-r--r-- | hw/kdrive/smi/Makefile.am | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/hw/kdrive/smi/Makefile.am b/hw/kdrive/smi/Makefile.am index 6cee31610..a4d6624c5 100644 --- a/hw/kdrive/smi/Makefile.am +++ b/hw/kdrive/smi/Makefile.am @@ -27,8 +27,7 @@ SMI_LIBS = \ Xsmi_LDADD = \ $(SMI_LIBS) \ - @KDRIVE_LIBS@ \ - @XSERVER_LIBS@ + @KDRIVE_LIBS@ Xsmi_DEPENDENCIES = \ libsmi.a \ |