Skip to content

Commit fb156e8

Browse files
committed
fix configure
1 parent e6c2d8f commit fb156e8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
HTSLIB_DIR="src/htslib-1.21"
44
echo "Configuring HTSlib in $HTSLIB_DIR"
5-
cd $HTSLIB_DIR && ./configure && make
5+
cd $HTSLIB_DIR && ./configure --enable-static --disable-shared --without-libdeflate && make

src/Makevars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
HTSLIB_DIR='htslib-1.21'
22
PKG_CPPFLAGS = -I${HTSLIB_DIR} -I../inst/include
3-
PKG_LIBS = ${HTSLIB_DIR}/libhts.a -fPIC -lz -lm -lbz2 -llzma -lcurl
3+
PKG_LIBS = ${HTSLIB_DIR}/libhts.a -lz -lm -lbz2 -llzma -lcurl
44

55
.PHONY: all clean
66

src/htslib-1.21/htscodecs/htscodecs/fqzcomp_qual.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ static void dump_map(unsigned int *map, int size, char *name) {
270270
fprintf(stderr, "}\n");
271271
}
272272

273-
#pragma GCC diagnostic ignored "-Wunused-function"
273+
/* #pragma GCC diagnostic ignored "-Wunused-function" */
274274
static void dump_params(fqz_gparams *gp) {
275275
fprintf(stderr, "Global params = {\n");
276276
fprintf(stderr, "\tvers\t%d\n", gp->vers);

0 commit comments

Comments
 (0)