diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2013-11-27 19:44:07 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2013-11-27 19:44:07 +0100 |
commit | 82da4346e88531e71fc727f9edbf916ce9072e9a (patch) | |
tree | fe9bd0a8f47b3cba09e42ff501dc3a61ae13c631 /configure.in | |
parent | c4f69d2af7d995eb0dd4592c18dc2f6b930bd193 (diff) |
Decrease libsndfile requirement version.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 1f474a4..8ba213d 100644 --- a/configure.in +++ b/configure.in @@ -36,6 +36,15 @@ if test x$with_experimental == xyes; then CXXFLAGS="$CXXFLAGS -DEXPERIMENTAL" fi +AC_ARG_WITH(pugl, [ --with-pugl Build with Pugl support]) +if test x$with_pugl == xyes; then + AC_MSG_WARN([*** Building with pugl support!]) + PUGL_LIBS="-lGL -lGLU -lX11" + PUGL_CFLAGS="" + AC_SUBST(PUGL_CFLAGS) + AC_SUBST(PUGL_LIBS) +fi + dnl ====================== dnl Compile LV2 plugin dnl ====================== @@ -283,7 +292,7 @@ AM_CONDITIONAL([HAVE_EDITOR], [test "x$have_editor" = "xyes"]) dnl ====================== dnl Check for sndfile dnl ====================== -PKG_CHECK_MODULES(SNDFILE, sndfile >= 1.0.21) +PKG_CHECK_MODULES(SNDFILE, sndfile >= 1.0.20) dnl ====================== dnl Check for libsamplerate |