aboutsummaryrefslogtreecommitdiff
path: root/src/meson.build
diff options
context:
space:
mode:
authorallusive-dev <[email protected]>2023-11-13 08:35:08 +1100
committerallusive-dev <[email protected]>2023-11-13 08:35:08 +1100
commit3a3c0751cc54f548fa8638c1fcb9ef5f636bcb9a (patch)
tree0247aa85286648a305ac486011f0f89557a0fca4 /src/meson.build
parentMerge pull request #32 from IogaMaster/improved-flake (diff)
downloadcompfy-1.5.0.tar.xz
compfy-1.5.0.zip
Update to pcre2 in relation to #291.5.0
Diffstat (limited to 'src/meson.build')
-rw-r--r--src/meson.build5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/meson.build b/src/meson.build
index 60d83a8..09eb07b 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -44,11 +44,8 @@ if get_option('config_file')
srcs += [ 'config_libconfig.c' ]
endif
if get_option('regex')
- pcre = dependency('libpcre', required: true)
+ pcre = dependency('libpcre2-8', required: true)
cflags += ['-DCONFIG_REGEX_PCRE']
- if pcre.version().version_compare('>=8.20')
- cflags += ['-DCONFIG_REGEX_PCRE_JIT']
- endif
deps += [pcre]
endif