summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--wm/xfce4-wm/hacks.mk16
1 files changed, 16 insertions, 0 deletions
diff --git a/wm/xfce4-wm/hacks.mk b/wm/xfce4-wm/hacks.mk
new file mode 100644
index 00000000000..e9d63ec2a2a
--- /dev/null
+++ b/wm/xfce4-wm/hacks.mk
@@ -0,0 +1,16 @@
+# $NetBSD: hacks.mk,v 1.1 2020/10/16 06:21:13 nia Exp $
+
+.if !defined(XFCE4_WM_HACKS_MK)
+XFCE4_WM_HACKS_MK= defined
+
+# Unfortunately, the check in xfwm's configure script simply determines
+# whether XRes is available, not its version.
+# It's using XRes 1.2 features, but the base version installed in NetBSD 8.x
+# is too old to support that.
+.if ${OPSYS} == "NetBSD" && !empty(OS_VERSION:M[5678].*) && \
+ ${X11_TYPE} == "native"
+PKG_HACKS+= old-netbsd-xres
+CONFIGURE_ENV+= ac_cv_lib_XRes_XResQueryClients=no
+.endif
+
+.endif # XFCE4_WM_HACKS_MK