platform/upstream/glib.git
23 years agoAdd gqsort.
Tor Lillqvist [Sun, 26 Nov 2000 16:28:01 +0000 (16:28 +0000)]
Add gqsort.

2000-11-22  Tor Lillqvist  <tml@iki.fi>

* makefile.{mingw,msc}.in: Add gqsort.

* glib.def: Update.

* gobject.def: Update.

23 years agoAdd a surrogate for thread priorities using PID niceness for systems with
Sebastian Wilhelmi [Tue, 21 Nov 2000 15:27:44 +0000 (15:27 +0000)]
Add a surrogate for thread priorities using PID niceness for systems with

2000-11-21  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* configure.in: Add a surrogate for thread priorities using PID
niceness for systems with no thread priorities and different PIDs
for threads of the same process (most notably: Linux). Define
G_THREAD_USE_PID_SURROGATE in that case, as used by
gthread-posix.c. Also make the system thread bigger by
sizeof (long) to contain the thread's PID.

* gfileutils.c: Include stdlib.h for mkstemp prototype.

* gthread.c: Add priority range checks to the affected functions.

* gthreadpool.c: Remove unused variable.

* gthread-impl.c, gthread-posix.c, gthread-solaris.c: Removed
g_thread_map_priority function in favour of the
g_thread_priority_map array.  Initialize the array with
PRIORITY_{...}_VALUE, if available and interpolate beetween the
bounds if .._NORMAL_.. and .._HIGH_.. are not available.

* gthread-posix.c: If we should use the PID niceness as a
surrogate for thread priorities (G_THREAD_USE_PID_SURROGATE is
defined), then disable normal priority handling and use PIDs and
setpriority() instead. Depends on the thread to write its PID into
the place after the thread id right after thread creation.

23 years agoindentation fixes
Tim Janik [Tue, 21 Nov 2000 05:57:14 +0000 (05:57 +0000)]
indentation fixes

23 years agoPatch from David Benson <daveb@idealab.com> to add user_data support to
Jonathan Blandford [Mon, 20 Nov 2000 23:59:32 +0000 (23:59 +0000)]
Patch from David Benson <daveb@idealab.com> to add user_data support to

Mon Nov 20 18:55:17 2000  Jonathan Blandford  <jrb@redhat.com>

* gtree.[hc]: Patch from David Benson <daveb@idealab.com> to add
user_data support to gtree functions.

Mon Nov 13 18:35:52 2000  Jonathan Blandford  <jrb@redhat.com>

* gtypes.h (GCompareFuncData): new func type to let you use user
data when comparing nodes.

* gslist.c (g_list_sort_with_data): new function to sort with
user_data.

* glist.c (g_list_sort_with_data): new function to sort with
user_data.

* garray.[ch]: Added convenience functions to sort arrays.

23 years agoMore convenient data-setting functions
Havoc Pennington [Mon, 20 Nov 2000 22:24:12 +0000 (22:24 +0000)]
More convenient data-setting functions

2000-11-20  Havoc Pennington  <hp@redhat.com>

* gobject.c (g_object_get_data)
(g_object_set_data)
(g_object_set_data_full)
(g_object_steal_data): More convenient data-setting functions

23 years agoUse a switch here, maybe helps the compiler optimize things. Also, ' ' is
Havoc Pennington [Mon, 20 Nov 2000 15:14:14 +0000 (15:14 +0000)]
Use a switch here, maybe helps the compiler optimize things. Also, ' ' is

2000-11-16  Havoc Pennington  <hp@redhat.com>

* guniprop.c (g_unichar_isspace): Use a switch here, maybe helps
the compiler optimize things. Also, ' ' is a SPACE_SEPARATOR,
so don't special case it.

23 years agoAdd g_trash_stack entry points.
Tor Lillqvist [Sun, 19 Nov 2000 19:08:46 +0000 (19:08 +0000)]
Add g_trash_stack entry points.

2000-11-17  Tor Lillqvist  <tml@iki.fi>

* glib.def: Add g_trash_stack entry points.

23 years agoReleased 1.3.2 GLIB_1_3_2
Owen Taylor [Fri, 17 Nov 2000 20:44:24 +0000 (20:44 +0000)]
Released 1.3.2

Fri Nov 17 15:43:00 2000  Owen Taylor  <otaylor@redhat.com>

        * Released 1.3.2

* NEWS: Update.

* tests/Makefile.am (dist-hook): Add code to distribute
markup test files.

23 years agoremoved stray files
Owen Taylor [Fri, 17 Nov 2000 19:52:42 +0000 (19:52 +0000)]
removed stray files

23 years agoIf loading the module fails, don't increment the use count.
Owen Taylor [Thu, 16 Nov 2000 16:09:47 +0000 (16:09 +0000)]
If loading the module fails, don't increment the use count.

Wed Nov 15 20:58:05 2000  Owen Taylor  <otaylor@redhat.com>

* gtypemodule.c (g_type_module_use): If loading the
module fails, don't increment the use count.

23 years agoCheck for the sched.h header and include it on gthread/gthread-posix.c if
Sebastian Wilhelmi [Wed, 15 Nov 2000 17:48:43 +0000 (17:48 +0000)]
Check for the sched.h header and include it on gthread/gthread-posix.c if

2000-11-15  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* configure.in: Check for the sched.h header and include it on
gthread/gthread-posix.c if available.

* gthread-posix.c: Include <sched.h> if available.

* configure.in: Add -D_POSIX4_DRAFT_SOURCE to
GTHREAD_COMPILE_IMPL_DEFINES. Also add -D_POSIX4A_DRAFT10_SOURCE
to G_THREAD_CFLAGS. Really deploy GTHREAD_COMPILE_IMPL_DEFINES,
when searching for thread libs. Look for sched_* functions in
-lrte as well. All of that is necessary on DG/UX.

* configure.in: Use AC_TRY_COMPILE instead of AC_EGREP_HEADERS in
various places to make it work more reliable, to make it accept
macros instead of functions etc.

* configure.in: Replace some NULL's for checks with 0 to make it
work without stdio.h everywhere.

* configure.in, gutils.c: changed the test for getpwuid_r to first
test for a posix version and then for a non-posix version. No code
change in gutils.c. Again this change deals better with getpwuid_r
being a macro and not a function. Most of the above with kind help
from Tethys <tet@isengard.europe.dg.com>. This fixes Bug #13403.

23 years agodoh, s/BSE_OBJECT_TYPE_NAME/G_OBJECT_TYPE_NAME/; reported by Maas-Maarten
Tim Janik [Wed, 15 Nov 2000 05:05:53 +0000 (05:05 +0000)]
doh, s/BSE_OBJECT_TYPE_NAME/G_OBJECT_TYPE_NAME/; reported by Maas-Maarten

Thu Nov  9 01:49:43 2000  Tim Janik  <timj@gtk.org>

        * gobject.h (G_WARN_INVALID_PARAM_ID): doh,
        s/BSE_OBJECT_TYPE_NAME/G_OBJECT_TYPE_NAME/; reported by Maas-Maarten
        Zeeman <maas@wanadoo.nl>.

23 years agoMake #endif comment match #ifdef.
Tor Lillqvist [Tue, 14 Nov 2000 21:40:28 +0000 (21:40 +0000)]
Make #endif comment match #ifdef.

2000-11-14  Tor Lillqvist  <tml@iki.fi>

* gwin32.h: Make #endif comment match #ifdef.

23 years agoUp version to 1.3.2
Owen Taylor [Mon, 13 Nov 2000 19:01:28 +0000 (19:01 +0000)]
Up version to 1.3.2

Mon Nov 13 14:00:20 2000  Owen Taylor  <otaylor@redhat.com>

* configure.in: Up version to 1.3.2

* gconvert.h (enum GConvertError): Remove trailing ,

* gfileutils.c (g_file_open_tmp): Fix comment to
properly describe return value.

23 years agoMove conversion functions into GConv section.
Owen Taylor [Mon, 13 Nov 2000 18:59:45 +0000 (18:59 +0000)]
Move conversion functions into GConv section.

Mon Nov 13 00:18:55 2000  Owen Taylor  <otaylor@redhat.com>

        * glib/glib-sections.sgml: Move conversion functions
into GConv section.

* gobject/gobject-docs.sgml: Fix some malformed sgml.

23 years agoAdd USE_LIBICONV.
Tor Lillqvist [Mon, 13 Nov 2000 18:03:57 +0000 (18:03 +0000)]
Add USE_LIBICONV.

2000-11-13  Tor Lillqvist  <tml@iki.fi>

* config.h.win32.in: Add USE_LIBICONV.

* gconvert.c: Check G_OS_WIN32 only after including glib.h.

* glib.def: Update.

23 years agoMade recursive mutexes also work when the thread system is not (yet)
Sebastian Wilhelmi [Mon, 13 Nov 2000 12:50:16 +0000 (12:50 +0000)]
Made recursive mutexes also work when the thread system is not (yet)

2000-11-13  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* gthread.c (g_static_rec_mutex_*): Made recursive mutexes also
work when the thread system is not (yet) initialized.

23 years agoCreate wrapper functions for iconv() so that we can transparently use the
Owen Taylor [Sun, 12 Nov 2000 23:44:28 +0000 (23:44 +0000)]
Create wrapper functions for iconv() so that we can transparently use the

Sun Nov 12 18:34:32 2000  Owen Taylor  <otaylor@redhat.com>

* gconvert.[ch]: Create wrapper functions for iconv()
so that we can transparently use the native iconv,
libiconv, or (in the future) a mini-iconv included
with glib.

* glib-config-2.0.in glib-2.0.pc.in: Include @ICONV_LIBS@

* INSTALL: Added note about libiconv.

* configure.in: Add checks for libiconv from pango. If
EILSEQ is not defined in errno.h add define for it into
glibconfig.h so g_iconv can use it. (Note, recompiling
from a system without EILSEQ to a system with EILSEQ
will break binary compatibility)

23 years agoRemove g_filename_{to,from}_utf8
Robert Brady [Sun, 12 Nov 2000 21:23:55 +0000 (21:23 +0000)]
Remove g_filename_{to,from}_utf8

2000-11-12  Robert Brady  <robert@suse.co.uk>

* gstrfuncs.c, gstrfuncs.h: Remove g_filename_{to,from}_utf8

* gconvert.c, gconvert.h: Add g_filename_{to,from}_utf8 and
g_locale_{to.from}_utf8.  The locale_ variant honours
nl_langinfo(CODESET), the filename_ variant uses UTF-8 unless
asked otherwise.

(g_convert): Add G_CONVERT_ERROR_PARTIAL_INPUT error, if bytesread
!= length and no bytesread pointer passed.

23 years agotemplate is a reserved word in C++ s/template/tmpl/.
Owen Taylor [Sun, 12 Nov 2000 20:38:19 +0000 (20:38 +0000)]
template is a reserved word in C++ s/template/tmpl/.

Sun Nov 12 15:29:53 2000  Owen Taylor  <otaylor@redhat.com>

* gfileutils.[ch]: template is a reserved word in
C++ s/template/tmpl/.

23 years agoHandle a long stream of bytes containing no UTF-8 character starts
Havoc Pennington [Sat, 11 Nov 2000 17:09:15 +0000 (17:09 +0000)]
Handle a long stream of bytes containing no UTF-8 character starts

2000-11-11  Havoc Pennington  <hp@pobox.com>

* gmarkup.c (g_markup_parse_context_parse): Handle a long stream
of bytes containing no UTF-8 character starts

23 years agoAdd missing entry points.
Tor Lillqvist [Sat, 11 Nov 2000 15:03:10 +0000 (15:03 +0000)]
Add missing entry points.

2000-11-11  Tor Lillqvist  <tml@iki.fi>

* glib.def: Add missing entry points.

* gobject.def: Add missing functions.

23 years agoImprove chance to generate unique names with less effort a bit.
Tor Lillqvist [Sat, 11 Nov 2000 13:46:15 +0000 (13:46 +0000)]
Improve chance to generate unique names with less effort a bit.

2000-11-11  Tor Lillqvist  <tml@iki.fi>

* gfileutils.c (g_mkstemp): Improve chance to generate unique
names with less effort a bit.

* gfileutils.h: Add g_file_open_tmp() declaration.

* testglib.c: Include <io.h> on Win32.

* makefile.mingw.in: Correct the way to invoke sub-makes.

2000-11-11  Tor Lillqvist  <tml@iki.fi>

* gtypemodule.c: Include stdlib.h for exit().

* makefile.{mingw,msc}.in (gobject_OBJECTS): Add gtypemodule.

* gobject.def: Add new functions.

23 years ago*** empty log message ***
Owen Taylor [Sat, 11 Nov 2000 06:46:30 +0000 (06:46 +0000)]
*** empty log message ***

23 years agoAdd gtypemodule.h
Owen Taylor [Sat, 11 Nov 2000 00:04:33 +0000 (00:04 +0000)]
Add gtypemodule.h

Sun Nov  5 13:20:54 2000  Owen Taylor  <otaylor@redhat.com>

* glib-object.h: Add gtypemodule.h

23 years agoUpdates added
Owen Taylor [Sat, 11 Nov 2000 00:03:57 +0000 (00:03 +0000)]
Updates added

Sun Nov  5 13:24:50 2000  Owen Taylor  <otaylor@redhat.com>

* gobject/Makefile.am gobject/gobject-sections.sgml: Updates
* gobject/tmpl/g{boxed,type{plugin,module}}.sgml: added

23 years agoNew basic implementation of GTypePlugin interface as a GObject.
Owen Taylor [Sat, 11 Nov 2000 00:03:19 +0000 (00:03 +0000)]
New basic implementation of GTypePlugin interface as a GObject.

Sun Nov  5 13:21:28 2000  Owen Taylor  <otaylor@redhat.com>

* Makefile.am gtypemodule.[ch]: New basic implementation of
GTypePlugin interface as a GObject. Dynamically loaded modules can
register any number of types and interface on the module.

