Browse Source

net: http: server: Select POSIX_C_LIB_EXT instead of FNMATCH

The CONFIG_POSIX_C_LIB_EXT will get support for fnmatch() function.
The old CONFIG_FNMATCH is deprecated.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
(cherry picked from commit 0f90affcdf)
pull/91876/head
Jukka Rissanen 4 months ago committed by Dan Kalowsky
parent
commit
7c48241e5e
  1. 3
      subsys/net/lib/http/Kconfig

3
subsys/net/lib/http/Kconfig

@ -163,7 +163,8 @@ config HTTP_SERVER_WEBSOCKET @@ -163,7 +163,8 @@ config HTTP_SERVER_WEBSOCKET
config HTTP_SERVER_RESOURCE_WILDCARD
bool "Allow wildcard matching of resources"
select FNMATCH
# The POSIX_C_LIB_EXT will get fnmatch() support
select POSIX_C_LIB_EXT
help
Allow user to specify wildcards when setting up resource strings.
This means that instead of specifying multiple resources with exact

Loading…
Cancel
Save