Skip to content

Commit

Permalink
RNAblueprint 1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Hammer committed Jan 18, 2019
1 parent ad94317 commit 3412c82
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 10 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ Please cite the software as specified at the bottom of the page!
* Doxygen for documentation
* LaTeX for PDF documentation
* libGMP for multiprecision integers
* openmp for parallel computation
* Boost Unit Test Framework

## Installation
Expand All @@ -55,7 +54,6 @@ In case of a local installation, please do not forget to adopt your path variabl
--disable-program Disable RNAblueprint program compilation
--disable-swig Disable all SWIG scripting interfaces
--enable-libGMP Enable the calculation of big numbers with multiprecision
--disable-openmp Disable the usage of parallel computation

TIP: You might want call `./configure --help` for all install options!

Expand Down
15 changes: 13 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# RNAblueprint: configure.ac

# initial information about the project
<<<<<<< HEAD
AC_INIT([RNAblueprint],[1.2.1],[s.hammer@univie.ac.at],[RNAblueprint],[http://www.tbi.univie.ac.at/~jango/])
=======
AC_INIT([RNAblueprint],[1.2.2],[s.hammer@univie.ac.at],[RNAblueprint],[https://github.com/ViennaRNA/RNAblueprint])
>>>>>>> develop

# automake initialisation (mandatory)
AC_PREREQ([2.59])
Expand Down Expand Up @@ -107,8 +111,8 @@ fi

# Check for OpenMP enabled and prepare flags
##########################################################################
AC_OPENMP
AC_SUBST(OPENMP_CXXFLAGS)
#AC_OPENMP
#AC_SUBST(OPENMP_CXXFLAGS)

# Checks for libraries: gmp enabled?
##########################################################################
Expand Down Expand Up @@ -249,6 +253,13 @@ AM_COND_IF([ENABLE_SWIG], [
AM_CONDITIONAL([ENABLE_PYTHON],[test "x$enable_python_status" = x"yes"])
AM_CONDITIONAL([ENABLE_PERL5],[test "x$enable_perl_status" = x"yes"])

# Configure supported platforms
##########################################################################
case $host in
*-apple-darwin*)
AC_DEFINE([OSX], [], [Define if building on Apple OSX.]) ;;
esac

# distribute additional compiler and linker flags
# set these variables instead of CXXFLAGS or LDFLAGS
##########################################################################
Expand Down
4 changes: 2 additions & 2 deletions lib/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ lib_LTLIBRARIES = libRNAblueprint.la
libRNAblueprint_ladir = $(includedir)/RNAblueprint

# ldflags to avoid version information
libRNAblueprint_la_LDFLAGS = -avoid-version $(OPENMP_CXXFLAGS)
libRNAblueprint_la_LDFLAGS = -avoid-version

# additional include pathes necessary to compile the C++ library
AM_CPPFLAGS = $(BOOST_CPPFLAGS) $(OPENMP_CXXFLAGS) @AM_CXXFLAGS@
AM_CPPFLAGS = $(BOOST_CPPFLAGS) @AM_CXXFLAGS@

# the list of header files that belong to the library
libRNAblueprint_la_HEADERS = \
Expand Down
2 changes: 0 additions & 2 deletions lib/RNAblueprint.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
* - Doxygen for documentation
* - LaTeX for PDF documentation
* - libGMP for multiprecision integers
* - openmp for parallel computation
* - Boost Unit Test Framework
*
* \section install_sec Installation
Expand All @@ -61,7 +60,6 @@
* - \-\-disable-program Disable RNAblueprint program compilation
* - \-\-disable-swig Disable all SWIG scripting interfaces
* - \-\-enable-libGMP Enable the calculation of big numbers with multiprecision
* - \-\-disable-openmp Disable the usage of parallel computation
*
* TIP: You might want call `./configure --help` for all install options!
*
Expand Down
4 changes: 4 additions & 0 deletions src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ bin_PROGRAMS = RNAblueprint

# additional include pathes necessary to compile the C++ programs
RNAblueprint_CPPFLAGS = -I$(top_srcdir)/lib $(BOOST_CPPFLAGS) @AM_CXXFLAGS@
<<<<<<< HEAD
RNAblueprint_LDFLAGS =$(LDFLAGS) $(BOOST_GRAPH_LDFLAGS) $(BOOST_PROGRAM_OPTIONS_LDFLAGS)
=======
RNAblueprint_LDFLAGS = $(LDFLAGS) $(BOOST_GRAPH_LDFLAGS) $(BOOST_PROGRAM_OPTIONS_LDFLAGS)
>>>>>>> develop
RNAblueprint_LDADD = $(LDADD) $(top_builddir)/lib/libRNAblueprint.la $(BOOST_GRAPH_LIBS) $(BOOST_PROGRAM_OPTIONS_LIBS) $(AM_LDFLAGS)

# list of sources for the 'RNAblueprint' binary
Expand Down
2 changes: 1 addition & 1 deletion tests/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ check_PROGRAMS = testRNAblueprint

# additional include pathes necessary to compile the C++ programs
testRNAblueprint_CPPFLAGS = -I$(top_srcdir)/lib $(BOOST_CPPFLAGS) @AM_CXXFLAGS@
testRNAblueprint_LDFLAGS = $(BOOST_GRAPH_LDFLAGS) $(BOOST_UNIT_TEST_FRAMEWORK_LDFLAGS)
testRNAblueprint_LDFLAGS = $(LDFLAGS) $(BOOST_GRAPH_LDFLAGS) $(BOOST_UNIT_TEST_FRAMEWORK_LDFLAGS)
testRNAblueprint_LDADD = $(LDADD) $(top_builddir)/lib/libRNAblueprint.la $(BOOST_GRAPH_LIBS) $(BOOST_UNIT_TEST_FRAMEWORK_LIBS) $(AM_LDFLAGS)

# list of sources for the 'testRNAblueprint' binary
Expand Down
2 changes: 1 addition & 1 deletion tests/test_decompose.cc
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include "test_common.h"

// include headers containing functions to test
#include "decompose.h"
#include "decompose.cc"
#include "printgraph.h"

// include boost components
Expand Down

0 comments on commit 3412c82

Please sign in to comment.