* [ptxdist] [PATCH 1/2] gtk2: Disable rebuilds of pregenerated files
@ 2014-11-27 10:43 Markus Pargmann
2014-11-27 10:43 ` [ptxdist] [PATCH 2/2] gtk2: Remove leftover GTK2CORE Markus Pargmann
2014-12-01 12:20 ` [ptxdist] [PATCH 1/2] gtk2: Disable rebuilds of pregenerated files Enrico Weigelt, metux IT consult
0 siblings, 2 replies; 5+ messages in thread
From: Markus Pargmann @ 2014-11-27 10:43 UTC (permalink / raw)
To: ptxdist; +Cc: Markus Pargmann
As we don't want to use tools outside of ptxdist, we should avoid
regenerating generated files within the gtk sources. For example
gtk-update-icon-cache may fail with different non-compatible versions.
This patch disables generating those files. Instead we use the
pregenerated files for now.
Signed-off-by: Markus Pargmann <mpa@pengutronix.de>
---
rules/gtk2.make | 1 +
1 file changed, 1 insertion(+)
diff --git a/rules/gtk2.make b/rules/gtk2.make
index 57cc38e3c9c4..446e3cdec084 100644
--- a/rules/gtk2.make
+++ b/rules/gtk2.make
@@ -43,6 +43,7 @@ GTK2_CONF_OPT := \
--enable-explicit-deps=yes \
--disable-glibtest \
--disable-modules \
+ --disable-rebuilds \
--with-gdktarget=$(PTXCONF_GTK2_TARGET)
# ----------------------------------------------------------------------------
--
2.1.3
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 5+ messages in thread
* [ptxdist] [PATCH 2/2] gtk2: Remove leftover GTK2CORE
2014-11-27 10:43 [ptxdist] [PATCH 1/2] gtk2: Disable rebuilds of pregenerated files Markus Pargmann
@ 2014-11-27 10:43 ` Markus Pargmann
2014-11-27 13:59 ` Michael Olbrich
2014-12-01 12:20 ` [ptxdist] [PATCH 1/2] gtk2: Disable rebuilds of pregenerated files Enrico Weigelt, metux IT consult
1 sibling, 1 reply; 5+ messages in thread
From: Markus Pargmann @ 2014-11-27 10:43 UTC (permalink / raw)
To: ptxdist; +Cc: Markus Pargmann
Signed-off-by: Markus Pargmann <mpa@pengutronix.de>
---
rules/gtk2.in | 1 -
1 file changed, 1 deletion(-)
diff --git a/rules/gtk2.in b/rules/gtk2.in
index 37a419586904..b336abee2ab9 100644
--- a/rules/gtk2.in
+++ b/rules/gtk2.in
@@ -3,7 +3,6 @@
menuconfig GTK2
tristate
prompt "GTK+2"
- default GTK2CORE
select GLIB
select ATK
select PANGO
--
2.1.3
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [ptxdist] [PATCH 2/2] gtk2: Remove leftover GTK2CORE
2014-11-27 10:43 ` [ptxdist] [PATCH 2/2] gtk2: Remove leftover GTK2CORE Markus Pargmann
@ 2014-11-27 13:59 ` Michael Olbrich
0 siblings, 0 replies; 5+ messages in thread
From: Michael Olbrich @ 2014-11-27 13:59 UTC (permalink / raw)
To: ptxdist
On Thu, Nov 27, 2014 at 11:43:27AM +0100, Markus Pargmann wrote:
> Signed-off-by: Markus Pargmann <mpa@pengutronix.de>
Thanks, both applied.
Michael
> ---
> rules/gtk2.in | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/rules/gtk2.in b/rules/gtk2.in
> index 37a419586904..b336abee2ab9 100644
> --- a/rules/gtk2.in
> +++ b/rules/gtk2.in
> @@ -3,7 +3,6 @@
> menuconfig GTK2
> tristate
> prompt "GTK+2"
> - default GTK2CORE
> select GLIB
> select ATK
> select PANGO
> --
> 2.1.3
>
>
> --
> ptxdist mailing list
> ptxdist@pengutronix.de
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [ptxdist] [PATCH 1/2] gtk2: Disable rebuilds of pregenerated files
2014-11-27 10:43 [ptxdist] [PATCH 1/2] gtk2: Disable rebuilds of pregenerated files Markus Pargmann
2014-11-27 10:43 ` [ptxdist] [PATCH 2/2] gtk2: Remove leftover GTK2CORE Markus Pargmann
@ 2014-12-01 12:20 ` Enrico Weigelt, metux IT consult
2014-12-04 16:29 ` Michael Olbrich
1 sibling, 1 reply; 5+ messages in thread
From: Enrico Weigelt, metux IT consult @ 2014-12-01 12:20 UTC (permalink / raw)
To: ptxdist
On 27.11.2014 11:43, Markus Pargmann wrote:
> As we don't want to use tools outside of ptxdist, we should avoid
> regenerating generated files within the gtk sources. For example
> gtk-update-icon-cache may fail with different non-compatible versions.
hmm, pragmatic, but not really optimal.
the optimal way would be fixing these tools to be usable for
crosscompilng. yes, I know, that could be a huge amount of work :(
by the way: I'm really in favour of _always_ regenarating the whole
build script stuff (autotools+friends) ... had more than enough
trouble w/ them in recent years.
mit freundlichen Grüßen
--
Enrico Weigelt,
metux IT consulting
+49-151-27565287
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [ptxdist] [PATCH 1/2] gtk2: Disable rebuilds of pregenerated files
2014-12-01 12:20 ` [ptxdist] [PATCH 1/2] gtk2: Disable rebuilds of pregenerated files Enrico Weigelt, metux IT consult
@ 2014-12-04 16:29 ` Michael Olbrich
0 siblings, 0 replies; 5+ messages in thread
From: Michael Olbrich @ 2014-12-04 16:29 UTC (permalink / raw)
To: ptxdist
On Mon, Dec 01, 2014 at 01:20:08PM +0100, Enrico Weigelt, metux IT consult wrote:
> On 27.11.2014 11:43, Markus Pargmann wrote:
> > As we don't want to use tools outside of ptxdist, we should avoid
> > regenerating generated files within the gtk sources. For example
> > gtk-update-icon-cache may fail with different non-compatible versions.
>
> hmm, pragmatic, but not really optimal.
> the optimal way would be fixing these tools to be usable for
> crosscompilng. yes, I know, that could be a huge amount of work :(
>
> by the way: I'm really in favour of _always_ regenarating the whole
> build script stuff (autotools+friends) ... had more than enough
> trouble w/ them in recent years.
That's not good either. A lot of packages are missing files needed to run
autotools sucessfully or require older autotols versions.
Michael
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2014-12-04 16:29 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-11-27 10:43 [ptxdist] [PATCH 1/2] gtk2: Disable rebuilds of pregenerated files Markus Pargmann
2014-11-27 10:43 ` [ptxdist] [PATCH 2/2] gtk2: Remove leftover GTK2CORE Markus Pargmann
2014-11-27 13:59 ` Michael Olbrich
2014-12-01 12:20 ` [ptxdist] [PATCH 1/2] gtk2: Disable rebuilds of pregenerated files Enrico Weigelt, metux IT consult
2014-12-04 16:29 ` Michael Olbrich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox