mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-19 07:54:05 +02:00
base-files: librt should depend on libpthread, not the other way around
In uClibc 0.9.32 as well as recent versions of glibc and eglibc, librt depends on libpthread. Signed-off-by: Mark Mentovai <mark@moxienet.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25548 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
3b96f8e26b
commit
cac91fedd5
@ -196,7 +196,6 @@ endef
|
|||||||
define Package/libpthread
|
define Package/libpthread
|
||||||
$(call Package/libc/Default)
|
$(call Package/libc/Default)
|
||||||
TITLE:=POSIX thread library
|
TITLE:=POSIX thread library
|
||||||
DEPENDS:= +librt
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/libpthread/config
|
define Package/libpthread/config
|
||||||
@ -223,6 +222,7 @@ endef
|
|||||||
define Package/librt
|
define Package/librt
|
||||||
$(call Package/libc/Default)
|
$(call Package/libc/Default)
|
||||||
TITLE:=POSIX.1b RealTime extension library
|
TITLE:=POSIX.1b RealTime extension library
|
||||||
|
DEPENDS:=+libpthread
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/librt/config
|
define Package/librt/config
|
||||||
|
Loading…
Reference in New Issue
Block a user