Skip to content
Snippets Groups Projects
Commit 99629c62 authored by Ralph Giles's avatar Ralph Giles
Browse files

Replace the default fatal ACTION-IF-NOT-FOUND clause of the

polypaudio PKG_CHECK_MODULES() call with one that appropriately
disables the module in the build. Previously, configure died
here if polypaudio was not available.


git-svn-id: http://svn.xiph.org/trunk/ao@8185 0101bb08-14d6-0310-b084-bc0e0c8e3800
parent be8ec984
No related branches found
No related tags found
No related merge requests found
......@@ -351,7 +351,8 @@ AC_ARG_ENABLE(polyp, [ --enable-polyp include Polypaudio output plugin ],
have_polyp=no
if test "x$BUILD_POLYP" = "xyes" ; then
PKG_CHECK_MODULES(POLYP, [ polyplib-simple >= 0.6 ],have_polyp=yes)
PKG_CHECK_MODULES(POLYP, [ polyplib-simple >= 0.6 ],
[have_polyp=yes],[have_polyp=no])
AC_SUBST(POLYP_LIBS)
AC_SUBST(POLYP_CFLAGS)
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment