Commit 3b851f4e authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

bootstrap: fail if pkg-config is absent

It is still possible to compile from tarball without pkg-config, though
the result will probably be quite useless.
parent c74a885f
...@@ -39,26 +39,17 @@ if test -d extras/contrib/build/bin; then ...@@ -39,26 +39,17 @@ if test -d extras/contrib/build/bin; then
fi fi
fi fi
# Check for pkg-config
if ! "${PKG_CONFIG:-pkg-config}" --version >/dev/null 2>&1; then
echo 'Error: "pkg-config" is not installed.' >&2
exit 1
fi
# Prepare m4/private.m4 # Prepare m4/private.m4
rm -f m4/private.m4 && cat > m4/private.m4 << EOF rm -f m4/private.m4 && cat > m4/private.m4 << EOF
dnl Private VLC macros - generated by bootstrap dnl Private VLC macros - generated by bootstrap
EOF EOF
# Check for pkg-config
if ! pkg-config --version >/dev/null 2>&1; then
cat << EOF
NOTE: "pkg-config" is missing from your system.
Many underlying libraries will not be detected.
==============================================================
EOF
cat >> m4/private.m4 << EOF
dnl User does not have pkg-config, so assume package was not found
AC_DEFUN([PKG_CHECK_MODULES],[ifelse([\$4], , :, [\$4])])
EOF
fi
# Check for autopoint (GNU gettext) # Check for autopoint (GNU gettext)
export AUTOPOINT export AUTOPOINT
test "$AUTOPOINT" || AUTOPOINT=autopoint test "$AUTOPOINT" || AUTOPOINT=autopoint
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment