[ Backport from 1.3 / otaylor, 29 Nov 2000 ]

Thu Oct 26 02:10:32 2000  Tim Janik  <timj@gtk.org>

        [ Backport from 1.3 / otaylor, 29 Nov 2000 ]

	* gtk/Makefile.am: invoke maketypes.awk with LC_ALL=C to avoid
	localization misbehaviour.
This commit is contained in:
Tim Janik
2000-11-30 01:22:01 +00:00
committed by Owen Taylor
parent 663a34be8b
commit ef30d8a2b9
8 changed files with 52 additions and 3 deletions

View File

@@ -1,3 +1,10 @@
Thu Oct 26 02:10:32 2000 Tim Janik <timj@gtk.org>
[ Backport from 1.3 / otaylor, 29 Nov 2000 ]
* gtk/Makefile.am: invoke maketypes.awk with LC_ALL=C to avoid
localization misbehaviour.
2000-11-29 Martin Baulig <baulig@suse.de>
* *.pc.in: Make the pkg-config scripts actually work.

View File

@@ -1,3 +1,10 @@
Thu Oct 26 02:10:32 2000 Tim Janik <timj@gtk.org>
[ Backport from 1.3 / otaylor, 29 Nov 2000 ]
* gtk/Makefile.am: invoke maketypes.awk with LC_ALL=C to avoid
localization misbehaviour.
2000-11-29 Martin Baulig <baulig@suse.de>
* *.pc.in: Make the pkg-config scripts actually work.

View File

@@ -1,3 +1,10 @@
Thu Oct 26 02:10:32 2000 Tim Janik <timj@gtk.org>
[ Backport from 1.3 / otaylor, 29 Nov 2000 ]
* gtk/Makefile.am: invoke maketypes.awk with LC_ALL=C to avoid
localization misbehaviour.
2000-11-29 Martin Baulig <baulig@suse.de>
* *.pc.in: Make the pkg-config scripts actually work.

View File

@@ -1,3 +1,10 @@
Thu Oct 26 02:10:32 2000 Tim Janik <timj@gtk.org>
[ Backport from 1.3 / otaylor, 29 Nov 2000 ]
* gtk/Makefile.am: invoke maketypes.awk with LC_ALL=C to avoid
localization misbehaviour.
2000-11-29 Martin Baulig <baulig@suse.de>
* *.pc.in: Make the pkg-config scripts actually work.

View File

@@ -1,3 +1,10 @@
Thu Oct 26 02:10:32 2000 Tim Janik <timj@gtk.org>
[ Backport from 1.3 / otaylor, 29 Nov 2000 ]
* gtk/Makefile.am: invoke maketypes.awk with LC_ALL=C to avoid
localization misbehaviour.
2000-11-29 Martin Baulig <baulig@suse.de>
* *.pc.in: Make the pkg-config scripts actually work.

View File

@@ -1,3 +1,10 @@
Thu Oct 26 02:10:32 2000 Tim Janik <timj@gtk.org>
[ Backport from 1.3 / otaylor, 29 Nov 2000 ]
* gtk/Makefile.am: invoke maketypes.awk with LC_ALL=C to avoid
localization misbehaviour.
2000-11-29 Martin Baulig <baulig@suse.de>
* *.pc.in: Make the pkg-config scripts actually work.

View File

@@ -1,3 +1,10 @@
Thu Oct 26 02:10:32 2000 Tim Janik <timj@gtk.org>
[ Backport from 1.3 / otaylor, 29 Nov 2000 ]
* gtk/Makefile.am: invoke maketypes.awk with LC_ALL=C to avoid
localization misbehaviour.
2000-11-29 Martin Baulig <baulig@suse.de>
* *.pc.in: Make the pkg-config scripts actually work.

View File

@@ -353,18 +353,18 @@ $(srcdir)/gtkmarshal.c $(srcdir)/stamp-gtkmarshal.h: @REBUILD@ genmarshal.pl gtk
&& echo timestamp > stamp-gtkmarshal.h
$(srcdir)/stamp-gtktypebuiltins.h: @REBUILD@ maketypes.awk stamp-gtk.defs gtktypebuiltins.h
cd $(srcdir) \
&& $(AWK) -f maketypes.awk gtk.defs macros > xgen-gtbh \
&& LC_ALL=C $(AWK) -f maketypes.awk gtk.defs macros > xgen-gtbh \
&& (cmp -s xgen-gtbh gtktypebuiltins.h || cp xgen-gtbh gtktypebuiltins.h) \
&& rm -f xgen-gtbh \
&& echo timestamp > $(@F)
$(srcdir)/gtktypebuiltins_vars.c: @REBUILD@ maketypes.awk stamp-gtk.defs
cd $(srcdir) \
&& $(AWK) -f maketypes.awk gtk.defs variables > xgen-gtbvc \
&& LC_ALL=C $(AWK) -f maketypes.awk gtk.defs variables > xgen-gtbvc \
&& cp xgen-gtbvc $(@F) \
&& rm -f xgen-gtbvc
$(srcdir)/gtktypebuiltins_ids.c: @REBUILD@ maketypes.awk stamp-gtk.defs
cd $(srcdir) \
&& $(AWK) -f maketypes.awk gtk.defs entries > xgen-gtbic \
&& LC_ALL=C $(AWK) -f maketypes.awk gtk.defs entries > xgen-gtbic \
&& cp xgen-gtbic $(@F) \
&& rm -f xgen-gtbic
$(srcdir)/gtktypebuiltins_evals.c: @REBUILD@ makeenums.pl $(gtk_public_h_sources) $(gdk_headers)