diff options
author | Andrei Pavel <andrei@isc.org> | 2021-01-04 14:54:20 +0100 |
---|---|---|
committer | Francis Dupont <fdupont@isc.org> | 2021-04-16 20:56:08 +0200 |
commit | edf0375af76527ffd7a3fe2f0fe3ebbbd3d4000f (patch) | |
tree | bef10b5de4d2236bc1553cb7ad1899abbc95f568 /m4macros | |
parent | [#1632] edits after autoupdate (diff) | |
download | kea-edf0375af76527ffd7a3fe2f0fe3ebbbd3d4000f.tar.xz kea-edf0375af76527ffd7a3fe2f0fe3ebbbd3d4000f.zip |
[#1632] use literal in AC_CHECK_HEADERS
Diffstat (limited to 'm4macros')
-rw-r--r-- | m4macros/ax_crypto.m4 | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/m4macros/ax_crypto.m4 b/m4macros/ax_crypto.m4 index 9f4ef11926..74b4400d98 100644 --- a/m4macros/ax_crypto.m4 +++ b/m4macros/ax_crypto.m4 @@ -199,14 +199,13 @@ EOF # failure handler we can detect the difference between a header not existing # (or not even passing the pre-processor phase) and a header file resulting # in compilation failures. - HEADER_TO_CHECK=botan/botan.h - AC_CHECK_HEADERS([${HEADER_TO_CHECK}],,[ + AC_CHECK_HEADERS([botan/botan.h],,[ CRYPTO_INCLUDES="" CRYPTO_LIBS="" CRYPTO_LDFLAGS="" CRYPTO_RPATH="" if test "x$ac_header_preproc" = "xyes"; then - AC_MSG_RESULT([${HEADER_TO_CHECK} + AC_MSG_RESULT([botan/botan.h} was found but is unusable. The most common cause of this problem is attempting to use an updated C++ compiler with older C++ libraries, such as the version of Botan that comes with your distribution. If you have updated |