23 years agoAdd comment about template parameter to g_file_open_tmp() not being
Tor Lillqvist [Fri, 10 Nov 2000 23:49:37 +0000 (23:49 +0000)]
Add comment about template parameter to g_file_open_tmp() not being
modified. And correspondingly, remove unnecessary char buffer.

23 years agoNew function, suggested by Havoc earlier this month. (g_mkstemp): Use only
Tor Lillqvist [Fri, 10 Nov 2000 23:43:33 +0000 (23:43 +0000)]
New function, suggested by Havoc earlier this month. (g_mkstemp): Use only

2000-11-11  Tor Lillqvist  <tml@iki.fi>

* gfileutils.c (g_file_open_tmp): New function, suggested by Havoc
earlier this month.
(g_mkstemp): Use only one case for letters in temp file name, as
this will be used on systems with case-insensitive file systems.

* testglib.c (main): Test g_mkstemp() and g_file_open_tmp().

23 years agoDon't take threads with other priorities into account as changing the
Sebastian Wilhelmi [Thu, 9 Nov 2000 12:28:12 +0000 (12:28 +0000)]
Don't take threads with other priorities into account as changing the

2000-11-09  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* gthreadpool.c: Don't take threads with other priorities into
account as changing the priority is highly unportable. (Actually
using it at all already is unportable, but even sometimes where
that works, changing priority is not possible).

23 years agorename G_MARKUP_FOO to G_MARKUP_DO_NOT_USE_THIS_UNSUPPORTED_FLAG
Havoc Pennington [Sun, 5 Nov 2000 18:38:08 +0000 (18:38 +0000)]
rename G_MARKUP_FOO to G_MARKUP_DO_NOT_USE_THIS_UNSUPPORTED_FLAG

2000-11-05  Havoc Pennington  <hp@pobox.com>

* gmarkup.h: rename G_MARKUP_FOO to
G_MARKUP_DO_NOT_USE_THIS_UNSUPPORTED_FLAG

* gmarkup.c: don't start doc comments with "Returns"

2000-11-05  Havoc Pennington  <hp@pobox.com>

* glib/tmpl/markup.sgml: Write docs

23 years agoinline docs (unescape_text): properly check strtoul for failure.
Havoc Pennington [Sun, 5 Nov 2000 18:09:16 +0000 (18:09 +0000)]
inline docs (unescape_text): properly check strtoul for failure.

2000-11-05  Havoc Pennington  <hp@pobox.com>

* gmarkup.c: inline docs
(unescape_text): properly check strtoul for failure.

* gerror.c (g_propagate_error): Free the src error if the dest
location is NULL - I'm pretty sure that's what this function was
supposed to do.

23 years agoremove parens from section name, confuses gtk-doc
Havoc Pennington [Sun, 5 Nov 2000 17:07:19 +0000 (17:07 +0000)]
remove parens from section name, confuses gtk-doc

2000-11-05  Havoc Pennington  <hp@pobox.com>

* glib/glib-sections.txt: remove parens from section name,
confuses gtk-doc

* glib/glib-docs.sgml: Add the new files here, doh.

* glib/tmpl/shell.sgml: add gshell.[hc] docs

23 years agoFree the src error if the dest location is NULL - I'm pretty sure that's
Havoc Pennington [Sun, 5 Nov 2000 17:02:37 +0000 (17:02 +0000)]
Free the src error if the dest location is NULL - I'm pretty sure that's

2000-11-05  Havoc Pennington  <hp@pobox.com>

* gerror.c (g_propagate_error): Free the src error if the dest
location is NULL - I'm pretty sure that's what this function was
supposed to do.

2000-11-05  Havoc Pennington  <hp@pobox.com>

* glib/tmpl/error_reporting.sgml: fixes

23 years agoAdded
Havoc Pennington [Sun, 5 Nov 2000 16:38:16 +0000 (16:38 +0000)]
Added

2000-11-05  Havoc Pennington  <hp@pobox.com>

        * glib/tmpl/spawn.sgml, glib/tmpl/markup.sgml,
glib/tmpl/fileutils.sgml: Added

* glib/Makefile.am: Add new files

* glib/glib-sections.txt: Add stuff from -unused

2000-11-05  Havoc Pennington  <hp@pobox.com>

* gutils.c (g_find_program_in_path): cleanup docs, sync param
names to those in the header

* gfileutils.c (g_mkstemp): clean up docs

* gshell.h: sync param names with param names in .c file

* gfileutils.h (enum GFileTest): remove trailing comma from last
member, confuses gtk-doc

* gmarkup.h: s/GMarkupErrorType/GMarkupError/g; to follow
convention

23 years agorevert accidentally commited change
Owen Taylor [Sun, 5 Nov 2000 15:29:14 +0000 (15:29 +0000)]
revert accidentally commited change

23 years agoWhen appending handlers and not matching on signal_id, use
Owen Taylor [Sun, 5 Nov 2000 15:27:31 +0000 (15:27 +0000)]
When appending handlers and not matching on signal_id, use

Sun Nov  5 10:25:40 2000  Owen Taylor  <otaylor@redhat.com>

* gsignal.c (handlers_find): When appending handlers and
not matching on signal_id, use hlist->signal_id instead of
signal_id. Having the correct signal_id when unreffing
the handlers makes things work a lot better.

23 years agoAdd gtypeplugin.
Tor Lillqvist [Sun, 5 Nov 2000 09:00:54 +0000 (09:00 +0000)]
Add gtypeplugin.

2000-11-05  Tor Lillqvist  <tml@iki.fi>

* makefile.{mingw,msc}.in (gobject_OBJECTS): Add gtypeplugin.

* gobject.def: Update.

23 years agofixed a bag full of subtle bugs of immensive screw-up potential in
Tim Janik [Sun, 5 Nov 2000 05:07:26 +0000 (05:07 +0000)]
fixed a bag full of subtle bugs of immensive screw-up potential in

Sun Nov  5 05:22:55 2000  Tim Janik  <timj@gtk.org>

        * gsignal.c:
        fixed a bag full of subtle bugs of immensive screw-up potential in
        handlers_find(), luckily no one found out about them yet ;)
        fixed signal_handlers_foreach_matched_R() so it operates on an
        initial handler list snapshot provided by handlers_find() to work
        around general reentrancy problems and to avoid multiple callback()
        invocations on the same handlers.
        this code is now officially 80% bug free (10% remaining for interface
        types, and 10% remaining for destroyed signals ;)

Sat Nov  4 02:01:33 2000  Tim Janik  <timj@gtk.org>

        * gsignal.c (_g_signals_destroy): valid signal nodes start out at 1.

        * gtypeplugin.[hc]: new files holding a GTypePlugin interface
        implementation that provides the API required by GType to deal with
        dynamically loadable types.

        * gtype.[hc]: displace any GTypePlugin business to gtypeplugin.h.

23 years agoprefix internal functions with '_'. renamed g_signal_connect_closure() to
Tim Janik [Fri, 3 Nov 2000 08:18:09 +0000 (08:18 +0000)]
prefix internal functions with '_'. renamed g_signal_connect_closure() to

