diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2020-03-08 21:56:36 +0000 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2020-03-08 21:56:36 +0000 |
commit | e1d56a9db2541dd41f1907a5a19a686a326831cc (patch) | |
tree | 6a5120e4890360e5d98bb4a63ff86cfc80e8392f /math/csdp | |
parent | Document OpenMP from base system cannot be used in some cases (diff) |
Drop dependency on devel/openmp
- Drop if devel/llvm* was used as a substitute
Approved by: yuri, rene (earlier version)
Differential Revision: https://reviews.freebsd.org/D23020
Diffstat (limited to 'math/csdp')
-rw-r--r-- | math/csdp/Makefile | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/math/csdp/Makefile b/math/csdp/Makefile index 94febd00a813..10116127e60d 100644 --- a/math/csdp/Makefile +++ b/math/csdp/Makefile @@ -31,14 +31,7 @@ PLIST_FILES= bin/complement \ bin/rand_graph \ bin/theta -.include <bsd.port.pre.mk> - -# XXX Drop after FreeBSD 12.0 EOL -.if !exists(/usr/include/omp.h) -LIB_DEPENDS+= libomp.so:devel/openmp -.endif - post-stage: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/* -.include <bsd.port.post.mk> +.include <bsd.port.mk> |