svn commit: r564146 - branches/2021Q1/x11/swaylock-effects
Jan Beich
jbeich at FreeBSD.org
Fri Feb 5 18:38:51 UTC 2021
Author: jbeich
Date: Fri Feb 5 18:38:50 2021
New Revision: 564146
URL: https://svnweb.freebsd.org/changeset/ports/564146
Log:
MFH: r564145
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:
branches/2021Q1/x11/swaylock-effects/Makefile
Directory Properties:
branches/2021Q1/ (props changed)
Modified: branches/2021Q1/x11/swaylock-effects/Makefile
==============================================================================
--- branches/2021Q1/x11/swaylock-effects/Makefile Fri Feb 5 18:37:20 2021 (r564145)
+++ branches/2021Q1/x11/swaylock-effects/Makefile Fri Feb 5 18:38:50 2021 (r564146)
@@ -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