diff options
author | Andrea Corallo <akrl@sdf.org> | 2021-03-19 15:28:00 +0100 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2021-03-19 15:28:00 +0100 |
commit | 6ca6c71cd0bf8fc970d9b1477ea61a670469f672 (patch) | |
tree | 98876b3f80794a8aad43293fbe005102e26e94f9 /configure.ac | |
parent | b3ad62f8a35617366886be2a86e8641282824adf (diff) | |
parent | 3af2cee64b86e4ce59adb8e8720d92db35039cbc (diff) | |
download | emacs-6ca6c71cd0bf8fc970d9b1477ea61a670469f672.tar.gz |
Merge remote-tracking branch 'savannah/master' into native-comp
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index e0f763646cd..4284c997141 100644 --- a/configure.ac +++ b/configure.ac @@ -4008,6 +4008,11 @@ case $with_json,$HAVE_JSON in WITH_IFAVAILABLE="$WITH_IFAVAILABLE --with-json=ifavailable";; esac if test "X${MISSING}" != X; then + # If we have a missing library, and we don't have pkg-config installed, + # the missing pkg-config may be the reason. Give the user a hint. + if test "X${PKG_CONFIG}" = X; then + AC_MSG_WARN([Unable to locate a usable pkg-config]) + fi AC_MSG_ERROR([The following required libraries were not found: $MISSING Maybe some development libraries/packages are missing? |