* [Buildroot] [PATCH 1/1] package/tvheadend: Add optional dependency to libiconv
@ 2014-06-09 11:23 Bernd Kuhls
2014-06-09 14:04 ` Yann E. MORIN
2014-06-09 17:58 ` Thomas Petazzoni
0 siblings, 2 replies; 6+ messages in thread
From: Bernd Kuhls @ 2014-06-09 11:23 UTC (permalink / raw)
To: buildroot
To get reproducable builds depend on libiconv if needed.
tvheadend configure either shows
checking for cc libiconv ... fail
or
checking for cc libiconv ... ok
depending on the presence of libiconv, and gets linked
output/host/usr/bin/i586-buildroot-linux-uclibc-readelf -a output/target/usr/bin/tvheadend | grep NEEDED | grep iconv
0x00000001 (NEEDED) Shared library: [libiconv.so.2]
Tested with minimal defconfig
BR2_TOOLCHAIN_BUILDROOT_LARGEFILE=y
BR2_TOOLCHAIN_BUILDROOT_INET_IPV6=y
BR2_PACKAGE_LIBICONV=y
BR2_PACKAGE_TVHEADEND=y
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/tvheadend/tvheadend.mk | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/package/tvheadend/tvheadend.mk b/package/tvheadend/tvheadend.mk
index c582c07..4d0a16d 100644
--- a/package/tvheadend/tvheadend.mk
+++ b/package/tvheadend/tvheadend.mk
@@ -14,6 +14,10 @@ ifeq ($(BR2_PACKAGE_AVAHI),y)
TVHEADEND_DEPENDENCIES += avahi
endif
+ifeq ($(BR2_PACKAGE_LIBICONV),y)
+TVHEADEND_DEPENDENCIES += libiconv
+endif
+
TVHEADEND_DEPENDENCIES += dtv-scan-tables
define TVHEADEND_CONFIGURE_CMDS
--
1.7.10.4
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [Buildroot] [PATCH 1/1] package/tvheadend: Add optional dependency to libiconv
2014-06-09 11:23 [Buildroot] [PATCH 1/1] package/tvheadend: Add optional dependency to libiconv Bernd Kuhls
@ 2014-06-09 14:04 ` Yann E. MORIN
2014-06-09 17:58 ` Thomas Petazzoni
1 sibling, 0 replies; 6+ messages in thread
From: Yann E. MORIN @ 2014-06-09 14:04 UTC (permalink / raw)
To: buildroot
Bernd, All,
On 2014-06-09 13:23 +0200, Bernd Kuhls spake thusly:
> To get reproducable builds depend on libiconv if needed.
>
> tvheadend configure either shows
>
> checking for cc libiconv ... fail
>
> or
>
> checking for cc libiconv ... ok
>
> depending on the presence of libiconv, and gets linked
>
> output/host/usr/bin/i586-buildroot-linux-uclibc-readelf -a output/target/usr/bin/tvheadend | grep NEEDED | grep iconv
> 0x00000001 (NEEDED) Shared library: [libiconv.so.2]
>
> Tested with minimal defconfig
>
> BR2_TOOLCHAIN_BUILDROOT_LARGEFILE=y
> BR2_TOOLCHAIN_BUILDROOT_INET_IPV6=y
> BR2_PACKAGE_LIBICONV=y
> BR2_PACKAGE_TVHEADEND=y
>
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Regards,
Yann E. MORIN.
> ---
> package/tvheadend/tvheadend.mk | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/package/tvheadend/tvheadend.mk b/package/tvheadend/tvheadend.mk
> index c582c07..4d0a16d 100644
> --- a/package/tvheadend/tvheadend.mk
> +++ b/package/tvheadend/tvheadend.mk
> @@ -14,6 +14,10 @@ ifeq ($(BR2_PACKAGE_AVAHI),y)
> TVHEADEND_DEPENDENCIES += avahi
> endif
>
> +ifeq ($(BR2_PACKAGE_LIBICONV),y)
> +TVHEADEND_DEPENDENCIES += libiconv
> +endif
> +
> TVHEADEND_DEPENDENCIES += dtv-scan-tables
>
> define TVHEADEND_CONFIGURE_CMDS
> --
> 1.7.10.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] 6+ messages in thread
* [Buildroot] [PATCH 1/1] package/tvheadend: Add optional dependency to libiconv
2014-06-09 11:23 [Buildroot] [PATCH 1/1] package/tvheadend: Add optional dependency to libiconv Bernd Kuhls
2014-06-09 14:04 ` Yann E. MORIN
@ 2014-06-09 17:58 ` Thomas Petazzoni
2014-06-11 12:14 ` Bernd Kuhls
1 sibling, 1 reply; 6+ messages in thread
From: Thomas Petazzoni @ 2014-06-09 17:58 UTC (permalink / raw)
To: buildroot
Dear Bernd Kuhls,
On Mon, 9 Jun 2014 13:23:53 +0200, Bernd Kuhls wrote:
> BR2_TOOLCHAIN_BUILDROOT_LARGEFILE=y
> BR2_TOOLCHAIN_BUILDROOT_INET_IPV6=y
> BR2_PACKAGE_LIBICONV=y
> BR2_PACKAGE_TVHEADEND=y
You need libiconv because your toolchain does not have locale support.
Therefore, your Config.in should have something like:
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
see all the other examples in Buildroot.
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] [PATCH 1/1] package/tvheadend: Add optional dependency to libiconv
2014-06-09 17:58 ` Thomas Petazzoni
@ 2014-06-11 12:14 ` Bernd Kuhls
2014-06-11 12:45 ` Peter Korsgaard
0 siblings, 1 reply; 6+ messages in thread
From: Bernd Kuhls @ 2014-06-11 12:14 UTC (permalink / raw)
To: buildroot
Thomas Petazzoni <thomas.petazzoni-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8
@public.gmane.org> wrote in news:20140609195850.2317401f at free-electrons.com:
> You need libiconv because your toolchain does not have locale support.
> Therefore, your Config.in should have something like:
>
> select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
>
> see all the other examples in Buildroot.
Hi,
libiconv is not a hard-dependency of tvheadend so I thought enabling libiconv
in the !BR2_ENABLE_LOCALE case is not necessary here.
Regards, Bernd
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] [PATCH 1/1] package/tvheadend: Add optional dependency to libiconv
2014-06-11 12:14 ` Bernd Kuhls
@ 2014-06-11 12:45 ` Peter Korsgaard
2014-06-11 13:03 ` Bernd Kuhls
0 siblings, 1 reply; 6+ messages in thread
From: Peter Korsgaard @ 2014-06-11 12:45 UTC (permalink / raw)
To: buildroot
>>>>> "Bernd" == Bernd Kuhls <bernd.kuhls@t-online.de> writes:
> Thomas Petazzoni <thomas.petazzoni-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8
> @public.gmane.org> wrote in news:20140609195850.2317401f at free-electrons.com:
>> You need libiconv because your toolchain does not have locale support.
>> Therefore, your Config.in should have something like:
>>
>> select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
>>
>> see all the other examples in Buildroot.
> Hi,
> libiconv is not a hard-dependency of tvheadend so I thought enabling libiconv
> in the !BR2_ENABLE_LOCALE case is not necessary here.
Ahh, so it's just an optional dependency it CAN use if available? Then
the patch is fine.
Somehow I don't see it anymore in patchwork though?
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] [PATCH 1/1] package/tvheadend: Add optional dependency to libiconv
2014-06-11 12:45 ` Peter Korsgaard
@ 2014-06-11 13:03 ` Bernd Kuhls
0 siblings, 0 replies; 6+ messages in thread
From: Bernd Kuhls @ 2014-06-11 13:03 UTC (permalink / raw)
To: buildroot
Peter Korsgaard <jacmet@uclibc.org> wrote in
news:877g4nipi0.fsf at dell.be.48ers.dk:
> Somehow I don't see it anymore in patchwork though?
Hi,
here you can find v2: http://patchwork.ozlabs.org/patch/358660/
Regards, Bernd
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2014-06-11 13:03 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-09 11:23 [Buildroot] [PATCH 1/1] package/tvheadend: Add optional dependency to libiconv Bernd Kuhls
2014-06-09 14:04 ` Yann E. MORIN
2014-06-09 17:58 ` Thomas Petazzoni
2014-06-11 12:14 ` Bernd Kuhls
2014-06-11 12:45 ` Peter Korsgaard
2014-06-11 13:03 ` Bernd Kuhls
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox