diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2015-03-18 05:04:14 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2015-03-18 05:04:14 +0100 |
commit | 7138c2611300612ecc0ce5b4cc204964b14be94d (patch) | |
tree | a76b77e92f937de1026502ba4b933c5d0995b400 /configure.ac | |
parent | 117c53eb21b8803c1891e1f0b51bb47f5de5928f (diff) | |
download | sciteco-7138c2611300612ecc0ce5b4cc204964b14be94d.tar.gz |
bumped release version to v0.6.4, updated ChangeLog and clarify libglib minimum version
* it was necessary to increase the upstream version so I could
upload new versions to launchpad while debugging PPA build issues.
* ChangeLog finalized for v0.6.4
* SciTECO requires at least libglib v2.28 (but that's only a guess)
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index acdab8b..5f3ab62 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.65]) -AC_INIT([SciTECO], [0.6], +AC_INIT([SciTECO], [0.6.4], [robin.haberkorn@googlemail.com], [sciteco], [http://sciteco.sf.net/]) @@ -76,7 +76,7 @@ AC_SUBST(DOXYGEN_HAVE_DOT) AC_CHECK_PROG(SCITECO, sciteco, sciteco) # Checks for libraries. -PKG_CHECK_MODULES(LIBGLIB, [glib-2.0], [ +PKG_CHECK_MODULES(LIBGLIB, [glib-2.0 >= 2.28], [ CFLAGS="$CFLAGS $LIBGLIB_CFLAGS" CXXFLAGS="$CXXFLAGS $LIBGLIB_CFLAGS" LIBS="$LIBS $LIBGLIB_LIBS" |