diff options
author | Tor Lillqvist <tml@iki.fi> | 2004-03-01 20:48:50 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2004-03-01 20:48:50 +0000 |
commit | fed19fc424e38c2575f51e82218e35568a512631 (patch) | |
tree | 23128b94a202c9e8f5ee52689ddf999e33cf7104 | |
parent | 38cbfaeb7a2ca063ec600de2220ba1c6796647a4 (diff) |
Add g_slist_remove_all back for ABI compatibility. That entry point
2004-03-01 Tor Lillqvist <tml@iki.fi>
* gobject.def: Add g_slist_remove_all back for ABI
compatibility. That entry point actually is in the glib DLL, but
it was at some time many years ago by mistake added to
gobject.def. Thus there presumably are executables out there that
expect it to be exported from the gobject DLL. We don't want to
break those. (#134813, J. Ali Harlow)
-rw-r--r-- | gobject/ChangeLog | 9 | ||||
-rw-r--r-- | gobject/gobject.def | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/gobject/ChangeLog b/gobject/ChangeLog index 6742e63bc..c2d8b486c 100644 --- a/gobject/ChangeLog +++ b/gobject/ChangeLog @@ -1,3 +1,12 @@ +2004-03-01 Tor Lillqvist <tml@iki.fi> + + * gobject.def: Add g_slist_remove_all back for ABI + compatibility. That entry point actually is in the glib DLL, but + it was at some time many years ago by mistake added to + gobject.def. Thus there presumably are executables out there that + expect it to be exported from the gobject DLL. We don't want to + break those. (#134813, J. Ali Harlow) + Fri Feb 27 01:49:22 2004 Matthias Clasen <maclas@gmx.de> * glib-mkenums.in: Support parsing of intializers containing diff --git a/gobject/gobject.def b/gobject/gobject.def index 9ec1fca25..02c85fd95 100644 --- a/gobject/gobject.def +++ b/gobject/gobject.def @@ -173,6 +173,7 @@ EXPORTS g_signal_stop_emission g_signal_stop_emission_by_name g_signal_type_cclosure_new + g_slist_remove_all g_source_set_closure g_strdup_value_contents g_strv_get_type |