From cc1e4706c5c676188d40e99d98ddd49e49fbcb7e Mon Sep 17 00:00:00 2001 From: Leandro Nini Date: Fri, 29 Mar 2024 18:13:53 +0100 Subject: [PATCH] Do not error out if libout123 is not found --- configure.ac | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index b6fe86e..905b058 100644 --- a/configure.ac +++ b/configure.ac @@ -88,9 +88,10 @@ AC_ARG_WITH([out123], AS_HELP_STRING([--with-out123], [Build with out123 library AS_IF([test "x$with_out123" != "xno"], [PKG_CHECK_MODULES([OUT123], - [libout123 >= 1], + [libout123 >= 1.0], [USE_LIBOUT123=yes - AC_DEFINE([HAVE_OUT123], [1], [Use libout123])] + AC_DEFINE([HAVE_OUT123], [1], [Use libout123])], + [USE_LIBOUT123=no] )] )