# # # patch "m4/botan.m4" # from [752f096eef36e41c52160d02214d32f94663ca5a] # to [00ee0765ea392bc271f525adc786bbbf067b495a] # # patch "m4/lua.m4" # from [638c2f6d022cdd9a8c4510952309afaca6a07dcf] # to [f6528286c9e7af881b667c3caaf9d5d160223446] # ============================================================ --- m4/botan.m4 752f096eef36e41c52160d02214d32f94663ca5a +++ m4/botan.m4 00ee0765ea392bc271f525adc786bbbf067b495a @@ -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.15. +# newer than 1.7.16. AC_DEFUN([MTN_FIND_BOTAN], [ @@ -56,7 +56,7 @@ AC_DEFUN([MTN_FIND_BOTAN], AC_PREPROC_IFELSE([ #include -#if BOTAN_VERSION_PATCH > 15 +#if BOTAN_VERSION_PATCH > 16 #error Botan from the future #endif], [botan_version_match=yes], @@ -67,6 +67,10 @@ AC_DEFUN([MTN_FIND_BOTAN], CFLAGS="$save_CFLAGS" AC_MSG_RESULT([yes]) + + AC_MSG_NOTICE([using botan compile flags: "$BOTAN_CPPFLAGS"]) + AC_MSG_NOTICE([using botan link flags: "$BOTAN_LIBS"]) + AC_SUBST(BOTAN_LIBS) AC_SUBST(BOTAN_CFLAGS) else ============================================================ --- m4/lua.m4 638c2f6d022cdd9a8c4510952309afaca6a07dcf +++ m4/lua.m4 f6528286c9e7af881b667c3caaf9d5d160223446 @@ -2,7 +2,6 @@ AC_DEFUN([MTN_FIND_LUA], # for pkg-config. AC_DEFUN([MTN_FIND_LUA], [ PKG_PROG_PKG_CONFIG - AC_MSG_CHECKING([for lua 5.1]) # We manually test the variables here because we want them to work # even if pkg-config isn't installed. The use of + instead of :+ is @@ -16,6 +15,7 @@ AC_DEFUN([MTN_FIND_LUA], fi if test $found_liblua = no; then + AC_MSG_CHECKING([for lua 5.1]) # try lua-config5x, in case we're on a system with no pkg-config if test -n "`type -p lua-config51`"; then LUA_CFLAGS="`lua-config51 --include`"