platform/upstream/glib.git
23 years agonew function to check whether a handler is still connected to an instance
Tim Janik [Mon, 14 May 2001 13:55:51 +0000 (13:55 +0000)]
new function to check whether a handler is still connected to an instance

Mon May 14 01:49:01 2001  Tim Janik  <timj@gtk.org>

        * gsignal.[hc] (g_signal_handler_is_connected): new function
        to check whether a handler is still connected to an instance
        (by handler id).

23 years agomake these safe against removal of the current element.
Tim Janik [Fri, 11 May 2001 18:05:16 +0000 (18:05 +0000)]
make these safe against removal of the current element.

Fri May 11 18:25:23 2001  Tim Janik  <timj@gtk.org>

        * gdataset.c:
        (g_dataset_foreach):
        (g_datalist_foreach): make these safe against removal of the
        current element.

23 years agoUpdated Ukrainian transaltion
Yuri Syrota [Fri, 11 May 2001 12:09:21 +0000 (12:09 +0000)]
Updated Ukrainian transaltion

23 years agoUpdated Ukrainian transaltion
Yuri Syrota [Fri, 11 May 2001 12:02:34 +0000 (12:02 +0000)]
Updated Ukrainian transaltion

23 years agochange env variable to G_MESSAGES_PREFIXED, suggested by Tim
Havoc Pennington [Fri, 11 May 2001 03:07:53 +0000 (03:07 +0000)]
change env variable to G_MESSAGES_PREFIXED, suggested by Tim

2001-05-10  Havoc Pennington  <hp@pobox.com>

* gmessages.c (g_log_write_prefix): change env variable to
G_MESSAGES_PREFIXED, suggested by Tim

23 years agouse g_str_hash() algorithm to generate hashes.
Tim Janik [Thu, 10 May 2001 13:58:40 +0000 (13:58 +0000)]
use g_str_hash() algorithm to generate hashes.

Thu May 10 15:19:01 2001  Tim Janik  <timj@gtk.org>

        * gscanner.c (g_scanner_key_hash): use g_str_hash() algorithm
        to generate hashes.

        * gmem.c (standard_calloc): free() doesn't return a value
        (Mark Murnane).

Thu May 10 14:00:48 2001  Tim Janik  <timj@gtk.org>

        * gparamspecs.[hc]: removed g_param_spec_stringc() in lack of
        evidence of public need.

        * gsignal.h: added g_signal_disconnect_by_func(),
        g_signal_block_by_func() and g_signal_unblock_by_func() convenience
        macros as per owen's request.

        * gtype.c (SIZEOF_FUNDAMENTAL_INFO): align sizeof (GTypeFundamentalInfo)
        to size of longs and pointers.

23 years agoGet rid of --enable-msg-prefix
Havoc Pennington [Wed, 9 May 2001 16:36:17 +0000 (16:36 +0000)]
Get rid of --enable-msg-prefix

2001-04-26  Havoc Pennington  <hp@redhat.com>

* configure.in: Get rid of --enable-msg-prefix

* gmessages.c: make whether to prefix the messages with
appname/pid a runtime setting, not a compile-time setting.  Change
default to include prefix for debug/warning/error type messages.

23 years agoOps, forgot this.
Sebastian Wilhelmi [Wed, 9 May 2001 12:54:37 +0000 (12:54 +0000)]
Ops, forgot this.

Ops, forgot this.

23 years agoUpdates after some renaming took place.
Sebastian Wilhelmi [Wed, 9 May 2001 12:53:42 +0000 (12:53 +0000)]
Updates after some renaming took place.

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

* glib/tmpl/thread_pools.sgml, glib/tmpl/thread_pools.sgml:
Updates after some renaming took place.

23 years agoRenamed 'value' and 'arg' to 'data' and 'thread_func' to 'func' to make it
Sebastian Wilhelmi [Wed, 9 May 2001 12:51:21 +0000 (12:51 +0000)]
Renamed 'value' and 'arg' to 'data' and 'thread_func' to 'func' to make it

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

* gthread.c, gthread.h: Renamed 'value' and 'arg' to 'data' and
'thread_func' to 'func' to make it more consistent with the rest
of GLib.

* gthreadpool.c, gthreadpool.h: Moved 'stack_size' from the public
members of GThreadPool to the private ones. Renamed 'thread_func'
to 'func' as above. Moved up 'user_data' in g_thead_pool_new
argument list and in GThreadPool struct.

23 years agoClarification for g_mutex_trylock.
Sebastian Wilhelmi [Tue, 8 May 2001 14:21:40 +0000 (14:21 +0000)]
Clarification for g_mutex_trylock.

2001-05-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* glib/tmpl/threads.sgml: Clarification for g_mutex_trylock.

23 years agoremoved #include <unistd.h> sneaked in by sopwith in november.
Tim Janik [Tue, 8 May 2001 13:50:38 +0000 (13:50 +0000)]
removed #include <unistd.h> sneaked in by sopwith in november.

Tue May  8 15:33:31 2001  Tim Janik  <timj@gtk.org>

        * gcompletion.h: removed #include <unistd.h> sneaked in by
        sopwith in november.

23 years agoUpdated.
Sebastian Wilhelmi [Tue, 8 May 2001 08:25:43 +0000 (08:25 +0000)]
Updated.

2001-05-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* glib/tmpl/threads.sgml, glib/glib-overrides.txt: Updated.

23 years agoMoved func and arg members from GRealThread to GThread, such that they can
Sebastian Wilhelmi [Tue, 8 May 2001 08:23:18 +0000 (08:23 +0000)]
Moved func and arg members from GRealThread to GThread, such that they can

2001-05-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* gmain.c, gthread.c, gthread.h: Moved func and arg members from
GRealThread to GThread, such that they can be accessed by the
user.

* gthread.c, gthread.h: Due to popular demand (Tim being the
populus here ;-) threads now have a 'return value', which is
returned by g_thread_join and is either the return of the topmost
thread function or the value given to g_thread_exit.

* gthreadpool.c, tests/mainloop-test.c, tests/thread-test.c:
Adapted to the above change.

23 years agodon't g_assert() the user specified time, but g_return_val_if_fail() here.
Tim Janik [Tue, 8 May 2001 05:25:35 +0000 (05:25 +0000)]
don't g_assert() the user specified time, but g_return_val_if_fail() here.

