2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-29 13:07:50 +00:00

[#1990] Missing headers error more informative

This commit is contained in:
Tomek Mrugalski 2021-08-12 12:32:50 +02:00 committed by Andrei Pavel
parent 45e5903097
commit aaa9acdcaa
No known key found for this signature in database
GPG Key ID: 86E9385BC2203766

View File

@ -94,7 +94,7 @@ AC_DEFUN([AX_FIND_LIBRARY], [
libraries_found=true
for i in ${list_of_headers}; do
if test ! -f "${p}/include/${i}"; then
AX_ADD_TO_LIBRARY_WARNINGS([${library} headers not found in "${p}"])
AX_ADD_TO_LIBRARY_WARNINGS([${library} header ${i} not found in ${p}])
headers_found=false
break
fi
@ -107,7 +107,7 @@ AC_DEFUN([AX_FIND_LIBRARY], [
LIBRARY_LIBS="-L${p}/lib -Wl,-rpath=${p}/lib"
for i in ${list_of_libraries}; do
if test ! -f "${p}/lib/${i}"; then
AX_ADD_TO_LIBRARY_WARNINGS([${library} libraries not found in "${p}"])
AX_ADD_TO_LIBRARY_WARNINGS([${library} library ${i} not found in ${p}])
libraries_found=false
break
fi