Fri Nov  3 07:35:00 2000  Tim Janik  <timj@gtk.org>

        * gsignal.[hc]: prefix internal functions with '_'. renamed
        g_signal_connect_closure() to g_signal_connect_closure_by_id().
        added g_signal_parse_name() to retrive signal_id and detail quark
        from a signal name (internal).

Fri Nov  3 07:33:15 2000  Tim Janik  <timj@gtk.org>

        * gobject/gobject-docs.sgml: added &gobject-closures; section.

        * gobject/Makefile.am (tmpl_sources): add tmpl/clsoures.sgml

        * gobject/gobject-sections.txt: added Closure section.

        * gobject/tmpl/closures.sgml: new file with template description
        for GClosure functions.

23 years agoRemove superfluous GSearchFunc.
Sebastian Wilhelmi [Thu, 2 Nov 2000 15:22:57 +0000 (15:22 +0000)]
Remove superfluous GSearchFunc.

2000-11-02  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* glib/tmpl/glib-unused.sgml: Remove superfluous GSearchFunc.

23 years agoAdded documentation for asynchronous queues.
Sebastian Wilhelmi [Thu, 2 Nov 2000 14:54:52 +0000 (14:54 +0000)]
Added documentation for asynchronous queues.

2000-11-02  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* glib/tmpl/async_queues.sgml, glib/glib-sections.txt: Added
documentation for asynchronous queues.

* gasyncqueue.c: Added inline documentation for asyncronous
queues.

23 years agoAdd G_MUTEX_SIZE as needed for gthread-impl.c
Sebastian Wilhelmi [Thu, 2 Nov 2000 13:04:16 +0000 (13:04 +0000)]
Add G_MUTEX_SIZE as needed for gthread-impl.c

2000-11-02  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* gthread-none.c: Add G_MUTEX_SIZE as needed for gthread-impl.c

23 years agoChanged unportable __FUNCTION__ to the verbatim function name.
Sebastian Wilhelmi [Thu, 2 Nov 2000 12:31:10 +0000 (12:31 +0000)]
Changed unportable __FUNCTION__ to the verbatim function name.

2000-11-02  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* gspawn.c: Changed unportable __FUNCTION__ to the verbatim
function name.

23 years agoInclude sys/select.h (some platforms need it for select).
Sebastian Wilhelmi [Thu, 2 Nov 2000 11:38:10 +0000 (11:38 +0000)]
Include sys/select.h (some platforms need it for select).

2000-11-02  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* gspawn.c: Include sys/select.h (some platforms need it for
select).

23 years agodestroy all signals that the finalized obejct type introduced.
Tim Janik [Wed, 1 Nov 2000 03:03:04 +0000 (03:03 +0000)]
destroy all signals that the finalized obejct type introduced.

Wed Nov  1 03:36:54 2000  Tim Janik  <timj@gtk.org>

        * gobject.c (g_object_base_class_finalize): destroy all signals that
        the finalized obejct type introduced.

        * gsignal.c (g_signals_destroy): don't require itype to have
        signals.

        * gobject.c (g_object_do_finalize): make sure all signal handlers
        are destroyed.

        * gsignal.[hc]:
        (g_signal_handler_find): only match on non-0 masks.
        (g_signal_handlers_block_matched):
        (g_signal_handlers_unblock_matched):
        (g_signal_handlers_disconnect_matched): new functions to block/unblock
        or disconnect handlers in groups.

23 years agoThis time the right fix.
Sebastian Wilhelmi [Tue, 31 Oct 2000 14:55:23 +0000 (14:55 +0000)]
This time the right fix.

2000-10-31  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* glib/tmpl/linked_lists_single.sgml: This time the right fix.

* glib/tmpl/scanner.sgml, glib/tmpl/strings.sgml: Changed
parameter names.

* glib/tmpl/string_utils.sgml: Corrected the documentation of
g_strescape and added those of g_strcompress.

23 years agoAlso move the #define for O_BINARY from gutils.c to gfileutils.c.
Tor Lillqvist [Tue, 31 Oct 2000 05:51:24 +0000 (05:51 +0000)]
Also move the #define for O_BINARY from gutils.c to gfileutils.c.

23 years agogutils.c gutils.h gfileutils.c Actually, g_mkstemp() is better suited in
Tor Lillqvist [Mon, 30 Oct 2000 22:06:22 +0000 (22:06 +0000)]
gutils.c gutils.h gfileutils.c Actually, g_mkstemp() is better suited in

2000-10-31  Tor Lillqvist  <tml@iki.fi>

* gutils.c
* gutils.h
* gfileutils.c
* gfileutils.h: Actually, g_mkstemp() is better suited in gfileutils.

23 years agoCheck for mkstemp.
Tor Lillqvist [Mon, 30 Oct 2000 21:55:21 +0000 (21:55 +0000)]
Check for mkstemp.

2000-10-30  Tor Lillqvist  <tml@iki.fi>

* configure.in: Check for mkstemp.

* gutils.c (g_mkstemp): New function. If HAVE_MKSTEMP, just call
it, otherwise use code lifted from glibc.

* gutils.h: Declare it.

* glib.def: Here, too.

23 years agoAdded documentation for G_MAXU(INT|SHORT|LONG).
Sebastian Wilhelmi [Mon, 30 Oct 2000 16:08:23 +0000 (16:08 +0000)]
Added documentation for G_MAXU(INT|SHORT|LONG).

2000-10-30  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* glib/tmpl/limits.sgml: Added documentation for
G_MAXU(INT|SHORT|LONG).

* glib/tmpl/macros_misc.sgml: Added documentation for
G_G(U)INT(16|32|64)_FORMAT.

* glib/tmpl/types.sgml: Mention G_MAXU(INT|SHORT|LONG) in
documentation for gu(int|short|long).

23 years agosecond try.
Sebastian Wilhelmi [Mon, 30 Oct 2000 14:50:32 +0000 (14:50 +0000)]
second try.

second try.

23 years agoMove GCompareFunc to GList and introduce and document GEqualFunc in
Sebastian Wilhelmi [Mon, 30 Oct 2000 14:49:50 +0000 (14:49 +0000)]
Move GCompareFunc to GList and introduce and document GEqualFunc in

2000-10-30  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* glib/glib-sections.txt, glib/tmpl/linked_lists_double.sgml,
glib/tmpl/caches.sgml: Move GCompareFunc to GList and introduce
and document GEqualFunc in GHashTable.

* glib/tmpl/caches.sgml, glib/tmpl/hash_tables.sgml,
glib/tmpl/relations.sgml : Changed to reflect the changed API
(GCompareFunc -> GEqualFunc).

* glib/tmpl/linked_lists_single.sgml, glib/tmpl/threads.sgml: Typo
fixes.

23 years agomade both functions return gboolean just for the little extra standard
Sebastian Wilhelmi [Mon, 30 Oct 2000 14:39:23 +0000 (14:39 +0000)]
made both functions return gboolean just for the little extra standard

2000-10-30  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* gvalue.c (exchange_entries_equal), gparam.c (param_spec_equals):
made both functions return gboolean just for the little extra
standard conformance now that GEqualFunc is introduced.

