pkgsrc-Changes archive

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

CVS commit: pkgsrc/graphics/MesaLib



Module Name:    pkgsrc
Committed By:   nia
Date:           Sun Sep  1 09:36:16 UTC 2019

Modified Files:
        pkgsrc/graphics/MesaLib: options.mk

Log Message:
MesaLib: go back to disabling llvm on SunOS and non-dri platforms


To generate a diff of this commit:
cvs rdiff -u -r1.72 -r1.73 pkgsrc/graphics/MesaLib/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/graphics/MesaLib/options.mk
diff -u pkgsrc/graphics/MesaLib/options.mk:1.72 pkgsrc/graphics/MesaLib/options.mk:1.73
--- pkgsrc/graphics/MesaLib/options.mk:1.72     Sat Aug 31 10:09:15 2019
+++ pkgsrc/graphics/MesaLib/options.mk  Sun Sep  1 09:36:16 2019
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.72 2019/08/31 10:09:15 nia Exp $
+# $NetBSD: options.mk,v 1.73 2019/09/01 09:36:16 nia Exp $
 
 PKG_OPTIONS_VAR=               PKG_OPTIONS.MesaLib
 
@@ -15,8 +15,12 @@ PKG_SUGGESTED_OPTIONS+=              x11
 #
 # Enable it by default on platforms where such GPUs might be encountered or
 # LLVM-accelerated software rendering might be useful.
-.if (${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64" || \
-     ${MACHINE_ARCH} == "aarch64")
+.if ${OPSYS} != "SunOS" && \
+    ${OPSYS} != "Darwin" && \
+    ${OPSYS} != "Cygwin" && \
+      (${MACHINE_ARCH} == "i386" || \
+       ${MACHINE_ARCH} == "x86_64" || \
+       ${MACHINE_ARCH} == "aarch64")
 PKG_SUGGESTED_OPTIONS+=                llvm
 .endif
 



Home | Main Index | Thread Index | Old Index