0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-05-18 10:53:48 +02:00

configure.ac: Replace PCRE2 dep with std::regex.

This commit is contained in:
Jason Volk 2018-02-17 21:29:02 -08:00
parent 092b4d3ace
commit 41e6909abd

View file

@ -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