Fri May  4 04:14:45 2001  Tim Janik  <timj@gtk.org>

        * gthread-posix.c (g_cond_timed_wait_posix_impl): don't g_assert()
        the user specified time, but g_return_val_if_fail() here.

23 years agodon't try to export g_strcpy, it is g_stpcpy; updated and added some
Hans Breuer [Sun, 6 May 2001 13:57:21 +0000 (13:57 +0000)]
don't try to export g_strcpy, it is g_stpcpy; updated and added some

2001-01-06  Hans Breuer  <hans@breuer.org>

* glib.def : don't try to export g_strcpy, it is g_stpcpy;
updated and added some tweaking for functions which got
renamed recently, to avoid the update hassle if it can
simply be done compatible. Should vanish if there is a
stable version for win32.

23 years agoglib-mkenums is not a compiled program, so shouldn't be in the
James Henstridge [Sat, 5 May 2001 08:38:35 +0000 (08:38 +0000)]
glib-mkenums is not a compiled program, so shouldn't be in the

2001-05-05  James Henstridge  <james@daa.com.au>

        * Makefile.am: glib-mkenums is not a compiled program, so shouldn't
        be in the bin_PROGRAMS primary.  Put it in bin_SCRIPTS instead, and
        removed the glib_mkenums_SOURCES var.

23 years agoReleased 1.3.5 GLIB_1_3_5
Owen Taylor [Fri, 4 May 2001 22:34:43 +0000 (22:34 +0000)]
Released 1.3.5

Fri May  4 11:49:18 2001  Owen Taylor  <otaylor@redhat.com>

* Released 1.3.5

* NEWS: Updated

* configure.in (GLIB_MICRO_VERSION): Up version to 1.3.5,
interface/binary age 0.

23 years agofixed a typo in a comment.
Sven Neumann [Fri, 4 May 2001 17:01:56 +0000 (17:01 +0000)]
fixed a typo in a comment.

2001-05-04  Sven Neumann  <sven@convergence.de>

        * ghash.c: fixed a typo in a comment.

        * gtree.[ch]: added new functions g_tree_new_full(), g_tree_replace(),
        g_tree_steal() and g_tree_foreach() to adapt GTree to the GHashTable
        API. Moved comments into the C file.

        * docs/reference/glib/glib-sections.txt
        * docs/reference/glib/tmpl/glib-unused.sgml
        * docs/reference/glib/tmpl/hash_tables.sgml
        * docs/reference/glib/tmpl/linked_lists_double.sgml
        * docs/reference/glib/tmpl/linked_lists_single.sgml
        * docs/reference/glib/tmpl/macros_misc.sgml
        * docs/reference/glib/tmpl/trees-binary.sgml: updated documentation

23 years agoMake foreach() safe against removal of the _current_ element. While this
Owen Taylor [Thu, 3 May 2001 10:47:32 +0000 (10:47 +0000)]
Make foreach() safe against removal of the _current_ element. While this

Thu May  3 06:38:28 2001  Owen Taylor  <otaylor@redhat.com>

