diff options
author | David Robillard <d@drobilla.net> | 2007-07-04 04:09:55 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-07-04 04:09:55 +0000 |
commit | 456d48db9781fe919a04092bec3ad2ef4dd4c506 (patch) | |
tree | 1aeba780679647807e1ca834140bc0fb450a3563 | |
parent | d59145ade852f476ebd890fef731b3b2e49c7645 (diff) | |
download | patchage-456d48db9781fe919a04092bec3ad2ef4dd4c506.tar.gz patchage-456d48db9781fe919a04092bec3ad2ef4dd4c506.tar.bz2 patchage-456d48db9781fe919a04092bec3ad2ef4dd4c506.zip |
Check for recent enough LASH.
git-svn-id: http://svn.drobilla.net/lad/patchage@575 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 5aed0e9..8b367cd 100644 --- a/configure.ac +++ b/configure.ac @@ -65,7 +65,7 @@ AC_ARG_ENABLE(lash, have_lash="no" if test "$build_lash" = "yes"; then - PKG_CHECK_MODULES(LASH, lash-1.0 >= 0.5.0, have_lash="yes", have_lash="no") + PKG_CHECK_MODULES(LASH, lash-1.0 >= 0.5.2, have_lash="yes", have_lash="no") fi if test "$have_lash" = "yes"; then AC_DEFINE(HAVE_LASH, 1, [Has lash.h]) |