diff options
author | Dodji Seketeli <dodji@openedhand.com> | 2007-11-07 18:43:16 +0100 |
---|---|---|
committer | Dodji Seketeli <dodji@openedhand.com> | 2007-11-07 18:43:16 +0100 |
commit | 950f9995d11aff2c51139b34fb27eba594f2bd20 (patch) | |
tree | 5fdcf31eac0a2a62b3d83513daa92fa3de9eb2a7 /hw/xnest | |
parent | e717409bae355df9a617a226f12fbb8c54ae77e5 (diff) |
Xnest: fix lib dependancy to make libtool happy
This fixes an undefined symbol error happening when compiling
the server with the --disable-xv configure switch.
Basically, xnest was linking against
@XSERVER_LIBS@ and @XNEST_LIBS@ and the order of the libraries
given to the linker at the end of the process was bogus.
* configure.ac: make XNEST_LIBS contain the $XSERVER_LIBS re-ordered
in such a way that the linker finds the symbols of all the libs contained
in $XNEST_LIBS.
* hw/xnest/Makefile.am: don't link against @XSERVER_LIBS@ anymore because
XNEST_LIBS contains the right thing.
Diffstat (limited to 'hw/xnest')
-rw-r--r-- | hw/xnest/Makefile.am | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/hw/xnest/Makefile.am b/hw/xnest/Makefile.am index 92f840c97..8601b2988 100644 --- a/hw/xnest/Makefile.am +++ b/hw/xnest/Makefile.am @@ -50,8 +50,7 @@ libfbcmap_a_CFLAGS = $(AM_CFLAGS) XNEST_LIBS = \ @XNEST_LIBS@ \ - libfbcmap.a \ - $(XSERVER_LIBS) + libfbcmap.a Xnest_SOURCES = $(SRCS) |