# # old_revision [e5f6d85442972da43d641bd3d7bf5d6667bbd23a] # # patch "m4/botan.m4" # from [f6702730c3d9eb82ccc969d705d200dfa34f5581] # to [910876c2b7187e564deb220e01b953d36cb55cc8] # ============================================================ --- m4/botan.m4 f6702730c3d9eb82ccc969d705d200dfa34f5581 +++ m4/botan.m4 910876c2b7187e564deb220e01b953d36cb55cc8 @@ -1,6 +1,6 @@ # Currently we accept botan version 1.7.8 and newer, limited to the # development branch 1.7, emitting a warning if the found botan is -# newer than 1.7.16. +# newer than 1.7.17. AC_DEFUN([MTN_FIND_BOTAN], [ @@ -25,11 +25,11 @@ AC_DEFUN([MTN_FIND_BOTAN], #include #ifndef BOTAN_VERSION_MAJOR -#error Botan didn't define version macros?!? +#error "Botan did not define version macros" #endif #if BOTAN_VERSION_MAJOR != 1 -#error Botan major version mismatch. +#error "Botan major version mismatch" #endif], [botan_version_match=yes], [botan_version_match=no]) @@ -43,7 +43,7 @@ AC_DEFUN([MTN_FIND_BOTAN], #include #if BOTAN_VERSION_PATCH < 8 -#error Botan is too old +#error "Botan is too old" #endif], [botan_version_match=yes], [botan_version_match=no]) @@ -56,7 +56,7 @@ AC_DEFUN([MTN_FIND_BOTAN], AC_PREPROC_IFELSE([ #include -#if BOTAN_VERSION_PATCH > 16 +#if BOTAN_VERSION_PATCH > 17 #error Botan from the future #endif], [botan_version_match=yes], @@ -66,7 +66,7 @@ AC_DEFUN([MTN_FIND_BOTAN], fi CPPFLAGS="$save_CPPFLAGS" - AC_MSG_RESULT([yes]) + AC_MSG_RESULT([yes ($BOTAN_VERSION)]) AC_MSG_NOTICE([using botan compile flags: "$BOTAN_CPPFLAGS"]) AC_MSG_NOTICE([using botan link flags: "$BOTAN_LIBS"])