treewide: drop anything related to uClibc

uClibc-ng was removed in 2020 from OpenWrt main repo [1].
These things are leftovers.

[1] https://git.openwrt.org/?p=openwrt/openwrt.git;a=commit;h=63fb175203bbf3b336804587c2f5b3a2d8132ec1

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
(cherry picked from commit 3aab1ef313)
This commit is contained in:
Josef Schlehofer
2025-06-15 08:37:32 +02:00
parent 0632797c89
commit 29a122d807
5 changed files with 5 additions and 26 deletions

View File

@@ -121,15 +121,6 @@ PGSQL_CONFIG_VARS:= \
ac_cv_file__dev_urandom="/dev/urandom" \ ac_cv_file__dev_urandom="/dev/urandom" \
ZIC=zic ZIC=zic
ifeq ($(CONFIG_USE_UCLIBC),y)
# PostgreSQL does not build against uClibc with locales
# enabled, due to an uClibc bug, see
# http://lists.uclibc.org/pipermail/uclibc/2014-April/048326.html
# so overwrite automatic detection and disable locale support
PGSQL_CONFIG_VARS+= \
pgac_cv_type_locale_t=no
endif
TARGET_CONFIGURE_OPTS+=$(PGSQL_CONFIG_VARS) TARGET_CONFIGURE_OPTS+=$(PGSQL_CONFIG_VARS)
HOST_CONFIGURE_ARGS += \ HOST_CONFIGURE_ARGS += \

View File

@@ -68,16 +68,11 @@ define Package/haproxy-nossl/description
This package is built without SSL support. This package is built without SSL support.
endef endef
TARGET=linux-glibc TARGET=linux-musl
ENABLE_LUA:=y ENABLE_LUA:=y
ifeq ($(CONFIG_USE_UCLIBC),y) ifeq ($(CONFIG_USE_GLIBC),y)
ADDON+=USE_BACKTRACE= TARGET=linux-glibc
ADDON+=USE_LIBCRYPT=
endif
ifeq ($(CONFIG_USE_MUSL),y)
TARGET=linux-musl
endif endif
ifeq ($(BUILD_VARIANT),ssl) ifeq ($(BUILD_VARIANT),ssl)

View File

@@ -19,7 +19,7 @@ PKG_MAINTAINER:=Othmar Truniger <github@truniger.ch>
PKG_LICENSE:=GPL-2.0-or-later PKG_LICENSE:=GPL-2.0-or-later
PKG_LICENSE_FILES:=LICENSE PKG_LICENSE_FILES:=LICENSE
PKG_BUILD_DEPENDS:=USE_UCLIBC:argp-standalone USE_MUSL:argp-standalone PKG_BUILD_DEPENDS:=USE_MUSL:argp-standalone
PKG_FIXUP:=autoreconf PKG_FIXUP:=autoreconf
include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/package.mk

View File

@@ -32,7 +32,7 @@ define Package/netifyd
CATEGORY:=Network CATEGORY:=Network
TITLE:=Netify Agent TITLE:=Netify Agent
URL:=http://www.netify.ai/ URL:=http://www.netify.ai/
DEPENDS:=+ca-bundle +libatomic +libcurl +libmnl +libnetfilter-conntrack +libpcap +zlib +libpthread @!USE_UCLIBC DEPENDS:=+ca-bundle +libatomic +libcurl +libmnl +libnetfilter-conntrack +libpcap +zlib +libpthread
# Explicitly depend on libstdcpp rather than $(CXX_DEPENDS). At the moment # Explicitly depend on libstdcpp rather than $(CXX_DEPENDS). At the moment
# std::unordered_map is only available via libstdcpp which is required for # std::unordered_map is only available via libstdcpp which is required for
# performance reasons. # performance reasons.

View File

@@ -39,13 +39,6 @@ define Package/torsocks/description
It ensures that DNS requests are handled safely and explicitly rejects any traffic other than TCP from the application you're using. It ensures that DNS requests are handled safely and explicitly rejects any traffic other than TCP from the application you're using.
endef endef
define Build/Configure
$(call Build/Configure/Default)
ifeq ($(CONFIG_USE_UCLIBC),y)
find $(PKG_BUILD_DIR) -name 'Makefile' -exec sed -i 's|--param ssp-buffer-size=1 -fstack-protector-all||' \{\} \+
endif
endef
define Package/conffiles define Package/conffiles
/etc/tor/torsocks.conf /etc/tor/torsocks.conf
endef endef