summaryrefslogtreecommitdiff
path: root/aconfigure
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
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')
-rwxr-xr-xaconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/aconfigure b/aconfigure
index b6117574..d7db69f9 100755
--- a/aconfigure
+++ b/aconfigure
@@ -6824,9 +6824,9 @@ test -n "$PKG_CONFIG" || PKG_CONFIG="none"
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking ffmpeg packages" >&5
$as_echo_n "checking ffmpeg packages... " >&6; }
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"