We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 51560bd + 3076138 commit 92369b0Copy full SHA for 92369b0
Makefile
@@ -18,6 +18,9 @@ SUBDIRS= .
18
ifeq ($(shell uname -s),Linux)
19
LIBS += -lrt
20
endif
21
+ifeq ($(shell uname -s),GNU/kFreeBSD)
22
+ LIBS += -lrt
23
+endif
24
25
.SUFFIXES:.c .o .cc
26
bwashm.c
@@ -9,6 +9,10 @@
9
#include <stdio.h>
10
#include "bwa.h"
11
12
+#ifndef PATH_MAX
13
+# define PATH_MAX 1024
14
+#endif
15
+
16
int bwa_shm_stage(bwaidx_t *idx, const char *hint, const char *_tmpfn)
17
{
const char *name;
0 commit comments