to the usage string. This may be disabled by editing includes/site.h.
[ISC-Bugs #40321]
+- The configure script will now exit with an error message if it cannot find
+ pkg-config (needed to locate ATF used for building unit tests). Prior to
+ this the script would exit indicating success causing subsequent attempts
+ to build the software to fail.
+ [ISC-Bugs #40371]
+
Changes since 4.1-ESV-R12b1
- None
if test "$atf_pcp" = "" ; then
AC_MSG_ERROR([Unable to find atf files in location specified])
else
+ AC_CHECK_PROG([pkgcfg_found],[pkg-config],[pkg-config],[])
+ if test "$pkgcfg_found" = ""; then
+ AC_MSG_ERROR([Could not locate ATF, pkg-config not installed])
+ fi
ATF_CFLAGS="`PKG_CONFIG_PATH=$atf_pcp pkg-config --cflags atf-c` -DUNIT_TEST"
ATF_LDFLAGS="`PKG_CONFIG_PATH=$atf_pcp pkg-config --libs atf-c`"
if test -f $atf_pcp/atf-sh.pc ; then