mirror of
https://github.com/matrix-construct/construct
synced 2024-12-26 07:23:53 +01:00
configure.ac: Replace PCRE2 dep with std::regex.
This commit is contained in:
parent
092b4d3ace
commit
41e6909abd
1 changed files with 1 additions and 9 deletions
10
configure.ac
10
configure.ac
|
@ -434,6 +434,7 @@ RB_CHK_SYSHEADER(bitset, [BITSET])
|
|||
RB_CHK_SYSHEADER(string_view, [STRING_VIEW])
|
||||
RB_CHK_SYSHEADER(optional, [OPTIONAL])
|
||||
RB_CHK_SYSHEADER(new, [NEW])
|
||||
RB_CHK_SYSHEADER(regex, [REGEX])
|
||||
|
||||
dnl unix platform
|
||||
RB_CHK_SYSHEADER(unistd.h, [UNISTD_H])
|
||||
|
@ -1191,15 +1192,6 @@ fi
|
|||
|
||||
|
||||
|
||||
dnl
|
||||
dnl PCRE2 support
|
||||
dnl
|
||||
|
||||
PKG_CHECK_MODULES(PCRE, [libpcre2-8], [have_pcre="yes"], [have_pcre="no"])
|
||||
AM_CONDITIONAL([PCRE], [test "x$have_pcre" = "xyes"])
|
||||
|
||||
|
||||
|
||||
dnl
|
||||
dnl libmagic support
|
||||
dnl
|
||||
|
|
Loading…
Reference in a new issue