From: jow Date: Wed, 19 Sep 2012 15:30:40 +0000 (+0000) Subject: [include] make packages depend on +librt and +libpthread by default if eglibc is... X-Git-Url: https://git.archive.openwrt.org/?p=openwrt.git;a=commitdiff_plain;h=1999a57b6f0bd8eb58d4e7a13408397bdc715ea9 [include] make packages depend on +librt and +libpthread by default if eglibc is in use git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33480 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/include/package-defaults.mk b/include/package-defaults.mk index c3496767cf..37f814da8c 100644 --- a/include/package-defaults.mk +++ b/include/package-defaults.mk @@ -5,8 +5,10 @@ # See /LICENSE for more information. # +PKG_DEFAULT_DEPENDS = +libc +USE_EGLIBC:librt +USE_EGLIBC:libpthread + ifneq ($(PKG_NAME),toolchain) - PKG_FIXUP_DEPENDS = $(if $(filter kmod-%,$(1)),$(2),+libc $(filter-out +libc,$(2))) + PKG_FIXUP_DEPENDS = $(if $(filter kmod-%,$(1)),$(2),$(PKG_DEFAULT_DEPENDS) $(filter-out $(PKG_DEFAULT_DEPENDS),$(2))) else PKG_FIXUP_DEPENDS = $(2) endif