summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorwm4 <wm4@mplayer2.org>2012-01-31 08:30:09 +0100
committerUoti Urpala <uau@mplayer2.org>2012-02-29 23:52:27 +0200
commit7332ae76b789fa0feda14a3f4ff880808e438d6a (patch)
treef56b76b3bcee374f85a25f5a43c8effb6a438746 /configure
parent2e2c03ecb1c6c3681179d105241b64256cfde600 (diff)
downloadmpv-7332ae76b789fa0feda14a3f4ff880808e438d6a.tar.bz2
mpv-7332ae76b789fa0feda14a3f4ff880808e438d6a.tar.xz
configure: allow changing pkg-config binary with --pkg-config
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 4 insertions, 0 deletions
diff --git a/configure b/configure
index 053e00dc74..1b66ca7b17 100755
--- a/configure
+++ b/configure
@@ -483,6 +483,7 @@ Miscellaneous options:
--nm=NM nm tool to build MPlayer [nm]
--yasm=YASM Yasm assembler to build MPlayer [yasm]
--ar=AR librarian to build MPlayer [ar]
+ --pkg-config=PKGCONFIG pkg-config to find some libraries [pkg-config]
--ranlib=RANLIB ranlib to build MPlayer [ranlib]
--windres=WINDRES windres to build MPlayer [windres]
--target=PLATFORM target platform (i386-linux, arm-linux, etc)
@@ -800,6 +801,9 @@ for ac_option do
--ar=*)
_ar=$(echo $ac_option | cut -d '=' -f 2)
;;
+ --pkg-config=*)
+ _pkg_config=$(echo $ac_option | cut -d '=' -f 2)
+ ;;
--ranlib=*)
_ranlib=$(echo $ac_option | cut -d '=' -f 2)
;;