pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/sysutils/open-vm-tools



Module Name:    pkgsrc
Committed By:   wiz
Date:           Tue Nov 18 07:01:19 UTC 2025

Modified Files:
        pkgsrc/sysutils/open-vm-tools: options.mk

Log Message:
open-vm-tools: do not suggest x11 option on Darwin

Hopefully fixes

configure: error: libXinerama not found. Please configure without
multimon (using --disable-multimon), configure without X11 (using
--without-x), or install the libXinerama devel package(s).

error from macOS bulk build.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 pkgsrc/sysutils/open-vm-tools/options.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/sysutils/open-vm-tools/options.mk
diff -u pkgsrc/sysutils/open-vm-tools/options.mk:1.7 pkgsrc/sysutils/open-vm-tools/options.mk:1.8
--- pkgsrc/sysutils/open-vm-tools/options.mk:1.7        Mon Jan  1 06:56:01 2018
+++ pkgsrc/sysutils/open-vm-tools/options.mk    Tue Nov 18 07:01:19 2025
@@ -1,8 +1,14 @@
-# $NetBSD: options.mk,v 1.7 2018/01/01 06:56:01 ryoon Exp $
+# $NetBSD: options.mk,v 1.8 2025/11/18 07:01:19 wiz Exp $
 
 PKG_OPTIONS_VAR=       PKG_OPTIONS.open-vm-tools
 PKG_SUPPORTED_OPTIONS= icu x11
-PKG_SUGGESTED_OPTIONS= icu x11
+PKG_SUGGESTED_OPTIONS= icu
+
+.include "../../mk/bsd.fast.prefs.mk"
+
+.if ${OPSYS} != "Darwin"
+PKG_SUGGESTED_OPTIONS+=        x11
+.endif
 
 .include "../../mk/bsd.options.mk"
 



Home | Main Index | Thread Index | Old Index