1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-18 00:10:04 +00:00

biology/wfa2-lib: fix build without libomp

/wrkdirs/usr/ports/biology/wfa2-lib/work/WFA2-lib-2.3.5/tools/align_benchmark/align_benchmark.c:32:10: fatal error: 'omp.h' file not found
   32 | #include <omp.h>
      |          ^~~~~~~
1 error generated.
This commit is contained in:
Piotr Kubaj 2024-08-02 01:42:04 +02:00
parent 0d369b8db5
commit a7320981d5

View File

@ -17,4 +17,8 @@ USE_LDCONFIG= yes
GH_ACCOUNT= smarco
GH_PROJECT= WFA2-lib
.if !exists(/usr/include/omp.h)
USES+= compiler:gcc-c++11-lib
.endif
.include <bsd.port.mk>