platform/upstream/glib.git
23 years agoDon't warn about deprecation on Win32. Code written for GLib 1.2 doesn't
Tor Lillqvist [Tue, 9 Jan 2001 16:33:21 +0000 (16:33 +0000)]
Don't warn about deprecation on Win32. Code written for GLib 1.2 doesn't

2001-01-09  Tor Lillqvist  <tml@iki.fi>

* gutils.c (g_basename, g_dirname): Don't warn about deprecation
on Win32. Code written for GLib 1.2 doesn't have much choice but
to use GLib >= 1.3 on Win32.

* glib.def: Update.

23 years agominor markup cleanups
Tim Janik [Tue, 9 Jan 2001 15:29:15 +0000 (15:29 +0000)]
minor markup cleanups

23 years agoMade g_profile_mutex a GMutex* instead of G_LOCK_DEFINE_STATIC to avoid
Sebastian Wilhelmi [Tue, 9 Jan 2001 13:47:12 +0000 (13:47 +0000)]
Made g_profile_mutex a GMutex* instead of G_LOCK_DEFINE_STATIC to avoid

2001-01-09  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* gmem.c: Made g_profile_mutex a GMutex* instead of
G_LOCK_DEFINE_STATIC to avoid deadlock for thread implementations
without native static mutexes. Contruct g_profile_mutex in
g_mem_init().

23 years agoadded some function documentations.
Tim Janik [Tue, 9 Jan 2001 02:18:57 +0000 (02:18 +0000)]
added some function documentations.

Tue Jan  9 03:10:38 2001  Tim Janik  <timj@gtk.org>

        * gobject/tmpl/types.sgml: added some function documentations.

        * gobject/gobject-sections.txt: buncha fixups.

23 years agoGet len using strlen() if arg is negative in the Win32 code, too.
Tor Lillqvist [Sat, 6 Jan 2001 03:09:46 +0000 (03:09 +0000)]
Get len using strlen() if arg is negative in the Win32 code, too.

2001-01-06  Tor Lillqvist  <tml@iki.fi>

* gconvert.c (g_locale_to_utf8, g_locale_from_utf8): Get len using
strlen() if arg is negative in the Win32 code, too.

* giowin32.c: Changes necessary to be able to run
mainloop-test. We can't close the fd that our (internal) reader
thread is sitting doing a blocking read() from. We must terminate
the thread first. Keep track of thread handle, and close it when
thread is dying. Start reader thread with the lower-level
CreateThread() instead of _beginthreadex() from the C runtime, in
order to be able to use TerminateThread(). Hopefuly this isn't
harmful.

* glib.def: Update.

* tests/makefile.{mingw,msc}.in (TESTS): Add mainloop-test and
unicode-encoding.

* tests/mainloop-test.c: Portability: <unistd.h>, need <fcntl.h>
on Win32.

* tests/unicode-encoding.c (process): Add missing "line" argument
to fail(). On Win32, convert UTF-16LE, as libiconv'c ivonf always
converts to UTF-16BE if we ask for unspecific UTF-16.
(main) Handle also '\r'.

23 years agomove $enable_debug down below checks for GCC to avoid setting CFLAGS
Owen Taylor [Fri, 5 Jan 2001 21:22:47 +0000 (21:22 +0000)]
move $enable_debug down below checks for GCC to avoid setting CFLAGS

Fri Jan  5 11:25:42 2001  Owen Taylor  <otaylor@redhat.com>

* configure.in (PACKAGE): move $enable_debug down below
checks for GCC to avoid setting CFLAGS prematurely,
change checks to avoid adding -g twice.

* gutf8.c (g_ucs4_to_utf8): Support len < 0 to mean
0 termination.

* gutf8.c (g_utf8_to_ucs4): Terminate result with 0.

* tests/mainloop-test.c (main): Fix uses of
g_main_loop_destroy().

* tests/unicode-encoding.c tests/Makefile.am tests/utf8.txt:
Tests for unicode-conversion code.

* gconvert.c (g_convert, g_convert_with_fallback): work around
a couple of GNU libc bugs.

* gconvert.[ch] (g_{locale,filename}_{to,from}_utf8): Standardize
arguments to match g_convert(). Document.

* gunicode.[ch]:
  - Implement conversion functions to and from UTF-16
  - Standardize unicode conversion functions on prototype like
    g_convert.
  - Add a lot of error checking to unicode conversion functions.

* gunicode.[ch] (g_utf8_to_ucs4_fast): Add fast, non-checking
variant of g_utf8_to_ucs4.

* gutf8.c (g_utf8_validate):
 - add g_return_if_fail (str != NULL).
 - add checks for overlong strings, non-valid Unicode characters (>= 110000)
   and single surrogates.

23 years agoUpdated.
Owen Taylor [Fri, 5 Jan 2001 20:48:43 +0000 (20:48 +0000)]
Updated.

Fri Jan  5 15:47:10 2001  Owen Taylor  <otaylor@redhat.com>