23 years agoIntroduced new function type GEqualFunc to return TRUE for equal params.
Sebastian Wilhelmi [Mon, 30 Oct 2000 14:34:52 +0000 (14:34 +0000)]
Introduced new function type GEqualFunc to return TRUE for equal params.

2000-10-30  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* gcache.h, gcache.c, ghash.h, ghash.c, grel.c, grel.h, gtypes.h:
Introduced new function type GEqualFunc to return TRUE for equal
params. This is now used instead of GCompareFunc (which should
work akin to strcmp) here. This kind of fixes Bug #14412. Note
that technically GCompareFunc and GEqualFunc are still the same
types, as gint == gboolean.

* ghash.h, gutils.c: g_int_equal and g_direct_equal now return
gboolean to be really become GEqualFunc.

* gscanner.c, testglib.c, tests/hash-test.c: Some tiny changes to
follow the above change.

23 years agostart at general description.
Tim Janik [Mon, 30 Oct 2000 10:14:47 +0000 (10:14 +0000)]
start at general description.

Mon Oct 30 11:13:12 2000  Tim Janik  <timj@gtk.org>

        * gobject/tmpl/signals.sgml: start at general description.

        * gobject/gobject-docs.sgml: added introduction.

23 years agoopened up a new section on signals.
Tim Janik [Mon, 30 Oct 2000 05:03:19 +0000 (05:03 +0000)]
opened up a new section on signals.

Mon Oct 30 06:01:43 2000  Tim Janik  <timj@gtk.org>

        * gobject/gobject-sections.txt: opened up a new section on signals.

Mon Oct 30 05:52:45 2000  Tim Janik  <timj@gtk.org>

        * gsignal.c (g_signal_list_ids): get rid of inline documentation owen
        added, the doc system would ignore it anyways (for some reason not
        aparent to me).

23 years agorenamed owen's g_type_signals(), added required mutex locks.
Tim Janik [Mon, 30 Oct 2000 03:36:22 +0000 (03:36 +0000)]
renamed owen's g_type_signals(), added required mutex locks.

Mon Oct 30 03:00:07 2000  Tim Janik  <timj@gtk.org>

        * gsignal.[hc] (g_signal_list_ids): renamed owen's g_type_signals(),
        added required mutex locks.

23 years agoFix problem where signals with "_" in them appeared twice in the result
Owen Taylor [Sun, 29 Oct 2000 07:37:07 +0000 (07:37 +0000)]
Fix problem where signals with "_" in them appeared twice in the result

Sun Oct 29 02:31:03 2000  Owen Taylor  <otaylor@redhat.com>

* gsignal.c (g_type_signals): Fix problem where signals
with "_" in them appeared twice in the result array.

23 years agoAdd g_type_signals() - a function to list all signals for a given type.
Owen Taylor [Sun, 29 Oct 2000 07:02:48 +0000 (07:02 +0000)]
Add g_type_signals() - a function to list all signals for a given type.

Sun Oct 29 01:58:44 2000  Owen Taylor  <otaylor@redhat.com>

* gsignal.h: Add g_type_signals() - a function to list
all signals for a given type.

23 years agofixed notifier position for post_marshal guard which was off at 0.
Tim Janik [Fri, 27 Oct 2000 22:28:01 +0000 (22:28 +0000)]
fixed notifier position for post_marshal guard which was off at 0.

Sat Oct 28 00:28:09 2000  Tim Janik  <timj@gtk.org>

        * gclosure.c (g_closure_add_marshal_guards): fixed notifier position
        for post_marshal guard which was off at 0.

Fri Oct 27 21:49:31 2000  Tim Janik  <timj@gtk.org>

        * gobject.[hc]: doh, fix argument order in for
        g_cclosure_new_object_swap and g_cclosure_new_object.

23 years agoMake glib-genmarshal.exe.
Tor Lillqvist [Fri, 27 Oct 2000 21:35:45 +0000 (21:35 +0000)]
Make glib-genmarshal.exe.

2000-10-28  Tor Lillqvist  <tml@iki.fi>

* makefile.{mingw,msc}.in: Make glib-genmarshal.exe.

* glib-genmarshal.c: Conditionalise include of unistd.h.
Include <io.h> on Win32.

* gobject.def: Add some missing entry points.

23 years agoAdd gmarkup.
Tor Lillqvist [Fri, 27 Oct 2000 20:43:42 +0000 (20:43 +0000)]
Add gmarkup.

2000-10-27  Tor Lillqvist  <tml@iki.fi>

* makefile.{mingw,msc}.in (glib_OBJECTS): Add gmarkup.

* glib.def: Add missing functions.

* tests/makefile.{mingw,msc}.in (TESTS): Add markup-test.

23 years agopublically define GSignalInvocationHint structure that gets passed in to
Tim Janik [Fri, 27 Oct 2000 16:48:11 +0000 (16:48 +0000)]
publically define GSignalInvocationHint structure that gets passed in to

Fri Oct 27 16:33:41 2000  Tim Janik  <timj@gtk.org>

        * gsignal.[hc]: publically define GSignalInvocationHint structure
        that gets passed in to closure invocations. added signal details.
        renamed GSignalType to GSignalFlags to comply with conventions.
        quite some cleanups and minor fixes. avoid uneccessary handler list
        walks upon invokation of after handlers. relookup handler list for
        restarted emissions. preliminary abort normal handler invokation if
        after handler is encountered.

        * glib-genmarshal.c:
        * gclosure.[hc]: moved invocation_hint to the end of the
        g_closure_invoke() arguments as sugegsted by kenelson.
        also made it a gpointer to be more generic. the invocation_hint
        is a caller specific thing that can be used to pass additional
        data in to closure invocations as documented with the caller
        invoking the closure.

23 years agoRemoved the win32 limitation.
Sebastian Wilhelmi [Fri, 27 Oct 2000 12:53:05 +0000 (12:53 +0000)]
Removed the win32 limitation.

2000-10-27  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* glib/tmpl/misc_utils.sgml: Removed the win32 limitation.

23 years ago.cvsignore updates
Sebastian Wilhelmi [Fri, 27 Oct 2000 12:36:18 +0000 (12:36 +0000)]
.cvsignore updates

.cvsignore updates

23 years agoDocument the recently deprecated functions as such.
Sebastian Wilhelmi [Fri, 27 Oct 2000 12:34:49 +0000 (12:34 +0000)]
Document the recently deprecated functions as such.

2000-10-27  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* glib/glib-sections.txt, glib/tmpl/hash_tables.sgml,
glib/tmpl/macros_misc.sgml, glib/tmpl/misc_utils.sgml,
glib/tmpl/scanner.sgml: Document the recently deprecated functions
as such.

23 years agoconst fix
Tim Janik [Fri, 27 Oct 2000 05:32:48 +0000 (05:32 +0000)]
const fix

23 years agori Oct 27 05:35:14 2000 Tim Janik <timj@gtk.org>
Tim Janik [Fri, 27 Oct 2000 04:19:34 +0000 (04:19 +0000)]
ri Oct 27 05:35:14 2000  Tim Janik  <timj@gtk.org>

        * gobject.c (g_object_watch_closure): fixed realloc bug, reported
                by havoc.

