diff options
author | Fernando ApesteguĂa <fernape@FreeBSD.org> | 2021-09-12 17:18:06 +0200 |
---|---|---|
committer | Fernando ApesteguĂa <fernape@FreeBSD.org> | 2021-10-03 19:47:27 +0200 |
commit | 07fb2d5e9d001934f1670d01aec1f536f14ebde2 (patch) | |
tree | f2f87572cb6aa68955a9057625ca5ed1acbb394a /math/librsb | |
parent | security/seahorse: Update to 41.0 (diff) |
*/*: Remove compiler:openmp from Mk/Uses/compiler.mk
The option implied a dependency on gcc but clang got openmp support long ago.
Remove compiler:openmp from Mk/Uses/compiler.mk
For ports using USE=compiler:openmp, just remove it and make them build with
clang.
Fix conditionals when necessary
Bump PORTREVISION where appropriate
If problem arises, they can be addressed by using USE_GCC=yes
An update to the Porter's Handbook will follow.
Approved by: portmgr (bapt)
Differential Revision: https://reviews.freebsd.org/D31971
Diffstat (limited to 'math/librsb')
-rw-r--r-- | math/librsb/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/math/librsb/Makefile b/math/librsb/Makefile index 187ead3b681a..a98c55792372 100644 --- a/math/librsb/Makefile +++ b/math/librsb/Makefile @@ -2,6 +2,7 @@ PORTNAME= librsb PORTVERSION= 1.2.0.10 +PORTREVISION= 1 CATEGORIES= math MASTER_SITES= SF/librsb DISTNAME= ${PORTNAME}-${PORTVERSION:S/r/-rc/} @@ -15,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= gsed:textproc/gsed \ bash:shells/bash -USES= fortran compiler:openmp gmake shebangfix libtool +USES= fortran gmake shebangfix libtool INSTALL_TARGET= install-strip TEST_TARGET= qtests GNU_CONFIGURE= yes |