mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-09 16:01:54 -09:00
The ecvt(), fcvt(), and gcvt() functions from stdlib.h, used by the SIO
library packaged with the xinetd sources, are masked by _GNU_SOURCE in
musl libc.
Signed-off-by: Aaron Sierra <aaron@bubbl-tek.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
(cherry picked from commit 2982fac48e)
Signed-off-by: Thomas Perale <thomas.perale@mind.be>
44 lines
1.3 KiB
Makefile
44 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# xinetd
|
|
#
|
|
################################################################################
|
|
|
|
XINETD_VERSION = 2.3.15
|
|
XINETD_SITE = \
|
|
$(call github,xinetd-org,xinetd,xinetd-$(subst .,-,$(XINETD_VERSION)))
|
|
XINETD_LICENSE = xinetd license
|
|
XINETD_LICENSE_FILES = COPYRIGHT
|
|
XINETD_CPE_ID_VENDOR = xinetd
|
|
|
|
# 0005-CVE-2013-4342-xinetd-ignores-user-and-group-directiv.patch
|
|
XINETD_IGNORE_CVES += CVE-2013-4342
|
|
|
|
XINETD_CFLAGS = $(TARGET_CFLAGS)
|
|
|
|
# Three cases here:
|
|
# 1. We have libtirpc, use it by passing special flags
|
|
# 2. We have native RPC support, use it, no need to pass special
|
|
# flags (so this case 2 is implicit and not visible below)
|
|
# 3. We don't have RPC support, pass -DNO_RPC to disable it
|
|
ifeq ($(BR2_PACKAGE_LIBTIRPC),y)
|
|
XINETD_DEPENDENCIES += libtirpc host-pkgconf
|
|
XINETD_CFLAGS += "`$(PKG_CONFIG_HOST_BINARY) --cflags libtirpc`"
|
|
XINETD_LIBS += "`$(PKG_CONFIG_HOST_BINARY) --libs libtirpc`"
|
|
else ifeq ($(BR2_TOOLCHAIN_HAS_NATIVE_RPC),)
|
|
XINETD_CFLAGS += -DNO_RPC
|
|
endif
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_USES_MUSL),y)
|
|
# Make ecvt(), fcvt(), and gcvt() available for SIO library
|
|
XINETD_CFLAGS += -D_GNU_SOURCE
|
|
endif
|
|
|
|
XINETD_CONF_ENV += \
|
|
CFLAGS="$(XINETD_CFLAGS)" \
|
|
LIBS="$(XINETD_LIBS)"
|
|
|
|
XINETD_MAKE_OPTS = AR="$(TARGET_AR)"
|
|
|
|
$(eval $(autotools-package))
|