Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Simonenko <sergey.simonenko@zabbix.com>2022-01-14 16:30:13 +0300
committerSergey Simonenko <sergey.simonenko@zabbix.com>2022-01-14 16:30:13 +0300
commitbd09ac3a51e3af93895ca9b53578cc00932f49b5 (patch)
tree5fe06f63cb4017f2cd7e6c164c64f63926c50ff1 /configure.ac
parent01a5ac84794e152a2f4dde5a63f483ead47748ce (diff)
...GI..... [ZBX-20436] fixed autotools variable namings
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index acf22f837de..72945bb78a8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1895,7 +1895,7 @@ if test "x$want_libpcre2" = "xyes"; then
fi
AC_DEFINE([HAVE_PCRE2_H], 1, [Define to 1 if you have the 'libpcre2' library (-lpcre2-8)])
- HAVE_PCRE2_H=1
+ have_pcre2=1
else
if test "x$found_libpcre" != "xyes"; then
AC_MSG_ERROR([Unable to use libpcre (libpcre check failed)])
@@ -1910,12 +1910,12 @@ else
fi
AC_DEFINE([HAVE_PCRE_H], 1, [Define to 1 if you have the 'libpcre' library (-lpcre)])
- HAVE_PCRE_H=1
+ have_pcre=1
fi
fi
-AM_CONDITIONAL([USE_PCRE], [test "x$HAVE_PCRE_H" = x1])
-AM_CONDITIONAL([USE_PCRE2], [test "x$HAVE_PCRE2_H" = x1])
+AM_CONDITIONAL([HAVE_PCRE], [test "x$have_pcre" = x1])
+AM_CONDITIONAL([HAVE_PCRE2], [test "x$have_pcre2" = x1])
found_iconv="no"
dnl Check for libiconv [by default - skip]