summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-06-09 16:24:38 +0000
committerDavid Robillard <d@drobilla.net>2008-06-09 16:24:38 +0000
commit7768f6a1ce048d75e0c019bf35a3e8f38822da72 (patch)
tree3a0fdfb9c6dc5bb9b1ea597d8b6fd8ff0bb657db
parent50b423ce8ea6d8cb6a8ab24d399770a3f697f03a (diff)
downloadingen-7768f6a1ce048d75e0c019bf35a3e8f38822da72.tar.gz
ingen-7768f6a1ce048d75e0c019bf35a3e8f38822da72.tar.bz2
ingen-7768f6a1ce048d75e0c019bf35a3e8f38822da72.zip
Always check for liblo.
git-svn-id: http://svn.drobilla.net/lad/ingen@1245 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r--configure.ac4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 7452ca3d..975d7b76 100644
--- a/configure.ac
+++ b/configure.ac
@@ -139,6 +139,9 @@ if test "$build_jack" = "yes"; then
AC_DEFINE(HAVE_JACK_MIDI, 1, [Has Jack MIDI])
fi
+# OSC support (mandatory for now due to laziness)
+PKG_CHECK_MODULES(LIBLO, liblo)
+
# LV2 support
build_lv2="yes"
AC_ARG_ENABLE(lv2,
@@ -251,7 +254,6 @@ if test "$build_ingen_client_lib" = "yes"; then
AC_CHECK_HEADERS([sys/time.h unistd.h])
PKG_CHECK_MODULES(LXML2, libxml-2.0 >= 2.6.0) # FIXME: deprecated, make optional
PKG_CHECK_MODULES(LSIGCPP, sigc++-2.0)
- PKG_CHECK_MODULES(LIBLO, liblo)
PKG_CHECK_MODULES(REDLANDMM, [redlandmm])
else
AC_MSG_WARN([Ingen client library/executable will not be built!])