Changeset 3130
- Timestamp:
- Nov 18, 2013, 8:38:59 AM (10 years ago)
- Location:
- trunk
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/0.11-stable (added) merged: 3116,3119-3128
- Property svn:mergeinfo changed
-
trunk/NEWS
r3117 r3130 10 10 yat 0.11.x series from http://dev.thep.lu.se/yat/svn/branches/0.11-stable 11 11 12 version 0.11 (released NOT YET)12 version 0.11 (released 18 November 2013) 13 13 - Fisher::one_sided_p(void) is now deprecated (ticket #689) 14 14 - PearsonCorrelation::one_sided_p(void) is now deprecated (ticket #689) … … 20 20 - #defines HAVE_BAM_H, HAVE_BAM_BAM_H, and HAVE_SAMTOOLS_BAM_H have been 21 21 replaced with corresponding macros with prefix 'YAT_' (see ticket #766) 22 - Bam interface is now more complete (see tickets #746 and #739) 22 23 23 24 A complete list of closed tickets can be found here [[br]] -
trunk/doc/namespaces.doxygen
r2608 r3130 5 5 Copyright (C) 2006, 2007, 2008 Jari Häkkinen, Peter Johansson 6 6 Copyright (C) 2010, 2011 Peter Johansson 7 Copyright (C) 2013 Jari Häkkinen 7 8 8 9 This file is part of the yat library, http://dev.thep.lu.se/yat … … 83 84 /// All classes and functions related to statistical methods or 84 85 /// functions are defined within this namespace. See 85 /// \ref weighted_statistics <br>.86 /// \ref weighted_statistics. 86 87 /// 87 88 /// @brief Statistical methods, classes, and functions. -
trunk/m4/version.m4
r3117 r3130 73 73 # yat-0.10.2 7:2:0 74 74 # yat-0.10.3 7:3:0 75 # yat-0.11 8:0:0 75 76 # 76 77 # *Accidently, the libtool number was not updated for yat 0.5 -
trunk/m4/yat_check_libbam.m4
r3068 r3130 1 1 ## $Id$ 2 2 # 3 # serial 3(yat 0.11)3 # serial 4 (yat 0.11) 4 4 # 5 5 # … … 28 28 yat_bam_header=no 29 29 # check how to #include <bam.h> 30 m4_ map_args_w([bam/bam.hbam.h samtools/bam.h],31 [_YAT_CHECK_HEADER_BAM(], [)30 m4_foreach_w([myheader], [bam.h bam/bam.h samtools/bam.h], 31 [_YAT_CHECK_HEADER_BAM(myheader) 32 32 ]) 33 33 AS_IF([test x$yat_bam_header = xyes], [$1], [$2]) -
trunk/test/Makefile.am
r3109 r3130 152 152 $(top_builddir)/build_support/yat-config 153 153 test/yat_lt_link_la_ifelse_test.log: $(shell_test_deps) \ 154 test/lib/libmy-s tatic.a test/lib/libmy-shared.la \154 test/lib/libmy-shared.la \ 155 155 $(top_srcdir)/m4/yat_lt_link_ifelse.m4 \ 156 156 $(top_srcdir)/m4/yat_common.m4 -
trunk/test/gen_libmy_shared.sh
r3106 r3130 20 20 # along with yat. If not, see <http://www.gnu.org/licenses/>. 21 21 22 set -e 22 23 . test/defs.sh || exit 99 23 24 … … 65 66 verbose= 66 67 bootstrap 67 ./configure -- prefix=$abs_top_builddir/test|| exit 168 ./configure --libdir=$abs_top_builddir/test/lib || exit 1 68 69 69 70 unset MAKEFLAGS -
trunk/test/gen_libmy_static.sh
r3110 r3130 20 20 # along with yat. If not, see <http://www.gnu.org/licenses/>. 21 21 22 set -e 22 23 . test/defs.sh || exit 99 23 24 -
trunk/test/static_test.sh
r3114 r3130 2 2 # $Id$ 3 3 # 4 # Copyright (C) 2009, 2010, 2011, 2012, 2013 Peter Johansson 4 # Copyright (C) 2009, 2010, 2011, 2012 Peter Johansson 5 # Copyright (C) 2013 Jari Häkkinen, Peter Johansson 5 6 # 6 7 # This file is part of the yat library, http://dev.thep.lu.se/yat … … 40 41 EOF 41 42 42 sed -i 's,^AM_LDFLAGS =,AM_LDFLAGS = -all-static,' Makefile.am43 sed -i -e 's,^AM_LDFLAGS =,AM_LDFLAGS = -all-static,' Makefile.am 43 44 grep '^AM_LDFLAGS' Makefile.am || exit_fail 44 45 -
trunk/test/yat_lt_link_la_ifelse_test.sh
r3112 r3130 19 19 # along with yat. If not, see <http://www.gnu.org/licenses/>. 20 20 21 required="autoconf automake libtool libmy-s tatic libmy-shared"21 required="autoconf automake libtool libmy-shared" 22 22 set -e 23 23 . ./test/init.sh || exit 99 … … 49 49 ]) 50 50 51 LIBS=-lmy-static52 AC_MSG_CHECKING([whether linking against -lmy-static works])53 YAT_LT_LINK_LA_IFELSE([54 namespace theplu {55 namespace yat {56 namespace utility {57 int version(void);58 }}}59 int my_func(void) { return theplu::yat::utility::version(); }60 ],[61 AC_MSG_RESULT([yes])62 AC_MSG_FAILURE([expected configure to fail])63 ],[64 AC_MSG_RESULT([no])65 ])66 67 51 AC_CONFIG_FILES([Makefile]) 68 52 AC_OUTPUT -
trunk/test/yat_msg_error_test.sh
r3114 r3130 2 2 # $Id$ 3 3 # 4 # Copyright (C) 2011, 2012, 2013 Peter Johansson 4 # Copyright (C) 2011, 2012 Peter Johansson 5 # Copyright (C) 2013 Jari Häkkinen, Peter Johansson 5 6 # 6 7 # This file is part of the yat library, http://dev.thep.lu.se/yat … … 32 33 cat >> configure.ac <<EOF 33 34 YAT_MSG_ERROR([$specific_msg]) 34 AC_PREREQ([2.6 4])35 AC_PREREQ([2.63]) 35 36 AC_MSG_CHECKING([for something more]) 36 37 AC_MSG_RESULT([no]) -
trunk/test/yat_msg_error_test2.sh
r3114 r3130 2 2 # $Id$ 3 3 # 4 # Copyright (C) 2011, 2012, 2013 Peter Johansson 4 # Copyright (C) 2011, 2012 Peter Johansson 5 # Copyright (C) 2013 Jari Häkkinen, Peter Johansson 5 6 # 6 7 # This file is part of the yat library, http://dev.thep.lu.se/yat … … 30 31 31 32 cat >> configure.ac <<EOF 32 AC_PREREQ([2.6 4])33 AC_PREREQ([2.63]) 33 34 AS_IF([test x = x], [], [YAT_MSG_ERROR([some message])]) 34 35 AC_CONFIG_FILES([Makefile])
Note: See TracChangeset
for help on using the changeset viewer.