From 8f10351f64238359a3d83857e046dc30d05b4dcf Mon Sep 17 00:00:00 2001 From: dpage Date: Wed, 29 Jul 2009 14:22:27 +0000 Subject: [PATCH] Fix typo per Devrim git-svn-id: svn://svn.pgadmin.org/trunk/pgadmin3@7986 a7884b65-44f6-0310-8a51-81a127f17b15 --- acinclude.m4 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/acinclude.m4 b/acinclude.m4 index eda43798d..553e084b3 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -163,10 +163,10 @@ AC_DEFUN([CHECK_WXWIDGETS], WX_MINOR=`expr ${TMP_WX_VERSION} : '[0-9]*\.\([0-9]*\)'` changequote([, ])dnl if test "$WX_MAJOR" -lt 2; then - AC_MSG_ERROR([wxWidgets 2.8.0 or newer is require to build pgAdmin]) + AC_MSG_ERROR([wxWidgets 2.8.0 or newer is required to build pgAdmin]) fi if test "$WX_MAJOR" -eq 2 && test "$WX_MINOR" -lt 8; then - AC_MSG_ERROR([wxWidgets 2.8.0 or newer is require to build pgAdmin]) + AC_MSG_ERROR([wxWidgets 2.8.0 or newer is required to build pgAdmin]) fi AC_MSG_RESULT(ok) ]) @@ -228,13 +228,13 @@ AC_DEFUN([CHECK_LIBXML2], XML2_REVISION=`expr ${XML2_VERSION} : '[0-9]*\.[0-9]*\.\([0-9]*\)'` changequote([, ])dnl if test "$XML2_MAJOR" -lt 2; then - AC_MSG_ERROR([libxml2 2.6.18 or newer is require to build pgAdmin]) + AC_MSG_ERROR([libxml2 2.6.18 or newer is required to build pgAdmin]) fi if test "$XML2_MAJOR" -eq 2 && test "$XML2_MINOR" -lt 6; then - AC_MSG_ERROR([libxml2 2.6.18 or newer is require to build pgAdmin]) + AC_MSG_ERROR([libxml2 2.6.18 or newer is required to build pgAdmin]) fi if test "$XML2_MAJOR" -eq 2 && test "$XML2_MINOR" -eq 6 && test "$XML2_REVISION" -lt 18; then - AC_MSG_ERROR([libxml2 2.6.18 or newer is require to build pgAdmin]) + AC_MSG_ERROR([libxml2 2.6.18 or newer is required to build pgAdmin]) fi AC_MSG_RESULT(ok) ]) -- 2.39.5