mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-28 23:16:14 +01:00
glib/Makefile.am (glib.def) gcc -E complains "linker unused because
2004-11-30 Tor Lillqvist <tml@iki.fi> * glib/Makefile.am (glib.def) * gobject/Makefile.am (gobject.def): gcc -E complains "linker unused because linking not done" if told to preprocess an *.symbols file. Use '-' and redirection to pass it as standard input instead.
This commit is contained in:
parent
67379ad08b
commit
b42a73ec9f
@ -1,3 +1,10 @@
|
|||||||
|
2004-11-30 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
|
* glib/Makefile.am (glib.def): gcc -E complains "linker input file
|
||||||
|
unused because linking not done" if told to preprocess the
|
||||||
|
glib.symbols file. Use '-' and redirection to pass it as standard
|
||||||
|
input instead.
|
||||||
|
|
||||||
2004-11-30 Matthias Clasen <mclasen@redhat.com>
|
2004-11-30 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* NEWS: Updates
|
* NEWS: Updates
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
2004-11-30 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
|
* glib/Makefile.am (glib.def): gcc -E complains "linker input file
|
||||||
|
unused because linking not done" if told to preprocess the
|
||||||
|
glib.symbols file. Use '-' and redirection to pass it as standard
|
||||||
|
input instead.
|
||||||
|
|
||||||
2004-11-30 Matthias Clasen <mclasen@redhat.com>
|
2004-11-30 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* NEWS: Updates
|
* NEWS: Updates
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
2004-11-30 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
|
* glib/Makefile.am (glib.def): gcc -E complains "linker input file
|
||||||
|
unused because linking not done" if told to preprocess the
|
||||||
|
glib.symbols file. Use '-' and redirection to pass it as standard
|
||||||
|
input instead.
|
||||||
|
|
||||||
2004-11-30 Matthias Clasen <mclasen@redhat.com>
|
2004-11-30 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* NEWS: Updates
|
* NEWS: Updates
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
2004-11-30 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
|
* glib/Makefile.am (glib.def): gcc -E complains "linker input file
|
||||||
|
unused because linking not done" if told to preprocess the
|
||||||
|
glib.symbols file. Use '-' and redirection to pass it as standard
|
||||||
|
input instead.
|
||||||
|
|
||||||
2004-11-30 Matthias Clasen <mclasen@redhat.com>
|
2004-11-30 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* NEWS: Updates
|
* NEWS: Updates
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
2004-11-30 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
|
* glib/Makefile.am (glib.def): gcc -E complains "linker input file
|
||||||
|
unused because linking not done" if told to preprocess the
|
||||||
|
glib.symbols file. Use '-' and redirection to pass it as standard
|
||||||
|
input instead.
|
||||||
|
|
||||||
2004-11-30 Matthias Clasen <mclasen@redhat.com>
|
2004-11-30 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* NEWS: Updates
|
* NEWS: Updates
|
||||||
|
@ -14,7 +14,7 @@ INCLUDES = -I$(top_srcdir) -DG_LOG_DOMAIN=\"GLib\" \
|
|||||||
$(GLIB_DEBUG_FLAGS) -DG_DISABLE_DEPRECATED -DGLIB_COMPILATION
|
$(GLIB_DEBUG_FLAGS) -DG_DISABLE_DEPRECATED -DGLIB_COMPILATION
|
||||||
|
|
||||||
glib.def: glib.symbols
|
glib.def: glib.symbols
|
||||||
(echo -e EXPORTS; $(CPP) -P -DINCLUDE_VARIABLES -DINCLUDE_INTERNAL_SYMBOLS -DG_OS_WIN32 $(srcdir)/glib.symbols | sed -e '/^$$/d' -e 's/^/ /' -e 's/G_GNUC_[^ ]*//g') > glib.def
|
(echo -e EXPORTS; $(CPP) -P -DINCLUDE_VARIABLES -DINCLUDE_INTERNAL_SYMBOLS -DG_OS_WIN32 - <$(srcdir)/glib.symbols | sed -e '/^$$/d' -e 's/^/ /' -e 's/G_GNUC_[^ ]*//g') > glib.def
|
||||||
|
|
||||||
galias.h: glib.symbols
|
galias.h: glib.symbols
|
||||||
$(PERL) $(srcdir)/makegalias.pl < $(srcdir)/glib.symbols > galias.h
|
$(PERL) $(srcdir)/makegalias.pl < $(srcdir)/glib.symbols > galias.h
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
2004-11-30 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
|
* Makefile.am (gobject.def): gcc -E complains "linker input file
|
||||||
|
unused because linking not done" if told to preprocess the
|
||||||
|
gobject.symbols file. Use '-' and redirection to pass it as
|
||||||
|
standard input instead.
|
||||||
|
|
||||||
Sun Nov 28 13:21:12 2004 Manish Singh <yosh@gimp.org>
|
Sun Nov 28 13:21:12 2004 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
* abicheck.sh: filter G_GNUC before PRIVATE so $ is still true.
|
* abicheck.sh: filter G_GNUC before PRIVATE so $ is still true.
|
||||||
|
@ -14,7 +14,7 @@ INCLUDES = \
|
|||||||
-DG_DISABLE_CONST_RETURNS
|
-DG_DISABLE_CONST_RETURNS
|
||||||
|
|
||||||
gobject.def: gobject.symbols
|
gobject.def: gobject.symbols
|
||||||
(echo -e EXPORTS; $(CPP) -P -DINCLUDE_VARIABLES -DINCLUDE_INTERNAL_SYMBOLS -DG_OS_WIN32 $(srcdir)/gobject.symbols | sed -e '/^$$/d' -e 's/^/ /' -e 's/G_GNUC_[^ ]*//g' | sort) > gobject.def
|
(echo -e EXPORTS; $(CPP) -P -DINCLUDE_VARIABLES -DINCLUDE_INTERNAL_SYMBOLS -DG_OS_WIN32 - <$(srcdir)/gobject.symbols | sed -e '/^$$/d' -e 's/^/ /' -e 's/G_GNUC_[^ ]*//g' | sort) > gobject.def
|
||||||
|
|
||||||
gobjectalias.h: gobject.symbols
|
gobjectalias.h: gobject.symbols
|
||||||
$(PERL) $(srcdir)/makegobjectalias.pl < $(srcdir)/gobject.symbols > gobjectalias.h
|
$(PERL) $(srcdir)/makegobjectalias.pl < $(srcdir)/gobject.symbols > gobjectalias.h
|
||||||
|
Loading…
Reference in New Issue
Block a user