Browse Source

Added missing dependency for Complie error on RHEL7

Complie error on RHEL7 for missing depency libos.
tags/v1.7.90
lidm 7 years ago
parent
commit
bfd1276c70
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      unix/xserver/hw/vnc/Makefile.am

+ 2
- 1
unix/xserver/hw/vnc/Makefile.am View File

@@ -3,9 +3,10 @@ LIB_DIR=${top_builddir}/../../common

RFB_LIB=$(LIB_DIR)/rfb/librfb.la
RDR_LIB=$(LIB_DIR)/rdr/librdr.la
OS_LIB=$(LIB_DIR)/os/libos.la
NETWORK_LIB=$(LIB_DIR)/network/libnetwork.la
XREGION_LIB=$(LIB_DIR)/Xregion/libXregion.la
COMMON_LIBS=$(NETWORK_LIB) $(RFB_LIB) $(RDR_LIB) $(XREGION_LIB)
COMMON_LIBS=$(NETWORK_LIB) $(RFB_LIB) $(RDR_LIB) $(XREGION_LIB) $(OS_LIB)

noinst_LTLIBRARIES = libvnccommon.la


Loading…
Cancel
Save