Browse Source

- Fixed an error in configure.ac introduced by the previous commit and

preventing jackd to be built without the FreeBob backend/libraries.


git-svn-id: svn+ssh://jackaudio.org/trunk/jack@938 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.109.0
pieterpalmers 20 years ago
parent
commit
263a88423b
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      configure.ac

+ 4
- 4
configure.ac View File

@@ -516,12 +516,12 @@ HAVE_FREEBOB="false"
if test "x$TRY_FREEBOB" = "xyes"
then
# check for FreeBob libraries
PKG_CHECK_MODULES(LIBFREEBOB, libfreebob >= 0.5.1)
PKG_CHECK_MODULES(LIBFREEBOB, libfreebob >= 0.5.1,
[HAVE_FREEBOB="true"], AC_MSG_RESULT([no]))

AC_SUBST([LIBFREEBOB_CFLAGS])
AC_SUBST([LIBFREEBOB_LIBS])
HAVE_FREEBOB="true"

fi
AM_CONDITIONAL(HAVE_FREEBOB,$HAVE_FREEBOB)



Loading…
Cancel
Save