Skip to content

Commit

Permalink
Do not error out if libout123 is not found
Browse files Browse the repository at this point in the history
  • Loading branch information
drfiemost committed Mar 29, 2024
1 parent 03538ba commit cc1e470
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions configure.ac
Expand Up @@ -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]
)]
)

Expand Down

0 comments on commit cc1e470

Please sign in to comment.