Skip to content

Commit

Permalink
Merge pull request #33 from pbauman/0.0.8_prep
Browse files Browse the repository at this point in the history
0.0.8 prep
  • Loading branch information
pbauman committed Nov 5, 2013
2 parents bcba256 + 57a4eb7 commit 716012c
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 21 deletions.
17 changes: 17 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
Version 0.1.0 (In progress)

Version 0.0.8
* Bugfixes when using VexCL
* Better OpenCL, VexCL detection
* Added ANTIOCH_VERSION_AT_LEAST macro (thansk to @RhysU)
* Initial support for automatic differentation
using MetaPhysicL
* XML parsing support of new reaction types
* Support irreversible reactions
* Use Automake's pkginclude feature (thanks to @RhysU)
* Travis-CI support added (with help from @RhysU and @ddemidov)
* Converted to header only, no library is generated during
the build now
* Don't distribute the docs in the tarball

Version 0.0.7
* Auto-function optimizations, when compiler is new enough.

Version 0.0.6
* More test coverage for newer reaction types
* Better OpenCL detection for OS X
Expand Down
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ AUTOMAKE_OPTIONS = foreign
ACLOCAL_AMFLAGS = -I m4 -I m4/common

SUBDIRS = src test doxygen
EXTRA_DIST = CHANGES LICENSE COPYING share docs
EXTRA_DIST = CHANGES LICENSE COPYING share

aclocaldir = $(prefix)/share/aclocal
aclocal_DATA = $(top_srcdir)/share/aclocal/*
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
dnl Process this file with autoconf to produce a configure script.

AC_PREREQ(2.61)
AC_INIT([Antioch], [0.0.7], [pbauman@ices.utexas.edu], [antioch])
AC_INIT([Antioch], [0.0.8], [pbauman@ices.utexas.edu], [antioch])
PACKAGE_DESCRIPTION="A New, Templated Implementation of Chemistry for Hydrodynamics"
AC_SUBST([PACKAGE_DESCRIPTION])
PACKAGE_URL="http://red.ices.utexas.edu/projects/antioch/"
PACKAGE_URL="https://github.com/libantioch/antioch/"
AC_SUBST([PACKAGE_URL])
AC_CONFIG_MACRO_DIR([m4])

Expand Down
18 changes: 0 additions & 18 deletions share/aclocal/antioch.m4
Original file line number Diff line number Diff line change
Expand Up @@ -146,34 +146,16 @@ HAVE_ANTIOCH=0
fi
fi
# Library availability
AC_MSG_CHECKING([for -lantioch linkage])
AC_LANG_PUSH([C++])
AC_LINK_IFELSE(
[AC_LANG_PROGRAM([#include "antioch/antioch_version.h"],
[Antioch::get_antioch_version()])],
[AC_MSG_RESULT(yes)
found_library=yes],
[AC_MSG_RESULT(no)
found_library=no])
fi dnl end test if header if available
AC_LANG_POP([C++])
CPPFLAGS="$ac_ANTIOCH_save_CPPFLAGS"
LDFLAGS="$ac_ANTIOCH_save_LDFLAGS"
LIBS="$ac_ANTIOCH_save_LIBS"
succeeded=no
if test "$found_header" = yes; then
if test "$version_succeeded" = yes; then
if test "$found_library" = yes; then
succeeded=yes
fi
fi
fi
Expand Down
1 change: 1 addition & 0 deletions src/utilities/include/antioch/input_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ namespace Antioch
*/
void skip_comment_lines( std::istream &in, const char comment_start);

inline
void skip_comment_lines( std::istream &in, const char comment_start)
{
char c, line[256];
Expand Down

0 comments on commit 716012c

Please sign in to comment.