23 years agofixed deadlock scenarion where g_signal_lookup() would be called with the
Tim Janik [Fri, 27 Oct 2000 03:33:31 +0000 (03:33 +0000)]
fixed deadlock scenarion where g_signal_lookup() would be called with the

Fri Oct 27 05:35:14 2000  Tim Janik  <timj@gtk.org>

        * gsignal.c (g_signal_newv): fixed deadlock scenarion where
        g_signal_lookup() would be called with the signal lock being
        held. reported by james henstridge.

        * gclosure.c (g_closure_set_meta_marshal): fixed memcpy/overwrite bug
        reported by owen.

23 years agoNew module to parse a simple markup language
Havoc Pennington [Fri, 27 Oct 2000 02:46:04 +0000 (02:46 +0000)]
New module to parse a simple markup language

2000-10-24  Havoc Pennington  <hp@pobox.com>

        * gmarkup.h, gmarkup.c: New module to parse a simple
markup language

* Makefile.am: add gmarkup.h, gmarkup.c

* tests/Makefile.am: add markup-test

* gstring.h (g_string_new_len): new function to create a string
with a length
(g_string_new): avoid a gratuitous realloc

23 years agoCosmetics.
Tor Lillqvist [Thu, 26 Oct 2000 17:53:58 +0000 (17:53 +0000)]
Cosmetics.

2000-10-26  Tor Lillqvist  <tml@iki.fi>

* makefile.{mingw,msc}.in: Cosmetics.

