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:   maya
Date:           Wed Jun 20 12:28:42 UTC 2018

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

Log Message:
mesalib: correct options.mk logic for disabling llvm on netbsd+native xorg

Follow the rest of the cases and use "not-CASE and not-CASE".
Sorry, I got confused.

Fix by wiz.


To generate a diff of this commit:
cvs rdiff -u -r1.61 -r1.62 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.61 pkgsrc/graphics/MesaLib/options.mk:1.62
--- pkgsrc/graphics/MesaLib/options.mk:1.61     Wed Jun 20 01:37:15 2018
+++ pkgsrc/graphics/MesaLib/options.mk  Wed Jun 20 12:28:42 2018
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.61 2018/06/20 01:37:15 maya Exp $
+# $NetBSD: options.mk,v 1.62 2018/06/20 12:28:42 maya Exp $
 
 PKG_OPTIONS_VAR=               PKG_OPTIONS.MesaLib
 PKG_SUPPORTED_OPTIONS=         llvm dri
@@ -9,7 +9,7 @@ PKG_SUGGESTED_OPTIONS=
 # by default on platforms where such GPUs might be encountered.
 .if (${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64") && \
        ${OPSYS} != "SunOS" && ${OPSYS} != "Darwin" && \
-       (${OPSYS} == "NetBSD" && ${X11_TYPE} == "modular")
+       !(${OPSYS} == "NetBSD" && ${X11_TYPE} == "native")
 PKG_SUGGESTED_OPTIONS+=                llvm
 .endif
 



Home | Main Index | Thread Index | Old Index