diff options
author | Luca Deri <deri@ntop.org> | 2020-04-19 21:48:24 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2020-04-19 21:48:24 +0200 |
commit | 493bffb3e0bd616c2a333d563bc1dd4addec5359 (patch) | |
tree | 6315e4ac4a1c8412af927f1b61d7b36570a502c9 /autogen.sh | |
parent | 94eee66a7b49a32ff482ecee77fa7bb8534c5772 (diff) |
Added check for pkg-config presence
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh index c4ce5bc16..e03f93023 100755 --- a/autogen.sh +++ b/autogen.sh @@ -12,6 +12,7 @@ AUTOMAKE=$(command -v automake) LIBTOOL=$(command -v libtool) LIBTOOLIZE=$(command -v libtoolize) AUTORECONF=$(command -v autoreconf) +PKG_CONFIG=$(command -v pkg-config) if test -z $AUTOCONF; then echo "autoconf is missing: please install it and try again" @@ -33,6 +34,11 @@ if test -z $AUTORECONF; then exit fi +if test -z $PKG_CONFIG; then + echo "pkg-config is missing: please install it (apt-get install pkg-config) and try again" + exit +fi + cat configure.seed | sed \ -e "s/@NDPI_MAJOR@/$NDPI_MAJOR/g" \ -e "s/@NDPI_MINOR@/$NDPI_MINOR/g" \ |