23 years agoFix gccisms (pointer arithmetic on void pointer, label without statement
Tor Lillqvist [Thu, 26 Oct 2000 17:53:08 +0000 (17:53 +0000)]
Fix gccisms (pointer arithmetic on void pointer, label without statement

2000-10-26  Tor Lillqvist  <tml@iki.fi>

* gbsearcharray.c (bsearch_array_insert): Fix gccisms (pointer
arithmetic on void pointer, label without statement following.

* gtype.c (type_node_fundamental_info): Don't apply unary minus to
result of sizeof operator, it can be unsigned. Cast first to
gssize.

* gobject.def: Add new functions.

* makefile.{mingw,msc}.in: Add new objects.

23 years agoWhen the string is ended by a delimiter, return an extra empty string just
Sebastian Wilhelmi [Thu, 26 Oct 2000 13:00:18 +0000 (13:00 +0000)]
When the string is ended by a delimiter, return an extra empty string just

2000-10-26  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* gstrfuncs.c (g_strsplit): When the string is ended by a
delimiter, return an extra empty string just like for a delimiter
at the start of the string. This makes the function behave more
consitent and also fixes Bug #15026.

23 years agoRemove empty SUBDIRS line _again_, as that _still_ prevents 'make dist'
Sebastian Wilhelmi [Thu, 26 Oct 2000 12:01:15 +0000 (12:01 +0000)]
Remove empty SUBDIRS line _again_, as that _still_ prevents 'make dist'

2000-10-26  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* Makefile.am: Remove empty SUBDIRS line _again_, as that _still_
prevents 'make dist' from working.

23 years agoDon't use implicit casts from void * since this will get included from C++
Owen Taylor [Wed, 25 Oct 2000 23:39:32 +0000 (23:39 +0000)]
Don't use implicit casts from void * since this will get included from C++

Wed Oct 25 19:11:03 2000  Owen Taylor  <otaylor@redhat.com>

* gbsearcharray.h (g_bsearch_array_get_nth): Don't use implicit
casts from void * since this will get included from C++ too
at times.

23 years agoadded g_value_set_static_string().
Tim Janik [Wed, 25 Oct 2000 22:33:26 +0000 (22:33 +0000)]
added g_value_set_static_string().

Thu Oct 26 00:30:27 2000  Tim Janik  <timj@gtk.org>

        * gvaluetypes.[hc]: added g_value_set_static_string().

        * gboxed.[hc]: const corrections. added g_value_set_static_boxed().

23 years agoadded newly added gobject/ headers.
Tim Janik [Wed, 25 Oct 2000 20:36:35 +0000 (20:36 +0000)]
added newly added gobject/ headers.

Tue Oct 24 22:09:14 2000  Tim Janik  <timj@gtk.org>

        * glib-object.h: added newly added gobject/ headers.

        * gmesage.c: print g_message() output to stderr instead of stdout.

Wed Oct 25 20:27:02 2000  Tim Janik  <timj@gtk.org>

        * gtype.c (g_type_free_instance): for the moment, freeing object
        structures will fill their memory portion with 0xAA. there's a
        FIXME there, remove this line at a later point.

Tue Oct 24 23:10:26 2000  Tim Janik  <timj@gtk.org>

        * glib-genmarshal.1:
        * glib-genmarshal.c: added publically installed marshaller generator.

        * gtype.h: added G_TYPE_INSTANCE_GET_INTERFACE() to retrive a certain
        interface VTable from instances.

Mon Oct 23 08:28:15 2000  Tim Janik  <timj@gtk.org>

        * gobject.[hc]: new functions for closure maintenance:
        (g_object_watch_closure): maintain validity of the object and
        the closure for objects that are used as data part of a closure.
        (g_cclosure_new_object): convenience function to create C closures
        that have an object as data argument.
        (g_closure_new_object): convenience function to create closures
        that have an object as data argument.

        * gclosure.[hc]: implementation of GClosure mechanism.
        a closure is basically an encapsulation of a callback function
        and its environment. ideally, most places supporting callback
        functions will simply take a GClosure* pointer and thus unify
        callback environments wrg destroy notification etc.
        GClosure provides destroy notifiers for arbitrary data pointers,
        reference counting, invalidation notification (it can be invalidated
        which is merely a deactivate state) and a marshallinbg abstraction.
        GCClosure is also provided in these files, they present a specialized
        GClosure implementation for C language callbacks.

        * genum.c: macro cleanups.

        * gboxed.[hc]: new files, for boxed type abstraction.
        (g_boxed_copy): copy a boxed structure
        (g_boxed_free): free a boxed structure
        (g_value_set_boxed):
        (g_value_get_boxed): standard GValue functions for boxed types
        (g_boxed_type_register_static): convenience function for easy
        introduction of new G_TYPE_BOXED derivatives.

        * gparam.[hc]: introduced g_param_type_register_static(), a short hand
        for creation of new GParamSpec derived types.

        * gtype.[hc]: many fixes, introduced ability to flag individual
        type nodes as ABSTRACT upon registration, added value_peek_pointer()
        to the value table to peek at GValue contents as a pointer for types
        that support this. fixed up GValue checks.

        * gvalue.[hc]: added g_value_fits_pointer() and g_value_get_as_pointer()
        to peek at the value contents as pointer.

        * *.[hc]: adaptions to type macro fixes and changes in the type
        registration API.

        * many const corrections over the place.

Sat Oct 21 02:49:56 2000  Tim Janik  <timj@gtk.org>

        * gtype.c (g_type_conforms_to): this function basically behaves like
        and is_a check, except that it _additionally_ features interfaces
        for instantiatable types. enforce this in the second branch as well
        (`type' conforms_to `type') even if `type' is not an interface type.

Fri Oct 20 15:31:04 2000  Tim Janik  <timj@gtk.org>

        * gvaluetypes.[hc]: added G_TYPE_POINTER implementation from jrb.

        * gtype.[hc]:
        * gobject.c:
        * gvaluetypes.c: added GTypeValueTable.value_peek_pointer and
        suitable implementations of this for G_TYPE_STRING, G_TYPE_OBJECT
        and G_TYPE_POINTER.

Mon Aug 21 04:13:37 2000  Tim Janik  <timj@gtk.org>

        * gbsearcharray.[hc]: long standing needed generic implementation
        of a binary searchable, sorted and dynamically sized array.

23 years agoAdd @GLIB_DEBUG_FLAGS@ to INCLUDES for accessing -DG_ENABLE_DEBUG as
Sebastian Wilhelmi [Wed, 25 Oct 2000 10:58:46 +0000 (10:58 +0000)]
Add @GLIB_DEBUG_FLAGS@ to INCLUDES for accessing -DG_ENABLE_DEBUG as

2000-10-25  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* Makefile.am : Add @GLIB_DEBUG_FLAGS@ to INCLUDES for accessing
-DG_ENABLE_DEBUG as needed in gthread-posix.c.

* gthread-posix.c: Revamped error handling for native thread
function calls. Now EPERM errors are ignored for some commands and
only a warning message is output once (at first occurrence).

23 years agoUpdates.
Tor Lillqvist [Mon, 23 Oct 2000 19:17:41 +0000 (19:17 +0000)]
Updates.

23 years agoUse one = instead of two, which is plainly wrong.
Sebastian Wilhelmi [Mon, 23 Oct 2000 14:15:22 +0000 (14:15 +0000)]
Use one = instead of two, which is plainly wrong.

2000-10-23  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* configure.in: Use one = instead of two, which is plainly wrong.

23 years agoPass -DGSPAWN_HELPER when building it. Link with user32.lib.
Tor Lillqvist [Thu, 19 Oct 2000 17:52:12 +0000 (17:52 +0000)]
Pass -DGSPAWN_HELPER when building it. Link with user32.lib.

2000-10-19  Tor Lillqvist  <tml@iki.fi>

* makefile.msc.in: Pass -DGSPAWN_HELPER when building it. Link
with user32.lib.

* gspawn-win32.c
* gfileutils.c: Make them compile with picky MSVC.

* gwin32.h: New file. Move Win32-only stuff that isn't related to
GIOChannels here from giochannel.h.

* Makefile.am: Add it here.

* giochannel.h: Move stuff to gwin32.h.

* glib.h: On Win32, include gwin32.h.

23 years agoChange ERROR_OTHER to ERROR_FAILED, add some dummy marking with _().
Owen Taylor [Thu, 19 Oct 2000 15:21:04 +0000 (15:21 +0000)]
Change ERROR_OTHER to ERROR_FAILED, add some dummy marking with _().

Mon Sep 11 10:03:24 2000  Owen Taylor  <otaylor@redhat.com>

* glib.h convert.c (g_convert_with_fallback): Change
ERROR_OTHER to ERROR_FAILED, add some dummy marking with _().

* docs/reference/glib/glib-sections.txt
docs/reference/glib/glib-docs.sgml Update for g_convert,
g_unicode_validate.

23 years agoRemove alloca stuff from here. galloca.h takes care of it, correctly.
Tor Lillqvist [Mon, 16 Oct 2000 19:55:26 +0000 (19:55 +0000)]
Remove alloca stuff from here. galloca.h takes care of it, correctly.

2000-10-16  Tor Lillqvist  <tml@iki.fi>

* glibconfig.h.win32.in: Remove alloca stuff from here. galloca.h
takes care of it, correctly.

23 years agoAdd gspawn-win32.c to EXTRA_DIST.
Tor Lillqvist [Mon, 16 Oct 2000 18:55:38 +0000 (18:55 +0000)]
Add gspawn-win32.c to EXTRA_DIST.

23 years agoSome more debugging output. (g_io_channel_win32_poll): Remove unused vars.
Tor Lillqvist [Mon, 16 Oct 2000 18:54:29 +0000 (18:54 +0000)]
Some more debugging output. (g_io_channel_win32_poll): Remove unused vars.

2000-10-16  Tor Lillqvist  <tml@iki.fi>

* giowin32.c (reader_thread): Some more debugging output.
(g_io_channel_win32_poll): Remove unused vars.

* gfileutils.c: Changes for Win32, with no unistd.h and no
S_ISLNK().

* gspawn-win32.c: Implementation of the g_spwan_* functions for
Win32. Due to the general non-Unixness of Win32, much of the
functionality that is relatively clean to implement on Unix, is
hard to do on Win32. We must use a separate helper program to
change directory, close extra file descriptors, redirect the std
ones, as needed, and only then start the child process. No child
process pid can be returned, unfortunately. Or if we used
CreateProcess directly, it probably could. (Now we use the spawnv*
functions from msvcrt.)

* glib.def: Add new entry points.

* glib.def
* giowin32.c: Remove g_io_channel_win32_wait_for_condition(),
g_io_channel_win32_poll() subsumes it.

* gbacktrace.h: G_BREAKPOINT for MSVC (on the ix86).

* gwin32.c (g_win32_getlocale): Use "sp" for
LANG_CROATIAN+SUBLANG_SERBIAN_LATIN.

* makefile.{mingw,msc}.in (glib_OBJECTS): Add new files.
Add gspawn-win32-helper.exe rule.

* tests/makefile.{mingw,msc}.in (TESTS): Add shell-test and
spawn-test.

* tests/spawn-test.c: (run_tests): On Win32, don't try to run
/bin/sh, but ipconfig (no special significance in choosing that,
just a program that outputs something to stdout).

23 years agogmodule: New variable. (dist-hook): Handle $(BUILT_EXTRA_DIST).
Raja R Harinath [Mon, 16 Oct 2000 01:02:19 +0000 (01:02 +0000)]
gmodule: New variable. (dist-hook): Handle $(BUILT_EXTRA_DIST).

gmodule:
* Makefile.am (BUILT_EXTRA_DIST): New variable.
(dist-hook): Handle $(BUILT_EXTRA_DIST).

gobject:
* Makefile.am (BUILT_EXTRA_DIST): New variable.
(dist-hook): Handle $(BUILT_EXTRA_DIST).
(*): Remove traces of @STRIP_{BEGIN,END}@.

gthread:
* Makefile.am (BUILT_EXTRA_DIST): New variable.
(dist-hook): Handle $(BUILT_EXTRA_DIST).

docs/reference:
'make distcheck' fixes.
* glib/Makefile.am (EXTRA_DIST): Add $(DOC_MODULE)-decl.txt.
(html): Run 'gtkdoc-fixxref' in $(srcdir).
(dist-check-gtkdoc): Add missing quote.
(dist-hook): Copy in dependency order, so that none of the
makerules are fired in a tarball build.

* gobject/Makefile.am: Likewise.

toplevel:
Remove need for acconfig.h, and misc. cleanups.
* acglib.m4 (GLIB_SIZEOF): Add 'autoheader' comment to
AC_DEFINE_UNQUOTED.
(GLIB_BYTE_CONTENTS): Likewise.

* configure.in: Add 'autoheader' comments to all AC_DEFINE(...)
and AC_DEFINE_UNQUOTED(...) lines.
Replace AC_MSG_CHECKING/AC_CACHE_VAL with AC_CACHE_CHECK.
(AM_PROG_LIBTOOL): Move after AC_PROG_CC.

* acconfig.h: Empty out.

* Makefile.am (BUILT_EXTRA_DIST): New variable.  List 'dist'able
files that are created in the builddir.
(dist-hook): Handle those files.
(libglib_1_3_la_SOURCES): Remove @ALLOCA@.  @ALLOCA@ should only
be used in an _LDADD or _LIBADD, since it expands (if necessary)
to 'alloca.o'.

* tests/Makefile.am (BUILT_EXTRA_DIST): New variable.
(dist-hook): Handle $(BUILT_EXTRA_DIST).

23 years agoAdded inline documentation.
Sebastian Wilhelmi [Fri, 13 Oct 2000 13:52:47 +0000 (13:52 +0000)]
Added inline documentation.

2000-10-13  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* grand.c: Added inline documentation.

* docs/refernce/glib/glib-sections.txt: Added misc items.

* docs/refernce/glib/tmpl/random_numbers.sgml: Documentation for
        the random number generator.

23 years agoReadded GFreeFunc, g_node_insert_after and g_find_program_in_path resp.,
Sebastian Wilhelmi [Fri, 13 Oct 2000 08:16:54 +0000 (08:16 +0000)]
Readded GFreeFunc, g_node_insert_after and g_find_program_in_path resp.,

2000-10-13  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* gtypes.h, gnode.h, gutils.h: Readded GFreeFunc,
g_node_insert_after and g_find_program_in_path resp., which
mysteriously disappeared during the glib.h dissection.

23 years agoRevert unintended commit...
Sebastian Wilhelmi [Thu, 12 Oct 2000 15:41:37 +0000 (15:41 +0000)]
Revert unintended commit...

Revert unintended commit...

23 years ago.cvsignore updates
Sebastian Wilhelmi [Thu, 12 Oct 2000 15:36:29 +0000 (15:36 +0000)]
.cvsignore updates

.cvsignore updates

23 years agoAdapted accordingly to header separation and GLIB_HAVE_ALLOCA_H renaming.
Sebastian Wilhelmi [Thu, 12 Oct 2000 14:55:37 +0000 (14:55 +0000)]
Adapted accordingly to header separation and GLIB_HAVE_ALLOCA_H renaming.

2000-10-12  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* glibconfig.h.win32.in: Adapted accordingly to header separation
and GLIB_HAVE_ALLOCA_H renaming.

23 years ago.cvsignore updates
Sebastian Wilhelmi [Thu, 12 Oct 2000 14:28:39 +0000 (14:28 +0000)]
.cvsignore updates

.cvsignore updates

23 years agoAdded the new headers to glibinclude_HEADERS.
Sebastian Wilhelmi [Thu, 12 Oct 2000 12:16:16 +0000 (12:16 +0000)]
Added the new headers to glibinclude_HEADERS.

2000-10-12  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* Makefile.am: Added the new headers to glibinclude_HEADERS.

* glib.h: Forgot to include gerror.h.

23 years agoSplit glib.h into many header files mostly according to the resp.
Sebastian Wilhelmi [Thu, 12 Oct 2000 11:52:07 +0000 (11:52 +0000)]
Split glib.h into many header files mostly according to the resp.

2000-10-12  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* glib.h, galloca.h, garray.h, gasyncqueue.h, gbacktrace.h,
gcache.h, gcompletion.h, gconvert.h, gdataset.h, gdate.h, ghash.h,
ghook.h, giochannel.h, glist.h , gmacros.h, gmain.h, gmem.h,
gmessages.h, gnode.h, gprimes.h, gquark.h, gqueue.h, grand.h,
grel.h, gscanner.h, gslist.h, gstrfuncs.h, gstring.h, gthread.h,
gthreadpool.h, gtimer.h, gtree.h, gtypes.h, gutils.h: Split glib.h
into many header files mostly according to the resp. *.c-files.

* gmacros.h: Added G_BEGIN_DECLS and G_END_DECLS to mean: 'in case
of C++: extern "C" { ... }' analogous to glibc __BEGIN_DECLS and
__END_DECLS.

* configure.in, gerror.h, gfileutils.h, gshell.h, gspawn.h,
gunicode.h, : Changed guard-macro names to something more
consistent.

* configure.in, *.h: Use G_BEGIN_DECLS and G_END_DECLS.

23 years agoRemoved cruft from old threading code.
Sebastian Wilhelmi [Thu, 12 Oct 2000 11:39:50 +0000 (11:39 +0000)]
Removed cruft from old threading code.

2000-10-12  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* configure.in: Removed cruft from old threading code.

23 years agodefine GLIB_HAVE_ALLOCA_H instead of including alloca.h in glibconfig.h,
Sebastian Wilhelmi [Thu, 12 Oct 2000 08:06:16 +0000 (08:06 +0000)]
define GLIB_HAVE_ALLOCA_H instead of including alloca.h in glibconfig.h,

2000-10-12  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* configure.in: define GLIB_HAVE_ALLOCA_H instead of including
alloca.h in glibconfig.h, GLIB_HAVE_ALLOCA_H is used in glib.h.

23 years agoRemove stray '}'
Raja R Harinath [Tue, 10 Oct 2000 05:04:36 +0000 (05:04 +0000)]
Remove stray '}'

23 years agoWork with beta autoconf 2.50.
Raja R Harinath [Mon, 9 Oct 2000 21:06:01 +0000 (21:06 +0000)]
Work with beta autoconf 2.50.
* configure.in (GLIB_MAJOR_VERSION): Use GLIB_DIVERT_BEFORE_HELP
instead of AC_DIVERT_PUSH(),AC_DIVERT_POP.
(AC_CHECK_HEADERS): Remove redundant AC_DEFINE(HAVE_...).
(REALLOC_0_WORKS): Move AC_DEFINE outside AC_CACHE_VAL.
(dlopen): Quote nested AC_CHECK_... calls.

* acglib.m4 (GLIB_TR_SH, GLIB_TR_CPP): Utility macros copied from
beta autoconf 2.50.
(GLIB_DIVERT_BEFORE_HELP): New macro that works both with autoconf
2.13 and beta autoconf 2.50.
(GLIB_SIZEOF, GLIB_BYTECONTENTS): Use GLIB_TR_*.

23 years agoUse this to specify that 'configure' depends on acglib.m4.
Raja R Harinath [Mon, 9 Oct 2000 20:15:55 +0000 (20:15 +0000)]
Use this to specify that 'configure' depends on acglib.m4.

* Makefile.am (CONFIGURE_DEPENDENCIES): Use this to specify
that 'configure' depends on acglib.m4.