Changeset 3413
- Timestamp:
- Apr 27, 2015, 8:33:48 AM (8 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r3400 r3413 404 404 have_htslib=$with_htslib 405 405 AC_SUBST([have_htslib]) 406 AM_CONDITIONAL([HAVE_SAMTOOLS ], [test x"$SAMTOOLS" != x"false"])406 AM_CONDITIONAL([HAVE_SAMTOOLS_EXECUTABLE], [test x"$SAMTOOLS" != x"false"]) 407 407 AC_SUBST([SAMTOOLS]) 408 408 AS_IF([test x"$SAMTOOLS" = x"false"], [], [ 409 AC_DEFINE([HAVE_SAMTOOLS], [1], [Define if samtools executable is available]) 409 AC_DEFINE([HAVE_SAMTOOLS_EXECUTABLE], [1], 410 [Define if samtools executable is available]) 410 411 ]) 411 412 -
trunk/test/Makefile.am
r3405 r3413 314 314 @: > $@ 315 315 316 if HAVE_SAMTOOLS 316 if HAVE_SAMTOOLS_EXECUTABLE 317 317 test/data/foo.bam: test/data/foo.sam test/data/.dirstamp Makefile 318 318 $(AM_V_GEN) -
trunk/test/Suite.cc
r3210 r3413 49 49 exit (EXIT_SKIP); 50 50 #endif 51 #ifndef HAVE_SAMTOOLS 51 #ifndef HAVE_SAMTOOLS_EXECUTABLE 52 52 out() << "no samtools\n"; 53 53 exit (EXIT_SKIP);
Note: See TracChangeset
for help on using the changeset viewer.