* [Buildroot] [PATCH 1/1] package/tinyxml: fix the upstream URL
@ 2014-11-01 18:08 Romain Naour
2014-11-01 19:07 ` Yann E. MORIN
0 siblings, 1 reply; 3+ messages in thread
From: Romain Naour @ 2014-11-01 18:08 UTC (permalink / raw)
To: buildroot
Signed-off-by: Romain Naour <romain.naour@openwide.fr>
---
package/tinyxml/Config.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/tinyxml/Config.in b/package/tinyxml/Config.in
index 061ff67..466e391 100644
--- a/package/tinyxml/Config.in
+++ b/package/tinyxml/Config.in
@@ -5,7 +5,7 @@ config BR2_PACKAGE_TINYXML
TinyXML is a simple, small, C++ XML parser that can be
easily integrating into other programs.
- https://github.com/leethomason/tinyxml2
+ http://sourceforge.net/projects/tinyxml
comment "tinyxml needs a toolchain w/ C++"
depends on !BR2_INSTALL_LIBSTDCPP
--
1.9.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 1/1] package/tinyxml: fix the upstream URL
2014-11-01 18:08 [Buildroot] [PATCH 1/1] package/tinyxml: fix the upstream URL Romain Naour
@ 2014-11-01 19:07 ` Yann E. MORIN
2014-11-03 11:06 ` Maxime Hadjinlian
0 siblings, 1 reply; 3+ messages in thread
From: Yann E. MORIN @ 2014-11-01 19:07 UTC (permalink / raw)
To: buildroot
Romain, All,
On 2014-11-01 19:08 +0100, Romain Naour spake thusly:
> Signed-off-by: Romain Naour <romain.naour@openwide.fr>
> ---
> package/tinyxml/Config.in | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/package/tinyxml/Config.in b/package/tinyxml/Config.in
> index 061ff67..466e391 100644
> --- a/package/tinyxml/Config.in
> +++ b/package/tinyxml/Config.in
> @@ -5,7 +5,7 @@ config BR2_PACKAGE_TINYXML
> TinyXML is a simple, small, C++ XML parser that can be
> easily integrating into other programs.
>
> - https://github.com/leethomason/tinyxml2
> + http://sourceforge.net/projects/tinyxml
Well, I'm not even sure we are using that TinyXML.
In fact, we get it from an XMBC mirror:
TINYXML_SITE = http://mirrors.xbmc.org/build-deps/sources
The content of the tinyxml-2.6.2_2.tar.gz archive is not even remotely
similar to the content of the repository on the sourceforge webpage; at
least, it has been hugely re-organised, and patched. It also has
autotools files, which is good, though.
So, NAK on this, until we have a clear explanations on what's going on.
Maxime, why do we need this specially patched tinyxml from the XBMC
mirror, instead of the one from upstream?
Regards,
Yann E. MORIN.
> comment "tinyxml needs a toolchain w/ C++"
> depends on !BR2_INSTALL_LIBSTDCPP
> --
> 1.9.3
>
> _______________________________________________
> 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 1/1] package/tinyxml: fix the upstream URL
2014-11-01 19:07 ` Yann E. MORIN
@ 2014-11-03 11:06 ` Maxime Hadjinlian
0 siblings, 0 replies; 3+ messages in thread
From: Maxime Hadjinlian @ 2014-11-03 11:06 UTC (permalink / raw)
To: buildroot
Hi Yann, Romain, all
On Sat, Nov 1, 2014 at 8:07 PM, Yann E. MORIN <yann.morin.1998@free.fr> wrote:
> Romain, All,
>
> On 2014-11-01 19:08 +0100, Romain Naour spake thusly:
>> Signed-off-by: Romain Naour <romain.naour@openwide.fr>
>> ---
>> package/tinyxml/Config.in | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/package/tinyxml/Config.in b/package/tinyxml/Config.in
>> index 061ff67..466e391 100644
>> --- a/package/tinyxml/Config.in
>> +++ b/package/tinyxml/Config.in
>> @@ -5,7 +5,7 @@ config BR2_PACKAGE_TINYXML
>> TinyXML is a simple, small, C++ XML parser that can be
>> easily integrating into other programs.
>>
>> - https://github.com/leethomason/tinyxml2
>> + http://sourceforge.net/projects/tinyxml
>
> Well, I'm not even sure we are using that TinyXML.
>
> In fact, we get it from an XMBC mirror:
> TINYXML_SITE = http://mirrors.xbmc.org/build-deps/sources
>
> The content of the tinyxml-2.6.2_2.tar.gz archive is not even remotely
> similar to the content of the repository on the sourceforge webpage; at
> least, it has been hugely re-organised, and patched. It also has
> autotools files, which is good, though.
>
> So, NAK on this, until we have a clear explanations on what's going on.
>
> Maxime, why do we need this specially patched tinyxml from the XBMC
> mirror, instead of the one from upstream?
So, the XBMC folks have organised the source (created a src, include,
tests folder and put relevant files in each), added autotools suports,
a tinyxml.pc.in and reworked the Visual Studio project file (for
building XBMC for Windows I assume).
The main tweaks is that they have forced the STL support through a
modification in tinyxml.h
I think a full rework of this package should be in order, I'll cookup
a patch reworking it fully to uses the source from sourceforge, making
sure it doesn't break XBMC.
>
> Regards,
> Yann E. MORIN.
>
>> comment "tinyxml needs a toolchain w/ C++"
>> depends on !BR2_INSTALL_LIBSTDCPP
>> --
>> 1.9.3
>>
>> _______________________________________________
>> 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
end of thread, other threads:[~2014-11-03 11:06 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-01 18:08 [Buildroot] [PATCH 1/1] package/tinyxml: fix the upstream URL Romain Naour
2014-11-01 19:07 ` Yann E. MORIN
2014-11-03 11:06 ` Maxime Hadjinlian
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox