svn commit: r564145 - head/x11/swaylock-effects

Jan Beich jbeich at FreeBSD.org
Fri Feb 5 18:37:21 UTC 2021


Author: jbeich
Date: Fri Feb  5 18:37:20 2021
New Revision: 564145
URL: https://svnweb.freebsd.org/changeset/ports/564145

Log:
  x11/swaylock-effects: unbreak on armv6 + armv7
  
  ../effects.c:3:10: fatal error: 'omp.h' file not found
   #include <omp.h>
            ^~~~~~~
  
  Reported by:	pkg-fallout

Modified:
  head/x11/swaylock-effects/Makefile   (contents, props changed)

Modified: head/x11/swaylock-effects/Makefile
==============================================================================
--- head/x11/swaylock-effects/Makefile	Fri Feb  5 18:13:32 2021	(r564144)
+++ head/x11/swaylock-effects/Makefile	Fri Feb  5 18:37:20 2021	(r564145)
@@ -18,4 +18,9 @@ DISTINFO_FILE=	${.CURDIR}/distinfo
 GH_ACCOUNT=	mortie
 GH_PROJECT=	${PORTNAME}${PKGNAMESUFFIX}
 
+.if !exists(/usr/include/omp.h)
+# XXX ports/199603: LLVM openmp in base doesn't support armv6, armv7 yet
+USE_GCC=	yes
+.endif
+
 .include "${MASTERDIR}/Makefile"


More information about the svn-ports-all mailing list