Merge branch '346_fix_faq'
[midnight-commander.git] / m4.include / mc-check-search-type.m4
blob6444a4460313523e828c734adc9ccfa2d80482f6
1 dnl @synopsis MC_VERSION
2 dnl
3 dnl Check search type in mc. Currently used glib-regexp or pcre
4 dnl
5 dnl @author Slava Zanko <slavazanko@gmail.com>
6 dnl @version 2009-06-19
7 dnl @license GPL
8 dnl @copyright Free Software Foundation, Inc.
10 AC_DEFUN([MC_CHECK_SEARCH_TYPE],[
12     $PKG_CONFIG --max-version 2.14 glib-2.0
13     if test $? -eq 0; then
14         AX_PATH_LIB_PCRE
15         if test x"${PCRE_LIBS}" = x; then
16             AC_MSG_ERROR([Your system have glib < 2.14 and don't have pcre library (or pcre devel stuff)])
17         fi
18         SEARCH_TYPE="pcre"
19     else
20         SEARCH_TYPE="glib-regexp"
21     fi