* glib/glib-sections.txt glib/tmpl/* glib/Makefile.am: Updated.

23 years agoset the value_type in the param spec; closes bug 40210
Havoc Pennington [Fri, 5 Jan 2001 20:26:29 +0000 (20:26 +0000)]
set the value_type in the param spec; closes bug 40210

2001-01-05  Havoc Pennington  <hp@redhat.com>

* gparamspecs.c (g_param_spec_enum): set the value_type in the
param spec; closes bug 40210
(g_param_spec_flags): ditto for flags

23 years agoAdd test for g_path_skip_root().
Tor Lillqvist [Fri, 5 Jan 2001 20:19:37 +0000 (20:19 +0000)]
Add test for g_path_skip_root().

2001-01-05  Tor Lillqvist  <tml@iki.fi>

* testglib.c (main): Add test for g_path_skip_root().

* gutils.c (g_path_skip_root): Fix bugs in code I just added ;-)

23 years agoLook also for (illegal) forward slashes in the template.
Tor Lillqvist [Fri, 5 Jan 2001 19:30:13 +0000 (19:30 +0000)]
Look also for (illegal) forward slashes in the template.

2001-01-05  Tor Lillqvist  <tml@iki.fi>

* gfileutils.c (g_file_open_tmp): (Win32:) Look also for (illegal)
forward slashes in the template.

* gutils.c (g_path_skip_root): On Win32, skip the \\server\share
part of UNC paths. On all platforms, skip several initial
slashes. Add a few comments.
(g_get_any_init): On Win32, in case HOME is Unix-style with
(forward) slashes (some other applications apparently set it up
this way, convert to backslashed form.

* configure.in (glib_os): Remove stray 'v'. Add case for mingw,
although using configure for mingw surely doesn't work yet.

* glib.def: Update.

23 years agoremove glib-config-2.0
Havoc Pennington [Thu, 4 Jan 2001 17:47:00 +0000 (17:47 +0000)]
remove glib-config-2.0

2001-01-02  Havoc Pennington  <hp@redhat.com>

* configure.in: remove glib-config-2.0

* Makefile.am: remove glib-config-2.0

23 years ago-I$(top_srcdir)/gmodule, fix from Michael Meeks
Havoc Pennington [Thu, 4 Jan 2001 03:49:45 +0000 (03:49 +0000)]
-I$(top_srcdir)/gmodule, fix from Michael Meeks

2001-01-03  Havoc Pennington  <hp@pobox.com>

* tests/Makefile.am (INCLUDES): -I$(top_srcdir)/gmodule,
fix from Michael Meeks

* Makefile.am (INCLUDES): DISABLE was spelled wrong

23 years agoSwitch GMainLoop to be ref/unref, use to make dropping reference to
Owen Taylor [Wed, 3 Jan 2001 20:18:40 +0000 (20:18 +0000)]
Switch GMainLoop to be ref/unref, use to make dropping reference to

Wed Jan  3 14:10:49 2001  Owen Taylor  <otaylor@redhat.com>

* gmain.[ch]: Switch GMainLoop to be ref/unref, use to
make dropping reference to running loop safe.

23 years agoMade g_thread_min_stack_size static.
Sebastian Wilhelmi [Wed, 3 Jan 2001 17:00:43 +0000 (17:00 +0000)]
Made g_thread_min_stack_size static.

2001-01-03  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

        * gthread-solaris.c, gthread-posix.c: Made g_thread_min_stack_size
        static.

2CVS: ----------------------------------------------------------------------

23 years agoUnref callback->cb_data if it was still set when the source is freed.
Owen Taylor [Wed, 3 Jan 2001 16:05:39 +0000 (16:05 +0000)]
Unref callback->cb_data if it was still set when the source is freed.

Wed Dec 13 20:41:49 2000  Owen Taylor  <otaylor@redhat.com>

* gmain.c (g_source_unref_internal): Unref callback->cb_data
if it was still set when the source is freed. (Usually, this
will be done by g_source_destroy.)

23 years agoMove glib_debug_objects out of the G_ENABLE_DEBUG #ifdef.
Alexander Larsson [Wed, 3 Jan 2001 10:03:49 +0000 (10:03 +0000)]
Move glib_debug_objects out of the G_ENABLE_DEBUG #ifdef.

2001-01-03  Alexander Larsson  <alexl@redhat.com>

* gobject.c:
Move glib_debug_objects out of the G_ENABLE_DEBUG #ifdef.

23 years agoUse parentheses around an argument to make these cause an error if you
Dan Winship [Tue, 2 Jan 2001 20:52:05 +0000 (20:52 +0000)]
Use parentheses around an argument to make these cause an error if you

* garray.h (g_array_append_val, g_array_prepend_val,
g_array_insert_val): Use parentheses around an argument to make
these cause an error if you pass a non-lvalue for the value,
rather than silently doing the wrong thing.

23 years agoAdd GLIB_SIZEOF_VOID_P and GLIB_SIZEOF_LONG.
Tor Lillqvist [Fri, 29 Dec 2000 19:25:40 +0000 (19:25 +0000)]
Add GLIB_SIZEOF_VOID_P and GLIB_SIZEOF_LONG.

2000-12-29  Tor Lillqvist  <tml@iki.fi>

* glibconfig.h.win32.in: Add GLIB_SIZEOF_VOID_P and GLIB_SIZEOF_LONG.

* glib.def: Update.

* {.,*}/makefile.{mingw,msc}.in: Add -DG_ENABLE_DEBUG.

23 years agowe can't grow _cv_ variables by using a backticked expr that refers back
Tim Janik [Fri, 29 Dec 2000 15:11:03 +0000 (15:11 +0000)]
we can't grow _cv_ variables by using a backticked expr that refers back

Fri Dec 29 14:53:18 2000  Tim Janik  <timj@gtk.org>

        * configure.in: we can't grow _cv_ variables by using a backticked
        expr that refers back to the variable (glib_cv_sizeof_system_thread for
        G_THREAD_USE_PID_SURROGATE), that'd keep the variable growing every time
        it's evaluated. quantum states, anyone?)

23 years agogot rid of outdated dmalloc support. provide g_try_malloc() and
Tim Janik [Fri, 29 Dec 2000 02:16:51 +0000 (02:16 +0000)]
got rid of outdated dmalloc support. provide g_try_malloc() and

Thu Dec 28 10:21:46 2000  Tim Janik  <timj@gtk.org>

        * gmem.[hc]: got rid of outdated dmalloc support. provide g_try_malloc()
        and g_try_realloc() which _may_ fail and return NULL.
        nuked g_mem_check(), provided GMemVTable for memory function
        virtualization, alterable at program startup with g_mem_set_vtable().
        provided glib_mem_profiler_table and g_mem_profile() to support limited
        profiling information out of the box (uses mprotect() for free()ed areas
        on linux).
        provide globally visible G_MEM_ALIGN.
        buncha cleanups.

        * docs/macros.txt: file to get a clue about the various configuration
        macros.

        * docs/debugging.txt: explain debugging traps.

        * configure.in: got rid of --enable-mem-check and --enable-mem-profile,
        define GLIB_SIZEOF_VOID_P and GLIB_SIZEOF_LONG. check malloc prototypes
        and define SANE_MALLOC_PROTOS is we can use them.
        <boy, is this file a mess>

        * gutils.c, gscanner.c: fix up compatibility warnings, use g_message().

Thu Dec 28 11:36:44 2000  Tim Janik  <timj@gtk.org>

        * gbsearcharray.c (upper_power2): disable G_BSEARCH_ALIGN_POWER2
        fucntionality if DISABLE_MEM_POOLS is defined.

        * gtype.c: honour DISABLE_MEM_POOLS.

        * gsignal.c (g_signal_init): flag signal key bsearch array with
        G_BSEARCH_ALIGN_POWER2 to avoid excessive growth time. honour
        DISABLE_MEM_POOLS.

        * gparam.h: added G_PARAM_READWRITE alias for (G_PARAM_READABLE |
                                                       G_PARAM_WRITABLE).

23 years agoUpdate.
Tor Lillqvist [Wed, 27 Dec 2000 20:56:15 +0000 (20:56 +0000)]
Update.

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

* README.win32: Update.

23 years agoUse a MessageBox for fatal messages. Collect eror message into a buffer,
Tor Lillqvist [Mon, 25 Dec 2000 22:07:01 +0000 (22:07 +0000)]
Use a MessageBox for fatal messages. Collect eror message into a buffer,

2000-12-25  Tor Lillqvist  <tml@iki.fi>

* gmessages.c: (Win32) Use a MessageBox for fatal
messages. Collect eror message into a buffer, and display that.

* glib.def: Update.

* glibconfig.h.win32.in: Update. Remove unused wchar and wctype
macros, add G_MODULE_SUFFIX.

23 years agoNew gcompat.h header file as recommended by Havoc.
Ali Abdin [Sun, 24 Dec 2000 12:11:06 +0000 (12:11 +0000)]
New gcompat.h header file as recommended by Havoc.

2000-12-24  Ali Abdin  <aliabdin@aucegypt.edu>

        * Makefile.am, gcompat.h, glib.h: New gcompat.h header file
          as recommended by Havoc.

        * gdate.c, gdate.h, testgdate.c,
          docs/reference/glib/glib-sections.txt,
          docs/reference/glib/tmpl/date.sgml, tests/date-test.c: Rename some
          of the gdate functions to use the '_get' in their name. Patch
          reviewed by Havoc.

23 years agoDetermine the suffix of the shared librarries for this system. This is
Sebastian Wilhelmi [Fri, 22 Dec 2000 13:44:25 +0000 (13:44 +0000)]
Determine the suffix of the shared librarries for this system. This is

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

* configure.in: Determine the suffix of the shared librarries for
this system. This is done analogous to
ltconfig.sh. G_MODULE_SUFFIX in glibconfig.h is set to either
"sl", "dll", or (most often) "so".

* tests/Makefile.am, tests/module-test.c,
tests/libmoduletestplugin_a.c, tests/libmoduletestplugin_b.c:
Added new testcase for gmodule. This is mostly copied from
gmodule/testgmodule.c, but unlike that is is quiet. (Why BTW are
some tests that verbose, not to say loquacious...)

* gmodule.c: Make g_module_open more tolerant wrt to the module
name. First it tries to open the module as named, if that fails,
it checks, whether it is a libtool archive and parses it, if that
fails it appends the systems shared library suffix
(i.e. ".so") (if not already found) and tries again and if that
fails it tries to append the ".la" libtool suffix (if not already
found) and parses it.

* gmodule.c: Lock recursive mutex during most module functions for
safety.

* gmodule-dl.c: Return an error from _g_module_symbol only, if
dlerror says so. All other functions return an error as well, if
dlerror returns NULL.

* testgmodule.c: Thanks to the above change the #ifdefs have
vanished.

* glib/glib-sections.txt: Added G_MODULE_SUFFIX.

* glib/tmpl/modules.sgml: Updated.

23 years agoUpdated G_RAND_DOUBLE_TRANSFORM to be more accurate. Redid g_rand_double()
Sebastian Wilhelmi [Tue, 19 Dec 2000 15:57:53 +0000 (15:57 +0000)]
Updated G_RAND_DOUBLE_TRANSFORM to be more accurate. Redid g_rand_double()

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

* grand.c: Updated G_RAND_DOUBLE_TRANSFORM to be more
accurate. Redid g_rand_double() such that it returns 52 bits after
the point instead of 32 as before. That OTOH requires calling
g_rand_int() twice. Overhauled g_rand_int_range(), which is easier
now thanks to the new precision of g_rand_double(). Thanks to
Sverre Johansen <sj@ifi.uio.no> for the hint.

* grand.h: Added g_rand_boolean() and g_random_boolean()
macros. While they could be omitted due to extreme simplicity,
they make intention clearer in code and are therefore good to have.

* grand.c, grand.h: Renamed all 'min' and 'max' parameters to'
begin' and 'end' resp. to avoid making people think, that 'max' is
included in the interval. 'end' now isn't, whereas 'begin'
is. That's similar to the use in the STL.

* glib/glib-sections.txt: Added g_rand_boolean and
g_random_boolean macros.

* glib/tmpl/random_numbers.sgml: Updated.

23 years agoOk, I'm a moron. When I originally implemented ENABLE_GC_FRIENDLY, I
Sebastian Wilhelmi [Tue, 19 Dec 2000 15:40:30 +0000 (15:40 +0000)]
Ok, I'm a moron. When I originally implemented ENABLE_GC_FRIENDLY, I

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

* gslist.c, glist.c: Ok, I'm a moron. When I originally
implemented ENABLE_GC_FRIENDLY, I forgot to include config.h into
the affected files. Now that Alex did that for those two,
inevitable typos surfaced, which are now fixed.

* garray.c, ghash.c, gqueue.c, gtree.c: Include config.h as well,
as ENABLE_GC_FRIENDLY should be known.

23 years agoAdded --disable-mem-pools option.
Alexander Larsson [Tue, 19 Dec 2000 09:35:44 +0000 (09:35 +0000)]
Added --disable-mem-pools option.

2000-12-19  Alexander Larsson  <alexl@redhat.com>

* configure.in:
Added --disable-mem-pools option.

* glist.c:
* gslist.c:
* gnode.c:
* gmem.c:
Disable free list and memory chunks if DISABLE_MEM_POOLS is defined.

23 years agoUse GetACP to get the current ANSI codepage.
Tor Lillqvist [Sun, 17 Dec 2000 18:43:57 +0000 (18:43 +0000)]
Use GetACP to get the current ANSI codepage.

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

* gutf8.c (g_utf8_get_charset_internal): (Win32) Use GetACP to get
the current ANSI codepage.

* gunicode.h: Add comment that the static string g_get_charset
sets the parameter to point to should be copied in case the
charset might be changed later in the program.

23 years agoUpdate.
Tor Lillqvist [Sat, 16 Dec 2000 20:06:59 +0000 (20:06 +0000)]
Update.

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

* gobject.def: Update.

23 years agoUpdate.
Tor Lillqvist [Fri, 15 Dec 2000 19:49:35 +0000 (19:49 +0000)]
Update.

2000-12-15  Tor Lillqvist  <tml@iki.fi>

* gobject.def: Update.

23 years agouse g_signal_newc
Havoc Pennington [Fri, 15 Dec 2000 07:05:10 +0000 (07:05 +0000)]
use g_signal_newc

2000-12-15  Havoc Pennington  <hp@pobox.com>

* gobject.c (g_object_do_class_init): use g_signal_newc

* gsignal.c (g_signal_newc): convenience function for signals
created from C
(g_signal_new_valist): added
(g_signal_new): removed

23 years agoadd an instance member value_type so the default value of the pspec class
Tim Janik [Fri, 15 Dec 2000 05:51:08 +0000 (05:51 +0000)]
add an instance member value_type so the default value of the pspec class

Fri Dec 15 04:40:23 2000  Tim Janik  <timj@gtk.org>

        * gparam.[hc]: add an instance member value_type so the default
        value of the pspec class can be overridden.

23 years agoUpdate once again.
Tor Lillqvist [Thu, 14 Dec 2000 22:28:15 +0000 (22:28 +0000)]
Update once again.

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

* gobject.def: Update once again.

23 years agoUpdate more.
Tor Lillqvist [Thu, 14 Dec 2000 21:34:07 +0000 (21:34 +0000)]
Update more.

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

* gobject.def: Update more.

23 years agoNo need to -DGSPAWN_HELPER when compiling gspawn-win32-helper any longer.
Tor Lillqvist [Thu, 14 Dec 2000 21:08:00 +0000 (21:08 +0000)]
No need to -DGSPAWN_HELPER when compiling gspawn-win32-helper any longer.

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

* makefile.{mingw,msc}.in: No need to -DGSPAWN_HELPER when
compiling gspawn-win32-helper any longer.

23 years agoWarn if no callback. Call callback correctly. (g_io_win32_create_watch):
Tor Lillqvist [Thu, 14 Dec 2000 21:02:20 +0000 (21:02 +0000)]
Warn if no callback. Call callback correctly. (g_io_win32_create_watch):

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

* giowin32.c (g_io_win32_dispatch): Warn if no callback. Call
callback correctly.
(g_io_win32_create_watch): Fix typo.
(g_io_win32_fd_create_watch): Ditto.
(g_io_channel_unix_new): If it is a file descriptor (i.e., a Unix
fd lookalike provided by the C library), call
g_io_channel_win32_new_fd(). If it is a socket (from WinSock),
call g_io_cahnnel_win32_new_stream_socket(). Hopefully sockets and
fds don't overlap. TODO: Implement also datagram sockets.
(g_io_channel_win32_poll): Call g_main_context_get_poll_func().

* gcompletion.h: Include <unistd.h> only on Unix. Is this
inclusion really needed here? OTOH, do include <stddef.h>, for
size_t.

* gmessages.c: (Win32) Don't define a function called "write" that
might clash with the prototype from <io.h>, use a #define.

* glib.def: Update.

* gmain.c (g_source_add_poll): Don't return a value from void
function.
(g_main_context_get_poll_func): Compile also for non-Win32, as
presumably was intended. The result var is a GPollFunc, not a
GPollFunc*. Return the result!

gobject:

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

* makefile.mingw.in: Update, include parts from Makefile.am to
build gmarshal.[ch]. Some day, we won't need these separate
makefiles for Win32 compilation. I hope.

* makefile.msc.in: Update. No use trying to build gmarshal.[ch]
here, it would require Unixish tools. MSVC users building from CVS
sources are out of luck.

* gobject.def: Update.

23 years agomake static
Havoc Pennington [Wed, 13 Dec 2000 23:54:51 +0000 (23:54 +0000)]
make static

2000-12-13  Havoc Pennington  <hp@redhat.com>

* gconvert.c (open_converter): make static

* gutf8.c (g_utf8_validate): Simplify logic a bit, maybe
speeding it up - now we just return FALSE if we had to bail out
for any reason before getting to the end of the string, as defined
by a nul byte if len was -1, defined by the len otherwise. This
also fixes a bug where nul bytes were not treated as invalid
when the length was specified.

23 years agourg managed to forget this last time ;(
Tim Janik [Wed, 13 Dec 2000 08:36:17 +0000 (08:36 +0000)]
urg managed to forget this last time ;(

Wed Dec 13 09:31:26 2000  Tim Janik  <timj@gtk.org>

        * gparamspecs.[hc]: add G_TYPE_PARAM_BOXED implementation.

        * gobject.[hc]: minor fixes.

23 years agodon't try to use thread stuff unless G_THREADS_ENABLED
Havoc Pennington [Wed, 13 Dec 2000 04:23:45 +0000 (04:23 +0000)]
don't try to use thread stuff unless G_THREADS_ENABLED

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

* gmain.c (g_main_context_destroy): don't try to use thread stuff
unless G_THREADS_ENABLED
(g_main_context_query): ditto
(g_main_context_check): ditto
(g_main_loop_quit): ditto

23 years agoreturn whether a value got removed.
Tim Janik [Wed, 13 Dec 2000 00:44:18 +0000 (00:44 +0000)]
return whether a value got removed.

Tue Dec 12 18:58:22 2000  Tim Janik  <timj@gtk.org>

        * ghash.c (g_hash_table_remove): return whether a value
        got removed.

Tue Dec 12 23:38:02 2000  Tim Janik  <timj@gtk.org>

        * Makefile.am: _never_ touch oldest-source-stamp.

        * gobject.[hc]: construct property handling fixes/improvements.
        fixed trailer handling in get/set property.

        * gparam.[hc]: implement param spec pool, got rid of param spec
        hashtable. the most prominent change is that e deal with type
        prefixes here.

23 years agoclean up after elliot, wonder what his mother has to do on a daily basis.
Tim Janik [Tue, 12 Dec 2000 22:40:00 +0000 (22:40 +0000)]
clean up after elliot, wonder what his mother has to do on a daily basis.

23 years agoRevert unauthorized changes.
Owen Taylor [Tue, 12 Dec 2000 20:23:37 +0000 (20:23 +0000)]
Revert unauthorized changes.

Tue Dec 12 15:18:10 2000  Owen Taylor  <otaylor@redhat.com>

* gmain.[ch]: Revert unauthorized changes.

23 years agoGMainContext useful in implementing some additional styles of main loop
Elliot Lee [Tue, 12 Dec 2000 19:34:41 +0000 (19:34 +0000)]
GMainContext useful in implementing some additional styles of main loop

* gmain.c, gmain.h (g_main_context_new, g_main_context_destroy): GMainContext useful
in implementing some additional styles of main loop usage.  To do this, however, Joe
Hacker needs to be able to create/destroy GMainContext's at will. This is just an
export of existing functionality, rather than new functionality.

They are listed in the "Low level functions for implementing custom main loops"
section of the header file, to avoid confusing people.

* gobject/Makefile.am:
  . You have to 'touch oldest-source-stamp' if you want to avoid having
  the Makefile constantly rebuild itself.
  . Fix marshaller generation rules to work with srcdir != builddir
    (there were issues with trying to run "./glib-genmarshal", etc.)

23 years agoshut up on new marshaller generated stuff
Tim Janik [Tue, 12 Dec 2000 07:53:04 +0000 (07:53 +0000)]
shut up on new marshaller generated stuff

23 years agoi guess some people may need this ;)
Tim Janik [Tue, 12 Dec 2000 07:51:44 +0000 (07:51 +0000)]
i guess some people may need this ;)

23 years agofixed dealing with collection/lcopy of NULL values.
Tim Janik [Tue, 12 Dec 2000 07:32:00 +0000 (07:32 +0000)]
fixed dealing with collection/lcopy of NULL values.

Mon Dec 11 04:44:11 2000  Tim Janik  <timj@gtk.org>

* gboxed.c: fixed dealing with collection/lcopy of NULL values.

* gclosure.h: removed insane ramblings, added G_CALLBACK() a casting
convenience macro.

* Makefile.am: cleanups, marshaller generation rules.

* gmarshal.[hc]: new files with GRuntime standard marshallers.

* glib-genmarshal.c: fix log domain, support gruntime standard
marshallers, suport G_TYPE_PARAM, come with extern "C" and
#include gmarshal.h.

* glib-genmarshal.1: reflect glib-genmarshal.c updates.

* gobject.[hc]: implement object constructor. rework parameter
changed notification queueing, we support queue freezes now and
don't dispatch from an idle handler anymore.
parameter->property rename hassle.
implemented ::properties_changed and ::notify::* signals for
property change notification (the later supports property names
as details). added signal connection and named data properties.
(g_signal_connect_object): new function to setup while_alive
connections.
(g_object_class_install_property): sink properties now, since they
are initially floating.
(g_object_steal_data):
(g_object_set_data_full):
(g_object_set_data):
(g_object_get_data): set/get data by using g_datalist_*() functions
directly.
(g_object_queue_param_changed): nuked.
(g_object_freeze_notify): start queueing of property changes (freeze/
thaw calls stack).
(g_object_notify): announce changes of a certain property directly.
(g_object_thaw_notify): process queue of property changes, therefore
emitting GObject::notify::detail with detail being the changed
properties names.
(G_OBJECT_WARN_INVALID_PROPERTY_ID): saner macro variant of former
G_WARN_INVALID_PARAM_ID().

* gparam.[hc]: param specs are now initially floating and need to be
sunken with g_param_spec_sink(), support G_TYPE_PARAM values.
added G_PARAM_CONSTRUCT and G_PARAM_CONSTRUCT_ONLY parameter flags,
required by GObjectClass.constructor().

* gparamspecs.[hc]: added GParamSpecParam, GParamSpecPointer and
GParamSpecCCallback, param specs for G_TYPE_PARAM, G_TYPE_POINTER
and G_TYPE_CCALLBACK respectively.

* gsignal.[hc]: cleanups.
(signal_id_lookup): after walking the anchestry, try interfaces as well.
(g_signal_new): new function to create signals from varargs type list.
(g_signal_connect_closure): closure connection variant that works from
signal name+detail.
(g_signal_connect_data): c handler connection variant that works from
signal name+detail.
(g_signal_emit_valist): emit signal for an instance with paraneters
collected from a va_list.
(g_signal_emit): emit signal, taking parameters from varargs list.
(g_signal_emit_by_name): same as g_signal_emit, working from
signal name+detail.
(signal_emit_R): return whether return_value needs to be altered.

* gtype.[hc]: set log-domain to GRuntime, i'm slowly getting to all
the points that need to reflect the upcoming rename.
melt g_type_conforms_to() functionality into g_type_is_a(), as that
is what we really want (liskov substitution principle).
assorted changes to other files due to conforms_to->is_a.

* gvalue.[hc]: implemented g_value_set_instance() that sets a value
from an instantiatable type via the value_table's collect_value()
function (based on an idea from James Henstridge <james@daa.com.au>).
cleanups/fixes.

* gvaluetypes.[hc]: implement G_TYPE_CCALLBACK and G_TYPE_PARAM.

23 years agoRemove pollfds from the context here, not when actually freeing the
Owen Taylor [Sun, 10 Dec 2000 16:02:48 +0000 (16:02 +0000)]
Remove pollfds from the context here, not when actually freeing the

Sun Dec 10 10:47:11 2000  Owen Taylor  <otaylor@redhat.com>

* gmain.c (g_source_destroy_internal): Remove pollfds
from the context here, not when actually freeing the
source.

* gmain.c (g_source_unref_internal): Free source list
and source, call source->source_funcs->destroy().

* giochannel.c: Unreference io_channel properly.

23 years agoRename from GLIB_DIVERT_BEFORE_HELP. Update to track autoconf 2.49b.
Raja R Harinath [Fri, 8 Dec 2000 22:48:45 +0000 (22:48 +0000)]
Rename from GLIB_DIVERT_BEFORE_HELP. Update to track autoconf 2.49b.

* acglib.m4 (GLIB_AC_DIVERT_BEFORE_HELP):
Rename from GLIB_DIVERT_BEFORE_HELP.
Update to track autoconf 2.49b.
* configure.in: Reflect above change.
(AC_EGREP_HEADER): Rename from really obselete AC_HEADER_EGREP.
(debug_default): Replace "if test `expr ...`" with "case".

23 years agoFix typo, and fix some formatting.
Raja R Harinath [Fri, 8 Dec 2000 21:23:30 +0000 (21:23 +0000)]
Fix typo, and fix some formatting.

23 years agoRearrange into other veriables, and include run-markup-tests.sh.
Raja R Harinath [Fri, 8 Dec 2000 21:04:52 +0000 (21:04 +0000)]
Rearrange into other veriables, and include run-markup-tests.sh.

* tests/Makefile.am (TESTS): Rearrange into other veriables, and
include run-markup-tests.sh.
(TESTS_ENVIRONMENT): New.  Pass $srcdir to tests.
(noinst_PROGRAMS): Rename to ...
(check_PROGRAMS): ... this.  'automake' ensures that these are
built before running the tests.
* tests/run-markup-tests.sh: Support $srcdir != $builddir.

23 years agomove markup-test to noinst_PROGRAMS; it isn't a proper test, the proper
Havoc Pennington [Fri, 8 Dec 2000 15:03:12 +0000 (15:03 +0000)]
move markup-test to noinst_PROGRAMS; it isn't a proper test, the proper

2000-12-08  Havoc Pennington  <hp@pobox.com>

* tests/Makefile.am (TESTS): move markup-test to noinst_PROGRAMS;
it isn't a proper test, the proper test would be
run-markup-tests.sh, but that can't go in tests, so we need
a manual make check rule. Didn't do that yet.

23 years agoDon't put anything after an #endif. Likewise.
Raja R Harinath [Fri, 8 Dec 2000 03:39:47 +0000 (03:39 +0000)]
Don't put anything after an #endif. Likewise.

* gmain.h: Don't put anything after an #endif.
* gmain.c: Likewise.

23 years agoAdd a bunch of unrefs.
Owen Taylor [Thu, 7 Dec 2000 20:29:58 +0000 (20:29 +0000)]
Add a bunch of unrefs.

Thu Dec  7 15:22:30 2000  Owen Taylor  <otaylor@redhat.com>

* tests/mainloop-test.c (recurser_start): Add a bunch
of unrefs.

* gmain.c (g_source_attach): Reference the source
when adding (pointed out by Elliot)

23 years agoadd g_strdupv test
Havoc Pennington [Thu, 7 Dec 2000 04:48:37 +0000 (04:48 +0000)]
add g_strdupv test

2000-12-06  Havoc Pennington  <hp@pobox.com>

* tests/strfunc-test.c (main): add g_strdupv test

* gstrfuncs.c (g_strdupv): Add a function to copy
an array of strings

23 years agoMajor change in API for creating sources to handle multiple main loops
Owen Taylor [Tue, 5 Dec 2000 20:45:33 +0000 (20:45 +0000)]
Major change in API for creating sources to handle multiple main loops

Tue Dec  5 12:23:04 2000  Owen Taylor  <otaylor@redhat.com>

        * gmain.[hc]: Major change in API for creating sources
to handle multiple main loops (GMainContext *).

GSources are now exposed as GSource * and implemented
with structure derivation.

* giochannel.[ch]: Changed vtable for GIOChannel to correspond
to the new mainloop API, add g_io_channel_create_watch().

* gtypes.h: Move GTimeVal here.

* gthread.h: Remove gmain.h include to avoid circularity.

        * giounix.c: Update for new GMain API.

* giowin32.c: Update for new GMain API. (No check for
proper compilation or working.)

* timeloop.c timeloop-basic.c: A benchmarking program for
the main loop comparing the main loop against a
hand-written (timeloop-basic.c) variant.

* tests/mainloop-test.c: New torture test of mainloop.

* docs/Changes-2.0.txt: Started. Added text about
changes to GMain.

* gmain.c (g_main_add_poll_unlocked): Initial fd->revents
to zero. (#8482, Benjamin Kahn)

23 years agoadd images
Owen Taylor [Tue, 5 Dec 2000 20:43:58 +0000 (20:43 +0000)]
add images

Tue Dec  5 15:41:23 2000  Owen Taylor  <otaylor@redhat.com>

        * glib/Makefile.am glib/mainloop-states*: add images

* glib/glib-sections.txt: Updated

* glib/tmpl/main.sgml: More documentation, move function
docs to .c file.

23 years agoInclude make.msc from GLib's build subdir.
Tor Lillqvist [Fri, 1 Dec 2000 15:11:54 +0000 (15:11 +0000)]
Include make.msc from GLib's build subdir.

2000-12-01  Tor Lillqvist  <tml@iki.fi>

* {.,*}/makefile.msc.in: Include make.msc from GLib's build subdir.

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

* glib.def: Update correspondingly.

23 years agoProvide G_CONST_RETURN which is 'const' by default, and nothing when
Havoc Pennington [Fri, 1 Dec 2000 05:42:51 +0000 (05:42 +0000)]
Provide G_CONST_RETURN which is 'const' by default, and nothing when

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

* gmacros.h: Provide G_CONST_RETURN which is 'const' by default,
and nothing when G_DISABLE_CONST_RETURNS is defined.

23 years agoForgot gunibreak.c, mistake in ChangeLog
Havoc Pennington [Wed, 29 Nov 2000 23:49:44 +0000 (23:49 +0000)]
Forgot gunibreak.c, mistake in ChangeLog

23 years agos/UNICODE_LAST_CHAR/G_UNICODE_LAST_CHAR/
Havoc Pennington [Wed, 29 Nov 2000 23:38:24 +0000 (23:38 +0000)]
s/UNICODE_LAST_CHAR/G_UNICODE_LAST_CHAR/

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

* gunidecomp.c (COMBINING_CLASS): s/UNICODE_LAST_CHAR/G_UNICODE_LAST_CHAR/

* gunichartables.h: Update for data in Unicode 3.0.1,
and include tables for line break properties

* gunidecomp.h: Ditto

* gunicode.h (GUnicodeBreakType): Enum for line break properties
(g_unichar_break_type): Get the break property for a char

* gunibreak.h: Autogenerated line break property tables

* gunibreak.c (g_unichar_break_type): added

* Makefile.am (EXTRA_DIST): dist gen-unicode-tables.pl

* Makefile.am (libglib_1_3_la_SOURCES): Add gunibreak.h, gunibreak.c

* gen-unicode-tables.pl: Include the script to update the unicode
char tables

23 years agotouchups.
Elliot Lee [Wed, 29 Nov 2000 16:25:36 +0000 (16:25 +0000)]
touchups.

touchups.

23 years agofix elliots "logic fix" that dereferences NULL nodes if C handlers are
Tim Janik [Wed, 29 Nov 2000 12:34:14 +0000 (12:34 +0000)]
fix elliots "logic fix" that dereferences NULL nodes if C handlers are

Wed Nov 29 13:30:05 2000  Tim Janik  <timj@gtk.org>

        * gsignal.c (handlers_find): fix elliots "logic fix" that dereferences
        NULL nodes if C handlers are searched for specific signals.

23 years agoFix warnings.
Elliot Lee [Tue, 28 Nov 2000 23:44:21 +0000 (23:44 +0000)]
Fix warnings.

* gmarkup.c: Fix warnings.

* guniprop.c, gunidecomp.c: Make warnings go away by using
GPOINTER_TO_INT() instead of (int).

* gcompletion.[ch]: Add g_completion_set_compare(),
to allow (for example) using case-insensitive completion.

* gobject/gsignal.c: Fix warnings about possible use of uninitialized
variables, and fix logic that would leave 'node' unset in cases
that it might be used in.

* gobject/glib-genmarshal.c: Fix warning about printf format.

23 years agoPatches by Hans Breuer:
Tor Lillqvist [Tue, 28 Nov 2000 20:04:08 +0000 (20:04 +0000)]
Patches by Hans Breuer:

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

Patches by Hans Breuer:

* gspawn-win32.c: Move the code for gspawn-win32-helper to its own
file.

* makefile.{mingw,msc}.in: Change accordingly.

* gspawn-win32-helper.c: New file.

* Makefile.am (EXTRA_DIST): Add it.

* gmarkup.c (find_current_text_end): Fix assertion not to check an
uninitialised variable.

* gboxed.c: Include <string.h> for memset ().

23 years agoRevamped errorcheck mutexes and added errorcheck cond_wait() and
Sebastian Wilhelmi [Tue, 28 Nov 2000 12:56:57 +0000 (12:56 +0000)]
Revamped errorcheck mutexes and added errorcheck cond_wait() and

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

* gthread-impl.c: Revamped errorcheck mutexes and added errorcheck
cond_wait() and cond_timed_wait() funtions. This makes he whole
thing work. Now we only show the location of the locking/unlocking
for -DG_ERRORCHECK_MUTEXES and not the name of the mutex.

* gthread.c: Set the thread data before locking the mutex, because
the locking call might use g_thread_self ().

* gthread.h: Do only show the location of the locking/unlocking
for -DG_ERRORCHECK_MUTEXES and not the name of the mutex. Add the
errorcheck capability for g_cond_wait and g_cond_timed_wait as
well.

23 years agoAdd void in empty function arg list
Havoc Pennington [Tue, 28 Nov 2000 01:03:45 +0000 (01:03 +0000)]
Add void in empty function arg list

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

        * gthread.h: Add void in empty function arg list

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