From: Anthony Minessale Date: Mon, 1 Dec 2014 21:44:31 +0000 (-0600) Subject: FS-7508: less restrictive vpx require X-Git-Tag: v1.6.2~614^2~542 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b9d23fad03cadbb4205d8b942d2a1e600bc7bc5;p=thirdparty%2Ffreeswitch.git FS-7508: less restrictive vpx require --- diff --git a/configure.ac b/configure.ac index f8cba27da3..c96d87af6e 100644 --- a/configure.ac +++ b/configure.ac @@ -1215,7 +1215,7 @@ PKG_CHECK_MODULES([LDNS], [libldns >= 1.6.6],[ PKG_CHECK_MODULES([VPX], [vpx >= 1.3.0],[ AM_CONDITIONAL([HAVE_VPX],[true])],[ - AC_CHECK_LIB([vpx], [vpx_codec_vp9_cx_algo], [VPX_LIBS=-lvpx]) + AC_CHECK_LIB([vpx], [vpx_img_set_rect], [VPX_LIBS=-lvpx]) AS_IF([test -z "$VPX_LIBS"],[ if module_enabled mod_vpx; then AC_MSG_ERROR([You need to either install libvpx-dev or disable mod_vpx in modules.conf])