We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cdd703 commit f433c4eCopy full SHA for f433c4e
configure.ac
@@ -220,6 +220,14 @@ then
220
AC_MSG_ERROR([Exiting, as the archiver 'ar' can not be found.])
221
fi
222
223
+AC_CHECK_PROG(found_patch, patch, yes, no)
224
+if test x$found_patch != xyes
225
+then
226
+ AC_MSG_NOTICE([Sorry, the 'patch' command must be in the path to build AC_PACKAGE_NAME])
227
+ AC_MSG_NOTICE([See e.g. https://www.gnu.org/software/patch/])
228
+ AC_MSG_ERROR([Exiting, as the utility 'patch' can not be found.])
229
+fi
230
+
231
AC_CHECK_PROG(found_m4, m4, yes, no)
232
if test x$found_m4 != xyes
233
then
0 commit comments