configure: allow changing pkg-config binary with --pkg-config

This commit is contained in:
wm4 2012-01-31 08:30:09 +01:00 committed by Uoti Urpala
parent 2e2c03ecb1
commit 7332ae76b7
1 changed files with 4 additions and 0 deletions

4
configure vendored
View File

@ -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)
;;