From: John Wolfe Date: Tue, 18 Aug 2020 14:14:10 +0000 (-0700) Subject: Adding vmtools library dependency to deploypkg library X-Git-Tag: stable-11.2.0~76 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=95f424ea52f3a674a3d3181759cb1fbf7315b315;p=thirdparty%2Fopen-vm-tools.git Adding vmtools library dependency to deploypkg library Some functions are not found in shared libraries when linking, which generates several warnings. Added a library with the needed functions to the list of dependencies. --- diff --git a/open-vm-tools/libDeployPkg/Makefile.am b/open-vm-tools/libDeployPkg/Makefile.am index a3bcb5e21..0c1415ec9 100644 --- a/open-vm-tools/libDeployPkg/Makefile.am +++ b/open-vm-tools/libDeployPkg/Makefile.am @@ -1,5 +1,5 @@ ################################################################################ -### Copyright (C) 2014-2019 VMware, Inc. All rights reserved. +### Copyright (C) 2014-2020 VMware, Inc. All rights reserved. ### ### This program is free software; you can redistribute it and/or modify ### it under the terms of version 2 of the GNU General Public License as @@ -25,6 +25,7 @@ AM_CFLAGS += @GLIB2_CPPFLAGS@ libDeployPkg_la_LIBADD = libDeployPkg_la_LIBADD += @MSPACK_LIBS@ +libDeployPkg_la_LIBADD += @VMTOOLS_LIBS@ libDeployPkg_la_SOURCES = libDeployPkg_la_SOURCES += deployPkgFormat.h