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:   jperkin
Date:           Thu Mar  9 09:51:04 UTC 2017

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

Log Message:
Disable llvm option on SunOS, it doesn't build.


To generate a diff of this commit:
cvs rdiff -u -r1.52 -r1.53 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.52 pkgsrc/graphics/MesaLib/options.mk:1.53
--- pkgsrc/graphics/MesaLib/options.mk:1.52     Thu Mar  2 06:00:03 2017
+++ pkgsrc/graphics/MesaLib/options.mk  Thu Mar  9 09:51:04 2017
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.52 2017/03/02 06:00:03 maya Exp $
+# $NetBSD: options.mk,v 1.53 2017/03/09 09:51:04 jperkin Exp $
 
 PKG_OPTIONS_VAR=               PKG_OPTIONS.MesaLib
 PKG_SUPPORTED_OPTIONS=         llvm dri
@@ -7,7 +7,8 @@ PKG_SUGGESTED_OPTIONS=
 # The LLVM option enables JIT accelerated software rendering and
 # is also required to support the latest RADEON GPUs, so enable it
 # by default on platforms where such GPUs might be encountered.
-.if (${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64")
+.if (${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64") && \
+       ${OPSYS} != "SunOS"
 PKG_SUGGESTED_OPTIONS+=                llvm
 .endif
 



Home | Main Index | Thread Index | Old Index