Add top_builddir so glibconfig.h is found properly when build srcdir !=
[platform/upstream/glib.git] / gobject / ChangeLog
1 Wed Jun  7 09:21:05 2000  Owen Taylor  <otaylor@redhat.com>
2
3         * Makefile.am (INCLUDES): Add top_builddir so glibconfig.h
4         is found properly when build srcdir != builddir. (Patch from
5         Eric Lemings)
6
7 2000-05-13  Tor Lillqvist  <tml@iki.fi>
8
9         * makefile.mingw.in
10         * gobject.def
11         * gobject.rc.in: New files, for Win32 (mingw) build.
12
13         * Makefile.am: Add to EXTRA_DIST. Add rules to produce the
14         corresponding non-*.in files.
15
16         * gtype.h: (Win32:) Mark _g_type_fundamental_last for
17         export/import from DLL.
18
19 Fri May  5 01:15:48 2000  Tim Janik  <timj@gtk.org>
20
21         * gtype.h: add reserved fundamental ids for gtk types (for transition
22         time). added G_TYPE_FUNDAMENTAL_MAX for gtk.
23
24 Mon Apr 17 20:45:50 2000  Tim Janik  <timj@gtk.org>
25
26         * glib-gobject.c (g_object_base_class_finalize): oops, don't unset
27         n_params prior to destructing them.
28
29 Tue Apr 11 04:28:10 2000  Tim Janik  <timj@gtk.org>
30
31         * fixed a couple of bugs in the initial parameter/object
32         implementations, after getting beast running on GObject and GValue.
33
34 Fri Apr  7 04:27:49 2000  Tim Janik  <timj@gtk.org>
35
36         * glib-gobject.[hc]: completed parameter set/get implementations,
37         along with asyncronous parameter changed notification queue.
38
39 Sun Apr  2 04:54:36 2000  Tim Janik  <timj@gtk.org>
40
41         * glib-gobject.[hc]: GObject implementation, that is facilities
42         for setting/getting quarked data and reference counting.
43
44         * glib-gparamspecs.[hc]: first actuall parameter implementations
45         for GLib, so far we have: char, uchar, bool, int, uint, long,
46         ulong, enum, flags, float, double, string and object. each of these
47         GParamSpecs is a new instantiatable type in its own respect,
48         so the .c file derives 13 new types from G_TYPE_PARAM and
49         defines over 50 (*2) conversion facilities.
50
51         * glib-gvaluecollector.h: generic varargs handling stubs for
52         GParamSpecs, private header file (does get installed for
53         inclusion into user code though).
54
55         * glib-gvalue.[hc]: GValue functionality implementation.
56
57         * glib-gparam.[hc]: basis GParamSpec implementation for
58         the virtual base type G_TYPE_PARAM.
59
60         * glib-genums.[hc]: enum/flags type implementation, based on
61         bseenum.[hc].
62
63         * glib-extra.[hc]: GLib additions, including 1.3 compatibility
64         routines and various other functions, from string manipulation
65         over list manipulation up to a unix signal GSource.
66
67         * glib-gtype.[hc]: GLib Type System implementation, heavily
68         based on BSE's dynamic type system.