From 0ede62bd1238f27c8a04536e9ed0cbc2948eb3f5 Mon Sep 17 00:00:00 2001 From: Adam Tkac Date: Wed, 15 Oct 2008 11:14:22 +0000 Subject: [PATCH] [Bugfix] link libvnc.so against correct libraries git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3019 3789f03b-4d11-0410-bbf8-ca57d06f2519 --- unix/xserver/hw/vnc/Makefile.am | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/unix/xserver/hw/vnc/Makefile.am b/unix/xserver/hw/vnc/Makefile.am index 9d8e6507..8e6683cb 100644 --- a/unix/xserver/hw/vnc/Makefile.am +++ b/unix/xserver/hw/vnc/Makefile.am @@ -4,7 +4,8 @@ BIN_DIR=$(top_srcdir)/.. RFB_LIB=$(LIB_DIR)/rfb/librfb.la RDR_LIB=$(LIB_DIR)/rdr/librdr.la NETWORK_LIB=$(LIB_DIR)/network/libnetwork.la -COMMON_LIBS=$(NETWORK_LIB) $(RFB_LIB) $(RDR_LIB) +XREGION_LIB=$(LIB_DIR)/Xregion/libXregion.la +COMMON_LIBS=$(NETWORK_LIB) $(RFB_LIB) $(RDR_LIB) $(XREGION_LIB) noinst_LTLIBRARIES = libvnccommon.la @@ -51,7 +52,7 @@ libvnc_la_CPPFLAGS = $(XVNC_CPPFLAGS) -I$(LIB_DIR) \ libvnc_la_LDFLAGS = -module -avoid-version -libvnc_la_LIBADD = libvnccommon.la $(COMMON_LIB) +libvnc_la_LIBADD = libvnccommon.la $(COMMON_LIBS) # C++ hacks BUILT_SOURCES = $(nodist_Xvnc_SOURCES) -- 2.39.5