package/freeradius-server: switch to pcre2

Upstream added support for pcre2 with commit
430ed115ca
with version 3.2.8 which was added to buildroot with commit
747fed73f9.

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
This commit is contained in:
Bernd Kuhls
2026-04-09 10:42:58 +02:00
committed by Julien Olivain
parent 1eae9a4b1a
commit ef396fb9a0

View File

@@ -158,9 +158,9 @@ else
FREERADIUS_SERVER_CONF_OPTS += --without-rlm_sql_mysql FREERADIUS_SERVER_CONF_OPTS += --without-rlm_sql_mysql
endif endif
ifeq ($(BR2_PACKAGE_PCRE),y) ifeq ($(BR2_PACKAGE_PCRE2),y)
FREERADIUS_SERVER_CONF_OPTS += --with-pcre FREERADIUS_SERVER_CONF_OPTS += --with-pcre
FREERADIUS_SERVER_DEPENDENCIES += pcre FREERADIUS_SERVER_DEPENDENCIES += pcre2
else else
FREERADIUS_SERVER_CONF_OPTS += --without-pcre FREERADIUS_SERVER_CONF_OPTS += --without-pcre
endif endif