configure.in bumped versin number to GLib 1.2.1, interface 1, binary 1.

Wed Mar 17 03:17:42 1999  Tim Janik  <timj@gtk.org>

        * configure.in bumped versin number to GLib 1.2.1, interface 1,
        binary 1.

        * NEWS: updates.

        * glib.h: added GLIB_CHECK_VERSION() macro similar to
        GTK_CHECK_VERSION().
This commit is contained in:
Tim Janik
1999-03-17 02:37:02 +00:00
committed by Tim Janik
parent dbfd5be9a6
commit 9f18edbb99
12 changed files with 101 additions and 4 deletions

View File

@@ -1,3 +1,13 @@
Wed Mar 17 03:17:42 1999 Tim Janik <timj@gtk.org>
* configure.in bumped versin number to GLib 1.2.1, interface 1,
binary 1.
* NEWS: updates.
* glib.h: added GLIB_CHECK_VERSION() macro similar to
GTK_CHECK_VERSION().
Sun Mar 14 17:50:35 1999 Tim Janik <timj@gtk.org>
* gmem.c (g_mem_chunk_*): changed a bunch of g_assert() statements

View File

@@ -1,3 +1,13 @@
Wed Mar 17 03:17:42 1999 Tim Janik <timj@gtk.org>
* configure.in bumped versin number to GLib 1.2.1, interface 1,
binary 1.
* NEWS: updates.
* glib.h: added GLIB_CHECK_VERSION() macro similar to
GTK_CHECK_VERSION().
Sun Mar 14 17:50:35 1999 Tim Janik <timj@gtk.org>
* gmem.c (g_mem_chunk_*): changed a bunch of g_assert() statements

View File

@@ -1,3 +1,13 @@
Wed Mar 17 03:17:42 1999 Tim Janik <timj@gtk.org>
* configure.in bumped versin number to GLib 1.2.1, interface 1,
binary 1.
* NEWS: updates.
* glib.h: added GLIB_CHECK_VERSION() macro similar to
GTK_CHECK_VERSION().
Sun Mar 14 17:50:35 1999 Tim Janik <timj@gtk.org>
* gmem.c (g_mem_chunk_*): changed a bunch of g_assert() statements

View File

@@ -1,3 +1,13 @@
Wed Mar 17 03:17:42 1999 Tim Janik <timj@gtk.org>
* configure.in bumped versin number to GLib 1.2.1, interface 1,
binary 1.
* NEWS: updates.
* glib.h: added GLIB_CHECK_VERSION() macro similar to
GTK_CHECK_VERSION().
Sun Mar 14 17:50:35 1999 Tim Janik <timj@gtk.org>
* gmem.c (g_mem_chunk_*): changed a bunch of g_assert() statements

View File

@@ -1,3 +1,13 @@
Wed Mar 17 03:17:42 1999 Tim Janik <timj@gtk.org>
* configure.in bumped versin number to GLib 1.2.1, interface 1,
binary 1.
* NEWS: updates.
* glib.h: added GLIB_CHECK_VERSION() macro similar to
GTK_CHECK_VERSION().
Sun Mar 14 17:50:35 1999 Tim Janik <timj@gtk.org>
* gmem.c (g_mem_chunk_*): changed a bunch of g_assert() statements

View File

@@ -1,3 +1,13 @@
Wed Mar 17 03:17:42 1999 Tim Janik <timj@gtk.org>
* configure.in bumped versin number to GLib 1.2.1, interface 1,
binary 1.
* NEWS: updates.
* glib.h: added GLIB_CHECK_VERSION() macro similar to
GTK_CHECK_VERSION().
Sun Mar 14 17:50:35 1999 Tim Janik <timj@gtk.org>
* gmem.c (g_mem_chunk_*): changed a bunch of g_assert() statements

View File

@@ -1,3 +1,13 @@
Wed Mar 17 03:17:42 1999 Tim Janik <timj@gtk.org>
* configure.in bumped versin number to GLib 1.2.1, interface 1,
binary 1.
* NEWS: updates.
* glib.h: added GLIB_CHECK_VERSION() macro similar to
GTK_CHECK_VERSION().
Sun Mar 14 17:50:35 1999 Tim Janik <timj@gtk.org>
* gmem.c (g_mem_chunk_*): changed a bunch of g_assert() statements

View File

@@ -1,3 +1,13 @@
Wed Mar 17 03:17:42 1999 Tim Janik <timj@gtk.org>
* configure.in bumped versin number to GLib 1.2.1, interface 1,
binary 1.
* NEWS: updates.
* glib.h: added GLIB_CHECK_VERSION() macro similar to
GTK_CHECK_VERSION().
Sun Mar 14 17:50:35 1999 Tim Janik <timj@gtk.org>
* gmem.c (g_mem_chunk_*): changed a bunch of g_assert() statements

9
NEWS
View File

@@ -1,3 +1,10 @@
Overview of Changes in GLib 1.2.1:
* g_realloc() fix for SunOS (please report further problems).
* Continued the never ending fix vendetta regarding getpwuid(),
this time AIX has been the culprit.
* Miscellaneous other buglets fixed.
What's new in GLib 1.2.0 (since GLib 1.0.x):
* GLib is distributed seperatedly from Gtk+
@@ -10,7 +17,7 @@ What's new in GLib 1.2.0 (since GLib 1.0.x):
* GRelations for n-way mapping of certain data
* An n-way tree implementation
* GDate functionality for calendar date manipulations
* GAllocator type and assocated functions
* GAllocator type and associated functions
* Added generic callback maintenance functions (ghook)
* Generic functions for TAB completions
* Endian defines (G_*_ENDIAN)

View File

@@ -33,9 +33,9 @@ AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)dnl
#
GLIB_MAJOR_VERSION=1
GLIB_MINOR_VERSION=2
GLIB_MICRO_VERSION=0
GLIB_INTERFACE_AGE=0
GLIB_BINARY_AGE=0
GLIB_MICRO_VERSION=1
GLIB_INTERFACE_AGE=1
GLIB_BINARY_AGE=1
GLIB_VERSION=$GLIB_MAJOR_VERSION.$GLIB_MINOR_VERSION.$GLIB_MICRO_VERSION
dnl
AC_DIVERT_POP()dnl

5
glib.h
View File

@@ -668,6 +668,11 @@ GUTILS_C_VAR const guint glib_micro_version;
GUTILS_C_VAR const guint glib_interface_age;
GUTILS_C_VAR const guint glib_binary_age;
#define GLIB_CHECK_VERSION(major,minor,micro) \
(GLIB_MAJOR_VERSION > (major) || \
(GLIB_MAJOR_VERSION == (major) && GLIB_MINOR_VERSION > (minor)) || \
(GLIB_MAJOR_VERSION == (major) && GLIB_MINOR_VERSION == (minor) && \
GLIB_MICRO_VERSION >= (micro)))
/* Forward declarations of glib types.
*/

View File

@@ -668,6 +668,11 @@ GUTILS_C_VAR const guint glib_micro_version;
GUTILS_C_VAR const guint glib_interface_age;
GUTILS_C_VAR const guint glib_binary_age;
#define GLIB_CHECK_VERSION(major,minor,micro) \
(GLIB_MAJOR_VERSION > (major) || \
(GLIB_MAJOR_VERSION == (major) && GLIB_MINOR_VERSION > (minor)) || \
(GLIB_MAJOR_VERSION == (major) && GLIB_MINOR_VERSION == (minor) && \
GLIB_MICRO_VERSION >= (micro)))
/* Forward declarations of glib types.
*/