summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2004-12-03 04:05:10 +0000
committerTor Lillqvist <tml@src.gnome.org>2004-12-03 04:05:10 +0000
commit5d90733686c2da2660367b45ed1f0eed59995656 (patch)
treeac85493b1446d30a240be6d5b15caa63a39884dc
parentbe60805ef6f41ddbd69f1b3b4ac1052d7b05ca3b (diff)
downloadgtk+-5d90733686c2da2660367b45ed1f0eed59995656.tar.gz
gdk-pixbuf/Makefile.am (gdk_pixbuf.def) gdk/Makefile.am (gdk.def) Work
2004-12-03 Tor Lillqvist <tml@iki.fi> * gdk-pixbuf/Makefile.am (gdk_pixbuf.def) * gdk/Makefile.am (gdk.def) * gtk/Makefile.am (gtk.def): Work around gcc misfeature. At least gcc 3.3.1 doesn't like to do -E on files that it thinks aren't source files. Use redirection and '-' instead.
-rw-r--r--ChangeLog8
-rw-r--r--ChangeLog.pre-2-108
-rw-r--r--ChangeLog.pre-2-68
-rw-r--r--ChangeLog.pre-2-88
-rw-r--r--gdk-pixbuf/Makefile.am2
-rw-r--r--gdk/Makefile.am2
-rw-r--r--gtk/Makefile.am2
7 files changed, 35 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 26458ec94f..0f00b80e6e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2004-12-03 Tor Lillqvist <tml@iki.fi>
+
+ * gdk-pixbuf/Makefile.am (gdk_pixbuf.def)
+ * gdk/Makefile.am (gdk.def)
+ * gtk/Makefile.am (gtk.def): Work around gcc misfeature. At least
+ gcc 3.3.1 doesn't like to do -E on files that it thinks aren't
+ source files. Use redirection and '-' instead.
+
2004-12-02 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_should_respond): Reinstate the previous behavior for clicking Ok after
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index 26458ec94f..0f00b80e6e 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,3 +1,11 @@
+2004-12-03 Tor Lillqvist <tml@iki.fi>
+
+ * gdk-pixbuf/Makefile.am (gdk_pixbuf.def)
+ * gdk/Makefile.am (gdk.def)
+ * gtk/Makefile.am (gtk.def): Work around gcc misfeature. At least
+ gcc 3.3.1 doesn't like to do -E on files that it thinks aren't
+ source files. Use redirection and '-' instead.
+
2004-12-02 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_should_respond): Reinstate the previous behavior for clicking Ok after
diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6
index 26458ec94f..0f00b80e6e 100644
--- a/ChangeLog.pre-2-6
+++ b/ChangeLog.pre-2-6
@@ -1,3 +1,11 @@
+2004-12-03 Tor Lillqvist <tml@iki.fi>
+
+ * gdk-pixbuf/Makefile.am (gdk_pixbuf.def)
+ * gdk/Makefile.am (gdk.def)
+ * gtk/Makefile.am (gtk.def): Work around gcc misfeature. At least
+ gcc 3.3.1 doesn't like to do -E on files that it thinks aren't
+ source files. Use redirection and '-' instead.
+
2004-12-02 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_should_respond): Reinstate the previous behavior for clicking Ok after
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index 26458ec94f..0f00b80e6e 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -1,3 +1,11 @@
+2004-12-03 Tor Lillqvist <tml@iki.fi>
+
+ * gdk-pixbuf/Makefile.am (gdk_pixbuf.def)
+ * gdk/Makefile.am (gdk.def)
+ * gtk/Makefile.am (gtk.def): Work around gcc misfeature. At least
+ gcc 3.3.1 doesn't like to do -E on files that it thinks aren't
+ source files. Use redirection and '-' instead.
+
2004-12-02 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_should_respond): Reinstate the previous behavior for clicking Ok after
diff --git a/gdk-pixbuf/Makefile.am b/gdk-pixbuf/Makefile.am
index 55ed65ba89..090c5419b2 100644
--- a/gdk-pixbuf/Makefile.am
+++ b/gdk-pixbuf/Makefile.am
@@ -40,7 +40,7 @@ uninstall-ms-lib:
endif
gdk_pixbuf.def: gdk-pixbuf.symbols
- (echo -e EXPORTS; $(CPP) -P -DINCLUDE_VARIABLES $(srcdir)/gdk-pixbuf.symbols | sed -e '/^$$/d' -e 's/^/ /' -e 's/G_GNUC_[^ ]*//g') > gdk_pixbuf.def
+ (echo -e EXPORTS; $(CPP) -P -DINCLUDE_VARIABLES - <$(srcdir)/gdk-pixbuf.symbols | sed -e '/^$$/d' -e 's/^/ /' -e 's/G_GNUC_[^ ]*//g') > gdk_pixbuf.def
gdk-pixbuf-alias.h: gdk-pixbuf.symbols
$(PERL) $(srcdir)/makegdkpixbufalias.pl < $(srcdir)/gdk-pixbuf.symbols > gdk-pixbuf-alias.h
diff --git a/gdk/Makefile.am b/gdk/Makefile.am
index 8e69a3aba2..acd669f204 100644
--- a/gdk/Makefile.am
+++ b/gdk/Makefile.am
@@ -177,7 +177,7 @@ uninstall-ms-lib:
endif
gdk.def: gdk.symbols
- (echo -e EXPORTS; $(CPP) -P -DGDK_WINDOWING_WIN32 -DINCLUDE_VARIABLES $(srcdir)/gdk.symbols | sed -e '/^$$/d' -e 's/^/ /' -e 's/G_GNUC_[^ ]*//g') > gdk.def
+ (echo -e EXPORTS; $(CPP) -P -DGDK_WINDOWING_WIN32 -DINCLUDE_VARIABLES - <$(srcdir)/gdk.symbols | sed -e '/^$$/d' -e 's/^/ /' -e 's/G_GNUC_[^ ]*//g') > gdk.def
gdkalias.h: gdk.symbols
$(PERL) $(srcdir)/makegdkalias.pl < $(srcdir)/gdk.symbols > gdkalias.h
diff --git a/gtk/Makefile.am b/gtk/Makefile.am
index 0990434402..79dead6416 100644
--- a/gtk/Makefile.am
+++ b/gtk/Makefile.am
@@ -71,7 +71,7 @@ uninstall-ms-lib:
endif
gtk.def: gtk.symbols
- (echo -e EXPORTS; $(CPP) -P -DINCLUDE_VARIABLES -DG_OS_WIN32 $(srcdir)/gtk.symbols | sed -e '/^$$/d' -e 's/^/ /' -e 's/G_GNUC_[^ ]*//g') > gtk.def
+ (echo -e EXPORTS; $(CPP) -P -DINCLUDE_VARIABLES -DG_OS_WIN32 - <$(srcdir)/gtk.symbols | sed -e '/^$$/d' -e 's/^/ /' -e 's/G_GNUC_[^ ]*//g') > gtk.def
gtkalias.h: gtk.symbols
$(PERL) $(srcdir)/makegtkalias.pl < $(srcdir)/gtk.symbols > gtkalias.h