pkgsrc-Changes archive

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

CVS commit: pkgsrc/multimedia/libvpx



Module Name:    pkgsrc
Committed By:   gdt
Date:           Sat Nov 23 19:17:45 UTC 2019

Modified Files:
        pkgsrc/multimedia/libvpx: Makefile

Log Message:
multimediaa/lbvpx: Use !empty(PKGSRC_COMPILER:Mgcc) to check for gcc

This commit merely extends an existing workaround to all builds that
use gcc, rather than only those that use gcc without ccache or distcc.


To generate a diff of this commit:
cvs rdiff -u -r1.78 -r1.79 pkgsrc/multimedia/libvpx/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/multimedia/libvpx/Makefile
diff -u pkgsrc/multimedia/libvpx/Makefile:1.78 pkgsrc/multimedia/libvpx/Makefile:1.79
--- pkgsrc/multimedia/libvpx/Makefile:1.78      Sun Aug 11 13:22:04 2019
+++ pkgsrc/multimedia/libvpx/Makefile   Sat Nov 23 19:17:44 2019
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.78 2019/08/11 13:22:04 wiz Exp $
+# $NetBSD: Makefile,v 1.79 2019/11/23 19:17:44 gdt Exp $
 
 DISTNAME=      libvpx-1.8.1
 PKGREVISION=   1
@@ -26,7 +26,7 @@ CONFIGURE_ARGS+=      --disable-unit-tests
 .include "../../mk/bsd.prefs.mk"
 
 .if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64"
-.  if ${PKGSRC_COMPILER} == "gcc" && (${OPSYS} == "NetBSD" || ${OPSYS} == "SunOS")
+.  if !empty(${PKGSRC_COMPILER:Mgcc}) && (${OPSYS} == "NetBSD" || ${OPSYS} == "SunOS")
 # PR pkg/48508: GCC 4.4 or later is required to compile ssse3 code on NetBSD & Solaris.
 GCC_REQD+=     4.4
 .  endif



Home | Main Index | Thread Index | Old Index