* g[s]list.c (g_[s]list_foreach) docs/Changes-2.0.txt: Make
foreach() safe against removal of the _current_ element. While
this could break some code, the new behavior is consistent with
the rest of GLib/GTK+ and probably is what people expect in most
cases. (Suggested by Paul Kuykendall, #50071)

23 years agoMake types of ternary operator correspond. (Fixes compilation errors with
Owen Taylor [Thu, 3 May 2001 10:12:46 +0000 (10:12 +0000)]
Make types of ternary operator correspond. (Fixes compilation errors with

Thu May  3 06:10:23 2001  Owen Taylor  <otaylor@redhat.com>

* gobject.c (g_object_set_[q]data_full): Make types of ternary
        operator correspond. (Fixes compilation errors with Sun CC,
#52230)

23 years agoFix read past end of the string. (#50404, fix from Jonas Borgström)
Owen Taylor [Wed, 2 May 2001 15:19:55 +0000 (15:19 +0000)]
Fix read past end of the string. (#50404, fix from Jonas Borgström)

Wed May  2 11:10:22 2001  Owen Taylor  <otaylor@redhat.com>

* gutf8.c (g_utf8_to_ucs4_fast): Fix read past end of the string.
(#50404, fix from Jonas Borgström)

23 years agoAdded Catalan file
Pablo Saratxaga [Mon, 30 Apr 2001 20:40:51 +0000 (20:40 +0000)]
Added Catalan file

23 years agoremoved \v escaping, newer perl versions don't support this, and it'S
Tim Janik [Mon, 30 Apr 2001 17:59:47 +0000 (17:59 +0000)]
removed \v escaping, newer perl versions don't support this, and it'S

Mon Apr 30 20:03:56 2001  Tim Janik  <timj@gtk.org>

        * glib-mkenums (usage): removed \v escaping, newer perl versions don't
        support this, and it'S probably useless anyways.

23 years agomade hook ids a gulong.
Tim Janik [Sun, 29 Apr 2001 03:04:27 +0000 (03:04 +0000)]
made hook ids a gulong.

Sun Apr 29 00:37:34 2001  Tim Janik  <timj@gtk.org>

        * ghook.[hc]: made hook ids a gulong.

Sat Apr 28 23:39:42 2001  Tim Janik  <timj@gtk.org>

        * gsignal.[hc]: made signal handler and emission hook ids gulongs.
        (signal_handlers_foreach_matched_R): only invoke callback for handlers
        that are not disconnected (id>0).
        (signal_emit_R): prevent invocation of signal handlers during the
        emission they were connected within.

        * glib-mkenums: publically installed perl-script to parse C code
        enums and generate descriptions thereof.
        * glib-mkenums.1: assorted man page.

23 years agoAdd a check for the Darwin dynamic linker. Use AC_TRY_LINK when checking
Dan Winship [Fri, 20 Apr 2001 17:08:57 +0000 (17:08 +0000)]
Add a check for the Darwin dynamic linker. Use AC_TRY_LINK when checking

        * configure.in: Add a check for the Darwin dynamic linker. Use
        AC_TRY_LINK when checking for "nonposix getpwuid_r" so it notices
        "no getpwuid_r" correctly.

        * testglib.c (main): Make template[] bigger to prevent an overrun.
        Remove an unused variable. Initialize error to NULL.

        * tests/gio-test.c (main): Add a cast to prevent a warning when
        size_t is a long.

        * tests/type-test.c (main): Add an #ifdef to prevent a warning
        when G_HAVE_GINT64 is defined and G_GINT64_FORMAT isn't.

23 years agogmodule implementation for Darwin/Mac OS X
Dan Winship [Fri, 20 Apr 2001 17:05:38 +0000 (17:05 +0000)]
gmodule implementation for Darwin/Mac OS X

        * gmodule-dyld.c: gmodule implementation for Darwin/Mac OS X

        * gmodule.c:
        * gmoduleconf.h.in: Add gmodule-dyld support

        * testgmodule.c (main): Fix spelling

23 years agoWe were returning junk memory here, because we didn't copy the value
Havoc Pennington [Thu, 19 Apr 2001 21:48:21 +0000 (21:48 +0000)]
We were returning junk memory here, because we didn't copy the value

2001-04-19  Havoc Pennington  <hp@redhat.com>

* gobject.c (g_object_get_valist): We were returning junk memory
here, because we didn't copy the value (G_VALUE_NOCOPY_CONTENTS
passed to G_VALUE_LCOPY) and then we freed the GValue immediately
after. Removed G_VALUE_NOCOPY_CONTENTS from here; need a
G_VALUE_STEAL_CONTENTS or the like if we want this optimization.

23 years agoChanges due to deprecation update.
Sebastian Wilhelmi [Thu, 19 Apr 2001 14:50:44 +0000 (14:50 +0000)]
Changes due to deprecation update.

2001-04-19  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* glib/tmpl/hash_tables.sgml, glib/tmpl/misc_utils.sgml,
glib/tmpl/scanner.sgml: Changes due to deprecation update.

23 years agoRemove definition of g_hash_table_freeze and g_hash_table_thaw. Instead
Sebastian Wilhelmi [Thu, 19 Apr 2001 13:33:31 +0000 (13:33 +0000)]
Remove definition of g_hash_table_freeze and g_hash_table_thaw. Instead

2001-04-19  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* ghash.c, ghash.h: Remove definition of g_hash_table_freeze and
g_hash_table_thaw. Instead added G_DISABLE_DEPRECATED-guarded
macros to ghash.h to go along the lines of the standard.

* gscanner.c, gscanner.h: Dito for g_scanner_freeze_symbol_table
and g_scanner_thaw_symbol_table.

* gutils.c, gutils.h: Dito for g_dirname. g_basename is still
defined in gutils.c, but declared ing gutils.h only
G_DISABLE_DEPRECATED-guarded.

23 years agoRemoved bashism in test for the pkg-config version.
Sebastian Wilhelmi [Thu, 19 Apr 2001 08:26:21 +0000 (08:26 +0000)]
Removed bashism in test for the pkg-config version.

2001-04-19  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* configure.in: Removed bashism in test for the pkg-config
version.

* configure.in: Rewrote test for multithread flag. Now uses
localtime_r, which hopefully has a consistent prototype across
different platforms. Also it uses a clever double EGREP trick
instead of compiling, which could give false positives. Thanks to
Dan Winship <danw@ximian.com> for the hint.

23 years agoAdd missing static pointed out by Michael Meeks.
Owen Taylor [Wed, 18 Apr 2001 21:37:25 +0000 (21:37 +0000)]
Add missing static pointed out by Michael Meeks.

Wed Apr 18 17:35:38 2001  Owen Taylor  <otaylor@redhat.com>

* gutils.c (_glib_gettext): Add missing static pointed
out by Michael Meeks.

23 years agoChange C++ comments for FIXME's to C comments. (Patch from Andres Salomon)
Owen Taylor [Wed, 18 Apr 2001 13:47:59 +0000 (13:47 +0000)]
Change C++ comments for FIXME's to C comments. (Patch from Andres Salomon)

Wed Apr 18 09:46:56 2001  Owen Taylor  <otaylor@redhat.com>

* gobject.c gsignal.c: Change C++ comments for FIXME's to
        C comments. (Patch from Andres Salomon)

23 years agoRemoved. Keeping README, README.cvs-commits HACKING, and AUTHORS up to
Owen Taylor [Wed, 18 Apr 2001 13:41:45 +0000 (13:41 +0000)]
Removed. Keeping README, README.cvs-commits HACKING, and AUTHORS up to

Wed Apr 18 09:37:07 2001  Owen Taylor  <otaylor@redhat.com>

* MAINTAINERS: Removed. Keeping README, README.cvs-commits
HACKING, and AUTHORS up to date is plenty without extra
random files that someone thought a module should have.
(Actually, I believe this was used for debbugs in the past.)

23 years agoReleased 1.3.4 GLIB_1_3_4
Owen Taylor [Tue, 17 Apr 2001 22:39:00 +0000 (22:39 +0000)]
Released 1.3.4

Tue Apr 17 11:47:07 2001  Owen Taylor  <otaylor@redhat.com>

* Released 1.3.4

* NEWS: Updated

23 years agoDefine _GNU_SOURCE for stpcpy
Owen Taylor [Tue, 17 Apr 2001 14:48:11 +0000 (14:48 +0000)]
Define _GNU_SOURCE for stpcpy

Tue Apr 17 10:43:36 2001  Owen Taylor  <otaylor@redhat.com>

* gstrfuncs.c: Define _GNU_SOURCE for stpcpy

* tests/mainloop-test.c (main): Wait for all threads
to start before beginning tests.

23 years agoUntil now every thread pool always had at least one tread waiting to avoid
Sebastian Wilhelmi [Tue, 17 Apr 2001 11:48:45 +0000 (11:48 +0000)]
Until now every thread pool always had at least one tread waiting to avoid

2001-04-17  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* gthreadpool.c (g_thread_pool_thread_proxy): Until now every
thread pool always had at least one tread waiting to avoid
switching overhead in case a new task would be added soon after
one finished. This however means a big waste of threads, if many
mostly inactive thread pools are involved. Now such a waiting
thread will only wait for half a second (This value is of course
very randomly picked) and go to the global threadpool afterwards.

MCVS: ----------------------------------------------------------------------

23 years agoRemove warnings about conflicts with the stable version. GLIB_1_3_3
Owen Taylor [Tue, 17 Apr 2001 00:55:34 +0000 (00:55 +0000)]
Remove warnings about conflicts with the stable version.

Mon Apr 16 12:04:52 2001  Owen Taylor  <otaylor@redhat.com>

        * configure.in: Remove warnings about conflicts with the
        stable version.

 * glib-2.0.m4: Fix some of the error text to be halfway
        up to date.

        * README.in INSTALL.in: Add these to generate README, INSTAL
        (as in the stable branch). Update.

  * HACKING: Update.

23 years agodocs
Havoc Pennington [Mon, 16 Apr 2001 20:05:25 +0000 (20:05 +0000)]
docs

2001-04-16  Havoc Pennington  <hp@redhat.com>

        * gqsort.c: docs

        * gfileutils.c: docs

        * gwin32.c: docs fixes

        * gconvert.c: docs

        * guniprop.c: docs

        * gutf8.c: docs

23 years ago.cvsignore fixes
Owen Taylor [Mon, 16 Apr 2001 16:35:11 +0000 (16:35 +0000)]
.cvsignore fixes

23 years agoMore tweaks from GTK+. Reenable $(HTML_IMAGES) with shell portability
Owen Taylor [Mon, 16 Apr 2001 16:34:15 +0000 (16:34 +0000)]
More tweaks from GTK+. Reenable $(HTML_IMAGES) with shell portability

Mon Apr 16 12:18:26 2001  Owen Taylor  <otaylor@redhat.com>

        * {glib,gobject}/Makefile.am (tmpl-build.stamp): More tweaks
        from GTK+. Reenable $(HTML_IMAGES) with shell portability fixes.

23 years agoput AC_PATH_PROG(pkg-config) before "Checking for glib" so the output
Havoc Pennington [Mon, 16 Apr 2001 15:21:19 +0000 (15:21 +0000)]
put AC_PATH_PROG(pkg-config) before "Checking for glib" so the output

2001-04-16  Havoc Pennington  <hp@redhat.com>

* glib-2.0.m4: put AC_PATH_PROG(pkg-config) before "Checking for
glib" so the output looks right

23 years agomake GDebugKeys argument const
Havoc Pennington [Mon, 16 Apr 2001 15:04:17 +0000 (15:04 +0000)]
make GDebugKeys argument const

2001-03-23  Havoc Pennington  <hp@redhat.com>

* gutils.c (g_parse_debug_string): make GDebugKeys argument
const

23 years agoupdated
Hans Breuer [Fri, 13 Apr 2001 23:41:53 +0000 (23:41 +0000)]
updated

2001-04-14  Hans Breuer  <hans@breuer.org>

* glib.def :
* makefile.msc.in : updated

* gpattern.c : include "gutils.h" to resolve the inline hassle

23 years agoupdated
Hans Breuer [Fri, 13 Apr 2001 23:40:39 +0000 (23:40 +0000)]
updated

2001-04-14  Hans Breuer  <hans@breuer.org>

* gobject.def : updated

23 years agoPass pkg-config options before the other args so it works even if
Alexander Larsson [Wed, 11 Apr 2001 14:58:29 +0000 (14:58 +0000)]
Pass pkg-config options before the other args so it works even if

2001-04-11  Alexander Larsson  <alexl@redhat.com>

* glib-2.0.m4: Pass pkg-config options
before the other args so it works even if
POSIXLY_CORRECT is set.

23 years agoincrement version to 1.3.4 (binary 0, interface 0).
Tim Janik [Mon, 9 Apr 2001 17:03:55 +0000 (17:03 +0000)]
increment version to 1.3.4 (binary 0, interface 0).

Mon Apr  9 18:57:44 2001  Tim Janik  <timj@gtk.org>

        * configure.in: increment version to 1.3.4 (binary 0, interface 0).

Mon Apr  9 18:56:15 2001  Tim Janik  <timj@gtk.org>

        * gclosure.c (g_closure_invoke): only require marshal/meta_marshal if
        we're valid (about to actually do marshalling).

23 years agoAnd other fixes. Thanks to Göran Uddeborg <goeran@uddeborg.pp.se>.
Christian Rose [Thu, 5 Apr 2001 21:38:19 +0000 (21:38 +0000)]
And other fixes. Thanks to Göran Uddeborg <goeran@uddeborg.pp.se>.

23 years agoFixed another message in the Swedish translation. Thanks to Jörgen Tegnér
Christian Rose [Thu, 5 Apr 2001 20:27:46 +0000 (20:27 +0000)]
Fixed another message in the Swedish translation. Thanks to Jörgen Tegnér
<teg@post.utfors.se>.

23 years agoFixed Swedish translation, thanks to Veronica Loell <info@nakawe.se> and
Christian Rose [Thu, 5 Apr 2001 11:05:24 +0000 (11:05 +0000)]
Fixed Swedish translation, thanks to Veronica Loell <info@nakawe.se> and
Martin Norbäck <d95mback@dtek.chalmers.se>.

23 years agoAdded Swedish translation.
Christian Rose [Thu, 5 Apr 2001 00:51:52 +0000 (00:51 +0000)]
Added Swedish translation.

23 years agoReleased GLib-1.3.3.
Tim Janik [Wed, 4 Apr 2001 07:19:45 +0000 (07:19 +0000)]
Released GLib-1.3.3.

Wed Apr  4 09:18:55 2001  Tim Janik  <timj@gtk.org>

        * Released GLib-1.3.3.

23 years agodisabled "for i in $(HTML_IMAGES) ;" dist-hook because $(HTML_IMAGES) is
Tim Janik [Wed, 4 Apr 2001 02:31:40 +0000 (02:31 +0000)]
disabled "for i in $(HTML_IMAGES) ;" dist-hook because $(HTML_IMAGES) is

Wed Apr  4 00:56:00 2001  Tim Janik  <timj@gtk.org>

        * gobject/Makefile.am: disabled "for i in $(HTML_IMAGES) ;"
        dist-hook because $(HTML_IMAGES) is empty.

23 years agoupdates.
Tim Janik [Tue, 3 Apr 2001 19:22:44 +0000 (19:22 +0000)]
updates.

Tue Apr  3 20:22:59 2001  Tim Janik  <timj@gtk.org>

        * NEWS: updates.

        * NEWS.pre-1-3: take over old news.

Tue Apr  3 20:23:24 2001  Tim Janik  <timj@gtk.org>

        * NEWS: updates.

23 years agoExit with an error message that you should use pkg-config instead.
Owen Taylor [Tue, 3 Apr 2001 18:27:59 +0000 (18:27 +0000)]
Exit with an error message that you should use pkg-config instead.

Tue Apr  3 12:38:16 2001  Owen Taylor  <otaylor@redhat.com>

* glib-config-2.0.in: Exit with an error message that you
should use pkg-config instead.

* configure.in (PACKAGE): Require pkg-config.

* tests/Makefile.am (EXTRA_DIST): Add utf8.txt.

* configure.in (GLIB_MICRO_VERSION): Up MICRO to 3,
leave interface/binary at 0.

23 years agoadd missed (empty) file
Owen Taylor [Tue, 3 Apr 2001 18:27:29 +0000 (18:27 +0000)]
add missed (empty) file

23 years agoAdd explicit path to tmpl files in dependencies.
Owen Taylor [Tue, 3 Apr 2001 18:27:08 +0000 (18:27 +0000)]
Add explicit path to tmpl files in dependencies.

Tue Apr  3 11:51:02 2001  Owen Taylor  <otaylor@redhat.com>

* {glib,gobject}/Makefile.am (sgml-build.stamp): Add
explicit path to tmpl files in dependencies.

* glib/glib.types gobject/gobject.types: empty files
to keep generic makefiles happy.

23 years agoadded g_list_nth_prev() which walks ->prev instead of ->next.
Tim Janik [Tue, 3 Apr 2001 13:15:41 +0000 (13:15 +0000)]
added g_list_nth_prev() which walks ->prev instead of ->next.

Tue Apr  3 13:46:22 2001  Tim Janik  <timj@gtk.org>

        * glist.[hc]: added g_list_nth_prev() which walks ->prev instead
        of ->next.

        * gpattern.[hc]: added shell-style pattern matching code from beast,
        derived from the gtk_pattern_*() code, but with a couple of bug fixes
        and a number of optimizations.

Tue Apr  3 14:06:00 2001  Tim Janik  <timj@gtk.org>

        * gparam.[hc]: added g_param_spec_pool_list() to list pspecs per
        owner_type. the pspecs are not referenced, so the caller is
        supposed to have some idea about owner_type not randomly
        nuking his pspec's. if this is going to provide problems in
        the future, we can either auto-ref the pspecs, or add a
        _foreach variant, though the latter would have to invoke
        the callback while pspec's mutex is acquired, so i just
        went for the _list variant for now.

        * gclosure.h (G_CALLBACK): made GCallback a void (*) (void) fucntion.

23 years agoAdded special case for priorities on FreeBSD. Thanks to David Reid
Sebastian Wilhelmi [Tue, 3 Apr 2001 12:49:44 +0000 (12:49 +0000)]
Added special case for priorities on FreeBSD. Thanks to David Reid

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

* gthread-posix.c: Added special case for priorities on
  FreeBSD. Thanks to David Reid <dreid@jetnet.co.uk> for the info.

* gthread-impl.c: Made two macros safe with ().

23 years agoOps, ChangeLog was incomplete.
Sebastian Wilhelmi [Tue, 3 Apr 2001 12:45:23 +0000 (12:45 +0000)]
Ops, ChangeLog was incomplete.

Ops, ChangeLog was incomplete.

23 years agoAdded documentation.
Sebastian Wilhelmi [Tue, 3 Apr 2001 12:42:54 +0000 (12:42 +0000)]
Added documentation.

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

* gthreadpool.c: Added documentation.

* gthreadpool.c: The global thread pool now also is seperated for
bound and unbound threads. Only threads with standard stack size
go to the global pool. g_thread_pool_new now protects the global
setup of inform_mutex etc. with a lock. Fixed some typos. Unlock
the queue after g_thread_pool_wakeup_and_stop_all in the proxy.

23 years agoAdded GThreadPool documentation.
Sebastian Wilhelmi [Tue, 3 Apr 2001 11:10:05 +0000 (11:10 +0000)]
Added GThreadPool documentation.

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

* glib/tmpl/thread_pools.sgml: Added GThreadPool documentation.

23 years agoUpdated.
Sebastian Wilhelmi [Tue, 3 Apr 2001 11:08:48 +0000 (11:08 +0000)]
Updated.

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

* glib/tmpl/threads.sgml: Updated.

23 years agoRemoved g_static_private_(get|set)_for_thread.
Sebastian Wilhelmi [Tue, 3 Apr 2001 11:05:36 +0000 (11:05 +0000)]
Removed g_static_private_(get|set)_for_thread.

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

* glib/glib-sections.txt: Removed
g_static_private_(get|set)_for_thread.

23 years agoUse the new GRealThread member "context" instead of a GStaticPrivate to
Sebastian Wilhelmi [Mon, 2 Apr 2001 16:34:08 +0000 (16:34 +0000)]
Use the new GRealThread member "context" instead of a GStaticPrivate to

2001-04-02  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* gmain.c: Use the new GRealThread member "context" instead of a
GStaticPrivate to store the thread specific main loop context.

* gthread.c: Added "context" member to GRealThread and updated
g_thread_create, g_thread_self and g_thread_cleanup accordingly.

* gthread.c, gthread.h: Removed the functions
g_static_private_(get|set)_for_thread and adapted
g_static_private_(get|set) and g_static_private_free accordingly.

23 years agoapplied patch from owen to implement GParamSpecUnichar.
Tim Janik [Sun, 1 Apr 2001 04:04:46 +0000 (04:04 +0000)]
applied patch from owen to implement GParamSpecUnichar.

Sat Mar 31 23:55:58 2001  Tim Janik  <timj@gtk.org>

        * gtype.h:
        * gparamspecs.[hc]: applied patch from owen to implement
        GParamSpecUnichar.

Fri Mar 30 07:34:02 2001  Tim Janik  <timj@gtk.org>

        * gtype.c (type_iface_retrive_holder_info_Wm):
        * gtypeplugin.c (g_type_plugin_complete_interface_info):
        * gtypemodule.c (g_type_module_complete_interface_info):
        change order of instance_type and interface_type so they match
        the g_type_add_interface_*() API.

        * gsignal.c (g_signal_emit_valist): always assign C return value
        location, people depending on unaltered return values after emissions
        that had no handlers to run need to use g_signal_emitv().

        * gtype.[hc] (g_type_query): new function to allow querying of
        class and object size (semantics like g_signal_query()).
        currently the implementation is better held conservative so as to
        only support types that are classed and static.

23 years agoghash.[ch] added new functions g_hash_table_new_full,
Sven Neumann [Fri, 30 Mar 2001 18:14:41 +0000 (18:14 +0000)]
ghash.[ch] added new functions g_hash_table_new_full,

2001-03-30  Sven Neumann  <sven@gimp.org>

        * ghash.[ch]
        * docs/reference/glib/tmpl/hash_tables.sgml: added new functions
        g_hash_table_new_full, g_hash_table_replace, g_hash_table_steal and
        g_hash_table_foreach_steal. Moved most docs out of the template
        file into the C file. Please proofread the new documentation.

23 years agoUpdated German translation.
Christian Meyer [Fri, 30 Mar 2001 07:31:57 +0000 (07:31 +0000)]
Updated German translation.

23 years agoAdd module-test rules.
Tor Lillqvist [Thu, 29 Mar 2001 20:05:58 +0000 (20:05 +0000)]
Add module-test rules.

2001-03-29  Tor Lillqvist  <tml@iki.fi>

* tests/makefile.msc.in: Add module-test rules.

23 years agoUpdates. Add module-test rules.
Tor Lillqvist [Thu, 29 Mar 2001 19:52:45 +0000 (19:52 +0000)]
Updates. Add module-test rules.

2001-03-29  Tor Lillqvist  <tml@iki.fi>

* glib.def: Updates.
* tests/makefile.mingw.in: Add module-test rules.

2001-03-29  Tor Lillqvist  <tml@iki.fi>

* gobject.def: Updates.

23 years agoonly queue readable properties for notification changes.
Tim Janik [Wed, 28 Mar 2001 15:26:19 +0000 (15:26 +0000)]
only queue readable properties for notification changes.

Wed Mar 28 17:04:06 2001  Tim Janik  <timj@gtk.org>

        * gobject.c (object_queue_property): only queue readable properties
        for notification changes.

23 years ago-DG_DISABLE_DEPRECATED
Owen Taylor [Mon, 26 Mar 2001 19:23:17 +0000 (19:23 +0000)]
-DG_DISABLE_DEPRECATED

Mon Mar 26 14:14:53 2001  Owen Taylor  <otaylor@redhat.com>

* Makefile.am (INCLUDES): -DG_DISABLE_DEPRECATED

* gmain.h timeloop.c: Surround the cruftiest stuff with
#ifndef G_DISABLE_DEPRECATED.

* gcompat.h gdate.h: Move compat defines back to
gdate.h, surround with #ifndef G_DISABLE_DEPRECATED.
Remove gcompat.h.

23 years agoAdd --deprecated-guards
Owen Taylor [Mon, 26 Mar 2001 19:22:18 +0000 (19:22 +0000)]
Add --deprecated-guards

Mon Mar 26 14:20:36 2001  Owen Taylor  <otaylor@redhat.com>

        * glib/Makefile.am (SCAN_OPTIONS): Add --deprecated-guards

23 years ago*** empty log message ***
Owen Taylor [Mon, 26 Mar 2001 18:35:34 +0000 (18:35 +0000)]
*** empty log message ***

23 years agoUpdated Slovenian translation
Andraz Tori [Sun, 25 Mar 2001 13:04:11 +0000 (13:04 +0000)]
Updated Slovenian translation

23 years agocatch G_SIGNAL_RUN_FIRST with a return value.
Tim Janik [Thu, 22 Mar 2001 13:42:42 +0000 (13:42 +0000)]
catch G_SIGNAL_RUN_FIRST with a return value.

Thu Mar 22 13:36:50 2001  Tim Janik  <timj@gtk.org>

        * gsignal.c (g_signal_newv): catch G_SIGNAL_RUN_FIRST with a return value.

23 years agoThis takes a `const GValue *' argument.
Martin Baulig [Wed, 21 Mar 2001 11:16:38 +0000 (11:16 +0000)]
This takes a `const GValue *' argument.

2001-03-21  Martin Baulig  <baulig@suse.de>

* gboxed.[ch] (g_value_dup_boxed): This takes a `const GValue *'
argument.

23 years agorewrite, based on bug #52328 from Anders
Havoc Pennington [Tue, 20 Mar 2001 21:30:40 +0000 (21:30 +0000)]
rewrite, based on bug #52328 from Anders

2001-03-20  Havoc Pennington  <hp@redhat.com>

* gutf8.c (g_utf8_strlen): rewrite, based on bug #52328 from
Anders

23 years agoadded this function
Havoc Pennington [Tue, 20 Mar 2001 00:55:44 +0000 (00:55 +0000)]
added this function

2001-03-19  Havoc Pennington  <hp@redhat.com>

* gutf8.c (g_unichar_validate): added this function

23 years agoDon't need this after all.
Tor Lillqvist [Sun, 18 Mar 2001 19:55:57 +0000 (19:55 +0000)]
Don't need this after all.

23 years agoAdding but will remove immediatly; no way to cancel a cvs add?
Tor Lillqvist [Sun, 18 Mar 2001 19:55:11 +0000 (19:55 +0000)]
Adding but will remove immediatly; no way to cancel a cvs add?

23 years agoAdd braces to silence gcc -Wall.
Tor Lillqvist [Sun, 18 Mar 2001 19:54:01 +0000 (19:54 +0000)]
Add braces to silence gcc -Wall.

2001-03-18  Tor Lillqvist  <tml@iki.fi>

* gspawn-win32.c (SETUP_DEBUG): Add braces to silence gcc -Wall.

* gspawn-win32-helper.c (write_no_error): Remove unused function.

* tests/makefile.mingw.in (module-test.exe): Add rules for
building module-test.

2001-03-18  Tor Lillqvist  <tml@iki.fi>

* gobject.def: Correct some renamed functions.

23 years agoremoved archaic gpointer derived_data; relict and added a GData member
Tim Janik [Sun, 18 Mar 2001 04:44:38 +0000 (04:44 +0000)]
removed archaic gpointer derived_data; relict and added a GData member

Wed Mar 14 18:46:54 2001  Tim Janik  <timj@gtk.org>

        * gscanner.[hc]: removed archaic gpointer derived_data; relict and
        added a GData member instead.

        * glist.[hc]: added g_list_remove_all().

        * gslist.[hc]: added g_slist_remove_all().

Sat Mar 17 23:18:36 2001  Tim Janik  <timj@gtk.org>

        * gobject.c (g_object_get_property): minor bug-fix.

        * gbsearcharray.[hc]: provide a macro for static initialization and
        functions g_bsearch_array_new() and g_bsearch_array_destroy() for
        dynamic allocations.

        * gboxed.c: introduce G_TYPE_GSTRING, boxed type for GString.

        * gclosure.[hc]: naming corrections.

Fri Mar  9 16:42:08 2001  Tim Janik  <timj@gtk.org>

        * gvaluetypes.[hc]: moved g_strdup_value_contents() into this file as
        a public function (was static in gobject.c before). it's a bit odd
        to have that function here, especially since it requires extra includes,
        but then it doesn't very well fit somewhere else either.

        * gparamspecs.c: added default/max/min checks to param spec creation
        functions.

23 years agoReorder headers to make FreeBSD happy.
Owen Taylor [Sun, 18 Mar 2001 00:55:10 +0000 (00:55 +0000)]
Reorder headers to make FreeBSD happy.

Sat Mar 17 19:54:51 2001  Owen Taylor  <otaylor@redhat.com>

        * timeloop.c: Reorder headers to make FreeBSD happy.

23 years agoA couple of small fixes.
Owen Taylor [Sat, 17 Mar 2001 22:51:41 +0000 (22:51 +0000)]
A couple of small fixes.

Sat Mar 17 17:51:17 2001  Owen Taylor  <otaylor@redhat.com>

* gobject/Makefile.am glib/Makefile.am: A couple
        of small fixes.

23 years agoadded 'ru' to ALL_LINGUAS
Pablo Saratxaga [Fri, 16 Mar 2001 07:28:45 +0000 (07:28 +0000)]
added 'ru' to ALL_LINGUAS

23 years agoFrom Edward M. Lee <tailbert@yahoo.com>:
Tor Lillqvist [Wed, 14 Mar 2001 20:18:03 +0000 (20:18 +0000)]
From Edward M. Lee <tailbert@yahoo.com>:

2001-03-13  Tor Lillqvist  <tml@iki.fi>

From Edward M. Lee  <tailbert@yahoo.com>:

* gdate.c (g_date_set_parse): add support for dates that in the
form "Wed Mar 14 2001". Running testgdate on cygwin requires this.

2001-03-13  Tor Lillqvist  <tml@iki.fi>

From Edward M. Lee  <tailbert@yahoo.com>:

* gmodule-win32.c (_g_module_build_path): use (cygwin friendly) dir
separator.

23 years agomade config arg to g_scanner_new() const.
Tim Janik [Wed, 14 Mar 2001 15:33:45 +0000 (15:33 +0000)]
made config arg to g_scanner_new() const.

Fri Mar  9 18:01:43 2001  Tim Janik  <timj@gtk.org>

        * gscanner.[hc]: made config arg to g_scanner_new() const.

Fri Mar  9 16:42:08 2001  Tim Janik  <timj@gtk.org>

        * gvaluetypes.[hc]: moved g_strdup_value_contents() into this file as
        a public function (was static in gobject.c before). it's a bit odd
        to have that function here, especially since it requires extra includes,
        but then it doesn't very well fit somewhere else either.

        * gparamspecs.c: added default/max/min checks to param spec creation
        functions.

23 years agoLink with the libgmodule la only on Win32.
Tor Lillqvist [Mon, 12 Mar 2001 06:09:05 +0000 (06:09 +0000)]
Link with the libgmodule la only on Win32.

2001-03-12  Tor Lillqvist  <tml@iki.fi>

* tests/Makefile.am (libmoduletestplugin_b_la_LIBADD,
libmoduletestplugin_b_la_LIBADD): Link with the libgmodule la only
on Win32.

2001-03-12  Tor Lillqvist  <tml@iki.fi>

* Makefile.am (libgplugin_a_la_LIBADD, libgplugin_b_la_LIBADD):
Link with the libgmodule la only on Win32.

23 years agoUpdated Slovenian translation
Andraz Tori [Sun, 11 Mar 2001 22:10:11 +0000 (22:10 +0000)]
Updated Slovenian translation

23 years agoshut up CVS
Sven Neumann [Sun, 11 Mar 2001 13:34:14 +0000 (13:34 +0000)]
shut up CVS

23 years agoDefine G_PLATFORM_WIN32 here, too.
Tor Lillqvist [Sat, 10 Mar 2001 21:37:28 +0000 (21:37 +0000)]
Define G_PLATFORM_WIN32 here, too.

2001-03-10  Tor Lillqvist  <tml@iki.fi>

* glibconfig.h.win32.in: Define G_PLATFORM_WIN32 here, too.

23 years agoUse the _LIBADD dependencies on libglib only on Win32.
Tor Lillqvist [Sat, 10 Mar 2001 20:03:53 +0000 (20:03 +0000)]
Use the _LIBADD dependencies on libglib only on Win32.

2001-03-10  Tor Lillqvist  <tml@iki.fi>

* */Makefile.am: Use the _LIBADD dependencies on libglib only on
Win32.

* gobject/gobject.def: Add a couple of missing entries.

23 years agoUpdate with some information about using configure and libtool.
Tor Lillqvist [Fri, 9 Mar 2001 21:55:06 +0000 (21:55 +0000)]
Update with some information about using configure and libtool.

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

* README.win32: Update with some information about using configure
and libtool.

23 years agoLink with libglib, libgthread and libgmodule as appropriate. Use
Tor Lillqvist [Fri, 9 Mar 2001 21:43:36 +0000 (21:43 +0000)]
Link with libglib, libgthread and libgmodule as appropriate. Use

2001-02-21  Tor Lillqvist  <tml@iki.fi>

* tests/Makefile.am: Link with libglib, libgthread
and libgmodule as appropriate. Use -no-undefined.

23 years agoUse libglib-1.3.la from top_builddir. Invoke libtool with -no-undefined
Tor Lillqvist [Fri, 9 Mar 2001 21:41:37 +0000 (21:41 +0000)]
Use libglib-1.3.la from top_builddir. Invoke libtool with -no-undefined

2001-02-21  Tor Lillqvist  <tml@iki.fi>

* Makefile.am: Use libglib-1.3.la from top_builddir. Invoke
libtool with -no-undefined for Win32 and Cygwin.

* gthread-impl.c (g_thread_init): Win32 code snippet used also on
Cygwin.

23 years agoUse G_BEGIN_DECLS and G_END_DECLS.
Tor Lillqvist [Fri, 9 Mar 2001 21:39:51 +0000 (21:39 +0000)]
Use G_BEGIN_DECLS and G_END_DECLS.

2001-02-21  Tor Lillqvist  <tml@iki.fi>

* *.h: Use G_BEGIN_DECLS and G_END_DECLS.

* Makefile.am: Use libglib-1.3.la from top_builddir. Invoke
libtool with -no-undefined for Win32 and Cygwin.

23 years agoUse G_BEGIN_DECLS and G_END_DECLS. Define G_MODULE_EXPORT correctly on
Tor Lillqvist [Fri, 9 Mar 2001 21:33:23 +0000 (21:33 +0000)]
Use G_BEGIN_DECLS and G_END_DECLS. Define G_MODULE_EXPORT correctly on

2001-02-21  Tor Lillqvist  <tml@iki.fi>

* gmodule.h: Use G_BEGIN_DECLS and G_END_DECLS. Define
G_MODULE_EXPORT correctly on Cygwin, too.

* gmodule-win32.c (_g_module_open): Convert path to Windows format
on Cygwin.

* Makefile.am (libglib): Use libglib-1.3.la from
top_builddir. Invoke libtool with -no-undefined for Win32 and
Cygwin.

23 years agoCygwin support contributed by Stefan Ondrejicka <ondrej@idata.sk>.
Tor Lillqvist [Fri, 9 Mar 2001 21:31:21 +0000 (21:31 +0000)]
Cygwin support contributed by Stefan Ondrejicka <ondrej@idata.sk>.

2001-02-21  Tor Lillqvist  <tml@iki.fi>

Cygwin support contributed by Stefan Ondrejicka
<ondrej@idata.sk>. Hopefully I got it all in while simultaneously
adding support for auto*/libtool for mingw.

* Makefile.am: Changes for auto* support on Cygwin and Win32. Do
still distribute the hand-written makefiles and *.win32.in files,
though. Use GIO, GSPAWN and PLATFORMDEP macros set by configure.
Use -no-undefined. Pass -export-symbols glib.def to libtool.

* configure.in: Define G_PLATFORM_WIN32 on both pure Win32 (mingw)
and Cygwin. Add AC_CYGWIN, AC_EXEEXT and AC_LIBTOOL_WIN32_DLL
calls for Cygwin and mingw support.  Check for %I64u guint64
format (in MS C library). Set G_MODULE_IMPL on mingw and
Cygwin. Use ac_object and ac_exeext.  Set GIO, GSPAWN, PLATFORMDEP
and G_LIBS_EXTRA. Compile timeloop only on Unix. Define OS_WIN32
automake conditional on Win32.

* glib.h: Include gwin32.h also on Cygwin.

* gfileutils.c (get_contents_posix): Use O_BINARY (defined as 0 on
Unix) for Cygwin's sake.

* gtimer.c (GETTIME): Reduce #ifdefs, use a macro GETTIME().

* gconvert.c
* gthread.c
* gutf8.c
* gutils.c: For code needed both on Cygwin and native Win32,
test for G_PLATFORM_WIN32.

* gmarkup.h: Use G_BEGIN_DECLS and G_END_DECLS.

* gtypes.h: Refine GLIB_VAR definition. Also check for DLL_EXPORT
in case compiling a static library on Win32 or Cygwin.

* gwin32.c: No <direct.h> on Cygwin. No need for ftruncate() or
dirent emulation on Cygwin.
(get_package_directory_from_module) Convert return value from
GetModuleFileName() to POSIX path on Cygwin.

* tests/Makefile.am (progs_LDADD): Link with libglib, libgthread
and libgmodule as appropriate. Use -no-undefined.

* gbacktrace.c: Move #ifdefs around a bit on Win32.

* gshell.c (unquote_string_inplace): Make static.

* testglib.c: Make some vars static. Add Cygwin path tests.

23 years agoCygwin support contributed by Stefan Ondrejicka <ondrej@idata.sk>.
Tor Lillqvist [Fri, 9 Mar 2001 21:23:33 +0000 (21:23 +0000)]
Cygwin support contributed by Stefan Ondrejicka <ondrej@idata.sk>.

2001-02-21  Tor Lillqvist  <tml@iki.fi>

Cygwin support contributed by Stefan Ondrejicka
<ondrej@idata.sk>. Hopefully I got it all in while simultaneously
adding support for auto*/libtool for mingw.

* Makefile.am: Changes for auto* support on Cygwin and Win32. Do
still distribute the hand-written makefiles and *.win32.in files,
though. Use GIO, GSPAWN and PLATFORMDEP macros set by configure.
Use -no-undefined. Pass -export-symbols glib.def to libtool.

* configure.in: Define G_PLATFORM_WIN32 on both pure Win32 (mingw)
and Cygwin. Add AC_CYGWIN, AC_EXEEXT and AC_LIBTOOL_WIN32_DLL
calls for Cygwin and mingw support.  Check for %I64u guint64
format (in MS C library). Set G_MODULE_IMPL on mingw and
Cygwin. Use ac_object and ac_exeext.  Set GIO, GSPAWN, PLATFORMDEP
and G_LIBS_EXTRA. Compile timeloop only on Unix. Define OS_WIN32
automake conditional on Win32.

* glib.h: Include gwin32.h also on Cygwin.

* gfileutils.c (get_contents_posix): Use O_BINARY (defined as 0 on
Unix) for Cygwin's sake.

* gtimer.c (GETTIME): Reduce #ifdefs, use a macro GETTIME().

* gconvert.c
* gthread.c
* gutf8.c
* gutils.c: For code needed both on Cygwin and native Win32,
test for G_PLATFORM_WIN32.

* gmarkup.h: Use G_BEGIN_DECLS and G_END_DECLS.

* gtypes.h: Refine GLIB_VAR definition. Also check for DLL_EXPORT
in case compiling a static library on Win32 or Cygwin.

* gwin32.c: No <direct.h> on Cygwin. No need for ftruncate() or
dirent emulation on Cygwin.
(get_package_directory_from_module) Convert return value from
GetModuleFileName() to POSIX path on Cygwin.

* tests/Makefile.am (progs_LDADD): Link with libglib, libgthread
and libgmodule as appropriate. Use -no-undefined.

* gbacktrace.c: Move #ifdefs around a bit on Win32.

* gshell.c (unquote_string_inplace): Make static.