pkgsrc-Changes archive

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

CVS commit: pkgsrc/x11/gtk4



Module Name:    pkgsrc
Committed By:   wiz
Date:           Thu Sep 22 09:22:22 UTC 2022

Modified Files:
        pkgsrc/x11/gtk4: options.mk

Log Message:
gtk4: if quartz is available, prefer it to x11

probably fixes Darwin build

ok adam@


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/x11/gtk4/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/x11/gtk4/options.mk
diff -u pkgsrc/x11/gtk4/options.mk:1.1 pkgsrc/x11/gtk4/options.mk:1.2
--- pkgsrc/x11/gtk4/options.mk:1.1      Thu Feb 25 09:55:55 2021
+++ pkgsrc/x11/gtk4/options.mk  Thu Sep 22 09:22:21 2022
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.1 2021/02/25 09:55:55 ryoon Exp $
+# $NetBSD: options.mk,v 1.2 2022/09/22 09:22:21 wiz Exp $
 
 PKG_OPTIONS_VAR=       PKG_OPTIONS.gtk4
 PKG_SUPPORTED_OPTIONS= cups debug
@@ -8,9 +8,12 @@ PKG_OPTIONS_GROUP.gui=         x11
 
 .if exists(/System/Library/Frameworks/Quartz.framework)
 PKG_OPTIONS_GROUP.gui+=        quartz
+PKG_SUGGESTED_OPTIONS+=        quartz
+.else
+PKG_SUGGESTED_OPTIONS+=        x11
 .endif
 
-PKG_SUGGESTED_OPTIONS+=        cups x11
+PKG_SUGGESTED_OPTIONS+=        cups
 
 .include "../../mk/bsd.options.mk"
 



Home | Main Index | Thread Index | Old Index