diff options
author | Piotrek Zadroga <piotrek@isc.org> | 2023-09-26 15:14:04 +0200 |
---|---|---|
committer | Piotrek Zadroga <piotrek@isc.org> | 2023-10-04 19:36:20 +0200 |
commit | 1d9712eb1bca30566560c03ad10a3c15bd0c09af (patch) | |
tree | 41793ea4dac0cb9c8fa8e48f0e12e377151fe4cd /m4macros | |
parent | [#3065] find gtest version for debian/ubuntu (diff) | |
download | kea-1d9712eb1bca30566560c03ad10a3c15bd0c09af.tar.xz kea-1d9712eb1bca30566560c03ad10a3c15bd0c09af.zip |
[#3065] add debug notice macros
Diffstat (limited to 'm4macros')
-rw-r--r-- | m4macros/ax_gtest.m4 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/m4macros/ax_gtest.m4 b/m4macros/ax_gtest.m4 index 265e8509d8..919d2accb2 100644 --- a/m4macros/ax_gtest.m4 +++ b/m4macros/ax_gtest.m4 @@ -119,8 +119,11 @@ if test "x$enable_gtest" = "xyes" ; then if test -z "$gtest_version_candidate" ; then if test -f "$cmakelists" ; then + AC_MSG_NOTICE([CMakeLists.txt found $cmakelists]) gtest_version_line=$($AWK '/set\(GOOGLETEST_VERSION/ { print }' "$cmakelists") + AC_MSG_NOTICE([gtest_version_line $gtest_version_line]) gtest_version_candidate=$(expr "$gtest_version_line" : "$semverRegex") + AC_MSG_NOTICE([gtest_version_candidate $gtest_version_candidate]) if test -n "$gtest_version_candidate"; then gtest_version_found="yes" GTEST_VERSION=$gtest_version_candidate |