summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2006-10-05 02:40:43 +0000
committerDavid Robillard <d@drobilla.net>2006-10-05 02:40:43 +0000
commit5c4f066a30d70b0e3d153f4998874996317a5167 (patch)
tree2b30169a8688833a09ea51eda44d0283cb46f6c1
parent057445cae73d0a11be34d2396fdab4cf16711a00 (diff)
downloadlilv-5c4f066a30d70b0e3d153f4998874996317a5167.tar.gz
lilv-5c4f066a30d70b0e3d153f4998874996317a5167.tar.bz2
lilv-5c4f066a30d70b0e3d153f4998874996317a5167.zip
More build system fixes, everything now builds against the local copy if toplevel scripts are used.
git-svn-id: http://svn.drobilla.net/lad/libslv2@158 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r--configure.ac11
1 files changed, 5 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac
index 565359f..5e2c3fa 100644
--- a/configure.ac
+++ b/configure.ac
@@ -54,8 +54,6 @@ AC_SUBST(lv2dir)
# Check for RASQAL
PKG_CHECK_MODULES(RASQAL, rasqal >= 0.9.11, build_rasqal="yes", build_rasqal="no")
-AC_SUBST(RASQAL_CFLAGS)
-AC_SUBST(RASQAL_LIBS)
# Check for JACK
build_jack="yes"
@@ -67,8 +65,6 @@ if test "$build_jack" = "yes"; then
fi
if test "$build_jack" = "yes"; then
AC_DEFINE(HAVE_JACK, 1, [Has JACK])
- AC_SUBST(JACK_CFLAGS)
- AC_SUBST(JACK_LIBS)
else
AC_MSG_WARN([JACK not found, JACK clients will not be built.])
fi
@@ -86,11 +82,14 @@ AC_CONFIG_FILES([examples/hosts/Makefile])
AC_CONFIG_FILES([libslv2.pc])
AC_CONFIG_FILES([doc/Makefile])
AC_CONFIG_FILES([doc/reference.doxygen])
-AC_OUTPUT
+AC_OUTPUT
-# Display summary message
+AC_MSG_RESULT([])
+AC_MSG_RESULT([**********************************************************************])
+AC_MSG_RESULT([SLV2 build configuration:])
AC_MSG_RESULT([])
AC_MSG_RESULT([Building JACK client: $build_jack])
+AC_MSG_RESULT([**********************************************************************])
AC_MSG_RESULT([])