Fixed messages of PCRE check.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andrew Borodin 2010-05-04 15:58:29 +04:00
parent 438544291c
commit efa29d7cc7

View File

@ -17,7 +17,7 @@ dnl @license GPLWithACException
AC_DEFUN([AX_PATH_LIB_PCRE],[dnl AC_DEFUN([AX_PATH_LIB_PCRE],[dnl
AC_MSG_CHECKING([lib pcre]) AC_MSG_CHECKING([lib pcre])
AC_ARG_WITH([pcre], AC_ARG_WITH([pcre],
AC_HELP_STRING([--with-pcre[[=prefix]]].[ compile pcre part (via libpcre check)]), AC_HELP_STRING([--with-pcre[[=prefix]]], [compile pcre part (via libpcre check)]),
, ,
[with_pcre="yes"] [with_pcre="yes"]
) )
@ -41,7 +41,7 @@ else
AC_CHECK_LIB(pcre, pcre_compile) AC_CHECK_LIB(pcre, pcre_compile)
if test x"$ac_cv_lib_pcre_pcre_compile" = x"yes" ; then if test x"$ac_cv_lib_pcre_pcre_compile" = x"yes" ; then
AC_MSG_RESULT(.setting PCRE_LIBS -L$with_pcre/lib -lpcre) AC_MSG_RESULT(setting PCRE_LIBS -L$with_pcre/lib -lpcre)
PCRE_LIBS=$test_PCRE_LIBS PCRE_LIBS=$test_PCRE_LIBS
test_PCRE_CFLAGS=$test_PCRE_CFLAGS test_PCRE_CFLAGS=$test_PCRE_CFLAGS