mirror of
https://git.jami.net/savoirfairelinux/jami-daemon.git
synced 2025-08-07 22:02:12 +08:00
* #26416: daemon: warn if pkg-config is missing
This commit is contained in:
@ -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 ***"
|
||||
|
Reference in New Issue
Block a user