Skip to content

Commit

Permalink
release version 0.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
satoken committed Dec 17, 2015
1 parent b2e3548 commit 02e33c1
Show file tree
Hide file tree
Showing 8 changed files with 622 additions and 62 deletions.
6 changes: 1 addition & 5 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,7 @@ build_triplet = @build@
host_triplet = @host@
subdir = .
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_have_stl.m4 \
$(top_srcdir)/m4/ac_cxx_namespaces.m4 \
$(top_srcdir)/m4/ax_boost_base.m4 \
$(top_srcdir)/m4/ax_boost_program_options.m4 \
$(top_srcdir)/m4/ax_boost_system.m4 $(top_srcdir)/configure.ac
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
Expand Down
597 changes: 592 additions & 5 deletions aclocal.m4

Large diffs are not rendered by default.

55 changes: 24 additions & 31 deletions configure
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for centroid_fold 0.0.10.
# Generated by GNU Autoconf 2.69 for centroid_fold 0.0.11.
#
# Report bugs to <no-define>.
#
Expand Down Expand Up @@ -579,8 +579,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='centroid_fold'
PACKAGE_TARNAME='centroid_fold'
PACKAGE_VERSION='0.0.10'
PACKAGE_STRING='centroid_fold 0.0.10'
PACKAGE_VERSION='0.0.11'
PACKAGE_STRING='centroid_fold 0.0.11'
PACKAGE_BUGREPORT='no-define'
PACKAGE_URL=''

Expand Down Expand Up @@ -1298,7 +1298,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures centroid_fold 0.0.10 to adapt to many kinds of systems.
\`configure' configures centroid_fold 0.0.11 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
Expand Down Expand Up @@ -1368,7 +1368,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of centroid_fold 0.0.10:";;
short | recursive ) echo "Configuration of centroid_fold 0.0.11:";;
esac
cat <<\_ACEOF
Expand Down Expand Up @@ -1488,7 +1488,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
centroid_fold configure 0.0.10
centroid_fold configure 0.0.11
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
Expand Down Expand Up @@ -1949,7 +1949,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by centroid_fold $as_me 0.0.10, which was
It was created by centroid_fold $as_me 0.0.11, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
Expand Down Expand Up @@ -2812,7 +2812,7 @@ fi
# Define the identity of the package.
PACKAGE='centroid_fold'
VERSION='0.0.10'
VERSION='0.0.11'
cat >>confdefs.h <<_ACEOF
Expand Down Expand Up @@ -4343,11 +4343,10 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler implements namespaces" >&5
$as_echo_n "checking whether the compiler implements namespaces... " >&6; }
if ${ac_cv_cxx_namespaces+:} false; then :
if ${ax_cv_cxx_namespaces+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_ext=cpp
ac_ext=cpp
ac_cpp='$CXXCPP $CPPFLAGS'
ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
Expand All @@ -4356,18 +4355,12 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
namespace Outer { namespace Inner { int i = 0; }}
int
main ()
{
using namespace Outer::Inner; return i;
;
return 0;
}
using namespace Outer::Inner; int foo(void) { return i;}
_ACEOF
if ac_fn_cxx_try_compile "$LINENO"; then :
ac_cv_cxx_namespaces=yes
ax_cv_cxx_namespaces=yes
else
ac_cv_cxx_namespaces=no
ax_cv_cxx_namespaces=no
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
ac_ext=cpp
Expand All @@ -4378,17 +4371,17 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_namespaces" >&5
$as_echo "$ac_cv_cxx_namespaces" >&6; }
if test "$ac_cv_cxx_namespaces" = yes; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_cxx_namespaces" >&5
$as_echo "$ax_cv_cxx_namespaces" >&6; }
if test "$ax_cv_cxx_namespaces" = yes; then
$as_echo "#define HAVE_NAMESPACES /**/" >>confdefs.h
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports Standard Template Library" >&5
$as_echo_n "checking whether the compiler supports Standard Template Library... " >&6; }
if ${ac_cv_cxx_have_stl+:} false; then :
if ${ax_cv_cxx_have_stl+:} false; then :
$as_echo_n "(cached) " >&6
else
Expand Down Expand Up @@ -4416,9 +4409,9 @@ list<int>::iterator iter = x.begin(); if (iter != x.end()) ++iter; return 0;
}
_ACEOF
if ac_fn_cxx_try_compile "$LINENO"; then :
ac_cv_cxx_have_stl=yes
ax_cv_cxx_have_stl=yes
else
ac_cv_cxx_have_stl=no
ax_cv_cxx_have_stl=no
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
ac_ext=cpp
Expand All @@ -4429,9 +4422,9 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_have_stl" >&5
$as_echo "$ac_cv_cxx_have_stl" >&6; }
if test "$ac_cv_cxx_have_stl" = yes; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_cxx_have_stl" >&5
$as_echo "$ax_cv_cxx_have_stl" >&6; }
if test "$ax_cv_cxx_have_stl" = yes; then
$as_echo "#define HAVE_STL /**/" >>confdefs.h
Expand Down Expand Up @@ -7040,7 +7033,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by centroid_fold $as_me 0.0.10, which was
This file was extended by centroid_fold $as_me 0.0.11, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -7106,7 +7099,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
centroid_fold config.status 0.0.10
centroid_fold config.status 0.0.11
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.61)
AC_INIT(centroid_fold, 0.0.10, no-define)
AC_INIT(centroid_fold, 0.0.11, no-define)
AM_INIT_AUTOMAKE([-Wall foreign])
AM_CONFIG_HEADER(config.h)
AC_CONFIG_SRCDIR([src/centroid_fold.cpp])
Expand Down
6 changes: 1 addition & 5 deletions src/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,7 @@ bin_PROGRAMS = centroid_fold$(EXEEXT) centroid_alifold$(EXEEXT) \
centroid_homfold$(EXEEXT)
subdir = src
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_have_stl.m4 \
$(top_srcdir)/m4/ac_cxx_namespaces.m4 \
$(top_srcdir)/m4/ax_boost_base.m4 \
$(top_srcdir)/m4/ax_boost_program_options.m4 \
$(top_srcdir)/m4/ax_boost_system.m4 $(top_srcdir)/configure.ac
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
DIST_COMMON = $(srcdir)/Makefile.am $(dist_bin_SCRIPTS) \
Expand Down
6 changes: 1 addition & 5 deletions src/contrafold/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,7 @@ build_triplet = @build@
host_triplet = @host@
subdir = src/contrafold
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_have_stl.m4 \
$(top_srcdir)/m4/ac_cxx_namespaces.m4 \
$(top_srcdir)/m4/ax_boost_base.m4 \
$(top_srcdir)/m4/ax_boost_program_options.m4 \
$(top_srcdir)/m4/ax_boost_system.m4 $(top_srcdir)/configure.ac
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
Expand Down
6 changes: 1 addition & 5 deletions src/contralign/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,7 @@ build_triplet = @build@
host_triplet = @host@
subdir = src/contralign
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_have_stl.m4 \
$(top_srcdir)/m4/ac_cxx_namespaces.m4 \
$(top_srcdir)/m4/ax_boost_base.m4 \
$(top_srcdir)/m4/ax_boost_program_options.m4 \
$(top_srcdir)/m4/ax_boost_system.m4 $(top_srcdir)/configure.ac
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
Expand Down
6 changes: 1 addition & 5 deletions src/probconsRNA/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,7 @@ build_triplet = @build@
host_triplet = @host@
subdir = src/probconsRNA
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_have_stl.m4 \
$(top_srcdir)/m4/ac_cxx_namespaces.m4 \
$(top_srcdir)/m4/ax_boost_base.m4 \
$(top_srcdir)/m4/ax_boost_program_options.m4 \
$(top_srcdir)/m4/ax_boost_system.m4 $(top_srcdir)/configure.ac
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
Expand Down

0 comments on commit 02e33c1

Please sign in to comment.