Browse Source

Merge pull request #8411 from srchack/open-vm-tools_remove_resolutionkms

open-vm-tools: remove resolutionkms
lilik-openwrt-22.03
Hannu Nyman 5 years ago
committed by GitHub
parent
commit
0172ae515f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 3 deletions
  1. +3
    -3
      utils/open-vm-tools/Makefile
  2. +12
    -0
      utils/open-vm-tools/patches/0013-fsutil_use_typedef_loff_t.patch

+ 3
- 3
utils/open-vm-tools/Makefile View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=open-vm-tools
PKG_VERSION:=10.3.5
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-10430147.tar.gz
PKG_SOURCE_URL:=https://github.com/vmware/open-vm-tools/releases/download/stable-$(PKG_VERSION)
@ -56,7 +56,8 @@ CONFIGURE_ARGS+= \
--without-x \
--without-gtk2 \
--without-gtk3 \
--without-xerces
--without-xerces \
--enable-resolutionkms=no
define Package/open-vm-tools/install
@ -92,7 +93,6 @@ define Package/open-vm-tools/install
$(INSTALL_DIR) $(1)/usr/lib/open-vm-tools/plugins/vmsvc/
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/open-vm-tools/plugins/vmsvc/libguestInfo.so $(1)/usr/lib/open-vm-tools/plugins/vmsvc/
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/open-vm-tools/plugins/vmsvc/libpowerOps.so $(1)/usr/lib/open-vm-tools/plugins/vmsvc/
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/open-vm-tools/plugins/vmsvc/libresolutionKMS.so $(1)/usr/lib/open-vm-tools/plugins/vmsvc/
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/open-vm-tools/plugins/vmsvc/libtimeSync.so $(1)/usr/lib/open-vm-tools/plugins/vmsvc/
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/open-vm-tools/plugins/vmsvc/libvmbackup.so $(1)/usr/lib/open-vm-tools/plugins/vmsvc/


+ 12
- 0
utils/open-vm-tools/patches/0013-fsutil_use_typedef_loff_t.patch View File

@ -0,0 +1,12 @@
--- a/vmhgfs-fuse/fsutil.h
+++ b/vmhgfs-fuse/fsutil.h
@@ -32,9 +32,7 @@
#include "hgfsProto.h"
#include <fuse.h>
-#if defined(__FreeBSD__) || defined(__SOLARIS__) || defined(__APPLE__)
typedef long long loff_t;
-#endif
/*
* Struct used to pass around attributes.

Loading…
Cancel
Save