diff options
author | Mans Rullgard <mans@mansr.com> | 2011-05-05 16:45:12 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-05-05 18:29:55 +0100 |
commit | 762f95e4cbccad7f31607e5c0163d097b01332dc (patch) | |
tree | 37a836fde21da30b7904827c5dc53a1f98e4bc45 /configure | |
parent | af1ca249e8eb685823dd0dade3aa3c1d119a61ec (diff) | |
download | ffmpeg-762f95e4cbccad7f31607e5c0163d097b01332dc.tar.gz |
configure: warn if pkg-config is missing
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1827,6 +1827,11 @@ set_default cc nm pkg_config sysinclude enabled cross_compile || host_cc_default=$cc set_default host_cc +if ! $pkg_config --version >/dev/null 2>&1; then + warn "$pkg_config not found, library detection may fail." + pkg_config=false +fi + exesuf() { case $1 in mingw32*|cygwin*|*-dos|freedos|opendos|os/2*|symbian) echo .exe ;; |