So before running configure, you need to run autoreconf yourself to regenerate src/Makefile.in etc:
Code:
autoreconf ./configure make
Having fixed this, you may get undefined symbol errors about __ks_insertsort_off(), packInt16(), packInt32(), and unpackInt16(). To fix these, find the __ks_insertsort_##name() definition in src/samtools/ksort.h and the three *packInt*() definitions in src/samtools/bgzf.c, and change "inline" to "static inline".
Leave a comment: