Skip to content

Commit 0772be2

Browse files
committed
Drop regex_pcre on Debian Trixie.
Debian have removed the dependency and the module is deprecated in v3 in favour of regex_pcre2 anyway.
1 parent 76991e1 commit 0772be2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

deb/platforms/debian-13.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ declare -Ax MODULE_BUILD_DEPS=(
1414
["ldap"]="libldap2-dev"
1515
["mysql"]="default-libmysqlclient-dev"
1616
["pgsql"]="libpq-dev"
17-
["regex_pcre"]="libpcre3-dev"
1817
["regex_pcre2"]="libpcre2-dev"
1918
["regex_posix"]=""
2019
["regex_re2"]="libre2-dev pkg-config"
@@ -34,7 +33,6 @@ declare -Ax MODULE_RUNTIME_DEPS=(
3433
["ldap"]=""
3534
["mysql"]=""
3635
["pgsql"]=""
37-
["regex_pcre"]=""
3836
["regex_pcre2"]=""
3937
["regex_posix"]=""
4038
["regex_re2"]=""
@@ -47,6 +45,8 @@ declare -Ax MODULE_RUNTIME_DEPS=(
4745
["sslrehashsignal"]=""
4846
)
4947

50-
declare -Ax MODULE_ERRORS=()
48+
declare -Ax MODULE_ERRORS=(
49+
["regex_pcre"]="PCRE1 is not packaged by Debian Trixie"
50+
)
5151

5252
declare -Ax MODULE_WARNINGS=()

0 commit comments

Comments
 (0)