Changeset 2868
- Timestamp:
- Nov 12, 2012, 10:28:40 PM (10 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r2866 r2868 240 240 241 241 242 # samtools API from http://samtools.sourceforge.net 243 AC_ARG_WITH([samtools], 244 [AS_HELP_STRING([--without-samtools], 245 [disable samtools support])], 246 [], 247 [with_samtools=yes]) 248 249 AS_IF([test x"$with_samtools" != x"no"], [ 250 AC_CHECK_HEADER([zlib.h], [], [YAT_MSG_ERROR([zlib.h was not found])]) 251 AC_SEARCH_LIBS([inflateEnd], [z]) 252 AC_CHECK_LIB([z], [inflateEnd], [], [YAT_MSG_ERROR([libz was not found])]) 253 AC_CHECK_HEADER([bam.h], [], [YAT_MSG_ERROR([bam.h was not found])]) 254 # try link against libbam 255 YAT_CHECK_LIBBAM([LIBS="$BAM_LIBS $LIBS"], 256 [YAT_MSG_ERROR([libbam was not found])]) 257 ]) 258 AM_CONDITIONAL([HAVE_SAMTOOLS], [test x"$with_samtools" = x"yes"]) 259 242 260 #support for large files 243 261 AC_SYS_LARGEFILE … … 435 453 ]) 436 454 437 AC_MSG_RESULT([----------------------------------------------------------------])438 AC_MSG_RESULT([Creating yat configuration])439 455 # Create output. 440 456 AC_OUTPUT … … 448 464 Build Static Library: $enable_static 449 465 Build Documentation: $doxygen_message 466 Enable Bam Support: $with_bam 450 467 451 468 Options used to compile and link: -
trunk/m4/Makefile.am
r2787 r2868 26 26 aclocal_DATA += m4/yat_am_macros.m4 27 27 aclocal_DATA += m4/yat_cblas.m4 28 aclocal_DATA += m4/yat_check_libbam.m4 28 29 aclocal_DATA += m4/yat_common.m4 29 30 aclocal_DATA += m4/yat_gsl.m4 -
trunk/m4/yat_cblas.m4
r2093 r2868 39 39 40 40 # 41 # serial 0 41 # serial 0 42 42 # 43 43
Note: See TracChangeset
for help on using the changeset viewer.