diff options
author | Matthias Clasen <mclasen@redhat.com> | 2005-03-14 06:47:51 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-03-14 06:47:51 +0000 |
commit | 3448a27829133bebb3bf1e29a30574304c899040 (patch) | |
tree | 8796e3b79637643a14b1474604a5862b4917c24c /gobject/gvaluearray.c | |
parent | a145c9ed0968eb59d86581aacda45f3c4e250cab (diff) | |
download | glib-3448a27829133bebb3bf1e29a30574304c899040.tar.gz glib-3448a27829133bebb3bf1e29a30574304c899040.tar.bz2 glib-3448a27829133bebb3bf1e29a30574304c899040.zip |
Make work again.
2005-03-14 Matthias Clasen <mclasen@redhat.com>
* abicheck.sh: Make work again.
* gsourceclosure.c: Fix a typo.
Make PLT-reduction work with gcc4, and don't include
everything in gobjectalias.h:
* gobject.symbols: Group symbols by header and source
file.
* makegobjectalias.pl: Protect definitions by the same
preprocessor symbols used to guard the headers. Move
the alias declarations to a separate file which is
produced when calling makegalias.pl -def
* Makefile.am (gobjectaliasdef.c): Add a rule to
build this file.
* *.c: Include gobjectalias.h after the other i
GLib headers, include gobjectaliasdef.c at the bottom.
Diffstat (limited to 'gobject/gvaluearray.c')
-rw-r--r-- | gobject/gvaluearray.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gobject/gvaluearray.c b/gobject/gvaluearray.c index 54e0e11e3..3db5d2e06 100644 --- a/gobject/gvaluearray.c +++ b/gobject/gvaluearray.c @@ -23,8 +23,8 @@ #include <config.h> -#include "gobjectalias.h" #include "gvaluearray.h" +#include "gobjectalias.h" #include <string.h> #include <stdlib.h> /* qsort() */ @@ -228,3 +228,6 @@ g_value_array_sort_with_data (GValueArray *value_array, compare_func, user_data); return value_array; } + +#define __G_VALUE_ARRAY_C__ +#include "gobjectaliasdef.c" |