From mboxrd@z Thu Jan 1 00:00:00 1970 From: Joachim Wiberg Date: Wed, 14 Jul 2021 09:05:36 +0200 Subject: [Buildroot] [PATCH 1/1] package/libteam: new package In-Reply-To: References: <20210710114153.369531-1-troglobit@gmail.com> <20210710114153.369531-2-troglobit@gmail.com> Message-ID: <878s29wf27.fsf@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net Hi Yegor! On Tue, Jul 13, 2021 at 06:43, Yegor Yefremov wrote: > On Sat, Jul 10, 2021 at 1:42 PM Joachim Wiberg wrote: >> [snip] >> +++ b/package/libteam/Config.in >> @@ -0,0 +1,20 @@ >> +config BR2_PACKAGE_LIBTEAM >> + bool "libteam" >> + depends on BR2_USE_MMU # fork() >> + select BR2_PACKAGE_JANSSON >> + select BR2_PACKAGE_LIBDAEMON >> + select BR2_PACKAGE_LIBNL >> + select BR2_PACKAGE_LIBNL_TOOLS >> + help >> [snip] > > The dependencies for libnl and tools are missing: > > comment "libnl tools needs a toolchain w/ dynamic library" > depends on BR2_STATIC_LIBS > > comment "libnl needs a toolchain w/ threads" > depends on !BR2_TOOLCHAIN_HAS_THREADS > Aha, I didn't realize I needed to unwind and list all the deps from my package's dependencies as well. But only in the Config.in, right? I'll post a v2 later this week. Thanks /Joachim