summaryrefslogtreecommitdiff
path: root/aconfigure.ac
diff options
context:
space:
mode:
authorRiza Sulistyo <riza@teluu.com>2016-05-17 16:01:59 +0000
committerRiza Sulistyo <riza@teluu.com>2016-05-17 16:01:59 +0000
commit7e96ebd5c19e3815f0858420bc842e6d9a2a0a2f (patch)
tree11deb62da28da43fc27c609c8d308f8fb5fc0e7a /aconfigure.ac
parent93a706325b28965ffa4e29d0a742997b57bb7d24 (diff)
Re #1920: Fix typo on configuration script when trying to detect FFMpeg
package (libavdevice). Thanks to Alexander Traud for the patch. git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@5303 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'aconfigure.ac')
-rw-r--r--aconfigure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/aconfigure.ac b/aconfigure.ac
index 5682e14e..3da3eca2 100644
--- a/aconfigure.ac
+++ b/aconfigure.ac
@@ -1007,9 +1007,9 @@ AC_ARG_ENABLE(ffmpeg,
if test "$PKG_CONFIG" != "none"; then
AC_MSG_CHECKING([ffmpeg packages])
av_pkg=""
- if $PKG_CONFIG --exists libdevice; then
+ if $PKG_CONFIG --exists libavdevice; then
ac_ffmpeg_cflags="$ac_ffmpeg_cflags -DPJMEDIA_HAS_LIBAVDEVICE=1"
- av_pkg="$av_pkg libdevice"
+ av_pkg="$av_pkg libavdevice"
fi
if $PKG_CONFIG --exists libavformat; then
ac_ffmpeg_cflags="$ac_ffmpeg_cflags -DPJMEDIA_HAS_LIBAVFORMAT=1"