mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
Use the perl found by configure. (#149826, Morten Welinder)
2004-11-29 Matthias Clasen <mclasen@redhat.com> * gtk/Makefile.am (gtkalias.h): * gdk/Makefile.am (gdkalias.h): Use the perl found by configure. (#149826, Morten Welinder)
This commit is contained in:
parent
b5096b15f1
commit
7346a00add
@ -1,3 +1,9 @@
|
||||
2004-11-29 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/Makefile.am (gtkalias.h):
|
||||
* gdk/Makefile.am (gdkalias.h): Use the perl found by
|
||||
configure. (#149826, Morten Welinder)
|
||||
|
||||
2004-11-28 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkwidget.h (gtk_requisition_get_type):
|
||||
|
@ -1,3 +1,9 @@
|
||||
2004-11-29 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/Makefile.am (gtkalias.h):
|
||||
* gdk/Makefile.am (gdkalias.h): Use the perl found by
|
||||
configure. (#149826, Morten Welinder)
|
||||
|
||||
2004-11-28 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkwidget.h (gtk_requisition_get_type):
|
||||
|
@ -1,3 +1,9 @@
|
||||
2004-11-29 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/Makefile.am (gtkalias.h):
|
||||
* gdk/Makefile.am (gdkalias.h): Use the perl found by
|
||||
configure. (#149826, Morten Welinder)
|
||||
|
||||
2004-11-28 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkwidget.h (gtk_requisition_get_type):
|
||||
|
@ -1,3 +1,9 @@
|
||||
2004-11-29 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/Makefile.am (gtkalias.h):
|
||||
* gdk/Makefile.am (gdkalias.h): Use the perl found by
|
||||
configure. (#149826, Morten Welinder)
|
||||
|
||||
2004-11-28 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkwidget.h (gtk_requisition_get_type):
|
||||
|
@ -1,6 +1,11 @@
|
||||
2004-11-29 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* Makefile.am (gdk-pixbuf-alias.h): Use the perl found by
|
||||
configure. (#149826, Morten Welinder)
|
||||
|
||||
Sun Nov 28 12:11:21 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* makegdkpixbufalias.pl: ytpo fix, so attributes are really
|
||||
* makegdkpixbufalias.pl: Typo fix, so attributes are really
|
||||
propagated.
|
||||
|
||||
2004-11-28 Matthias Clasen <mclasen@redhat.com>
|
||||
|
@ -40,10 +40,10 @@ 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
|
||||
$(srcdir)/makegdkpixbufalias.pl < $(srcdir)/gdk-pixbuf.symbols > gdk-pixbuf-alias.h
|
||||
$(PERL) $(srcdir)/makegdkpixbufalias.pl < $(srcdir)/gdk-pixbuf.symbols > gdk-pixbuf-alias.h
|
||||
|
||||
if OS_UNIX
|
||||
TESTS = abicheck.sh
|
||||
|
@ -177,10 +177,10 @@ 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
|
||||
$(srcdir)/makegdkalias.pl < $(srcdir)/gdk.symbols > gdkalias.h
|
||||
$(PERL) $(srcdir)/makegdkalias.pl < $(srcdir)/gdk.symbols > gdkalias.h
|
||||
|
||||
if OS_UNIX
|
||||
TESTS = abicheck.sh
|
||||
|
@ -71,10 +71,10 @@ 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
|
||||
$(srcdir)/makegtkalias.pl < $(srcdir)/gtk.symbols > gtkalias.h
|
||||
$(PERL) $(srcdir)/makegtkalias.pl < $(srcdir)/gtk.symbols > gtkalias.h
|
||||
|
||||
if OS_UNIX
|
||||
TESTS = abicheck.sh
|
||||
|
Loading…
Reference in New Issue
Block a user