diff options
author | David Robillard <d@drobilla.net> | 2007-12-11 00:00:36 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-12-11 00:00:36 +0000 |
commit | 625675cded1f797080083bcc87118ce6bf04ce04 (patch) | |
tree | 78e02b41c38cac8723c656cf7c851c4198dde2e9 | |
parent | 36736873c8b8d0aca2afeacec2a73ab2898367c0 (diff) | |
download | ingen-625675cded1f797080083bcc87118ce6bf04ce04.tar.gz ingen-625675cded1f797080083bcc87118ce6bf04ce04.tar.bz2 ingen-625675cded1f797080083bcc87118ce6bf04ce04.zip |
Fixed syntax oops.
git-svn-id: http://svn.drobilla.net/lad/ingen@971 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | configure.ac | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index bf740f33..d8cb3cce 100644 --- a/configure.ac +++ b/configure.ac @@ -239,13 +239,11 @@ if test "$build_ingen_client_lib" = "yes"; then PKG_CHECK_MODULES(LSIGCPP, sigc++-2.0) PKG_CHECK_MODULES(LIBLO, liblo) PKG_CHECK_MODULES(REDLANDMM, [redlandmm]) -fi -AM_CONDITIONAL(WITH_REDLANDMM, [test "$build_redlandmm" = "yes"]) - else AC_MSG_WARN([Ingen client library/executable will not be built!]) fi AM_CONDITIONAL(BUILD_INGEN_CLIENTS, [test "$build_ingen_clients" = "yes"]) +AM_CONDITIONAL(WITH_REDLANDMM, [test "$build_ingen_client_lib" = "yes"]) if test "$build_ingen_gtk_client" = "yes"; then # AC_CHECK_HEADERS([sys/time.h unistd.h]) |