Skip to content
Snippets Groups Projects
Commit 9e8be8a0 authored by Tristan Matthews's avatar Tristan Matthews
Browse files

* #26416: daemon: warn if pkg-config is missing

parent c15fef2f
Branches
No related tags found
No related merge requests found
......@@ -6,6 +6,13 @@ if test -z $AUTORECONF; then
exit 1
fi
PKGCONFIG=`which pkg-config`
if test -z $PKGCONFIG; then
echo "*** No pkg-config found, please install it ***"
# warn without exiting, since pkg-config is only needed
# by configure, not autogen.sh
fi
LIBTOOLIZE=`which libtoolize`
if test -z $LIBTOOLIZE; then
echo "*** No libtool found, please install it ***"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment