Changeset 3890
- Timestamp:
- Mar 26, 2020, 2:40:56 AM (4 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/m4/yat_check_htslib.m4
r3885 r3890 1 1 ## $Id$ 2 2 # 3 # serial 6(yat 0.18)3 # serial 7 (yat 0.18) 4 4 # 5 5 # Copyright (C) 2016, 2018, 2020 Peter Johansson … … 51 51 # propagate some results to 'Makefile' and 'config.h' 52 52 AM_CONDITIONAL([HAVE_HTSLIB], [test x"$with_htslib" = x"yes"]) 53 have_htslib=$with_htslib 54 AC_SUBST([have_htslib]) 53 AC_SUBST([have_htslib], [$with_htslib]) 55 54 AM_CONDITIONAL([HAVE_SAMTOOLS_EXECUTABLE], [test x"$SAMTOOLS" != x"false"]) 56 55 AC_SUBST([SAMTOOLS]) … … 125 124 AC_MSG_FAILURE([htslib was not found]) 126 125 ]) 127 AC_SUBST([HAVE_HTSLIB], [$have_hts])128 126 129 127 YAT_CHECK_LA_LIBS([ -
trunk/test/defs.sh.in
r3855 r3890 79 79 ;; 80 80 doxygen) 81 test @have_doxygen@ ="yes" || exit_skip no doxygen81 test x"${have_doxygen}" = x"yes" || exit_skip no doxygen 82 82 ;; 83 83 htslib) 84 test @have_htslib@ ="yes" || exit_skip no libbam84 test x"${have_htslib}" = x"yes" || exit_skip no libbam 85 85 ;; 86 86 libmy-shared) … … 97 97 ;; 98 98 shared) 99 if (test "x @enable_shared@" = "xno"); then99 if (test "x${enable_shared}" = "xno"); then 100 100 echo shared disabled; 101 101 exit_skip; … … 103 103 ;; 104 104 static) 105 if (test "x @enable_static@" = "xno"); then105 if (test "x${enable_static}" = "xno"); then 106 106 echo static disabled; 107 107 exit_skip; … … 127 127 lt_cv_objdir=@lt_cv_objdir@ 128 128 have_doxygen="@have_doxygen@" 129 have_htslib="@have_htslib@" 129 130 mkdir_p="@MKDIR_P@ --verbose" 130 131 verbose="--verbose" … … 146 147 CXXFLAGS="@CXXFLAGS@" 147 148 LDFLAGS="@LDFLAGS@" 148 HAVE_HTSLIB="@HAVE_HTSLIB@"149 149 150 150 # user is always right
Note: See TracChangeset
for help on using the changeset viewer.