BUILD: Makefile: add "USE_SHM_OPEN" on the linux-musl target

The startup-logs with the shm works correctly with Alpine and Musl,
enable the feature by default for the linux-musl target.
This commit is contained in:
William Lallemand 2022-10-21 10:35:37 +02:00
parent 6435801d09
commit 83e9bcaa87
1 changed files with 1 additions and 1 deletions

View File

@ -403,7 +403,7 @@ ifeq ($(TARGET),linux-musl)
USE_POLL USE_TPROXY USE_LIBCRYPT USE_DL USE_RT USE_CRYPT_H USE_NETFILTER \
USE_CPU_AFFINITY USE_THREAD USE_EPOLL USE_LINUX_TPROXY \
USE_ACCEPT4 USE_LINUX_SPLICE USE_PRCTL USE_THREAD_DUMP USE_NS USE_TFO \
USE_GETADDRINFO)
USE_GETADDRINFO USE_SHM_OPEN)
INSTALL = install -v
endif