Bill Holmes df4c8dbe03 2008-05-01 Bill Holmes <[email protected]> il y a 17 ans
..
src df4c8dbe03 2008-05-01 Bill Holmes <[email protected]> il y a 17 ans
test df4c8dbe03 2008-05-01 Bill Holmes <[email protected]> il y a 17 ans
AUTHORS 9084d2e09f Add the foundation for eglib il y a 19 ans
COPYING 6621b257cb Implment g_list_insert_before. il y a 19 ans
ChangeLog df4c8dbe03 2008-05-01 Bill Holmes <[email protected]> il y a 17 ans
Makefile.am c4e3ccc5aa 2008-03-12 Geoff Norton <[email protected]> il y a 18 ans
NEWS 9084d2e09f Add the foundation for eglib il y a 19 ans
README d6bd055b10 Updated il y a 19 ans
TODO e1a5f1c90b 2006-10-16 Miguel de Icaza <[email protected]> il y a 19 ans
autogen.sh 98a764c554 2006-08-19 Aaron Bockover <[email protected]> il y a 19 ans
configure.ac c4e3ccc5aa 2008-03-12 Geoff Norton <[email protected]> il y a 18 ans
winconfig.h 10f6ce36d0 2007-04-27 Jonathan Chambers <[email protected]> il y a 18 ans

README


The purpose of eglib is to be an X11-licensed subset of glib that can
be used with Mono when the Mono runtime is explicitly relicensed under
a different license by Novell.

The implementation is done from the public documentation available here:

http://developer.gnome.org/doc/API/2.0/glib/

Currently this is only being built standalone, use:

./autogen.sh --prefix=/tmp/test

Currently all the definitions go into a single file: glib.h, there are
no separate files, please try to follow the convetions in the source code

* Tests

Please read the README in tests/

* Plans: short and long term.

The short term plans for eglib is to allow Mono to optionally
build with it instead of using glib, gmodule and gthread, but
the default build will continue to be done against glib 2.0.

Our first target is to make this work with Linux, other
platforms will follow after that.

In the long-term (Mono 2.0) we are considering dropping glib
as a dependency, considering that Mono requires a modern Unix
system to run anyways (for its thread support) it would allow
us to fix some of the glib API limitations we have to live
with (explicit thread support for example), rework the API to
use types from stdint.h and we would be able to drop three
external shared libraries.

This would reduce memory usage for the handful of routines
that we use from glib, dynamic linker overhead for those and
would allow us to tune the implementation to Mono's needs.