* [Buildroot] [PATCH] ofono: needs dynamic library support
@ 2015-06-06 20:27 Baruch Siach
2015-06-06 20:56 ` Yann E. MORIN
2015-06-07 21:59 ` Peter Korsgaard
0 siblings, 2 replies; 3+ messages in thread
From: Baruch Siach @ 2015-06-06 20:27 UTC (permalink / raw)
To: buildroot
The only package selection ofono, connman, requires dynamic library already.
Fixes:
http://autobuild.buildroot.net/results/c5b/c5bb44c192c076b42538f805062a465318051df4/
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
package/ofono/Config.in | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/package/ofono/Config.in b/package/ofono/Config.in
index eb1856fdb794..f709b04180d4 100644
--- a/package/ofono/Config.in
+++ b/package/ofono/Config.in
@@ -4,6 +4,7 @@ config BR2_PACKAGE_OFONO
depends on BR2_TOOLCHAIN_HAS_THREADS # dbus, libglib2
depends on BR2_USE_MMU # dbus, libglib2
depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII201405 # libcap-ng
+ depends on !BR2_STATIC_LIBS # dlopen()
select BR2_PACKAGE_LIBCAP_NG
select BR2_PACKAGE_DBUS
select BR2_PACKAGE_LIBGLIB2
@@ -15,7 +16,7 @@ config BR2_PACKAGE_OFONO
http://ofono.org/
-comment "ofono needs a toolchain w/ wchar, threads"
+comment "ofono needs a toolchain w/ dynamic library, wchar, threads"
depends on BR2_USE_MMU
- depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
+ depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII201405
--
2.1.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH] ofono: needs dynamic library support
2015-06-06 20:27 [Buildroot] [PATCH] ofono: needs dynamic library support Baruch Siach
@ 2015-06-06 20:56 ` Yann E. MORIN
2015-06-07 21:59 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2015-06-06 20:56 UTC (permalink / raw)
To: buildroot
Baruch, All,
On 2015-06-06 23:27 +0300, Baruch Siach spake thusly:
> The only package selection ofono, connman, requires dynamic library already.
>
> Fixes:
> http://autobuild.buildroot.net/results/c5b/c5bb44c192c076b42538f805062a465318051df4/
>
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Regards,
Yann E. MORIN.
> ---
> package/ofono/Config.in | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/package/ofono/Config.in b/package/ofono/Config.in
> index eb1856fdb794..f709b04180d4 100644
> --- a/package/ofono/Config.in
> +++ b/package/ofono/Config.in
> @@ -4,6 +4,7 @@ config BR2_PACKAGE_OFONO
> depends on BR2_TOOLCHAIN_HAS_THREADS # dbus, libglib2
> depends on BR2_USE_MMU # dbus, libglib2
> depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII201405 # libcap-ng
> + depends on !BR2_STATIC_LIBS # dlopen()
> select BR2_PACKAGE_LIBCAP_NG
> select BR2_PACKAGE_DBUS
> select BR2_PACKAGE_LIBGLIB2
> @@ -15,7 +16,7 @@ config BR2_PACKAGE_OFONO
>
> http://ofono.org/
>
> -comment "ofono needs a toolchain w/ wchar, threads"
> +comment "ofono needs a toolchain w/ dynamic library, wchar, threads"
> depends on BR2_USE_MMU
> - depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
> + depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
> depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII201405
> --
> 2.1.4
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH] ofono: needs dynamic library support
2015-06-06 20:27 [Buildroot] [PATCH] ofono: needs dynamic library support Baruch Siach
2015-06-06 20:56 ` Yann E. MORIN
@ 2015-06-07 21:59 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2015-06-07 21:59 UTC (permalink / raw)
To: buildroot
>>>>> "Baruch" == Baruch Siach <baruch@tkos.co.il> writes:
> The only package selection ofono, connman, requires dynamic library already.
> Fixes:
> http://autobuild.buildroot.net/results/c5b/c5bb44c192c076b42538f805062a465318051df4/
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-06-07 21:59 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-06 20:27 [Buildroot] [PATCH] ofono: needs dynamic library support Baruch Siach
2015-06-06 20:56 ` Yann E. MORIN
2015-06-07 21:59 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox