Imported Upstream version 3.7.1 11/138311/1
authorDongHun Kwak <dh0128.kwak@samsung.com>
Tue, 11 Jul 2017 23:48:01 +0000 (08:48 +0900)
committerDongHun Kwak <dh0128.kwak@samsung.com>
Tue, 11 Jul 2017 23:48:04 +0000 (08:48 +0900)
Change-Id: I4c5c3aae69e883da127f15b41c102f953e8cc74c
Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
34 files changed:
ChangeLog
Makefile.in
NEWS
PKG-INFO
aclocal.m4
configure
configure.ac
examples/Makefile.in
gi/Makefile.in
gi/_glib/Makefile.in
gi/_glib/glibmodule.c
gi/_glib/pygiochannel.c
gi/_gobject/Makefile.in
gi/_gobject/__init__.py
gi/_gobject/propertyhelper.py
gi/overrides/GLib.py
gi/overrides/Makefile.in
gi/pygi-marshal-from-py.c
gi/repository/Makefile.in
ltmain.sh
m4/libtool.m4 [deleted file]
m4/ltoptions.m4 [deleted file]
m4/ltsugar.m4 [deleted file]
m4/ltversion.m4 [deleted file]
m4/lt~obsolete.m4 [deleted file]
tests/Makefile.am
tests/Makefile.in
tests/test_everything.py
tests/test_gdbus.py
tests/test_gi.py
tests/test_iochannel.py [deleted file]
tests/test_mainloop.py
tests/test_properties.py
tests/test_source.py

index 42ecc3d..97017f4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
-commit cea10ee0d2b9af05885bb8ba5ac4277718ff38de
+commit ce0825f58c3eba6084143e430605ffb597622369
 Author: Martin Pitt <martinpitt@gnome.org>
-Date:   Mon Nov 12 15:24:42 2012 +0100
+Date:   Mon Oct 22 17:37:17 2012 +0200
 
-    release 3.4.2
+    release 3.7.1
 
- NEWS | 11 +++++++++++
- 1 file changed, 11 insertions(+)
+ NEWS |   42 ++++++++++++++++++++++++++++++++++++++++++
+ 1 file changed, 42 insertions(+)
 
-commit b25abc3ec3bfefe2b8237ce4c1ecc0e973550850
+commit a93763337ba7f952d787c42f45bfbb3ff02cc80d
 Author: Martin Pitt <martinpitt@gnome.org>
-Date:   Mon Nov 12 15:15:39 2012 +0100
+Date:   Mon Oct 22 17:33:12 2012 +0200
 
-    Really bump g-i dependency to >= 1.34.1.1
+    Bump version to 3.7.1
 
-    ... as announced in 3.4.1.1.
+    Let's follow the real GNOME versioning from now on.
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
-commit 6b296031e58e07758138242b5b53dda61c0c5976
-Author: Martin Pitt <martinpitt@gnome.org>
-Date:   Fri Nov 9 16:02:00 2012 +0100
-
-    Fix marshalling of GByteArrays
-
-    In _pygi_marshal_from_py_array(), set the array length after copying
-    the data
-    in the GI_TYPE_TAG_UINT8 case (which applies for GByteArrays),
-    otherwise it
-    will always come out as zero length.
-
-    Cherry-picked from trunk commit b800a69. Do not cherry-pick the
-    test case
-    updates as those tests do not yet exist in the 3.4 branch.
-
- gi/pygi-marshal-from-py.c | 1 +
- 1 file changed, 1 insertion(+)
-
-commit 69a903f010a7f99af5f91730ebb106e281b6dd1d
-Author: Martin Pitt <martinpitt@gnome.org>
-Date:   Fri Nov 9 15:23:37 2012 +0100
-
-    Fix marshalling of ssize_t to smaller ints
-
-    Cherry-picked from trunk commit fa568949c46. Do not cherry-pick the
-    test case
-    udpate as those tests do not yet exist in the 3-4 branch.
-
- gi/pygi-marshal-from-py.c | 30 +++++++++++++++++++++++++++++-
- 1 file changed, 29 insertions(+), 1 deletion(-)
-
-commit a06e0d021d74c95cd517abb3e6ef5ff0037de679
-Author: Daniel Narvaez <dwnarvaez@gmail.com>
-Date:   Sun Nov 11 00:51:12 2012 +0100
-
-    Fix crash with GLib.child_watch_add
-
-    Was sometimes crashing when the destroy notify was called.
-
-    https://bugzilla.gnome.org/show_bug.cgi?id=688067
-
- gi/_glib/glibmodule.c | 6 ++++++
- 1 file changed, 6 insertions(+)
-
-commit 702fe63fbac500ec58114aba4fdc095687a5bcdd
+commit 3fb13cc05a281970c3a624c2dd152996031b482c
 Author: Martin Pitt <martinpitt@gnome.org>
-Date:   Wed Oct 24 12:50:50 2012 +0200
-
-    Fix various bugs in GLib.IOChannel
-
-    - Fix segfault when using an IOChannel as an iterator: PyIter_Next()
-    returns
-      NULL on the last element, instead of raising a StopIteration.
+Date:   Mon Oct 22 11:36:49 2012 +0200
 
-    - The default encoding of a stream is 'UTF-8', not NULL. NULL means
-    that the
-      stream is being used in binary mode; in that case, we should not
-      attempt to
-      do any automagic conversion to an Unicode object. As this special
-      case is
-      inconsistent and has never worked anyway, and the current buggy
-      implementation breaks binary streams, just drop it without
-      replacement.
-      (Introduced in commit de9eae4dfcce8)
+    test_mainloop code cleanup
 
-    These bugs were uncovered by the previously committed tests.
+    Ensure that sys.excepthook is always restored, even if the test
+    fails. Use the
+    assert{True,False,Equal} unittest API instead of simple asserts for
+    more useful
+    failure messages.
 
- gi/_glib/pygiochannel.c | 25 +++++--------------------
- 1 file changed, 5 insertions(+), 20 deletions(-)
-
-commit 35ff2a6fcd2b1621400e9fd53a748df15b8d2ec1
-Author: Martin Pitt <martinpitt@gnome.org>
-Date:   Wed Oct 24 12:49:04 2012 +0200
-
-    Add tests for GLib.IOChannel
-
-    This did not have any code coverage at all. The tests uncover a
-    range of bugs,
-    which will be fixed in the next commit.
-
-    This drops the verification of the set priority in
-    test_add_watch_data_priority(), as find_source_by_id() is not yet
-    available in
-    this pygobject version.
-
- tests/Makefile.am       |   1 +
- tests/test_iochannel.py | 259
- ++++++++++++++++++++++++++++++++++++++++++++++++
- 2 files changed, 260 insertions(+)
+ tests/test_mainloop.py |   19 ++++++++++---------
+ 1 file changed, 10 insertions(+), 9 deletions(-)
 
-commit 4922b050d91cd3943ef36bc8ca3fab9cf9522121
-Author: Martin Pitt <martinpitt@gnome.org>
-Date:   Wed Oct 24 07:28:10 2012 +0200
+commit 31061f20083aa60919f6763a12addbf2b052cab7
+Author: Simon Feltman <sfeltman@src.gnome.org>
+Date:   Sun Oct 21 18:55:24 2012 -0700
 
-    Work around wrong 64 bit constants in GLib Gir
+    Change install_properties to not use getattr on classes
 
-    GLib's gir currently has wrong constants for MININT64 and MAXUINT64;
-    explicitly
-    set them in an override, until this gets fixed properly.
+    The usage of getattr for accessing a classes __gproperties__
+    variable can be problematic due to the potential of it returning
+    the parent classes variable when it does not exist on the sub-class.
+    Similar to the fix for
+    https://bugzilla.gnome.org/show_bug.cgi?id=686496,
+    cls.__dict__.get is used to ensure this does not happen.
 
-    https://bugzilla.gnome.org/show_bug.cgi?id=685022
+    https://bugzilla.gnome.org/show_bug.cgi?id=686559
 
- gi/overrides/GLib.py | 8 ++++++++
- tests/test_gi.py     | 9 +++++++++
- 2 files changed, 17 insertions(+)
+ gi/_gobject/propertyhelper.py |    2 +-
+ tests/test_properties.py      |    6 ++++--
+ 2 files changed, 5 insertions(+), 3 deletions(-)
 
-commit 76aa96d41d378e3030797d4eb6224fce040a1ed6
-Author: Martin Pitt <martinpitt@gnome.org>
-Date:   Tue Oct 23 06:12:08 2012 +0200
+commit 438d3e68f19e2af5d027e18842ab05e0421d088d
+Author: Simon Feltman <sfeltman@src.gnome.org>
+Date:   Sat Oct 20 19:56:04 2012 -0700
 
-    Fix OverflowError in source_remove()
+    Move property install function into propertyhelper.py
 
-    GSource IDs are unsigned, so we must use 'I' for parsing then, not
-    'i'.
+    Move _install_properties() into gi/_gobject/propertyhelper.py
+    and add unittests.
 
-    https://bugzilla.gnome.org/show_bug.cgi?id=684526
+    https://bugzilla.gnome.org/show_bug.cgi?id=686559
 
- gi/_glib/glibmodule.c |  2 +-
- tests/test_source.py  | 13 ++++++++++++-
- 2 files changed, 13 insertions(+), 2 deletions(-)
+ gi/_gobject/__init__.py       |   45 ++---------------------------
+ gi/_gobject/propertyhelper.py |   45 +++++++++++++++++++++++++++++
+ tests/test_properties.py      |   63
+ +++++++++++++++++++++++++++++++++++++++++
+ 3 files changed, 111 insertions(+), 42 deletions(-)
 
-commit 96ed70859327964f96697b464717863467441d3e
+commit 695a9077aa8f40357e050f090caa5e2b8c5c9593
 Author: Simon Feltman <s.feltman@gmail.com>
 Date:   Sat Oct 20 03:11:07 2012 -0700
 
@@ -151,33 +80,24 @@ Date:   Sat Oct 20 03:11:07 2012 -0700
 
     https://bugzilla.gnome.org/show_bug.cgi?id=686496
 
- gi/_gobject/signalhelper.py |  2 +-
- tests/test_signal.py        | 43
+ gi/_gobject/signalhelper.py |    2 +-
+ tests/test_signal.py        |   43
  +++++++++++++++++++++++++++++++++++++++++++
  2 files changed, 44 insertions(+), 1 deletion(-)
 
-commit b16c9eb09881fe77d497a6ec6569fad5967153ac
-Author: Paolo Borelli <pborelli@gnome.org>
-Date:   Wed Oct 17 19:08:38 2012 +0200
-
-    configure.ac: Post-release bump to 3.4.2
-
- configure.ac | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-commit d855f84ace946b31738846cb0146b63dd3505f3d
-Author: Paolo Borelli <pborelli@gnome.org>
-Date:   Wed Oct 17 18:52:33 2012 +0200
+commit 1ff04e846d50b948df6fa3260c548ef4f4779c58
+Author: Martin Pitt <martinpitt@gnome.org>
+Date:   Fri Oct 19 09:05:01 2012 +0200
 
-    Release 3.4.1.1
+    tests: Consistently use GLib.MainLoop
 
-    Cut a bugfix release to have the correct g-i requirement
+    ... instead of mixing GObject.MainLoop and GLib.MainLoop.
 
- NEWS         | 5 +++++
configure.ac | 4 ++--
- 2 files changed, 7 insertions(+), 2 deletions(-)
+ tests/test_everything.py |    4 ++--
tests/test_gdbus.py      |   11 +++++------
+ 2 files changed, 7 insertions(+), 8 deletions(-)
 
-commit a8c1fe6eeaf720ee373d8490ffbcf99a05d2c5ed
+commit ff7e7401b4cf50532fef70263f7559ea513b8333
 Author: Kalev Lember <kalevlember@gmail.com>
 Date:   Wed Oct 17 18:27:14 2012 +0200
 
@@ -189,10 +109,10 @@ Date:   Wed Oct 17 18:27:14 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=686315
 
- Makefile.am | 6 +++---
+ Makefile.am |    6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)
 
-commit 6ba6b7ba90122954bb421c23606e9516697ba147
+commit 91e4cb2063d4e83fb1f6586a4396471d64f234f4
 Author: Simon Feltman <s.feltman@gmail.com>
 Date:   Mon Oct 15 04:03:50 2012 -0700
 
@@ -203,28 +123,10 @@ Date:   Mon Oct 15 04:03:50 2012 -0700
 
     https://bugzilla.gnome.org/show_bug.cgi?id=686140
 
- gi/pygi-closure.c |  1 +
- tests/test_gi.py  | 21 +++++++++++++++++++--
+ gi/pygi-closure.c |    1 +
+ tests/test_gi.py  |   21 +++++++++++++++++++--
  2 files changed, 20 insertions(+), 2 deletions(-)
 
-commit b86740c3ab5b34ea0de083d0d922ae4cbee69bbe
-Author: Martin Pitt <martinpitt@gnome.org>
-Date:   Mon Oct 15 08:53:47 2012 +0200
-
-    configure.ac: Post-release bump to 3.4.2
-
- configure.ac | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-commit b15201833ef7c738eea089affe21ec77b502619b
-Author: Martin Pitt <martinpitt@gnome.org>
-Date:   Mon Oct 15 08:36:28 2012 +0200
-
-    release 3.4.1
-
- NEWS | 18 ++++++++++++++++++
- 1 file changed, 18 insertions(+)
-
 commit 75e373b99c3cb66dd60b13c803e5f7eec77cc415
 Author: Martin Pitt <martinpitt@gnome.org>
 Date:   Mon Oct 15 07:42:05 2012 +0200
@@ -240,11 +142,11 @@ Date:   Mon Oct 15 07:42:05 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=685094
 
- configure.ac             |  5 ++---
- tests/Makefile.am        | 45
+ configure.ac             |    5 ++---
+ tests/Makefile.am        |   45
  +++++++++++++++++++++++++++------------------
- tests/test_everything.py | 15 +++++++++++----
- tests/test_overrides.py  |  7 ++++++-
+ tests/test_everything.py |   15 +++++++++++----
+ tests/test_overrides.py  |    7 ++++++-
  4 files changed, 46 insertions(+), 26 deletions(-)
 
 commit a2ab72aa39824579d1767d1fdba7e1031341f86c
@@ -259,7 +161,7 @@ Date:   Fri Oct 12 11:05:24 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=685000
 
- gi/pygi-marshal-from-py.c | 6 +++---
+ gi/pygi-marshal-from-py.c |    6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)
 
 commit 22c22124b787ae67638aff89796d7ce14900ea8e
@@ -275,15 +177,15 @@ Date:   Mon Oct 8 05:54:30 2012 -0700
 
     https://bugzilla.gnome.org/show_bug.cgi?id=685598
 
- gi/pygi-cache.c               |   1 +
- gi/pygi-closure.c             |  41 +++++++++----
- gi/pygi-invoke-state-struct.h |   4 ++
- gi/pygi-invoke.c              |   7 +++
- gi/pygi-marshal-cleanup.c     |  14 +++++
- gi/pygi-marshal-cleanup.h     |   4 ++
- gi/pygi-marshal-from-py.c     |  57 ++++++++++++++----
- tests/test_everything.py      | 137
- +++++++++++++++++++++++++++++++-----------
+ gi/pygi-cache.c               |    1 +
+ gi/pygi-closure.c             |   41 ++++++++----
+ gi/pygi-invoke-state-struct.h |    4 ++
+ gi/pygi-invoke.c              |    7 +++
+ gi/pygi-marshal-cleanup.c     |   14 +++++
+ gi/pygi-marshal-cleanup.h     |    4 ++
+ gi/pygi-marshal-from-py.c     |   57 +++++++++++++----
+ tests/test_everything.py      |  137
+ ++++++++++++++++++++++++++++++-----------
  8 files changed, 206 insertions(+), 59 deletions(-)
 
 commit c0bc69906df2db64560f7c054277ad1956aab57f
@@ -294,8 +196,8 @@ Date:   Thu Oct 11 17:49:30 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=685947
 
- gi/overrides/Gio.py         | 9 ++++++++-
- tests/test_overrides_gio.py | 3 +++
+ gi/overrides/Gio.py         |    9 ++++++++-
+ tests/test_overrides_gio.py |    3 +++
  2 files changed, 11 insertions(+), 1 deletion(-)
 
 commit bbbb7c9ed047a22ac3c43f2b0331d3b5ea32e812
@@ -306,8 +208,8 @@ Date:   Thu Oct 11 17:20:38 2012 +0200
 
     Also split test_override() into several smaller test cases.
 
- tests/org.gnome.test.gschema.xml |  9 +++++++++
- tests/test_overrides_gio.py      | 14 +++++++++-----
+ tests/org.gnome.test.gschema.xml |    9 +++++++++
+ tests/test_overrides_gio.py      |   14 +++++++++-----
  2 files changed, 18 insertions(+), 5 deletions(-)
 
 commit 8a2e96cd4e33b6c119a368d73a9d5504576cdccb
@@ -320,8 +222,8 @@ Date:   Thu Oct 11 16:08:11 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=685860
 
- gi/pygi-argument.c |  9 +++++++++
- tests/test_gi.py   | 12 ++++++++++++
+ gi/pygi-argument.c |    9 +++++++++
+ tests/test_gi.py   |   12 ++++++++++++
  2 files changed, 21 insertions(+)
 
 commit d394acbb58b38e6f52ee71e8e663a892676ab9e4
@@ -330,7 +232,7 @@ Date:   Thu Oct 4 20:13:55 2012 -0400
 
     build: Fix srcdir != builddir
 
- Makefile.am | 2 +-
+ Makefile.am |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 1bfcd5d94b71edc9f03c8b3e87952a8bc8097586
@@ -345,7 +247,7 @@ Date:   Thu Sep 27 22:44:22 2012 +0200
 
     Side issue in https://bugzilla.gnome.org/show_bug.cgi?id=685000
 
- gi/pygi-marshal-from-py.c | 4 ++--
+ gi/pygi-marshal-from-py.c |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit f0870336b9fc7797895f206e0d3ef17a19efe253
@@ -359,7 +261,7 @@ Date:   Tue Oct 2 05:30:16 2012 -0700
 
     https://bugzilla.gnome.org/show_bug.cgi?id=680138
 
- Makefile.am | 13 ++++++++-----
+ Makefile.am |   13 ++++++++-----
  1 file changed, 8 insertions(+), 5 deletions(-)
 
 commit 4c9318d97aa34051a0460e8db2ed0f963126b7f5
@@ -370,7 +272,7 @@ Date:   Thu Oct 4 09:42:41 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=685218
 
- gi/_gobject/pygobject.c | 4 +++-
+ gi/_gobject/pygobject.c |    4 +++-
  1 file changed, 3 insertions(+), 1 deletion(-)
 
 commit 2aa61520eb4f293ce94d54605d7642a39e18e03d
@@ -381,7 +283,7 @@ Date:   Mon Sep 17 15:16:32 2012 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=684062
 
- gi/_gobject/pygobject.c | 6 +++++-
+ gi/_gobject/pygobject.c |    6 +++++-
  1 file changed, 5 insertions(+), 1 deletion(-)
 
 commit 43d356d03d4c83e9de3c56f98a70d387b46f17af
@@ -394,7 +296,7 @@ Date:   Sat Sep 29 01:17:14 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=685082
 
- gi/pygi-argument.c | 3 +++
+ gi/pygi-argument.c |    3 +++
  1 file changed, 3 insertions(+)
 
 commit 34270a109d2af20391c80e88874ee7303eaf5c09
@@ -415,7 +317,7 @@ Date:   Fri Sep 28 07:42:51 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=684314
 
- gi/pygi-marshal-from-py.c | 21 ++++++++-------------
+ gi/pygi-marshal-from-py.c |   21 ++++++++-------------
  1 file changed, 8 insertions(+), 13 deletions(-)
 
 commit 7f1422bf929976722edd6144beb0b4c96d74391b
@@ -431,7 +333,7 @@ Date:   Fri Sep 28 06:59:38 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=685009
 
- tests/Makefile.am | 5 ++++-
+ tests/Makefile.am |    5 ++++-
  1 file changed, 4 insertions(+), 1 deletion(-)
 
 commit bfd9c8fac1ea240b29fbcd4185dc1702539c1e96
@@ -448,8 +350,8 @@ Date:   Thu Sep 27 08:18:34 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=684928
 
- gi/overrides/GLib.py         | 30 +++++++++++++++++++++++-------
- tests/test_overrides_glib.py | 31 +++++++++++++++++++++++++++++++
+ gi/overrides/GLib.py         |   30 +++++++++++++++++++++++-------
+ tests/test_overrides_glib.py |   31 +++++++++++++++++++++++++++++++
  2 files changed, 54 insertions(+), 7 deletions(-)
 
 commit 75d452ea5b179c3585adcf95356b4316c9180768
@@ -458,7 +360,7 @@ Date:   Thu Sep 27 06:50:12 2012 +0200
 
     TestGVariant: Split creation test case into several smaller ones
 
- tests/test_overrides_glib.py | 20 ++++++--------------
+ tests/test_overrides_glib.py |   20 ++++++--------------
  1 file changed, 6 insertions(+), 14 deletions(-)
 
 commit 4a20bcb3f97614044d351f8e436a81d332db55ba
@@ -469,11 +371,11 @@ Date:   Tue Sep 25 09:10:10 2012 +0200
 
     This gets rid of all warnings except the deprecated symbol ones.
 
- gi/_glib/pygiochannel.c | 9 +++------
- gi/pygi-argument.c      | 4 +---
- gi/pygi-callbacks.c     | 4 ----
- gi/pygi-ccallback.c     | 1 -
- gi/pygi-repository.c    | 3 +--
+ gi/_glib/pygiochannel.c |    9 +++------
+ gi/pygi-argument.c      |    4 +---
+ gi/pygi-callbacks.c     |    4 ----
+ gi/pygi-ccallback.c     |    1 -
+ gi/pygi-repository.c    |    3 +--
  5 files changed, 5 insertions(+), 16 deletions(-)
 
 commit 5285f14fee93d2729d4422c40a945adc2be69c14
@@ -484,7 +386,7 @@ Date:   Tue Sep 25 08:56:20 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=684700
 
- tests/testhelpermodule.c | 2 +-
+ tests/testhelpermodule.c |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit e14ebab6099d082466ec11ca21d44de0d6017216
@@ -501,7 +403,7 @@ Date:   Wed Sep 19 00:10:57 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=684331
 
- gi/pygi-argument.c | 25 +++++++++++++++++++++----
+ gi/pygi-argument.c |   25 +++++++++++++++++++++----
  1 file changed, 21 insertions(+), 4 deletions(-)
 
 commit 50571dd27d1f7c6bed8c5aaa518b504c9f4c4ab6
@@ -515,7 +417,7 @@ Date:   Wed Sep 19 19:07:00 2012 -0700
 
     https://bugzilla.gnome.org/show_bug.cgi?id=683599
 
- gi/pygi-info.c | 4 ++--
+ gi/pygi-info.c |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit 4bfe7972546413f46f5c36737ff03bb5612c1921
@@ -531,8 +433,8 @@ Date:   Tue Sep 18 08:52:02 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=684058
 
- gi/pygi-property.c       | 28 ++++++++++++++--------------
- tests/test_everything.py | 12 ++++++++++++
+ gi/pygi-property.c       |   28 ++++++++++++++--------------
+ tests/test_everything.py |   12 ++++++++++++
  2 files changed, 26 insertions(+), 14 deletions(-)
 
 commit 7aa94cc861082147b9c382b930f3257f0a842c84
@@ -541,7 +443,7 @@ Date:   Mon Sep 24 09:41:10 2012 +0200
 
     post-release bump to 3.4.1
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit fcceed3adb8d78baba68861a1408627321b2c1ef
@@ -550,8 +452,8 @@ Date:   Mon Sep 24 09:35:33 2012 +0200
 
     release 3.4.0
 
- NEWS         | 3 +++
- configure.ac | 4 ++--
+ NEWS         |    3 +++
+ configure.ac |    4 ++--
  2 files changed, 5 insertions(+), 2 deletions(-)
 
 commit 645a9d9d4712f8f0d1b63899b309bbc97eb1f216
@@ -562,7 +464,7 @@ Date:   Mon Sep 24 09:27:47 2012 +0200
 
     To ensure we have all the Regress test APIs that we use.
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit b6f4ef327fbeaa10fd74571c3df540311834d6ae
@@ -571,7 +473,7 @@ Date:   Mon Sep 17 22:52:49 2012 +0200
 
     post-release bump to 3.3.93
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 7e154cf01cf0ce7a8b52c45ba4db755f73b45d1d
@@ -580,7 +482,7 @@ Date:   Mon Sep 17 22:48:13 2012 +0200
 
     release 3.3.92
 
- NEWS | 12 ++++++++++++
+ NEWS |   12 ++++++++++++
  1 file changed, 12 insertions(+)
 
 commit adbe30dc72b4d88bb31055f6ee33fddf32638af9
@@ -595,8 +497,8 @@ Date:   Mon Sep 17 22:32:55 2012 +0200
 
     Update HACKING to point this out, too.
 
- HACKING     |  2 +-
- Makefile.am | 22 ++++++++++++++++------
+ HACKING     |    2 +-
+ Makefile.am |   22 ++++++++++++++++------
  2 files changed, 17 insertions(+), 7 deletions(-)
 
 commit be4a0682bdd189ee908ab1961001f759a80e133c
@@ -611,8 +513,8 @@ Date:   Sun Sep 16 17:27:25 2012 -0700
 
     https://bugzilla.gnome.org/show_bug.cgi?id=675581
 
- gi/pygi-info.c   |  8 ++++++++
- tests/test_gi.py | 12 ++++++++++++
+ gi/pygi-info.c   |    8 ++++++++
+ tests/test_gi.py |   12 ++++++++++++
  2 files changed, 20 insertions(+)
 
 commit 3ada408434860d0c8eee6c6a869b5a3d801cfbc8
@@ -628,7 +530,7 @@ Date:   Thu Sep 13 20:53:22 2012 -0700
 
     https://bugzilla.gnome.org/show_bug.cgi?id=683599
 
- gi/pygi-info.c | 8 ++++++++
+ gi/pygi-info.c |    8 ++++++++
  1 file changed, 8 insertions(+)
 
 commit a047f61f26d9c78b82d22948199313e5a389e918
@@ -643,7 +545,7 @@ Date:   Mon Sep 17 09:41:24 2012 +0200
 
     See https://bugzilla.gnome.org/show_bug.cgi?id=684058
 
- tests/test_properties.py | 12 ++++++++++++
+ tests/test_properties.py |   12 ++++++++++++
  1 file changed, 12 insertions(+)
 
 commit 3e6a4000cbc4b0cb503fcd89b50202ed0b70d3a7
@@ -656,8 +558,8 @@ Date:   Mon Sep 17 09:31:05 2012 +0200
     some test
     cases to better describe what they do.
 
- tests/test_properties.py | 78
- ++++++++++++++++++++++++------------------------
+ tests/test_properties.py |   78
+ +++++++++++++++++++++++-----------------------
  1 file changed, 39 insertions(+), 39 deletions(-)
 
 commit 4069c3d8547f35437e0cee175a5912febe25326d
@@ -666,7 +568,7 @@ Date:   Wed Sep 12 06:51:24 2012 +0200
 
     test_everything: Ensure TestSignals callback does get called
 
- tests/test_everything.py | 3 +++
+ tests/test_everything.py |    3 +++
  1 file changed, 3 insertions(+)
 
 commit 4e4c87e3868948743e0446abe2ba0cf5626374c4
@@ -683,9 +585,9 @@ Date:   Fri Sep 7 17:17:09 2012 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=683596
 
- gi/pygi-argument.c       |  8 ++++++--
- tests/test_everything.py | 52
- ++++++++++++++++++++++++++++++++++++++++++++++++
+ gi/pygi-argument.c       |    8 +++++--
+ tests/test_everything.py |   52
+ ++++++++++++++++++++++++++++++++++++++++++++++
  2 files changed, 58 insertions(+), 2 deletions(-)
 
 commit e474ce243ea7a58358af344ccadb1418f4d2c8eb
@@ -697,7 +599,7 @@ Date:   Tue Sep 11 12:32:10 2012 +0200
     Signed-off-By: Martin Pitt <martinpitt@gnome.org>
     Signed-off-By: Paolo Borelli <pborelli@gnome.org>
 
- pygobject.doap | 7 +++++++
+ pygobject.doap |    7 +++++++
  1 file changed, 7 insertions(+)
 
 commit ee1fc78258f10e8a7872ee3da6c9ad6e7984706e
@@ -712,7 +614,7 @@ Date:   Tue Sep 11 10:17:50 2012 +0200
     read, and we
     really do not want global single-letter variables like "f" and "l".
 
- tests/test_signal.py | 38 ++++++++++++++++----------------------
+ tests/test_signal.py |   38 ++++++++++++++++----------------------
  1 file changed, 16 insertions(+), 22 deletions(-)
 
 commit 3688cf6efe7161585b943cfaafcfd4610b7ad768
@@ -723,8 +625,8 @@ Date:   Tue Sep 11 10:11:58 2012 +0200
 
     Use underscore style method/test case names consistently.
 
- tests/test_signal.py | 88
- ++++++++++++++++++++++++++--------------------------
+ tests/test_signal.py |   88
+ +++++++++++++++++++++++++-------------------------
  1 file changed, 44 insertions(+), 44 deletions(-)
 
 commit 4559247553b792db956f69c9674c12344d719c82
@@ -740,8 +642,8 @@ Date:   Tue Sep 11 09:43:14 2012 +0200
     not work and it is not clear whether it should:
     https://bugzilla.gnome.org/show_bug.cgi?id=683775
 
- tests/test_signal.py     | 41 +++++++++++++++++++++++++++++++++++++++++
- tests/testhelpermodule.c | 17 +++++++++++++++++
+ tests/test_signal.py     |   41 +++++++++++++++++++++++++++++++++++++++++
+ tests/testhelpermodule.c |   17 +++++++++++++++++
  2 files changed, 58 insertions(+)
 
 commit fddb01b0b71b68d154d130cf40fd5f38647b1a4d
@@ -754,8 +656,8 @@ Date:   Tue Sep 11 09:31:18 2012 +0200
     https://bugzilla.gnome.org/show_bug.cgi?id=683596
     but this works already.
 
- tests/test_signal.py     | 13 +++++++++++++
- tests/testhelpermodule.c | 36 ++++++++++++++++++++++++++++++++++++
+ tests/test_signal.py     |   13 +++++++++++++
+ tests/testhelpermodule.c |   36 ++++++++++++++++++++++++++++++++++++
  2 files changed, 49 insertions(+)
 
 commit 4f77c7798563ea436ff5b6306a987f03de50b211
@@ -773,8 +675,8 @@ Date:   Fri Sep 7 02:32:15 2012 -0700
 
     https://bugzilla.gnome.org/show_bug.cgi?id=683150
 
- gi/pygi-argument.c |  8 +-------
- gi/pygi-info.c     | 14 +++++++++++++-
+ gi/pygi-argument.c |    8 +-------
+ gi/pygi-info.c     |   14 +++++++++++++-
  2 files changed, 14 insertions(+), 8 deletions(-)
 
 commit 15046b5a11f6c58a3e5a9c50cf0ce7f31f2cd55f
@@ -783,8 +685,8 @@ Date:   Mon Sep 10 16:46:30 2012 +0200
 
     Test gint64 C signal arguments and return values
 
- tests/test_signal.py     | 12 ++++++++++++
- tests/testhelpermodule.c | 14 ++++++++++++++
+ tests/test_signal.py     |   12 ++++++++++++
+ tests/testhelpermodule.c |   14 ++++++++++++++
  2 files changed, 26 insertions(+)
 
 commit 822d9e07a95f706a40f64335765293542787da90
@@ -795,7 +697,7 @@ Date:   Mon Sep 10 16:29:32 2012 +0200
 
     See https://bugzilla.gnome.org/show_bug.cgi?id=683596
 
- tests/test_gi.py | 9 +++++++++
+ tests/test_gi.py |    9 +++++++++
  1 file changed, 9 insertions(+)
 
 commit 2d83e52233812618493af4b165615e8741ba41c8
@@ -806,7 +708,7 @@ Date:   Wed Sep 5 08:54:53 2012 +0200
 
     To ensure we have all the Regress test APIs that we use.
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 6a4f4dc9a3d21c3ac8a0aa51432fb8952b4e1ebf
@@ -817,7 +719,7 @@ Date:   Wed Aug 8 12:57:41 2012 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=683379
 
- pygobject-3.0-uninstalled.pc.in | 6 +++---
+ pygobject-3.0-uninstalled.pc.in |    6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)
 
 commit d8f1398dbc7fa7803639c542a607f24f18614ad6
@@ -826,7 +728,7 @@ Date:   Mon Sep 3 22:16:47 2012 +0200
 
     post-release bump to 3.3.92
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit ea992324b8197b2d04ff2849b9ab46f8a04b4ed7
@@ -835,7 +737,7 @@ Date:   Mon Sep 3 22:04:01 2012 +0200
 
     release 3.3.91
 
- NEWS | 32 ++++++++++++++++++++++++++++++++
+ NEWS |   32 ++++++++++++++++++++++++++++++++
  1 file changed, 32 insertions(+)
 
 commit 1e1f5b2f2f15547c1f2cbc948d2b764bd0a37c44
@@ -846,7 +748,7 @@ Date:   Mon Sep 3 21:57:00 2012 +0200
 
     Regression from commit 77844c5 which did not work with Python 2.
 
- tests/test_everything.py | 12 +++++++-----
+ tests/test_everything.py |   12 +++++++-----
  1 file changed, 7 insertions(+), 5 deletions(-)
 
 commit 41bb687c058e08b05108b4b2f081cd83d4f93da8
@@ -861,7 +763,7 @@ Date:   Mon Sep 3 21:16:01 2012 +0200
     for all
     tests to succeed, but that hasn't been released yet.
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 77844c571ad0badc189428b93de9f2572051b67e
@@ -875,8 +777,8 @@ Date:   Mon Sep 3 17:58:38 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=639972
 
- gi/pygi-struct.c         |  7 +++++++
- tests/test_everything.py | 13 +++++++++++++
+ gi/pygi-struct.c         |    7 +++++++
+ tests/test_everything.py |   13 +++++++++++++
  2 files changed, 20 insertions(+)
 
 commit 0d099bdb3f4bbd962e5e60b583673d9e6f5673cc
@@ -891,8 +793,8 @@ Date:   Mon Sep 3 16:47:22 2012 +0200
 
     Co-Authored-By: Martin Pitt <martinpitt@gnome.org>
 
- gi/pygi-argument.c   | 10 +++++++++-
- tests/test_signal.py | 14 ++++++++++++++
+ gi/pygi-argument.c   |   10 +++++++++-
+ tests/test_signal.py |   14 ++++++++++++++
  2 files changed, 23 insertions(+), 1 deletion(-)
 
 commit 69fb92c22b3f3d1d5e8c3e14134eee3242fdc5fc
@@ -903,8 +805,8 @@ Date:   Mon Sep 3 16:06:49 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=683265
 
- tests/test_signal.py     |  6 ++++++
- tests/testhelpermodule.c | 12 ++++++++++++
+ tests/test_signal.py     |    6 ++++++
+ tests/testhelpermodule.c |   12 ++++++++++++
  2 files changed, 18 insertions(+)
 
 commit a7c524219987fbf37e455a91e4c78d2b9b4db12d
@@ -928,12 +830,12 @@ Date:   Tue Mar 20 04:33:50 2012 -0700
 
     https://bugzilla.gnome.org/show_bug.cgi?id=434924
 
- examples/signal.py          |  34 ++++--
- gi/_gobject/Makefile.am     |   3 +-
- gi/_gobject/__init__.py     |   5 +
- gi/_gobject/signalhelper.py | 251
- ++++++++++++++++++++++++++++++++++++++++++++
- tests/test_signal.py        | 208 ++++++++++++++++++++++++++++++++++--
+ examples/signal.py          |   34 ++++--
+ gi/_gobject/Makefile.am     |    3 +-
+ gi/_gobject/__init__.py     |    5 +
+ gi/_gobject/signalhelper.py |  251
+ +++++++++++++++++++++++++++++++++++++++++++
+ tests/test_signal.py        |  208 +++++++++++++++++++++++++++++++++--
  5 files changed, 482 insertions(+), 19 deletions(-)
 
 commit 96fa22369fd188465559fc904c7f76e73040e6dd
@@ -949,8 +851,8 @@ Date:   Mon Sep 3 15:32:12 2012 +0200
     Also improve test case for
     Gtk.TreeView.insert_column_with_attributes().
 
- gi/pygtkcompat.py           |  6 ------
- tests/test_overrides_gtk.py | 16 ++++++++--------
+ gi/pygtkcompat.py           |    6 ------
+ tests/test_overrides_gtk.py |   16 ++++++++--------
  2 files changed, 8 insertions(+), 14 deletions(-)
 
 commit 542cf22c9de9b2094868c4e879b0f24b15c4c012
@@ -963,8 +865,8 @@ Date:   Mon Sep 3 13:06:22 2012 +0200
 
     Co-Authored-By: Martin Pitt <martinpitt@gnome.org>
 
- gi/overrides/Gtk.py         |  7 +++++++
- tests/test_overrides_gtk.py | 38 ++++++++++++++++++++++++++++++++++++++
+ gi/overrides/Gtk.py         |    7 +++++++
+ tests/test_overrides_gtk.py |   38 ++++++++++++++++++++++++++++++++++++++
  2 files changed, 45 insertions(+)
 
 commit 1c73e845361e471b1c3a3f17e40e6a6cfa740877
@@ -973,7 +875,7 @@ Date:   Mon Sep 3 11:09:55 2012 +0200
 
     .gitignore: Add missing built files
 
- .gitignore | 9 +++++++--
+ .gitignore |    9 +++++++--
  1 file changed, 7 insertions(+), 2 deletions(-)
 
 commit 96431f393036a688666dcf67911bf12b9824b264
@@ -984,7 +886,7 @@ Date:   Mon Sep 3 11:07:32 2012 +0200
 
     Spotted by distcheck.
 
- tests/Makefile.am | 6 +++++-
+ tests/Makefile.am |    6 +++++-
  1 file changed, 5 insertions(+), 1 deletion(-)
 
 commit dc2c6e6f60d2757462cbceef6176b0b3013904d3
@@ -1003,8 +905,8 @@ Date:   Mon Sep 3 10:18:45 2012 +0200
     otherwise
     we fail to import the built libraries.
 
- tests/runtests-windows.py | 10 +++++++---
- tests/runtests.py         | 13 ++++++++-----
+ tests/runtests-windows.py |   10 +++++++---
+ tests/runtests.py         |   13 ++++++++-----
  2 files changed, 15 insertions(+), 8 deletions(-)
 
 commit 2d8f48f4ff56bb75985136452b50b75895258608
@@ -1043,7 +945,7 @@ Date:   Mon Sep 3 07:17:57 2012 +0200
     Emit a critical if we fail to allocate a Python array of the
     requested size.
 
- gi/pygi-argument.c | 47 ++++++++++++++++-------------------------------
+ gi/pygi-argument.c |   47 ++++++++++++++++-------------------------------
  1 file changed, 16 insertions(+), 31 deletions(-)
 
 commit 65bfbc624bc9da6e18ff2945b14099ab8eeb7601
@@ -1057,7 +959,7 @@ Date:   Wed Aug 29 21:24:17 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=682979
 
- gi/pygi-argument.c | 4 ++++
+ gi/pygi-argument.c |    4 ++++
  1 file changed, 4 insertions(+)
 
 commit 21b1d17d2ada2edf4063a4262b3436c279da3dc2
@@ -1072,8 +974,8 @@ Date:   Sat Sep 1 03:40:31 2012 -0700
 
     https://bugzilla.gnome.org/show_bug.cgi?id=683150
 
- gi/pygi-argument.c      |  8 +++++++-
- tests/test_overrides.py | 41 +++++++++++++++++++++++++++++++++++++++++
+ gi/pygi-argument.c      |    8 +++++++-
+ tests/test_overrides.py |   41 +++++++++++++++++++++++++++++++++++++++++
  2 files changed, 48 insertions(+), 1 deletion(-)
 
 commit 6123e6f5001ca5eaea18123d8a53525abab31a45
@@ -1099,12 +1001,12 @@ Date:   Thu Aug 23 06:44:27 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=682422
 
- configure.ac                    |  2 +-
- gi/_glib/pyglib-python-compat.h |  8 --------
- gi/_gobject/gobjectmodule.c     |  8 --------
- gi/module.py                    |  2 +-
- tests/runtests.py               | 27 +++++++++++++++++++++++++++
- tests/test_gi.py                |  2 +-
+ configure.ac                    |    2 +-
+ gi/_glib/pyglib-python-compat.h |    8 --------
+ gi/_gobject/gobjectmodule.c     |    8 --------
+ gi/module.py                    |    2 +-
+ tests/runtests.py               |   27 +++++++++++++++++++++++++++
+ tests/test_gi.py                |    2 +-
  6 files changed, 30 insertions(+), 19 deletions(-)
 
 commit b1a9848a7a7255e6b1ccd98712dd62b1514078b9
@@ -1130,12 +1032,12 @@ Date:   Tue Aug 21 07:54:09 2012 +0200
     Co-Authored-By: Martin Pitt <martinpitt@gnome.org>
     Co-Authored-By: Simon Feltman <s.feltman@gmail.com>
 
- gi/__init__.py                 |  4 ++++
- gi/overrides/__init__.py       |  4 ++++
- tests/gi/__init__.py           |  2 ++
- tests/gi/overrides/Regress.py  | 26 ++++++++++++++++++++++++++
- tests/gi/overrides/__init__.py |  2 ++
- tests/test_overrides.py        |  6 ++++++
+ gi/__init__.py                 |    4 ++++
+ gi/overrides/__init__.py       |    4 ++++
+ tests/gi/__init__.py           |    2 ++
+ tests/gi/overrides/Regress.py  |   26 ++++++++++++++++++++++++++
+ tests/gi/overrides/__init__.py |    2 ++
+ tests/test_overrides.py        |    6 ++++++
  6 files changed, 44 insertions(+)
 
 commit c7c95a795eee499373499ea5b771447746317bfb
@@ -1154,12 +1056,12 @@ Date:   Thu Aug 23 06:03:09 2012 +0200
 
     Side issue in https://bugzilla.gnome.org/show_bug.cgi?id=680913
 
- tests/runtests-windows.py | 6 +++++-
- tests/runtests.py         | 3 +++
- tests/test_everything.py  | 1 -
- tests/test_gdbus.py       | 3 ---
- tests/test_overrides.py   | 3 ---
- tests/test_pygtkcompat.py | 3 ---
+ tests/runtests-windows.py |    6 +++++-
+ tests/runtests.py         |    3 +++
+ tests/test_everything.py  |    1 -
+ tests/test_gdbus.py       |    3 ---
+ tests/test_overrides.py   |    3 ---
+ tests/test_pygtkcompat.py |    3 ---
  6 files changed, 8 insertions(+), 11 deletions(-)
 
 commit 3e3525e93d852cde0f63e835b774a9b004773c69
@@ -1179,8 +1081,8 @@ Date:   Sun Aug 19 02:30:39 2012 -0700
 
     https://bugzilla.gnome.org/show_bug.cgi?id=682323
 
- gi/_gobject/pygenum.c  | 29 ++++++++++++++++-------------
- gi/_gobject/pygflags.c | 21 +++++++++------------
+ gi/_gobject/pygenum.c  |   29 ++++++++++++++++-------------
+ gi/_gobject/pygflags.c |   21 +++++++++------------
  2 files changed, 25 insertions(+), 25 deletions(-)
 
 commit dd31b67e821f92b5f1c2ee0382cac5edd477cd11
@@ -1194,8 +1096,8 @@ Date:   Wed Aug 22 10:45:39 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=682436
 
- gi/overrides/Gio.py     | 10 ++++++++++
- tests/test_overrides.py | 11 +++++++++++
+ gi/overrides/Gio.py     |   10 ++++++++++
+ tests/test_overrides.py |   11 +++++++++++
  2 files changed, 21 insertions(+)
 
 commit 836902801373e386d370c44e7487aac3432f19f6
@@ -1204,7 +1106,7 @@ Date:   Mon Aug 20 23:37:40 2012 +0200
 
     post-release bump to 3.3.91
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 6a629e23ff7b0d6f532184017577c7427d577e28
@@ -1213,8 +1115,8 @@ Date:   Mon Aug 20 23:05:49 2012 +0200
 
     release 3.3.90
 
- NEWS         | 13 +++++++++++++
- configure.ac |  2 +-
+ NEWS         |   13 +++++++++++++
+ configure.ac |    2 +-
  2 files changed, 14 insertions(+), 1 deletion(-)
 
 commit 5cd18c9bd59a60b930ced0b35d728c12bb3291c7
@@ -1227,8 +1129,8 @@ Date:   Mon Aug 20 22:54:52 2012 +0200
 
     Co-Authored-By: Martin Pitt <martinpitt@gnome.org>
 
- gi/pygi-marshal-to-py.c | 16 ++++++++++++----
- tests/test_gi.py        | 14 ++++++++++++++
+ gi/pygi-marshal-to-py.c |   16 ++++++++++++----
+ tests/test_gi.py        |   14 ++++++++++++++
  2 files changed, 26 insertions(+), 4 deletions(-)
 
 commit 16462de3f025f14706ec23fa9b3653feb66ad57f
@@ -1241,7 +1143,7 @@ Date:   Mon Aug 20 15:24:10 2012 +0200
     pyflakes/pep8
     exist, but fail.
 
- tests/Makefile.am | 4 ++--
+ tests/Makefile.am |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit 1bee194274bcda9ba5f6751fa921218a92c8ac72
@@ -1261,8 +1163,8 @@ Date:   Thu Aug 16 16:05:52 2012 -0700
 
     https://bugzilla.gnome.org/show_bug.cgi?id=682051
 
- gi/module.py            | 7 +++++--
- gi/pygobject-external.h | 2 +-
+ gi/module.py            |    7 +++++--
+ gi/pygobject-external.h |    2 +-
  2 files changed, 6 insertions(+), 3 deletions(-)
 
 commit 1e056e4f4a19fd1139187467677c2592c2722290
@@ -1276,7 +1178,7 @@ Date:   Mon Aug 20 11:52:08 2012 +0200
     work without
     these tools.
 
- tests/Makefile.am | 4 ++--
+ tests/Makefile.am |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit c219fa6da89a7d55c5c111751684aae6876a9fe3
@@ -1285,9 +1187,9 @@ Date:   Mon Aug 20 11:42:47 2012 +0200
 
     gtk-demo: Fix some PEP-8 whitespace issues
 
- demos/gtk-demo/demos/Icon View/iconviewbasics.py | 3 +--
- demos/gtk-demo/demos/dialogs.py                  | 2 +-
- demos/gtk-demo/demos/rotatedtext.py              | 3 +--
+ demos/gtk-demo/demos/Icon View/iconviewbasics.py |    3 +--
+ demos/gtk-demo/demos/dialogs.py                  |    2 +-
+ demos/gtk-demo/demos/rotatedtext.py              |    3 +--
  3 files changed, 3 insertions(+), 5 deletions(-)
 
 commit 0ac2a85cae368c046839b5619a96efc9e0b91ba3
@@ -1296,8 +1198,8 @@ Date:   Mon Aug 20 11:38:50 2012 +0200
 
     test_overrides.py: Fix PEP8 whitespacing
 
- tests/test_overrides.py | 48
- +++++++++++++++++++++++++-----------------------
+ tests/test_overrides.py |   48
+ ++++++++++++++++++++++++-----------------------
  1 file changed, 25 insertions(+), 23 deletions(-)
 
 commit 631a9cd05cbc7dc3d0f743a84b948ef7d93c0ed4
@@ -1312,7 +1214,7 @@ Date:   Mon Aug 20 11:36:19 2012 +0200
     as the
     opening bracket, not the indentation level of the whole statement.
 
- tests/Makefile.am | 2 +-
+ tests/Makefile.am |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 266d37719bb54e6f04d23ff21bcceb9514e20ff2
@@ -1329,12 +1231,12 @@ Date:   Mon Aug 20 11:27:52 2012 +0200
     https://bugzilla.gnome.org/show_bug.cgi?id=680693
     https://bugzilla.redhat.com/show_bug.cgi?id=842880
 
- gi/pygi-argument.c       | 53
- +++++++++++++++++++++++++++++++++++++++++++++---
- gi/pygi-argument.h       |  1 +
- gi/pygi-closure.c        |  2 +-
- gi/pygi-info.c           |  4 ++--
- gi/pygi-signal-closure.c |  2 +-
+ gi/pygi-argument.c       |   53
+ +++++++++++++++++++++++++++++++++++++++++++---
+ gi/pygi-argument.h       |    1 +
+ gi/pygi-closure.c        |    2 +-
+ gi/pygi-info.c           |    4 ++--
+ gi/pygi-signal-closure.c |    2 +-
  5 files changed, 55 insertions(+), 7 deletions(-)
 
 commit 1c5d497d3c354f4d02f1d4570df2c61d6f47300c
@@ -1350,14 +1252,14 @@ Date:   Mon Aug 20 11:19:27 2012 +0200
     https://bugzilla.gnome.org/show_bug.cgi?id=680692
     https://bugzilla.redhat.com/show_bug.cgi?id=841596
 
- gi/pygi-argument.c        |  64 +++++++++++++--
- gi/pygi-argument.h        |   6 ++
- gi/pygi-cache.c           |   2 +
- gi/pygi-closure.c         |  57 ++++++++++++-
- gi/pygi-marshal-from-py.c | 203
- ++++++++++++++++++++++++++++++++++++----------
- gi/pygi-marshal-from-py.h |   3 +
- gi/pygi-marshal-to-py.c   | 137 ++++++++++++++++++++++++-------
+ gi/pygi-argument.c        |   64 ++++++++++++--
+ gi/pygi-argument.h        |    6 ++
+ gi/pygi-cache.c           |    2 +
+ gi/pygi-closure.c         |   57 ++++++++++++-
+ gi/pygi-marshal-from-py.c |  203
+ +++++++++++++++++++++++++++++++++++----------
+ gi/pygi-marshal-from-py.h |    3 +
+ gi/pygi-marshal-to-py.c   |  137 +++++++++++++++++++++++-------
  7 files changed, 391 insertions(+), 81 deletions(-)
 
 commit ee6da6f1aa2cd6e55834f9edc17f785613d00031
@@ -1366,7 +1268,7 @@ Date:   Wed Aug 15 13:16:11 2012 +0200
 
     Add unit test for the TreeModelSort override
 
- tests/test_overrides.py | 7 +++++++
+ tests/test_overrides.py |    7 +++++++
  1 file changed, 7 insertions(+)
 
 commit 9f027daa5737107b5959964b699c0089aec8ab1e
@@ -1382,7 +1284,7 @@ Date:   Thu Aug 9 03:33:06 2012 -0700
 
     https://bugzilla.gnome.org/show_bug.cgi?id=681477
 
- gi/overrides/Gtk.py | 8 ++++++++
+ gi/overrides/Gtk.py |    8 ++++++++
  1 file changed, 8 insertions(+)
 
 commit c8424c2bb19356679e250e73542682dd5f4c74a5
@@ -1395,7 +1297,7 @@ Date:   Fri Aug 10 09:38:24 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=681596
 
- pygi-convert.sh | 5 +++++
+ pygi-convert.sh |    5 +++++
  1 file changed, 5 insertions(+)
 
 commit 54d829b34a0d32d852db370f61cc7f25c149f373
@@ -1408,7 +1310,7 @@ Date:   Mon Aug 6 16:19:28 2012 +0200
     minor
     changes
 
- HACKING | 26 ++++++++++----------------
+ HACKING |   26 ++++++++++----------------
  1 file changed, 10 insertions(+), 16 deletions(-)
 
 commit 0788880c6cf4070d3db09896c165fe470d2ec186
@@ -1417,7 +1319,7 @@ Date:   Mon Aug 6 16:00:39 2012 +0200
 
     Post-release version bump to 3.3.6
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 664403d953c3e07077d0db90bfae3b51c7f1767c
@@ -1426,7 +1328,7 @@ Date:   Mon Aug 6 15:52:22 2012 +0200
 
     release 3.3.5
 
- NEWS | 29 +++++++++++++++++++++++++++++
+ NEWS |   29 +++++++++++++++++++++++++++++
  1 file changed, 29 insertions(+)
 
 commit b748753a2a9af018001213e2e58c48d6c8bfadbd
@@ -1435,7 +1337,7 @@ Date:   Mon Aug 6 15:44:32 2012 +0200
 
     Update HACKING file to mention "make release-news"
 
- HACKING | 7 +++----
+ HACKING |    7 +++----
  1 file changed, 3 insertions(+), 4 deletions(-)
 
 commit 587a0c33901383b891f8eb77351c17f06af20b4f
@@ -1446,7 +1348,7 @@ Date:   Mon Aug 6 15:38:23 2012 +0200
 
     These variables are assigned but never actually used
 
- gi/pygi-closure.c | 8 --------
+ gi/pygi-closure.c |    8 --------
  1 file changed, 8 deletions(-)
 
 commit dbc6df6aad7197fcf8721ade429baadd749f7069
@@ -1461,8 +1363,8 @@ Date:   Fri Aug 3 07:13:55 2012 +0200
     fail on
     those.
 
- tests/test_overrides.py   | 4 ++++
- tests/test_pygtkcompat.py | 6 ++++++
+ tests/test_overrides.py   |    4 ++++
+ tests/test_pygtkcompat.py |    6 ++++++
  2 files changed, 10 insertions(+)
 
 commit 770e6abfd5bc5dad7d5f56a18f1ef63f9754ada9
@@ -1483,9 +1385,9 @@ Date:   Fri Aug 3 06:45:48 2012 +0200
     https://bugzilla.redhat.com/show_bug.cgi?id=842880
     https://bugzilla.gnome.org/show_bug.cgi?id=680693
 
- gi/pygi-marshal-from-py.c | 48 ++++++++++++++++++++++++-----------------
- gi/pygi-marshal-to-py.c   | 54
- +++++++++++++++++++++++++++--------------------
+ gi/pygi-marshal-from-py.c |   48 ++++++++++++++++++++++++----------------
+ gi/pygi-marshal-to-py.c   |   54
+ ++++++++++++++++++++++++++-------------------
  2 files changed, 60 insertions(+), 42 deletions(-)
 
 commit b5cd13f47309ec26727b7574e33595a357602468
@@ -1494,7 +1396,7 @@ Date:   Tue Jul 31 11:47:02 2012 -0400
 
     pygi-marshal: One more 32-bit -Werror=format fix
 
- gi/pygi-marshal-from-py.c | 6 +++---
+ gi/pygi-marshal-from-py.c |    6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)
 
 commit 526bf43691cb6ed908589312b1693a6389eba00c
@@ -1506,7 +1408,7 @@ Date:   Tue Jul 31 17:14:37 2012 +0200
     Avoid saying "<unknown module>.int", just skip the module name
     completely if we do not have one.
 
- gi/pygi-marshal-from-py.c | 20 ++++++++++++--------
+ gi/pygi-marshal-from-py.c |   20 ++++++++++++--------
  1 file changed, 12 insertions(+), 8 deletions(-)
 
 commit 8fb18c62d9c7faff38df3886cb4289b618c81b85
@@ -1521,10 +1423,10 @@ Date:   Tue Jul 31 13:13:21 2012 +0200
     instead of
     failing the testsuite.
 
- tests/test_atoms.py       |  7 ++++++-
- tests/test_everything.py  |  9 ++++++++-
- tests/test_overrides.py   | 32 ++++++++++++++++++++++++++------
- tests/test_pygtkcompat.py | 30 ++++++++++++++++++++----------
+ tests/test_atoms.py       |    7 ++++++-
+ tests/test_everything.py  |    9 ++++++++-
+ tests/test_overrides.py   |   32 ++++++++++++++++++++++++++------
+ tests/test_pygtkcompat.py |   30 ++++++++++++++++++++----------
  4 files changed, 60 insertions(+), 18 deletions(-)
 
 commit a2e73c109f3ed6080eabc85810e624b9f984317e
@@ -1533,7 +1435,7 @@ Date:   Tue Jul 31 09:02:24 2012 -0400
 
     pygi-argument: Fix -Wformat warning on 32 bit builds
 
- gi/pygi-argument.c | 4 ++--
+ gi/pygi-argument.c |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit 7563bb9f8ed5740f52ddf0ca59daf7839853505b
@@ -1546,7 +1448,7 @@ Date:   Tue Jul 31 11:14:36 2012 +0200
     type. Fixes
     check after commit 121b14028.
 
- tests/test_gi.py | 32 ++++++++++++++++++++------------
+ tests/test_gi.py |   32 ++++++++++++++++++++------------
  1 file changed, 20 insertions(+), 12 deletions(-)
 
 commit 5c5b066854cc0b3b7702f31d212aa3f511c62127
@@ -1559,7 +1461,7 @@ Date:   Tue Jul 31 10:30:22 2012 +0200
     in commit
     dea24f8e12 much more insistently.
 
- configure.ac | 1 +
+ configure.ac |    1 +
  1 file changed, 1 insertion(+)
 
 commit 6e84a3052667fdc88c2081e20cc6dc3257ec9d6c
@@ -1580,7 +1482,7 @@ Date:   Mon Jul 30 02:00:16 2012 -0700
 
     https://bugzilla.gnome.org/show_bug.cgi?id=680814
 
- gi/pygtkcompat.py | 10 +++++++++-
+ gi/pygtkcompat.py |   10 +++++++++-
  1 file changed, 9 insertions(+), 1 deletion(-)
 
 commit dea24f8e1221516b2d8ea578e55124b0409d6a76
@@ -1593,7 +1495,7 @@ Date:   Mon Jul 30 22:17:44 2012 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=680878
 
- gi/pygi-marshal-from-py.c | 18 +++++++++---------
+ gi/pygi-marshal-from-py.c |   18 +++++++++---------
  1 file changed, 9 insertions(+), 9 deletions(-)
 
 commit b630038d9a1c8cb7e5914c77fbacbed646c154d1
@@ -1606,7 +1508,7 @@ Date:   Mon Jul 30 22:30:07 2012 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=680879
 
- gi/pygi-marshal-from-py.c | 8 ++++----
+ gi/pygi-marshal-from-py.c |    8 ++++----
  1 file changed, 4 insertions(+), 4 deletions(-)
 
 commit a8338a991bbe919f0e2d9b92f7b71f89ccd2c875
@@ -1619,7 +1521,7 @@ Date:   Mon Jul 30 12:53:36 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=680320
 
- tests/test_overrides.py | 20 ++++++++++++++++++--
+ tests/test_overrides.py |   20 ++++++++++++++++++--
  1 file changed, 18 insertions(+), 2 deletions(-)
 
 commit 121b1402860407fe46f7501e42447bf3607872ec
@@ -1644,9 +1546,9 @@ Date:   Tue Jul 31 00:37:55 2012 +0200
 
     instead.
 
- gi/pygi-marshal-from-py.c | 41 ++++++++++++++++++++++++++--------
- tests/test_gi.py          | 57
- ++++++++++++++++++++++++++++++++++++++++++++++-
+ gi/pygi-marshal-from-py.c |   41 +++++++++++++++++++++++++-------
+ tests/test_gi.py          |   57
+ ++++++++++++++++++++++++++++++++++++++++++++-
  2 files changed, 88 insertions(+), 10 deletions(-)
 
 commit 8f31e85db1392eb7222593fc0d05144c2bca06a3
@@ -1662,8 +1564,8 @@ Date:   Sun Jul 29 23:36:25 2012 -0700
 
     Signed-off-by: Martin Pitt <martinpitt@gnome.org>
 
- gi/pygi-closure.c       | 10 +++++++---
- tests/test_overrides.py |  9 +++++++++
+ gi/pygi-closure.c       |   10 +++++++---
+ tests/test_overrides.py |    9 +++++++++
  2 files changed, 16 insertions(+), 3 deletions(-)
 
 commit 94e5d58e7794de91d3291e0e51c42070da4fc92b
@@ -1674,7 +1576,7 @@ Date:   Mon Jul 30 11:58:24 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=679415
 
- tests/test_overrides.py | 19 +++++++++++++++++++
+ tests/test_overrides.py |   19 +++++++++++++++++++
  1 file changed, 19 insertions(+)
 
 commit aae4e77482c02e21154ab02b159f380f5f0f74be
@@ -1688,14 +1590,14 @@ Date:   Fri Jul 27 23:06:39 2012 +0200
     Also remove _pygi_marshal_cleanup_closure_unref() which is not
     used anywhere.
 
- gi/_gobject/gobjectmodule.c |  4 ++--
- gi/_gobject/pygobject.c     |  2 +-
- gi/pygi-cache.c             |  2 +-
- gi/pygi-foreign-cairo.c     | 24 ++++++++++++------------
- gi/pygi-foreign.c           |  2 +-
- gi/pygi-marshal-cleanup.c   |  9 ---------
- tests/test-unknown.c        |  2 +-
- tests/testhelpermodule.c    |  4 ++--
+ gi/_gobject/gobjectmodule.c |    4 ++--
+ gi/_gobject/pygobject.c     |    2 +-
+ gi/pygi-cache.c             |    2 +-
+ gi/pygi-foreign-cairo.c     |   24 ++++++++++++------------
+ gi/pygi-foreign.c           |    2 +-
+ gi/pygi-marshal-cleanup.c   |    9 ---------
+ tests/test-unknown.c        |    2 +-
+ tests/testhelpermodule.c    |    4 ++--
  8 files changed, 20 insertions(+), 29 deletions(-)
 
 commit 5f88d3017f853c4ff5e9fd89ef39e4569a9b9c16
@@ -1706,8 +1608,8 @@ Date:   Fri Jul 27 23:01:08 2012 +0200
 
     Add missing includes which caused -Wmissing-prototypes warnings.
 
- gi/_gobject/pygenum.c      | 2 ++
- gi/_gobject/pyginterface.c | 2 ++
+ gi/_gobject/pygenum.c      |    2 ++
+ gi/_gobject/pyginterface.c |    2 ++
  2 files changed, 4 insertions(+)
 
 commit 97b5184c6650964ae8a7616353f5ce8e3ca19af3
@@ -1722,7 +1624,7 @@ Date:   Fri Jul 27 22:59:21 2012 +0200
     currently
     breaks on building g-i's regress.c.
 
- configure.ac | 5 +++++
+ configure.ac |    5 +++++
  1 file changed, 5 insertions(+)
 
 commit c2ee8c550199de59dd220561ed028ec6fb8e1daf
@@ -1733,8 +1635,8 @@ Date:   Fri Jul 27 22:08:47 2012 +0200
 
     Add missing includes which caused -Wmissing-prototypes warnings.
 
- gi/_glib/pygiochannel.c | 2 ++
- gi/_glib/pygspawn.c     | 2 ++
+ gi/_glib/pygiochannel.c |    2 ++
+ gi/_glib/pygspawn.c     |    2 ++
  2 files changed, 4 insertions(+)
 
 commit 8bc98fc6665ebab763ee92361929139a0ebe66b5
@@ -1750,7 +1652,7 @@ Date:   Fri Jul 27 20:52:00 2012 +0200
     pygi-info.c:1277:43: warning: pointer of type 'void *' used in
     arithmetic [-Werror=pointer-arith]
 
- gi/pygi-info.c | 4 ++--
+ gi/pygi-info.c |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit d0a561057b727ebcc1fd06fa6a3b48f2a1f8338e
@@ -1762,7 +1664,7 @@ Date:   Fri Jul 27 20:50:30 2012 +0200
     Drop unused pyglib_gil_state_ensure_py23() and
     pyglib_gil_state_release_py23().
 
- gi/_glib/pyglib.c | 18 ------------------
+ gi/_glib/pyglib.c |   18 ------------------
  1 file changed, 18 deletions(-)
 
 commit a46d165d906d0ac7613f4d946542423e979f39d5
@@ -1779,8 +1681,8 @@ Date:   Fri Jul 20 10:37:04 2012 -0300
     Signed-off-by: Manuel Quiñones <manuq@laptop.org>
     Signed-off-by: Martin Pitt <martinpitt@gnome.org>
 
- gi/overrides/Gtk.py     | 7 +++++++
- tests/test_overrides.py | 6 ++++++
+ gi/overrides/Gtk.py     |    7 +++++++
+ tests/test_overrides.py |    6 ++++++
  2 files changed, 13 insertions(+)
 
 commit 4df676e10a5ea595a0d491af10268f557dd722d7
@@ -1796,17 +1698,17 @@ Date:   Tue Jul 24 13:49:15 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=678192
 
- Makefile.am               |   3 -
- docs/Makefile.am          |   2 -
- examples/Makefile.am      |   3 -
- gi/Makefile.am            |   3 -
- gi/_glib/Makefile.am      |   3 -
- gi/_gobject/Makefile.am   |   2 -
- gi/overrides/Makefile.am  |   2 -
- gi/repository/Makefile.am |   2 -
- git.mk                    | 200
- ----------------------------------------------
- tests/Makefile.am         |   2 -
+ Makefile.am               |    3 -
+ docs/Makefile.am          |    2 -
+ examples/Makefile.am      |    3 -
+ gi/Makefile.am            |    3 -
+ gi/_glib/Makefile.am      |    3 -
+ gi/_gobject/Makefile.am   |    2 -
+ gi/overrides/Makefile.am  |    2 -
+ gi/repository/Makefile.am |    2 -
+ git.mk                    |  200
+ ---------------------------------------------
+ tests/Makefile.am         |    2 -
  10 files changed, 222 deletions(-)
 
 commit 0d729c1534c7f3226b492f549d8f6ad3bb3ac8b7
@@ -1822,8 +1724,8 @@ Date:   Fri Jul 20 19:55:46 2012 -0700
 
     https://bugzilla.gnome.org/show_bug.cgi?id=680353
 
- gi/overrides/Gtk.py     | 5 ++++-
- tests/test_overrides.py | 4 ++++
+ gi/overrides/Gtk.py     |    5 ++++-
+ tests/test_overrides.py |    4 ++++
  2 files changed, 8 insertions(+), 1 deletion(-)
 
 commit affc7faa3fa7250e2e8c2c65e6860906f6fbc4fb
@@ -1841,9 +1743,9 @@ Date:   Fri Jul 20 21:34:33 2012 -0700
 
     https://bugzilla.gnome.org/show_bug.cgi?id=679939
 
- gi/_gobject/propertyhelper.py | 117
- +++++++++++++++++++-----------------------
- tests/test_properties.py      |  55 +++++++++++++++-----
+ gi/_gobject/propertyhelper.py |  117
+ +++++++++++++++++++----------------------
+ tests/test_properties.py      |   55 ++++++++++++++-----
  2 files changed, 96 insertions(+), 76 deletions(-)
 
 commit 6fddba5bc5ea02938677a89ffeb0cfc53229b894
@@ -1856,7 +1758,7 @@ Date:   Thu Jul 19 12:11:34 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=680259
 
- pygi-convert.sh | 1 +
+ pygi-convert.sh |    1 +
  1 file changed, 1 insertion(+)
 
 commit d58c3553062fd8704a81a8233b4a1563a6611718
@@ -1869,7 +1771,7 @@ Date:   Thu Jul 19 12:04:03 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=680257
 
- pygi-convert.sh | 1 +
+ pygi-convert.sh |    1 +
  1 file changed, 1 insertion(+)
 
 commit a3aae2e152c0b955037b7b85e16d14d00881d870
@@ -1890,8 +1792,8 @@ Date:   Thu Jul 19 15:48:20 2012 +0200
 
     Signed-off-by: Martin Pitt <martinpitt@gnome.org>
 
- gi/__init__.py   | 16 ++++++++++++++++
- tests/test_gi.py | 16 ++++++++++++++++
+ gi/__init__.py   |   16 ++++++++++++++++
+ tests/test_gi.py |   16 ++++++++++++++++
  2 files changed, 32 insertions(+)
 
 commit a2d9b71d84f0fcb7aaf5ce483ffee3b3a1ccaca1
@@ -1907,7 +1809,7 @@ Date:   Mon Jul 16 17:14:46 2012 -0300
     Signed-off-by: Manuel Quiñones <manuq@laptop.org>
     Signed-off-by: Martin Pitt <martinpitt@gnome.org>
 
- pygi-convert.sh | 3 +++
+ pygi-convert.sh |    3 +++
  1 file changed, 3 insertions(+)
 
 commit 0b08c01414ac73a4604acd9a846e7af09574929f
@@ -1923,7 +1825,7 @@ Date:   Tue Jul 17 09:05:27 2012 -0300
     Signed-off-by: Manuel Kaufmann <humitos@gmail.com>
     Signed-off-by: Martin Pitt <martinpitt@gnome.org>
 
- pygi-convert.sh | 2 ++
+ pygi-convert.sh |    2 ++
  1 file changed, 2 insertions(+)
 
 commit 975855d0fff7f2042fe1f0e843f96b9a37cc6b79
@@ -1932,7 +1834,7 @@ Date:   Mon Jul 16 17:35:38 2012 +0200
 
     configure.ac: post-release bump to 3.3.5
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 126842b7227fcc1381dc158acdc5a96d0a465515
@@ -1941,7 +1843,7 @@ Date:   Mon Jul 16 17:33:08 2012 +0200
 
     release 3.3.4
 
- NEWS | 28 ++++++++++++++++++++++++++++
+ NEWS |   28 ++++++++++++++++++++++++++++
  1 file changed, 28 insertions(+)
 
 commit 079b73b3eb9083bd53e06d095f9dccc02acf2a6e
@@ -1950,7 +1852,7 @@ Date:   Mon Jul 16 17:29:22 2012 +0200
 
     test_gi: Fix for Python 2
 
- tests/test_gi.py | 7 +++++--
+ tests/test_gi.py |    7 +++++--
  1 file changed, 5 insertions(+), 2 deletions(-)
 
 commit 30935fe31bfe201bbfdb7734f09fdd2bbaf80e08
@@ -1964,7 +1866,7 @@ Date:   Mon Jul 16 16:35:33 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=679999
 
- pygi-convert.sh | 1 -
+ pygi-convert.sh |    1 -
  1 file changed, 1 deletion(-)
 
 commit c0607d970fc59528ca27d518282cf2871b92e909
@@ -1981,8 +1883,8 @@ Date:   Mon Jul 16 16:00:40 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=679804
 
- gi/module.py     |  3 ++-
- tests/test_gi.py | 15 +++++++++++++++
+ gi/module.py     |    3 ++-
+ tests/test_gi.py |   15 +++++++++++++++
  2 files changed, 17 insertions(+), 1 deletion(-)
 
 commit 3235f1a397c334de5a7570f5ceed4da709fe1714
@@ -2001,8 +1903,8 @@ Date:   Mon Jul 16 15:53:31 2012 +0200
 
     Prerequisite for https://bugzilla.gnome.org/show_bug.cgi?id=679804
 
- gi/module.py     |  7 +++++--
- tests/test_gi.py | 14 ++++++++++++++
+ gi/module.py     |    7 +++++--
+ tests/test_gi.py |   14 ++++++++++++++
  2 files changed, 19 insertions(+), 2 deletions(-)
 
 commit f6cc039e014448a553d626aac4020ee69717edab
@@ -2015,8 +1917,8 @@ Date:   Mon Jul 16 15:38:05 2012 +0200
     need to decode
     it to get a proper __path__ attribute.
 
- gi/module.py     | 17 +++++++++++++++++
- tests/test_gi.py | 10 ++++++++++
+ gi/module.py     |   17 +++++++++++++++++
+ tests/test_gi.py |   10 ++++++++++
  2 files changed, 27 insertions(+)
 
 commit 858048f7cec78129aa914e2341ab80aac0e95cc5
@@ -2027,7 +1929,7 @@ Date:   Mon Jul 16 15:02:10 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=680004
 
- pygi-convert.sh | 2 +-
+ pygi-convert.sh |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit a31fabdc12f1da301c8df0af319ca3f4181671ee
@@ -2055,14 +1957,14 @@ Date:   Thu Jul 12 09:19:42 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=667244
 
- gi/pygi-argument.c       | 156
- ++++++++++++++++++++++++++++++++---------------
- gi/pygi-argument.h       |   4 +-
- gi/pygi-closure.c        |  11 ++++
- gi/pygi-info.c           |  20 ++++--
- gi/pygi-property.c       |   1 +
- gi/pygi-signal-closure.c |  14 ++++-
- tests/test_gi.py         |  18 ++++++
+ gi/pygi-argument.c       |  156
+ ++++++++++++++++++++++++++++++++--------------
+ gi/pygi-argument.h       |    4 +-
+ gi/pygi-closure.c        |   11 ++++
+ gi/pygi-info.c           |   20 ++++--
+ gi/pygi-property.c       |    1 +
+ gi/pygi-signal-closure.c |   14 ++++-
+ tests/test_gi.py         |   18 ++++++
  7 files changed, 167 insertions(+), 57 deletions(-)
 
 commit bb80d124269ee2389c04d03a478475868fd9ff7b
@@ -2075,7 +1977,7 @@ Date:   Wed Jul 11 22:05:41 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=679775
 
- pygi-convert.sh | 3 +++
+ pygi-convert.sh |    3 +++
  1 file changed, 3 insertions(+)
 
 commit e3a63eefa5fb2abeabd210790e12642e577363c8
@@ -2088,7 +1990,7 @@ Date:   Wed Jul 11 13:18:16 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=679760
 
- pygi-convert.sh | 5 +++++
+ pygi-convert.sh |    5 +++++
  1 file changed, 5 insertions(+)
 
 commit b4bef457c2d0ca6899e06a021f1f06252a37e326
@@ -2103,7 +2005,7 @@ Date:   Wed Jul 11 08:21:27 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=678914
 
- gi/pygi-cache.c | 2 ++
+ gi/pygi-cache.c |    2 ++
  1 file changed, 2 insertions(+)
 
 commit 41287d8a439c656e4ac60361fddec643c713234c
@@ -2117,7 +2019,7 @@ Date:   Wed Jul 11 11:13:38 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=679754
 
- pygi-convert.sh | 6 ++++++
+ pygi-convert.sh |    6 ++++++
  1 file changed, 6 insertions(+)
 
 commit 5403149b900d1b73cbc78767dc43be2eb344c836
@@ -2133,11 +2035,11 @@ Date:   Tue Jul 10 19:07:32 2012 -0700
 
     Signed-off-by: Martin Pitt <martinpitt@gnome.org>
 
- gi/_glib/glibmodule.c       | 10 +++++++--
- gi/_gobject/gobjectmodule.c | 17 ++++++++++-----
- gi/_gobject/pygobject.c     | 53
- ++++++++++++++++++++++++++++++---------------
- gi/pygi-marshal-from-py.c   |  9 +++++---
+ gi/_glib/glibmodule.c       |   10 ++++++--
+ gi/_gobject/gobjectmodule.c |   17 ++++++++++----
+ gi/_gobject/pygobject.c     |   53
+ +++++++++++++++++++++++++++++--------------
+ gi/pygi-marshal-from-py.c   |    9 +++++---
  4 files changed, 62 insertions(+), 27 deletions(-)
 
 commit 0ddfecf3bf0a5d7893cd02cff41503d810ef6ce8
@@ -2150,8 +2052,8 @@ Date:   Wed Jul 4 08:46:30 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=679199
 
- gi/overrides/Gtk.py     | 3 +++
- tests/test_overrides.py | 4 ++++
+ gi/overrides/Gtk.py     |    3 +++
+ tests/test_overrides.py |    4 ++++
  2 files changed, 7 insertions(+)
 
 commit e1e849d1a9af77c29ee35971db8d439bac60d573
@@ -2168,8 +2070,8 @@ Date:   Wed Jul 4 08:35:16 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=679336
 
- gi/overrides/GLib.py    | 6 +++++-
- tests/test_overrides.py | 5 +++++
+ gi/overrides/GLib.py    |    6 +++++-
+ tests/test_overrides.py |    5 +++++
  2 files changed, 10 insertions(+), 1 deletion(-)
 
 commit af20d7c929b9c1888454b52932a308d346e1c12b
@@ -2180,7 +2082,7 @@ Date:   Thu Jun 28 06:51:22 2012 +0200
 
     Thanks to Dieter Verfaillie for pointing  this out.
 
- m4/python.m4 | 3 +--
+ m4/python.m4 |    3 +--
  1 file changed, 1 insertion(+), 2 deletions(-)
 
 commit a96a26234e2aaa157837d26094864e3ad9b63edf
@@ -2199,7 +2101,7 @@ Date:   Mon Jun 25 09:05:59 2012 -0700
 
     Signed-off-by: Martin Pitt <martinpitt@gnome.org>
 
- gi/overrides/Gtk.py | 5 ++++-
+ gi/overrides/Gtk.py |    5 ++++-
  1 file changed, 4 insertions(+), 1 deletion(-)
 
 commit afa12faf339efb4f7780168e884ecf49b630644a
@@ -2208,7 +2110,7 @@ Date:   Mon Jun 25 16:36:31 2012 +0200
 
     configure.ac: Post-release bump to 3.3.4.
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 198066effc0ca44ccb897e9f0738ab627e8b3275
@@ -2217,8 +2119,8 @@ Date:   Mon Jun 25 16:35:49 2012 +0200
 
     release 3.3.3.1
 
- NEWS         | 3 +++
- configure.ac | 2 +-
+ NEWS         |    3 +++
+ configure.ac |    2 +-
  2 files changed, 4 insertions(+), 1 deletion(-)
 
 commit cb70ae0aa52ab7624b2b8c30297d8a52a7db7f44
@@ -2231,9 +2133,9 @@ Date:   Mon Jun 25 16:32:45 2012 +0200
     keywords. This broke
     existing API such as Gtk.ShadowType.IN.
 
- gi/module.py     | 2 +-
- gi/pygi-info.c   | 7 +++++++
- tests/test_gi.py | 3 +++
+ gi/module.py     |    2 +-
+ gi/pygi-info.c   |    7 +++++++
+ tests/test_gi.py |    3 +++
  3 files changed, 11 insertions(+), 1 deletion(-)
 
 commit f2524a982b0b8ba7cdbb77003372416af0b7a978
@@ -2242,7 +2144,7 @@ Date:   Mon Jun 25 15:39:50 2012 +0200
 
     configure.ac: Post-release version bump to 3.3.4
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit fe56faa346c8e8f9fd5915602424778d458a776d
@@ -2251,7 +2153,7 @@ Date:   Mon Jun 25 15:36:37 2012 +0200
 
     release 3.3.3
 
- NEWS | 15 +++++++++++++++
+ NEWS |   15 +++++++++++++++
  1 file changed, 15 insertions(+)
 
 commit 299a2fd726f0aceaf67b1cec7a0ef8b21ff7bcbc
@@ -2262,7 +2164,7 @@ Date:   Mon Jun 25 15:35:19 2012 +0200
 
     This is being used by "make dist".
 
- Makefile.am | 15 +++++++++++++++
+ Makefile.am |   15 +++++++++++++++
  1 file changed, 15 insertions(+)
 
 commit 760118e4ed73de2f022706ef897fcc848e90c005
@@ -2271,7 +2173,7 @@ Date:   Mon Jun 25 15:31:14 2012 +0200
 
     Remove obsolete ChangeLog and release-tag make targets
 
- Makefile.am | 23 -----------------------
+ Makefile.am |   23 -----------------------
  1 file changed, 23 deletions(-)
 
 commit e92278692bb51679d6e957c2ac36db64498a7c73
@@ -2294,7 +2196,7 @@ Date:   Fri Jun 15 16:11:21 2012 +0200
     Signed-off-by: Benjamin Berg <benzea@sugarlabs.org>
     Signed-off-by: Martin Pitt <martinpitt@gnome.org>
 
- gi/_gobject/pygobject.c | 27 ++++++++++++++++++++++-----
+ gi/_gobject/pygobject.c |   27 ++++++++++++++++++++++-----
  1 file changed, 22 insertions(+), 5 deletions(-)
 
 commit de4aa426002eeb09a060f8fd70bd6cb25a17766a
@@ -2311,8 +2213,8 @@ Date:   Mon Jun 25 15:06:47 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=678510
 
- gi/overrides/Gtk.py     |  8 +++++++-
- tests/test_overrides.py | 36 ++++++++++++++++++++++++++++++++++++
+ gi/overrides/Gtk.py     |    8 +++++++-
+ tests/test_overrides.py |   36 ++++++++++++++++++++++++++++++++++++
  2 files changed, 43 insertions(+), 1 deletion(-)
 
 commit 16280d6985f2cf4db9cf062e857650e620fd9da8
@@ -2339,8 +2241,8 @@ Date:   Mon Jun 25 09:40:38 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=676746
 
- gi/pygi-info.c   | 38 +++++++++++++++++++++++++++++++++++++-
- tests/test_gi.py | 17 +++++++++++++++++
+ gi/pygi-info.c   |   38 +++++++++++++++++++++++++++++++++++++-
+ tests/test_gi.py |   17 +++++++++++++++++
  2 files changed, 54 insertions(+), 1 deletion(-)
 
 commit 3864d7a3b7def035ee2daf22ba717371c8d261de
@@ -2357,7 +2259,7 @@ Date:   Fri Jun 22 13:13:37 2012 +0200
     line that
     contains the opening bracket.
 
- tests/Makefile.am | 2 +-
+ tests/Makefile.am |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit fb436dd6d3b40b3f2a8ba6f402e2987752ad1902
@@ -2368,34 +2270,34 @@ Date:   Fri Jun 22 13:08:34 2012 +0200
 
     Spotted by current pep8 checker.
 
- demos/gtk-demo/demos/Entry/entry_buffer.py     |  6 +--
- demos/gtk-demo/demos/Entry/entry_completion.py |  6 +--
- demos/gtk-demo/demos/Entry/search_entry.py     |  4 +-
- demos/gtk-demo/demos/appwindow.py              |  2 +-
- demos/gtk-demo/demos/clipboard.py              |  8 +--
- demos/gtk-demo/demos/colorselector.py          |  6 +--
- demos/gtk-demo/demos/rotatedtext.py            |  8 +--
- demos/gtk-demo/gtk-demo.py                     |  6 +--
- examples/option.py                             | 29 ++++++-----
- examples/signal.py                             |  3 +-
- gi/_glib/option.py                             |  6 +--
- gi/_gobject/propertyhelper.py                  | 18 +++----
- gi/module.py                                   | 14 +++---
- gi/overrides/GLib.py                           |  2 +-
- gi/overrides/Gio.py                            | 11 +++--
- gi/overrides/Gtk.py                            | 16 +++---
- gi/pygtkcompat.py                              |  7 ++-
- gi/types.py                                    | 17 ++++---
- tests/runtests.py                              |  2 +-
- tests/test_gdbus.py                            | 55 +++++++++++----------
- tests/test_gi.py                               | 15 +++---
- tests/test_gobject.py                          | 18 +++----
- tests/test_option.py                           | 26 +++++-----
- tests/test_overrides.py                        | 67
- +++++++++++++-------------
- tests/test_properties.py                       | 30 ++++++------
- tests/test_signal.py                           |  2 +-
- tests/test_uris.py                             |  9 ++--
+ demos/gtk-demo/demos/Entry/entry_buffer.py     |    6 +--
+ demos/gtk-demo/demos/Entry/entry_completion.py |    6 +--
+ demos/gtk-demo/demos/Entry/search_entry.py     |    4 +-
+ demos/gtk-demo/demos/appwindow.py              |    2 +-
+ demos/gtk-demo/demos/clipboard.py              |    8 +--
+ demos/gtk-demo/demos/colorselector.py          |    6 +--
+ demos/gtk-demo/demos/rotatedtext.py            |    8 +--
+ demos/gtk-demo/gtk-demo.py                     |    6 +--
+ examples/option.py                             |   29 +++++-----
+ examples/signal.py                             |    3 +-
+ gi/_glib/option.py                             |    6 +--
+ gi/_gobject/propertyhelper.py                  |   18 +++----
+ gi/module.py                                   |   14 ++---
+ gi/overrides/GLib.py                           |    2 +-
+ gi/overrides/Gio.py                            |   11 ++--
+ gi/overrides/Gtk.py                            |   16 +++---
+ gi/pygtkcompat.py                              |    7 ++-
+ gi/types.py                                    |   17 +++---
+ tests/runtests.py                              |    2 +-
+ tests/test_gdbus.py                            |   55 ++++++++++---------
+ tests/test_gi.py                               |   15 +++---
+ tests/test_gobject.py                          |   18 +++----
+ tests/test_option.py                           |   26 ++++-----
+ tests/test_overrides.py                        |   67
+ ++++++++++++------------
+ tests/test_properties.py                       |   30 +++++------
+ tests/test_signal.py                           |    2 +-
+ tests/test_uris.py                             |    9 ++--
  27 files changed, 200 insertions(+), 193 deletions(-)
 
 commit 129462ccc4a2191ecbb42247030c91bd0f1454f6
@@ -2406,8 +2308,8 @@ Date:   Fri Jun 22 12:36:54 2012 +0200
 
     Spotted by current pep8 checker.
 
- gi/overrides/GLib.py     | 2 +-
- gi/overrides/__init__.py | 2 +-
+ gi/overrides/GLib.py     |    2 +-
+ gi/overrides/__init__.py |    2 +-
  2 files changed, 2 insertions(+), 2 deletions(-)
 
 commit 50e45a624e6301e65c150e137aad6d092f203f3f
@@ -2418,11 +2320,11 @@ Date:   Fri Jun 22 12:30:10 2012 +0200
 
     Spotted by current pep8 checker.
 
- demos/gtk-demo/demos/Entry/search_entry.py |  6 +++---
- gi/__init__.py                             |  6 +++---
- gi/_gobject/__init__.py                    |  6 ++----
- gi/module.py                               |  6 +++---
- tests/test_overrides.py                    | 11 +++--------
+ demos/gtk-demo/demos/Entry/search_entry.py |    6 +++---
+ gi/__init__.py                             |    6 +++---
+ gi/_gobject/__init__.py                    |    6 ++----
+ gi/module.py                               |    6 +++---
+ tests/test_overrides.py                    |   11 +++--------
  5 files changed, 14 insertions(+), 21 deletions(-)
 
 commit ef06548b0dc6aee0e8ab208a78966dc1d5d917ee
@@ -2433,13 +2335,13 @@ Date:   Fri Jun 22 12:24:32 2012 +0200
 
     Spotted by current pep8 checker.
 
- demos/gtk-demo/demos/clipboard.py   | 4 ++--
- demos/gtk-demo/demos/drawingarea.py | 4 ++--
- demos/gtk-demo/gtk-demo.py          | 8 ++++----
- gi/overrides/Gdk.py                 | 2 +-
- gi/overrides/Gtk.py                 | 2 +-
- tests/test_gi.py                    | 4 ++--
- tests/test_overrides.py             | 3 +--
+ demos/gtk-demo/demos/clipboard.py   |    4 ++--
+ demos/gtk-demo/demos/drawingarea.py |    4 ++--
+ demos/gtk-demo/gtk-demo.py          |    8 ++++----
+ gi/overrides/Gdk.py                 |    2 +-
+ gi/overrides/Gtk.py                 |    2 +-
+ tests/test_gi.py                    |    4 ++--
+ tests/test_overrides.py             |    3 +--
  7 files changed, 13 insertions(+), 14 deletions(-)
 
 commit 379c1474a071292a1e8da413af2f5438cff09fc8
@@ -2452,9 +2354,9 @@ Date:   Wed Jun 20 12:23:12 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=678119
 
- gi/_glib/glibmodule.c | 10 ++++++++--
- tests/Makefile.am     |  1 +
- tests/test_glib.py    | 15 +++++++++++++++
+ gi/_glib/glibmodule.c |   10 ++++++++--
+ tests/Makefile.am     |    1 +
+ tests/test_glib.py    |   15 +++++++++++++++
  3 files changed, 24 insertions(+), 2 deletions(-)
 
 commit 73531fd7820bd1922347bd856298d68205a27877
@@ -2471,7 +2373,8 @@ Date:   Wed Jun 20 11:16:39 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=641944
 
- gi/_gobject/pygobject.c | 44 ++++++++++++++++++++++++++++++++++++++++++++
+ gi/_gobject/pygobject.c |   44
+ ++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 44 insertions(+)
 
 commit a0daa843801658929ffee5bcb9eb67d955dc7921
@@ -2484,8 +2387,8 @@ Date:   Mon Jun 18 15:09:34 2012 +0200
 
     Signed-off-by: Martin Pitt <martinpitt@gnome.org>
 
- gi/overrides/GLib.py    | 4 ++--
- tests/test_overrides.py | 1 +
+ gi/overrides/GLib.py    |    4 ++--
+ tests/test_overrides.py |    1 +
  2 files changed, 3 insertions(+), 2 deletions(-)
 
 commit fb39ba934180e1e48fd15774e69d1cecf47a4c84
@@ -2494,7 +2397,7 @@ Date:   Tue Jun 5 19:11:38 2012 +0200
 
     configure.ac: Post-release bump to 3.3.3
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 7f0995e7fa865ebde7490d0570a7135a2f962cdf
@@ -2503,7 +2406,7 @@ Date:   Tue Jun 5 19:09:12 2012 +0200
 
     Release 3.3.2
 
- NEWS | 44 ++++++++++++++++++++++++++++++++++++++++++++
+ NEWS |   44 ++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 44 insertions(+)
 
 commit 8209c1ae1632c77768699481e574d5d378956e71
@@ -2514,7 +2417,7 @@ Date:   Tue Jun 5 19:04:49 2012 +0200
 
     Actually list changes since the previous release, not since 3.1.92.
 
- Makefile.am | 2 +-
+ Makefile.am |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit b21f66d2a399b8c9a36a1758107b7bdff0ec8eaa
@@ -2535,9 +2438,9 @@ Date:   Wed May 9 19:04:01 2012 +0200
 
     Signed-off-by: Martin Pitt <martinpitt@gnome.org>
 
- gi/pygi-foreign-cairo.c  | 85
- ++++++++++++++++++++++++++++++++++++++++++++++++
- tests/test_everything.py |  8 +++++
+ gi/pygi-foreign-cairo.c  |   85
+ ++++++++++++++++++++++++++++++++++++++++++++++
+ tests/test_everything.py |    8 +++++
  2 files changed, 93 insertions(+)
 
 commit 635a7d1b48d99ddd1ea123797c493b18b0cdfd45
@@ -2562,8 +2465,8 @@ Date:   Wed May 23 01:51:46 2012 +0200
     Co-authored-by: Martin Pitt <martinpitt@gnome.org>
     Signed-off-by: Martin Pitt <martinpitt@gnome.org>
 
- gi/pygi-argument.c | 10 +++++++---
- tests/test_gi.py   | 19 +++++++++++++++++++
+ gi/pygi-argument.c |   10 +++++++---
+ tests/test_gi.py   |   19 +++++++++++++++++++
  2 files changed, 26 insertions(+), 3 deletions(-)
 
 commit 2305dcd7e8841f87dc2fc683390df78453a5dc2a
@@ -2579,7 +2482,7 @@ Date:   Sat May 12 14:08:51 2012 +0200
 
     Signed-off-by: Martin Pitt <martinpitt@gnome.org>
 
- gi/overrides/Gtk.py | 9 +++++++++
+ gi/overrides/Gtk.py |    9 +++++++++
  1 file changed, 9 insertions(+)
 
 commit 5501fba534696974899f2591929bff9e1b6ecd65
@@ -2595,8 +2498,8 @@ Date:   Sat May 12 13:50:02 2012 +0200
 
     Signed-off-by: Martin Pitt <martinpitt@gnome.org>
 
- gi/_gobject/__init__.py  | 1 +
- gi/_gobject/constants.py | 1 +
+ gi/_gobject/__init__.py  |    1 +
+ gi/_gobject/constants.py |    1 +
  2 files changed, 2 insertions(+)
 
 commit 4c51a5411092f8ab6f8f6e9692a9b49692f621a7
@@ -2613,8 +2516,8 @@ Date:   Fri Jun 1 02:53:13 2012 -0400
 
     Signed-off-by: Martin Pitt <martinpitt@gnome.org>
 
- gi/_gobject/pygboxed.c   | 3 ++-
- tests/test_everything.py | 8 ++++++++
+ gi/_gobject/pygboxed.c   |    3 ++-
+ tests/test_everything.py |    8 ++++++++
  2 files changed, 10 insertions(+), 1 deletion(-)
 
 commit dc8eef26906753fcb3ce057b23ca110137897fa5
@@ -2629,7 +2532,7 @@ Date:   Fri Jun 1 13:43:38 2012 +0200
 
     Signed-off-by: Martin Pitt <martinpitt@gnome.org>
 
- tests/test_properties.py | 4 ++--
+ tests/test_properties.py |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit 853e6a71234ebd66af5a64dfb296e323c2c905a6
@@ -2646,8 +2549,8 @@ Date:   Thu May 17 17:09:15 2012 +0200
 
     Signed-off-by: Martin Pitt <martinpitt@gnome.org>
 
- gi/pygi-closure.c | 17 +++++++++++++++++
- tests/test_gi.py  |  5 +++++
+ gi/pygi-closure.c |   17 +++++++++++++++++
+ tests/test_gi.py  |    5 +++++
  2 files changed, 22 insertions(+)
 
 commit bac9d526f6a9774821d1c9c0e7b35cc6db942975
@@ -2656,7 +2559,7 @@ Date:   Fri Jun 1 12:28:53 2012 +0200
 
     tests: Add more vfunc checks for GIMarshallingTestsObject
 
- tests/test_gi.py | 25 +++++++++++++++++++++++++
+ tests/test_gi.py |   25 +++++++++++++++++++++++++
  1 file changed, 25 insertions(+)
 
 commit e1aaf4a48453be0e69e7f3a70a2e7a790871a4d2
@@ -2668,7 +2571,7 @@ Date:   Fri Jun 1 12:02:55 2012 +0200
     This came up as a side issue in
     https://bugzilla.gnome.org/show_bug.cgi?id=653151
 
- tests/test_gi.py | 3 +++
+ tests/test_gi.py |    3 +++
  1 file changed, 3 insertions(+)
 
 commit edc17e703e1a05e20545d3df9167ceb076450443
@@ -2685,9 +2588,9 @@ Date:   Wed May 16 11:13:05 2012 +0200
 
     Signed-off-by: Martin Pitt <martinpitt@gnome.org>
 
- gi/_gobject/pygobject.c | 130
- +++++++++++++++++++++++++++++++++++++++++++++---
- tests/test_gobject.py   |  59 ++++++++++++++++++++++
+ gi/_gobject/pygobject.c |  130
+ ++++++++++++++++++++++++++++++++++++++++++++---
+ tests/test_gobject.py   |   59 +++++++++++++++++++++
  2 files changed, 181 insertions(+), 8 deletions(-)
 
 commit 07a08b49aae83a297e2f91240448314e4663f724
@@ -2704,8 +2607,8 @@ Date:   Mon May 14 15:31:14 2012 +0200
 
     Co-Authored-by: Martin Pitt <martinpitt@gnome.org>
 
- gi/types.py      |  6 +++---
- tests/test_gi.py | 27 +++++++++++++++++++++++++++
+ gi/types.py      |    6 +++---
+ tests/test_gi.py |   27 +++++++++++++++++++++++++++
  2 files changed, 30 insertions(+), 3 deletions(-)
 
 commit b965ee15bac6cd28d16d32205d96d2b1bdd3f0e1
@@ -2716,7 +2619,7 @@ Date:   Fri Jun 1 08:18:40 2012 +0200
 
     The pep8 check failed on this.
 
- tests/test_properties.py | 2 +-
+ tests/test_properties.py |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 274d60a7c08d74a299f4b83d8054c00eadb4bdbd
@@ -2731,8 +2634,8 @@ Date:   Wed May 30 16:45:53 2012 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=677124
 
- gi/pygi-cache.c  | 13 ++++---------
- tests/test_gi.py |  3 +++
+ gi/pygi-cache.c  |   13 ++++---------
+ tests/test_gi.py |    3 +++
  2 files changed, 7 insertions(+), 9 deletions(-)
 
 commit 62c2e962a225ec2527aa3d7406aa0dae232a0886
@@ -2743,7 +2646,7 @@ Date:   Fri May 25 17:09:55 2012 -0400
 
     libregress now needs cairo-gobject
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 9477f0f2f17a6d9b97e5ee08378bc009b8d4c30a
@@ -2752,7 +2655,7 @@ Date:   Mon May 14 15:48:34 2012 +0200
 
     Fix comment in previous commit
 
- tests/test_gobject.py | 2 +-
+ tests/test_gobject.py |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 6610428394d0c65987de5021bf2c38641cdb7116
@@ -2784,9 +2687,9 @@ Date:   Tue May 8 20:04:09 2012 -0700
 
     Signed-off-by: Martin Pitt <martinpitt@gnome.org>
 
- gi/_gobject/pygobject.c | 104
- +++++++++++++++++++++++++++++++++++++++++++++++-
- tests/test_gobject.py   |  90 +++++++++++++++++++++++++++++++++++++++++
+ gi/_gobject/pygobject.c |  104
+ ++++++++++++++++++++++++++++++++++++++++++++++-
+ tests/test_gobject.py   |   90 ++++++++++++++++++++++++++++++++++++++++
  2 files changed, 193 insertions(+), 1 deletion(-)
 
 commit 88babe7377402f6e6f912a8b83615aab848eae81
@@ -2799,8 +2702,8 @@ Date:   Fri May 11 19:08:47 2012 -0300
 
     Signed-off-by: Martin Pitt <martinpitt@gnome.org>
 
- gi/pygtkcompat.py         | 5 ++---
- tests/test_pygtkcompat.py | 1 +
+ gi/pygtkcompat.py         |    5 ++---
+ tests/test_pygtkcompat.py |    1 +
  2 files changed, 3 insertions(+), 3 deletions(-)
 
 commit 3f712b56397296bca2f5358cd52977b1a2011964
@@ -2813,8 +2716,8 @@ Date:   Fri May 11 12:39:05 2012 -0300
 
     Signed-off-by: Martin Pitt <martinpitt@gnome.org>
 
- gi/overrides/Gtk.py     | 16 ++++++++++++----
- tests/test_overrides.py |  9 +++++++++
+ gi/overrides/Gtk.py     |   16 ++++++++++++----
+ tests/test_overrides.py |    9 +++++++++
  2 files changed, 21 insertions(+), 4 deletions(-)
 
 commit 9a1a07742ec0b1821d469603f9996a2b7d832f40
@@ -2830,9 +2733,10 @@ Date:   Sun May 6 18:10:39 2012 -0700
 
     Signed-off-by: Martin Pitt <martinpitt@gnome.org>
 
- gi/overrides/Gdk.py     | 44 ++++++++++++++++++++++++++++++++++++++++++++
- tests/Makefile.am       |  2 +-
- tests/test_overrides.py | 17 +++++++++++++++++
+ gi/overrides/Gdk.py     |   44
+ ++++++++++++++++++++++++++++++++++++++++++++
+ tests/Makefile.am       |    2 +-
+ tests/test_overrides.py |   17 +++++++++++++++++
  3 files changed, 62 insertions(+), 1 deletion(-)
 
 commit d9608c332d9592f03545b110cfac8105453ea035
@@ -2851,9 +2755,9 @@ Date:   Sat May 5 12:42:42 2012 -0700
 
     https://bugzilla.gnome.org/show_bug.cgi?id=656554
 
- gi/_gobject/pygtype.c    | 47
- +++++++++++++++++++++++++++++++++++++++++++++--
- tests/test_everything.py | 16 ++++++++++++----
+ gi/_gobject/pygtype.c    |   47
+ ++++++++++++++++++++++++++++++++++++++++++++--
+ tests/test_everything.py |   16 ++++++++++++----
  2 files changed, 57 insertions(+), 6 deletions(-)
 
 commit e7a909c16dc1c625ab11e270f23d540f15c71767
@@ -2862,7 +2766,7 @@ Date:   Mon May 7 10:33:40 2012 -0300
 
     Require gobject-introspection 1.33.0
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 9e8239684433631e0d1650d25416e4d7bf92a058
@@ -2871,7 +2775,7 @@ Date:   Sun May 6 18:28:23 2012 -0700
 
     NEWS: Add API additions since 3.2.0
 
- NEWS | 7 ++++---
+ NEWS |    7 ++++---
  1 file changed, 4 insertions(+), 3 deletions(-)
 
 commit d1a2bf51eb25b54028fbf496d20dfad9546bcb5e
@@ -2880,7 +2784,7 @@ Date:   Sun May 6 18:25:23 2012 -0700
 
     NEWS: Mark API changes since 3.2.0
 
- NEWS | 6 +++---
+ NEWS |    6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)
 
 commit a3329539291bd8ea9aa6cb184a05ea7c21f8885a
@@ -2893,7 +2797,7 @@ Date:   Sun May 6 18:19:35 2012 -0700
     string check
     to work with both Python 2 and 3.
 
- gi/pygi-argument.c | 42 +++++++++---------------------------------
+ gi/pygi-argument.c |   42 +++++++++---------------------------------
  1 file changed, 9 insertions(+), 33 deletions(-)
 
 commit 42c717ed77613e02f3c8ef2685bc071462b87d73
@@ -2904,7 +2808,7 @@ Date:   Sun May 6 18:08:57 2012 -0700
 
     Was missing a space around operator, causing the PEP8 check to fail.
 
- gi/pygtkcompat.py | 2 +-
+ gi/pygtkcompat.py |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 168a08753cec1ff77ccca5d81b9a5fd2af5d3720
@@ -2919,9 +2823,9 @@ Date:   Sun May 6 18:02:04 2012 -0700
     will now raise
     a proper TypeError.
 
- gi/pygi-argument.c | 39 +++++++++++++++++++++++++++++++++++++++
- gi/pygi-property.c |  3 +++
- tests/test_gi.py   | 40 ++++++++++++++++++++++++++++++++++++++++
+ gi/pygi-argument.c |   39 +++++++++++++++++++++++++++++++++++++++
+ gi/pygi-property.c |    3 +++
+ tests/test_gi.py   |   40 ++++++++++++++++++++++++++++++++++++++++
  3 files changed, 82 insertions(+)
 
 commit 5948b62ba3e08ea943e6965ee38c94c363186226
@@ -2936,7 +2840,7 @@ Date:   Sun May 6 17:59:57 2012 -0700
     object from
     that, so we need to scale to 0..65535 and round to int.
 
- gi/pygtkcompat.py | 6 +++---
+ gi/pygtkcompat.py |    6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)
 
 commit 6af74c501bc604559f8b5b4e0d856d022ed882bb
@@ -2945,7 +2849,7 @@ Date:   Sun May 6 06:02:31 2012 -0700
 
     test_gi: Check setting properties in constructor
 
- tests/test_gi.py | 33 +++++++++++++++++++++++++++++++++
+ tests/test_gi.py |   33 +++++++++++++++++++++++++++++++++
  1 file changed, 33 insertions(+)
 
 commit 9f50fd214e4214f83959b2883a0c667f7f157c97
@@ -2954,8 +2858,8 @@ Date:   Sun May 6 05:50:00 2012 -0700
 
     Support getting and setting GStrv properties
 
- gi/pygi-property.c | 36 ++++++++++++++++++++++++++++++++++++
- tests/test_gi.py   | 11 +++++++++++
+ gi/pygi-property.c |   36 ++++++++++++++++++++++++++++++++++++
+ tests/test_gi.py   |   11 +++++++++++
  2 files changed, 47 insertions(+)
 
 commit 8321af2c7df499291e664c676376f149a0c3dcac
@@ -2964,9 +2868,9 @@ Date:   Sat May 5 13:58:29 2012 -0700
 
     Support defining GStrv properties from Python
 
- gi/_gobject/propertyhelper.py | 10 ++++++--
- tests/test_properties.py      | 58
- +++++++++++++++++++++++++++++++++++++++++--
+ gi/_gobject/propertyhelper.py |   10 +++++--
+ tests/test_properties.py      |   58
+ +++++++++++++++++++++++++++++++++++++++--
  2 files changed, 64 insertions(+), 4 deletions(-)
 
 commit f2494526e1c579c41babfe7ff67deef0f6966adf
@@ -2975,10 +2879,10 @@ Date:   Sat May 5 13:21:20 2012 -0700
 
     Add GObject.TYPE_STRV constant
 
- gi/_gobject/__init__.py  | 1 +
- gi/_gobject/constants.py | 1 +
- tests/test_everything.py | 2 +-
- tests/test_signal.py     | 2 +-
+ gi/_gobject/__init__.py  |    1 +
+ gi/_gobject/constants.py |    1 +
+ tests/test_everything.py |    2 +-
+ tests/test_signal.py     |    2 +-
  4 files changed, 4 insertions(+), 2 deletions(-)
 
 commit 8c7306e4d6355ca45f8f1b4adf7d0595b4e8bcf8
@@ -2989,7 +2893,7 @@ Date:   Sat May 5 09:28:36 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=675472
 
- gi/overrides/GLib.py | 3 +++
+ gi/overrides/GLib.py |    3 +++
  1 file changed, 3 insertions(+)
 
 commit d6c091d87c86c8ccc7cb54347fbceccedac61633
@@ -3005,7 +2909,7 @@ Date:   Sat May 5 09:23:55 2012 +0200
     Actually do what they mean to do now and call the corresponding
     GIMarshallingTests methods.
 
- tests/test_gi.py | 4 ++--
+ tests/test_gi.py |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit fda8a069d503e63c76a6b1ba285a181822549059
@@ -3018,8 +2922,8 @@ Date:   Sat May 5 08:52:41 2012 +0200
 
     Signed-off-by: Martin Pitt <martinpitt@gnome.org>
 
- gi/pygtkcompat.py         | 20 ++++++++++++++++++++
- tests/test_pygtkcompat.py |  8 ++++++++
+ gi/pygtkcompat.py         |   20 ++++++++++++++++++++
+ tests/test_pygtkcompat.py |    8 ++++++++
  2 files changed, 28 insertions(+)
 
 commit 2b49c5f58bb841de7a9077eeeaf996eb9851dab3
@@ -3032,7 +2936,7 @@ Date:   Mon Apr 30 13:44:19 2012 -0300
 
     Signed-off-by: Martin Pitt <martinpitt@gnome.org>
 
- gi/pygtkcompat.py | 14 ++++++++++++++
+ gi/pygtkcompat.py |   14 ++++++++++++++
  1 file changed, 14 insertions(+)
 
 commit 16fbb17a9fd17eeb9f886af99e89a214d328dae1
@@ -3050,8 +2954,8 @@ Date:   Thu May 3 12:25:04 2012 +0200
     byte array
     instead.
 
- tests/test_gi.py        | 2 +-
- tests/test_overrides.py | 2 +-
+ tests/test_gi.py        |    2 +-
+ tests/test_overrides.py |    2 +-
  2 files changed, 2 insertions(+), 2 deletions(-)
 
 commit fd7f8eefbe8aba0b29d80e3eb9d985d33a268c8a
@@ -3069,9 +2973,9 @@ Date:   Thu May 3 09:38:56 2012 +0200
     Python
     module, which we do not have when building without cairo support.
 
- configure.ac             | 3 +++
- tests/Makefile.am        | 4 ++--
- tests/test_everything.py | 8 +++++++-
+ configure.ac             |    3 +++
+ tests/Makefile.am        |    4 ++--
+ tests/test_everything.py |    8 +++++++-
  3 files changed, 12 insertions(+), 3 deletions(-)
 
 commit 1c5634e6d98c8b67b37a2747951c66f5d8f1907d
@@ -3083,9 +2987,9 @@ Date:   Thu May 3 09:28:51 2012 +0200
     assertAlmostEquals → assertAlmostEqual
     assertNotEquals → assertNotEqual
 
- tests/test_everything.py |  4 ++--
- tests/test_gi.py         | 12 ++++++------
- tests/test_overrides.py  | 10 +++++-----
+ tests/test_everything.py |    4 ++--
+ tests/test_gi.py         |   12 ++++++------
+ tests/test_overrides.py  |   10 +++++-----
  3 files changed, 13 insertions(+), 13 deletions(-)
 
 commit 07f312e66c07357168098d3f96813d2c997e8dc7
@@ -3099,7 +3003,7 @@ Date:   Wed May 2 12:08:19 2012 +0200
     a few edge
     cases.
 
- tests/Makefile.am | 1 +
+ tests/Makefile.am |    1 +
  1 file changed, 1 insertion(+)
 
 commit b0740d386c2cbbd153878209b584b568968e4d98
@@ -3108,7 +3012,7 @@ Date:   Mon Apr 30 16:26:57 2012 +0200
 
     configure.ac: Post-release bump to 3.3.2
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit d3977266faadacd3d05705497c1cf51a01a6606f
@@ -3117,7 +3021,7 @@ Date:   Mon Apr 30 16:08:09 2012 +0200
 
     Release 3.3.1
 
- NEWS | 66
+ NEWS |   66
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 66 insertions(+)
 
@@ -3136,7 +3040,7 @@ Date:   Sun Apr 29 23:55:15 2012 +0200
 
     Signed-off-by: Martin Pitt <martinpitt@gnome.org>
 
- gi/overrides/Gio.py | 4 ++--
+ gi/overrides/Gio.py |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit 592c67482c254f65817c1a1b5c5de5dfcaab31b4
@@ -3149,8 +3053,8 @@ Date:   Sun Apr 29 12:56:50 2012 -0300
 
     Signed-off-by: Martin Pitt <martinpitt@gnome.org>
 
- gi/pygtkcompat.py         | 2 +-
- tests/test_pygtkcompat.py | 4 ++++
+ gi/pygtkcompat.py         |    2 +-
+ tests/test_pygtkcompat.py |    4 ++++
  2 files changed, 5 insertions(+), 1 deletion(-)
 
 commit 3551462a429ef30274fa01fc8111da5025f9c342
@@ -3165,7 +3069,7 @@ Date:   Sun Apr 29 20:17:47 2012 +0200
 
     Do include bug numbers from now on, as they are very useful.
 
- Makefile.am | 12 ++++++++++--
+ Makefile.am |   12 ++++++++++--
  1 file changed, 10 insertions(+), 2 deletions(-)
 
 commit fe79ef612a7853f024b73c7997b8ec89015ae94c
@@ -3176,8 +3080,8 @@ Date:   Wed Apr 25 13:07:59 2012 +0200
 
     Similar to "check.gdb", but invokes nemiver.
 
- Makefile.am       | 3 +++
- tests/Makefile.am | 3 +++
+ Makefile.am       |    3 +++
+ tests/Makefile.am |    3 +++
  2 files changed, 6 insertions(+)
 
 commit 3090cc70a7ce8df38dd6cf6c17350417a7367c0b
@@ -3188,7 +3092,7 @@ Date:   Tue Apr 24 13:24:00 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=637466
 
- tests/test_everything.py | 18 ++++++++++++------
+ tests/test_everything.py |   18 ++++++++++++------
  1 file changed, 12 insertions(+), 6 deletions(-)
 
 commit 88d189ec3e3d900a96496a50c1d6e76615b19558
@@ -3204,7 +3108,7 @@ Date:   Tue Apr 24 13:03:36 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=666636
 
- tests/test_everything.py | 24 +++++++++++++-----------
+ tests/test_everything.py |   24 +++++++++++++-----------
  1 file changed, 13 insertions(+), 11 deletions(-)
 
 commit 8ee21619b3cfc179cf114813478470d9aa3f6fb8
@@ -3225,9 +3129,10 @@ Date:   Mon Apr 23 12:33:09 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=661709
 
- gi/pygi-marshal-from-py.c | 18 ++++++++++++++----
- tests/Makefile.am         |  1 +
- tests/test_atoms.py       | 41 +++++++++++++++++++++++++++++++++++++++++
+ gi/pygi-marshal-from-py.c |   18 ++++++++++++++----
+ tests/Makefile.am         |    1 +
+ tests/test_atoms.py       |   41
+ +++++++++++++++++++++++++++++++++++++++++
  3 files changed, 56 insertions(+), 4 deletions(-)
 
 commit b9f24b4fbc2ca9f9b94b86f029c59b2fc3e8590f
@@ -3238,7 +3143,7 @@ Date:   Mon Apr 23 20:09:43 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=667954
 
- tests/test_gdbus.py | 2 +-
+ tests/test_gdbus.py |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 3ae38d7519524288a57e5d522954b9d6725f0185
@@ -3253,7 +3158,7 @@ Date:   Mon Apr 23 18:47:34 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=674475
 
- tests/test_overrides.py | 31 +++++++++++++++++++++++++++++++
+ tests/test_overrides.py |   31 +++++++++++++++++++++++++++++++
  1 file changed, 31 insertions(+)
 
 commit c12b10ca0feaaf61f23354c7b6631a9ef3635c36
@@ -3268,8 +3173,8 @@ Date:   Mon Apr 23 17:40:23 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=660018
 
- gi/overrides/Gtk.py     | 34 ++++++++++++++++++----------------
- tests/test_overrides.py |  6 ++++++
+ gi/overrides/Gtk.py     |   34 ++++++++++++++++++----------------
+ tests/test_overrides.py |    6 ++++++
  2 files changed, 24 insertions(+), 16 deletions(-)
 
 commit d37680bb9390426f7f58ea3d352c3e5e2106e978
@@ -3282,8 +3187,8 @@ Date:   Mon Apr 23 15:24:04 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=660018
 
- gi/overrides/Gtk.py     | 6 ++++++
- tests/test_overrides.py | 4 ++++
+ gi/overrides/Gtk.py     |    6 ++++++
+ tests/test_overrides.py |    4 ++++
  2 files changed, 10 insertions(+)
 
 commit e03284f852f0e404cc91374f3e2e42b0ac1977b4
@@ -3298,7 +3203,7 @@ Date:   Sun Apr 22 16:45:06 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=652860
 
- pygi-convert.sh | 3 ---
+ pygi-convert.sh |    3 ---
  1 file changed, 3 deletions(-)
 
 commit f82eca6006dec21624796074af8ffe9b2256f7a4
@@ -3307,14 +3212,14 @@ Date:   Sat Apr 21 14:00:50 2012 +0200
 
     tests: Replace deprecated assertEquals() with assertEqual()
 
- tests/test_everything.py  | 144 ++++++-------
- tests/test_gi.py          | 502
- +++++++++++++++++++++++-----------------------
- tests/test_gobject.py     |  58 +++---
- tests/test_option.py      |   6 +-
- tests/test_overrides.py   | 352 ++++++++++++++++----------------
- tests/test_properties.py  |  18 +-
- tests/test_pygtkcompat.py |  42 ++--
+ tests/test_everything.py  |  144 ++++++-------
+ tests/test_gi.py          |  502
+ ++++++++++++++++++++++-----------------------
+ tests/test_gobject.py     |   58 +++---
+ tests/test_option.py      |    6 +-
+ tests/test_overrides.py   |  352 +++++++++++++++----------------
+ tests/test_properties.py  |   18 +-
+ tests/test_pygtkcompat.py |   42 ++--
  7 files changed, 561 insertions(+), 561 deletions(-)
 
 commit ddb0bf01e694585d58af52673a21796e7c9578ea
@@ -3325,7 +3230,7 @@ Date:   Sat Apr 21 12:02:54 2012 +0200
 
     Fixes https://bugzilla.gnome.org/show_bug.cgi?id=642754
 
- gi/pygi-info.c | 1 +
+ gi/pygi-info.c |    1 +
  1 file changed, 1 insertion(+)
 
 commit 9c48a561c5ee010410df7d6e430353b41d5fbd88
@@ -3343,9 +3248,9 @@ Date:   Thu Apr 12 20:30:05 2012 +0200
 
     Signed-off-by: Martin Pitt <martinpitt@gnome.org>
 
- gi/pygi-cache.c           | 4 +++-
- gi/pygi-marshal-cleanup.c | 4 ++--
- tests/test_gi.py          | 3 +++
+ gi/pygi-cache.c           |    4 +++-
+ gi/pygi-marshal-cleanup.c |    4 ++--
+ tests/test_gi.py          |    3 +++
  3 files changed, 8 insertions(+), 3 deletions(-)
 
 commit 71246ca0568bf3e9b81e88dd13b6d29e9417e313
@@ -3362,10 +3267,10 @@ Date:   Thu Apr 19 13:11:56 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=674351
 
- gi/_gobject/gobjectmodule.c   |  5 ++++-
- gi/_gobject/propertyhelper.py |  9 ++++++---
- tests/test_properties.py      | 42
- +++++++++++++++++++++++++++++++++++++++---
+ gi/_gobject/gobjectmodule.c   |    5 ++++-
+ gi/_gobject/propertyhelper.py |    9 ++++++---
+ tests/test_properties.py      |   42
+ ++++++++++++++++++++++++++++++++++++++---
  3 files changed, 49 insertions(+), 7 deletions(-)
 
 commit 2158ecd05a2770d6538bae67d01d1f718855a7d4
@@ -3378,7 +3283,7 @@ Date:   Thu Apr 19 16:12:29 2012 +0200
     we test the
     properties of the right object.
 
- tests/test_everything.py | 2 +-
+ tests/test_everything.py |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 84e3471ba4595534cbe6875f1c8b77776e1d1814
@@ -3393,8 +3298,8 @@ Date:   Wed Apr 18 21:44:08 2012 +0200
 
     Signed-off-by: Martin Pitt <martinpitt@gnome.org>
 
- gi/_gobject/pygtype.c    |  9 +++++++--
- tests/test_everything.py | 15 +++++++++++++++
+ gi/_gobject/pygtype.c    |    9 +++++++--
+ tests/test_everything.py |   15 +++++++++++++++
  2 files changed, 22 insertions(+), 2 deletions(-)
 
 commit d1362451e070e156d2f49c9cde930cc38befb12b
@@ -3403,8 +3308,8 @@ Date:   Thu Apr 19 07:27:10 2012 +0200
 
     Add missing GObject.TYPE_GTYPE
 
- gi/_gobject/__init__.py  | 1 +
- gi/_gobject/constants.py | 1 +
+ gi/_gobject/__init__.py  |    1 +
+ gi/_gobject/constants.py |    1 +
  2 files changed, 2 insertions(+)
 
 commit d3225f1540e09719caa73e52d402e946da3add24
@@ -3413,7 +3318,7 @@ Date:   Tue Apr 10 12:44:00 2012 +0200
 
     Fix test_mainloop.py for Python 3
 
- tests/test_mainloop.py | 9 +++++++--
+ tests/test_mainloop.py |    9 +++++++--
  1 file changed, 7 insertions(+), 2 deletions(-)
 
 commit 903283119896f3e054694484da4147788b02ce60
@@ -3433,7 +3338,7 @@ Date:   Mon Apr 9 15:20:39 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=616279
 
- tests/test_everything.py | 16 ++++++++--------
+ tests/test_everything.py |   16 ++++++++--------
  1 file changed, 8 insertions(+), 8 deletions(-)
 
 commit 0fd900d351c8d7d57dc6a1b049ee05f342f6ab1d
@@ -3459,9 +3364,9 @@ Date:   Sun Mar 18 15:59:58 2012 -0700
 
     Signed-off-by: Martin Pitt <martinpitt@gnome.org>
 
- gi/_gobject/pygobject.c | 138 +++++++++++++++++++++++++++++++++++++++---
- tests/test_gobject.py   | 158
- ++++++++++++++++++++++++++++++++++++++++++++++++
+ gi/_gobject/pygobject.c |  138 ++++++++++++++++++++++++++++++++++++++---
+ tests/test_gobject.py   |  158
+ +++++++++++++++++++++++++++++++++++++++++++++++
  2 files changed, 288 insertions(+), 8 deletions(-)
 
 commit c0922589964c1d8bffe5a56d2f56df96eedfac10
@@ -3472,8 +3377,8 @@ Date:   Wed Apr 4 19:08:54 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=620943
 
- gi/_gobject/propertyhelper.py |  9 +++++++--
- tests/test_properties.py      | 28 +++++++++++++++++++++++++++-
+ gi/_gobject/propertyhelper.py |    9 +++++++--
+ tests/test_properties.py      |   28 +++++++++++++++++++++++++++-
  2 files changed, 34 insertions(+), 3 deletions(-)
 
 commit d4054be9de3b7e4ed64c8172ebbde0a697462c79
@@ -3486,8 +3391,8 @@ Date:   Wed Apr 4 17:54:52 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=524719
 
- gi/_glib/pygsource.c | 15 +++++++++++++++
- tests/test_source.py | 24 ++++++++++++++++++++++++
+ gi/_glib/pygsource.c |   15 +++++++++++++++
+ tests/test_source.py |   24 ++++++++++++++++++++++++
  2 files changed, 39 insertions(+)
 
 commit 05030a95a4d3090162ed5f510a26d69bbb152942
@@ -3500,8 +3405,8 @@ Date:   Wed Apr 4 15:59:24 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=646667
 
- gi/overrides/__init__.py |  7 ++++---
- tests/test_overrides.py  | 13 +++++++++++++
+ gi/overrides/__init__.py |    7 ++++---
+ tests/test_overrides.py  |   13 +++++++++++++
  2 files changed, 17 insertions(+), 3 deletions(-)
 
 commit 96f14989baea76fe8692f10c1a37e2dfc45fecbf
@@ -3519,8 +3424,8 @@ Date:   Wed Apr 4 15:30:55 2012 +0200
 
     Co-authored-by: Martin Pitt <martinpitt@gnome.org>
 
- gi/_gobject/pygobject.c |  4 ++++
- tests/test_gobject.py   | 11 +++++++++++
+ gi/_gobject/pygobject.c |    4 ++++
+ tests/test_gobject.py   |   11 +++++++++++
  2 files changed, 15 insertions(+)
 
 commit 24cc09a7105299805fcc5bc151f53ac69958d728
@@ -3536,7 +3441,7 @@ Date:   Wed Feb 9 18:37:33 2011 +0100
 
     Signed-off-by: Martin Pitt <martinpitt@gnome.org>
 
- gi/_gobject/pygobject.c | 40 ----------------------------------------
+ gi/_gobject/pygobject.c |   40 ----------------------------------------
  1 file changed, 40 deletions(-)
 
 commit 2a5a33a9c9c170830c98c2e32fa8dcea3c35f2e6
@@ -3551,7 +3456,7 @@ Date:   Tue Apr 3 22:26:34 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=663068
 
- tests/test_mainloop.py | 25 ++++++++++++++++++++++++-
+ tests/test_mainloop.py |   25 ++++++++++++++++++++++++-
  1 file changed, 24 insertions(+), 1 deletion(-)
 
 commit d03696c1aaa7e66f8f16554cf4a4b97addb5aea1
@@ -3573,22 +3478,22 @@ Date:   Tue Feb 21 15:13:42 2012 +0100
 
     Signed-off-by: Martin Pitt <martinpitt@gnome.org>
 
- gi/Makefile.am                |   2 +
- gi/gimodule.c                 |   1 +
- gi/module.py                  |   5 +++
- gi/pygi-argument.c            |  12 +----
- gi/pygi-cache.c               |  28 ++++++++++--
- gi/pygi-cache.h               |   9 ++--
- gi/pygi-ccallback.c           | 100
- ++++++++++++++++++++++++++++++++++++++++++
- gi/pygi-ccallback.h           |  41 +++++++++++++++++
- gi/pygi-closure.c             |  50 ++++++++++++++++++++-
- gi/pygi-invoke-state-struct.h |   2 +
- gi/pygi-invoke.c              |  73 ++++++++++++++++++++----------
- gi/pygi-invoke.h              |   3 ++
- gi/pygi-private.h             |   1 +
- gi/pygi.h                     |  10 +++++
- tests/test_gi.py              |  16 +++++++
+ gi/Makefile.am                |    2 +
+ gi/gimodule.c                 |    1 +
+ gi/module.py                  |    5 +++
+ gi/pygi-argument.c            |   12 +----
+ gi/pygi-cache.c               |   28 ++++++++++--
+ gi/pygi-cache.h               |    9 ++--
+ gi/pygi-ccallback.c           |  100
+ +++++++++++++++++++++++++++++++++++++++++
+ gi/pygi-ccallback.h           |   41 +++++++++++++++++
+ gi/pygi-closure.c             |   50 ++++++++++++++++++++-
+ gi/pygi-invoke-state-struct.h |    2 +
+ gi/pygi-invoke.c              |   73 +++++++++++++++++++++---------
+ gi/pygi-invoke.h              |    3 ++
+ gi/pygi-private.h             |    1 +
+ gi/pygi.h                     |   10 +++++
+ tests/test_gi.py              |   16 +++++++
  15 files changed, 312 insertions(+), 41 deletions(-)
 
 commit db7e1d078db16b6f11dee51aa97525c451346632
@@ -3601,7 +3506,7 @@ Date:   Tue Mar 27 17:34:48 2012 +0200
 
     Signed-off-by: Martin Pitt <martinpitt@gnome.org>
 
- tests/test_everything.py | 19 +++++++++++++++++++
+ tests/test_everything.py |   19 +++++++++++++++++++
  1 file changed, 19 insertions(+)
 
 commit 7c0017c30129a8db391f902ed592782200d69c64
@@ -3614,7 +3519,7 @@ Date:   Mon Mar 26 17:55:41 2012 +0200
     released. So
     continue with 3.3.x on master.
 
- configure.ac | 4 ++--
+ configure.ac |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit 8309f305e5ce508fc5f6411c8153bea2cee5f741
@@ -3628,8 +3533,8 @@ Date:   Mon Mar 26 17:51:37 2012 +0200
     - Ignore *.pyc files.
     - Do not ignore .gitignore, we actually want to track this.
 
- .gitignore | 61
- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ .gitignore |   61
+ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 61 insertions(+)
 
 commit 81de788a72b40acd2f857718d78bdeea01d12eb1
@@ -3644,13 +3549,13 @@ Date:   Mon Mar 26 17:45:08 2012 +0200
     - "make clean" should remove *.pyc files
     - tests/runtests.py: Look for tests in srcdir, not in builddir
 
- Makefile.am               |  6 ++++--
- gi/Makefile.am            | 13 +++++++++++--
- gi/_glib/Makefile.am      | 12 ++++++++++--
- gi/_gobject/Makefile.am   | 12 ++++++++++--
- gi/overrides/Makefile.am  | 10 ++++++++++
- gi/repository/Makefile.am | 11 +++++++++++
- tests/runtests.py         |  6 ++++--
+ Makefile.am               |    6 ++++--
+ gi/Makefile.am            |   13 +++++++++++--
+ gi/_glib/Makefile.am      |   12 ++++++++++--
+ gi/_gobject/Makefile.am   |   12 ++++++++++--
+ gi/overrides/Makefile.am  |   10 ++++++++++
+ gi/repository/Makefile.am |   11 +++++++++++
+ tests/runtests.py         |    6 ++++--
  7 files changed, 60 insertions(+), 10 deletions(-)
 
 commit f83d95e6fff572bda659a48e309b4524dafa4e83
@@ -3664,7 +3569,7 @@ Date:   Thu Mar 22 11:14:03 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=672627
 
- tests/Makefile.am | 9 ++++-----
+ tests/Makefile.am |    9 ++++-----
  1 file changed, 4 insertions(+), 5 deletions(-)
 
 commit d1f5474c6c50163aefe660e0689dc7f30e6cd48b
@@ -3675,14 +3580,14 @@ Date:   Thu Mar 22 10:56:59 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=672627
 
- demos/gtk-demo/demos/Icon View/iconviewedit.py |  7 +++----
- demos/gtk-demo/demos/Tree View/liststore.py    | 28
- +++++++++++++-------------
- demos/gtk-demo/demos/appwindow.py              | 10 ++++-----
- demos/gtk-demo/demos/rotatedtext.py            |  2 +-
- examples/cairo-demo.py                         |  4 ++--
- tests/test_gi.py                               | 12 +++++------
- tests/test_overrides.py                        |  2 +-
+ demos/gtk-demo/demos/Icon View/iconviewedit.py |    7 +++---
+ demos/gtk-demo/demos/Tree View/liststore.py    |   28
+ ++++++++++++------------
+ demos/gtk-demo/demos/appwindow.py              |   10 ++++-----
+ demos/gtk-demo/demos/rotatedtext.py            |    2 +-
+ examples/cairo-demo.py                         |    4 ++--
+ tests/test_gi.py                               |   12 +++++-----
+ tests/test_overrides.py                        |    2 +-
  7 files changed, 32 insertions(+), 33 deletions(-)
 
 commit 032fcce2bf6070a9001cbb780e90403051e303b1
@@ -3693,16 +3598,16 @@ Date:   Thu Mar 22 10:56:03 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=672627
 
- demos/gtk-demo/demos/drawingarea.py |  6 +++---
- demos/gtk-demo/demos/images.py      | 10 +++++-----
- demos/gtk-demo/demos/rotatedtext.py |  2 +-
- gi/__init__.py                      |  2 +-
- gi/_glib/option.py                  |  2 +-
- gi/_gobject/__init__.py             |  2 +-
- gi/overrides/GLib.py                | 12 ++++++------
- gi/types.py                         |  4 ++--
- tests/runtests.py                   |  2 +-
- tests/test_gdbus.py                 |  4 ++--
+ demos/gtk-demo/demos/drawingarea.py |    6 +++---
+ demos/gtk-demo/demos/images.py      |   10 +++++-----
+ demos/gtk-demo/demos/rotatedtext.py |    2 +-
+ gi/__init__.py                      |    2 +-
+ gi/_glib/option.py                  |    2 +-
+ gi/_gobject/__init__.py             |    2 +-
+ gi/overrides/GLib.py                |   12 ++++++------
+ gi/types.py                         |    4 ++--
+ tests/runtests.py                   |    2 +-
+ tests/test_gdbus.py                 |    4 ++--
  10 files changed, 23 insertions(+), 23 deletions(-)
 
 commit 6a58edbf11c612e9a14347b1556d1e0dd2ec1823
@@ -3713,11 +3618,12 @@ Date:   Thu Mar 22 10:52:05 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=672627
 
- demos/gtk-demo/demos/Tree View/liststore.py |  2 +-
- demos/gtk-demo/demos/appwindow.py           |  2 +-
- tests/test_everything.py                    | 23 +++++++++--------------
- tests/test_gi.py                            |  2 +-
- tests/test_overrides.py                     |  2 +-
+ demos/gtk-demo/demos/Tree View/liststore.py |    2 +-
+ demos/gtk-demo/demos/appwindow.py           |    2 +-
+ tests/test_everything.py                    |   23
+ +++++++++--------------
+ tests/test_gi.py                            |    2 +-
+ tests/test_overrides.py                     |    2 +-
  5 files changed, 13 insertions(+), 18 deletions(-)
 
 commit a8d361e66b2a0e09cfa5dbade4725074b0cc2fd1
@@ -3728,7 +3634,7 @@ Date:   Thu Mar 22 10:49:52 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=672627
 
- tests/test_overrides.py | 2 +-
+ tests/test_overrides.py |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 2b8eb9fa5b9ca454d7130b3eec15a982fee1bdc9
@@ -3739,8 +3645,8 @@ Date:   Thu Mar 22 10:49:27 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=672627
 
- demos/gtk-demo/demos/rotatedtext.py | 1 -
- tests/test_overrides.py             | 1 -
+ demos/gtk-demo/demos/rotatedtext.py |    1 -
+ tests/test_overrides.py             |    1 -
  2 files changed, 2 deletions(-)
 
 commit 03e597cb8f3b075efae556ee51a598695a883ad3
@@ -3751,12 +3657,12 @@ Date:   Thu Mar 22 10:48:59 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=672627
 
- demos/gtk-demo/demos/images.py |  2 +-
- examples/cairo-demo.py         |  8 ++++----
- tests/test_gi.py               |  4 ++--
- tests/test_overrides.py        |  8 ++++----
- tests/test_properties.py       | 14 +++++++-------
- tests/test_signal.py           |  2 +-
+ demos/gtk-demo/demos/images.py |    2 +-
+ examples/cairo-demo.py         |    8 ++++----
+ tests/test_gi.py               |    4 ++--
+ tests/test_overrides.py        |    8 ++++----
+ tests/test_properties.py       |   14 +++++++-------
+ tests/test_signal.py           |    2 +-
  6 files changed, 19 insertions(+), 19 deletions(-)
 
 commit 21aeb19107b718293116e51ecd6479d4d7198b8f
@@ -3767,23 +3673,23 @@ Date:   Thu Mar 22 10:46:17 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=672627
 
- demos/gtk-demo/demos/Entry/entry_buffer.py     |  2 +-
- demos/gtk-demo/demos/Entry/entry_completion.py |  2 +-
- demos/gtk-demo/demos/Entry/search_entry.py     | 12 ++---
- demos/gtk-demo/demos/Icon View/iconviewedit.py |  4 +-
- demos/gtk-demo/demos/Tree View/liststore.py    |  2 +-
- demos/gtk-demo/demos/dialogs.py                | 12 ++---
- demos/gtk-demo/demos/pickers.py                |  8 ++--
- demos/gtk-demo/demos/pixbuf.py                 |  4 +-
- demos/gtk-demo/demos/printing.py               |  8 ++--
- demos/gtk-demo/demos/rotatedtext.py            |  2 +-
- demos/gtk-demo/gtk-demo.py                     |  4 +-
- gi/module.py                                   |  4 +-
- gi/overrides/Pango.py                          |  2 +-
- gi/pygtkcompat.py                              |  4 +-
- tests/test_everything.py                       |  4 +-
- tests/test_overrides.py                        | 62
- +++++++++++++-------------
+ demos/gtk-demo/demos/Entry/entry_buffer.py     |    2 +-
+ demos/gtk-demo/demos/Entry/entry_completion.py |    2 +-
+ demos/gtk-demo/demos/Entry/search_entry.py     |   12 ++---
+ demos/gtk-demo/demos/Icon View/iconviewedit.py |    4 +-
+ demos/gtk-demo/demos/Tree View/liststore.py    |    2 +-
+ demos/gtk-demo/demos/dialogs.py                |   12 ++---
+ demos/gtk-demo/demos/pickers.py                |    8 +--
+ demos/gtk-demo/demos/pixbuf.py                 |    4 +-
+ demos/gtk-demo/demos/printing.py               |    8 +--
+ demos/gtk-demo/demos/rotatedtext.py            |    2 +-
+ demos/gtk-demo/gtk-demo.py                     |    4 +-
+ gi/module.py                                   |    4 +-
+ gi/overrides/Pango.py                          |    2 +-
+ gi/pygtkcompat.py                              |    4 +-
+ tests/test_everything.py                       |    4 +-
+ tests/test_overrides.py                        |   62
+ ++++++++++++------------
  16 files changed, 68 insertions(+), 68 deletions(-)
 
 commit b04d209930ab01bae6563b0d714aec829739bdc6
@@ -3794,7 +3700,7 @@ Date:   Thu Mar 22 10:40:46 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=672627
 
- tests/test_signal.py | 20 ++++++++++----------
+ tests/test_signal.py |   20 ++++++++++----------
  1 file changed, 10 insertions(+), 10 deletions(-)
 
 commit 725483a5dc36739dc7836716b5d6d48091564bf8
@@ -3805,67 +3711,67 @@ Date:   Thu Mar 22 10:38:59 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=672627
 
- demos/gtk-demo/demos/Entry/entry_buffer.py       |  1 +
- demos/gtk-demo/demos/Entry/entry_completion.py   |  1 +
- demos/gtk-demo/demos/Entry/search_entry.py       |  3 +-
- demos/gtk-demo/demos/Icon View/iconviewbasics.py |  1 +
- demos/gtk-demo/demos/Icon View/iconviewedit.py   |  2 +
- demos/gtk-demo/demos/Tree View/liststore.py      |  3 ++
- demos/gtk-demo/demos/appwindow.py                | 13 +++++-
- demos/gtk-demo/demos/assistant.py                |  1 +
- demos/gtk-demo/demos/builder.py                  |  1 +
- demos/gtk-demo/demos/button_box.py               |  1 +
- demos/gtk-demo/demos/clipboard.py                |  2 +-
- demos/gtk-demo/demos/colorselector.py            |  1 +
- demos/gtk-demo/demos/combobox.py                 |  4 +-
- demos/gtk-demo/demos/dialogs.py                  |  2 +
- demos/gtk-demo/demos/drawingarea.py              |  1 +
- demos/gtk-demo/demos/expander.py                 |  4 +-
- demos/gtk-demo/demos/images.py                   | 10 +++--
- demos/gtk-demo/demos/infobars.py                 |  2 +
- demos/gtk-demo/demos/links.py                    |  2 +
- demos/gtk-demo/demos/menus.py                    |  2 +
- demos/gtk-demo/demos/pickers.py                  |  2 +
- demos/gtk-demo/demos/pixbuf.py                   |  2 +
- demos/gtk-demo/demos/printing.py                 |  5 ++-
- demos/gtk-demo/demos/rotatedtext.py              |  4 +-
- demos/gtk-demo/demos/test.py                     |  1 +
- demos/gtk-demo/gtk-demo.py                       |  9 ++--
- examples/cairo-demo.py                           | 57
- ++++++++++++++----------
- examples/option.py                               |  1 -
- examples/properties.py                           |  1 +
- examples/signal.py                               |  4 ++
- gi/__init__.py                                   |  2 +
- gi/_glib/option.py                               |  4 +-
- gi/_gobject/__init__.py                          |  1 +
- gi/_gobject/propertyhelper.py                    |  5 ++-
- gi/module.py                                     |  3 ++
- gi/overrides/GIMarshallingTests.py               |  2 +
- gi/overrides/GLib.py                             | 12 +++--
- gi/overrides/Gdk.py                              |  9 ++++
- gi/overrides/Gio.py                              |  4 ++
- gi/overrides/Gtk.py                              | 56
- ++++++++++++++++++++---
- gi/overrides/Pango.py                            |  2 +
- gi/overrides/__init__.py                         |  5 ++-
- gi/pygtkcompat.py                                | 16 +++++--
- gi/types.py                                      |  4 ++
- tests/test_everything.py                         | 30 +++++++++----
- tests/test_gdbus.py                              |  1 +
- tests/test_gi.py                                 | 30 +++++++------
- tests/test_gobject.py                            |  3 +-
- tests/test_mainloop.py                           |  1 +
- tests/test_option.py                             |  1 +
- tests/test_overrides.py                          | 55
- ++++++++++++-----------
- tests/test_properties.py                         | 11 ++++-
- tests/test_signal.py                             | 32 ++++++++++++-
- tests/test_source.py                             |  1 +
- tests/test_subprocess.py                         |  1 +
- tests/test_thread.py                             |  1 +
- tests/test_uris.py                               |  1 +
- tests/testmodule.py                              |  1 +
+ demos/gtk-demo/demos/Entry/entry_buffer.py       |    1 +
+ demos/gtk-demo/demos/Entry/entry_completion.py   |    1 +
+ demos/gtk-demo/demos/Entry/search_entry.py       |    3 +-
+ demos/gtk-demo/demos/Icon View/iconviewbasics.py |    1 +
+ demos/gtk-demo/demos/Icon View/iconviewedit.py   |    2 +
+ demos/gtk-demo/demos/Tree View/liststore.py      |    3 ++
+ demos/gtk-demo/demos/appwindow.py                |   13 ++++-
+ demos/gtk-demo/demos/assistant.py                |    1 +
+ demos/gtk-demo/demos/builder.py                  |    1 +
+ demos/gtk-demo/demos/button_box.py               |    1 +
+ demos/gtk-demo/demos/clipboard.py                |    2 +-
+ demos/gtk-demo/demos/colorselector.py            |    1 +
+ demos/gtk-demo/demos/combobox.py                 |    4 +-
+ demos/gtk-demo/demos/dialogs.py                  |    2 +
+ demos/gtk-demo/demos/drawingarea.py              |    1 +
+ demos/gtk-demo/demos/expander.py                 |    4 +-
+ demos/gtk-demo/demos/images.py                   |   10 ++--
+ demos/gtk-demo/demos/infobars.py                 |    2 +
+ demos/gtk-demo/demos/links.py                    |    2 +
+ demos/gtk-demo/demos/menus.py                    |    2 +
+ demos/gtk-demo/demos/pickers.py                  |    2 +
+ demos/gtk-demo/demos/pixbuf.py                   |    2 +
+ demos/gtk-demo/demos/printing.py                 |    5 +-
+ demos/gtk-demo/demos/rotatedtext.py              |    4 +-
+ demos/gtk-demo/demos/test.py                     |    1 +
+ demos/gtk-demo/gtk-demo.py                       |    9 ++--
+ examples/cairo-demo.py                           |   57
+ +++++++++++++---------
+ examples/option.py                               |    1 -
+ examples/properties.py                           |    1 +
+ examples/signal.py                               |    4 ++
+ gi/__init__.py                                   |    2 +
+ gi/_glib/option.py                               |    4 +-
+ gi/_gobject/__init__.py                          |    1 +
+ gi/_gobject/propertyhelper.py                    |    5 +-
+ gi/module.py                                     |    3 ++
+ gi/overrides/GIMarshallingTests.py               |    2 +
+ gi/overrides/GLib.py                             |   12 +++--
+ gi/overrides/Gdk.py                              |    9 ++++
+ gi/overrides/Gio.py                              |    4 ++
+ gi/overrides/Gtk.py                              |   56
+ +++++++++++++++++++--
+ gi/overrides/Pango.py                            |    2 +
+ gi/overrides/__init__.py                         |    5 +-
+ gi/pygtkcompat.py                                |   16 ++++--
+ gi/types.py                                      |    4 ++
+ tests/test_everything.py                         |   30 ++++++++----
+ tests/test_gdbus.py                              |    1 +
+ tests/test_gi.py                                 |   30 ++++++------
+ tests/test_gobject.py                            |    3 +-
+ tests/test_mainloop.py                           |    1 +
+ tests/test_option.py                             |    1 +
+ tests/test_overrides.py                          |   55
+ +++++++++++----------
+ tests/test_properties.py                         |   11 ++++-
+ tests/test_signal.py                             |   32 +++++++++++-
+ tests/test_source.py                             |    1 +
+ tests/test_subprocess.py                         |    1 +
+ tests/test_thread.py                             |    1 +
+ tests/test_uris.py                               |    1 +
+ tests/testmodule.py                              |    1 +
  58 files changed, 326 insertions(+), 111 deletions(-)
 
 commit 917275d4aa81db39ccaca34fa514032fb80a3187
@@ -3876,15 +3782,15 @@ Date:   Thu Mar 22 10:33:29 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=672627
 
- demos/gtk-demo/demos/appwindow.py     |  8 ++++----
- demos/gtk-demo/demos/colorselector.py |  4 ++--
- demos/gtk-demo/gtk-demo.py            | 24 ++++++++++++------------
- examples/option.py                    |  4 ++--
- gi/_glib/option.py                    |  2 +-
- gi/overrides/Gtk.py                   |  2 +-
- tests/test_gi.py                      | 26 +++++++++++++-------------
- tests/test_option.py                  |  2 +-
- tests/test_overrides.py               |  8 ++++----
+ demos/gtk-demo/demos/appwindow.py     |    8 ++++----
+ demos/gtk-demo/demos/colorselector.py |    4 ++--
+ demos/gtk-demo/gtk-demo.py            |   24 ++++++++++++------------
+ examples/option.py                    |    4 ++--
+ gi/_glib/option.py                    |    2 +-
+ gi/overrides/Gtk.py                   |    2 +-
+ tests/test_gi.py                      |   26 +++++++++++++-------------
+ tests/test_option.py                  |    2 +-
+ tests/test_overrides.py               |    8 ++++----
  9 files changed, 40 insertions(+), 40 deletions(-)
 
 commit 0c85656f95d3cb31becff10bbee7faae7b0b875b
@@ -3895,15 +3801,15 @@ Date:   Thu Mar 22 10:28:28 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=672627
 
- demos/gtk-demo/demos/appwindow.py |  4 ++--
- demos/gtk-demo/demos/dialogs.py   | 30 +++++++++++++++---------------
- demos/gtk-demo/demos/links.py     |  2 +-
- demos/gtk-demo/demos/pixbuf.py    |  2 +-
- demos/gtk-demo/demos/printing.py  |  8 ++++----
- gi/overrides/Gtk.py               |  4 ++--
- tests/test_everything.py          | 22 +++++++++++-----------
- tests/test_gi.py                  |  2 +-
- tests/test_overrides.py           |  8 ++++----
+ demos/gtk-demo/demos/appwindow.py |    4 ++--
+ demos/gtk-demo/demos/dialogs.py   |   30 +++++++++++++++---------------
+ demos/gtk-demo/demos/links.py     |    2 +-
+ demos/gtk-demo/demos/pixbuf.py    |    2 +-
+ demos/gtk-demo/demos/printing.py  |    8 ++++----
+ gi/overrides/Gtk.py               |    4 ++--
+ tests/test_everything.py          |   22 +++++++++++-----------
+ tests/test_gi.py                  |    2 +-
+ tests/test_overrides.py           |    8 ++++----
  9 files changed, 41 insertions(+), 41 deletions(-)
 
 commit 32cc594ab6dfbd4843f3db5ec8338d31ad5df6c6
@@ -3915,38 +3821,38 @@ Date:   Thu Mar 22 10:24:40 2012 -0300
     By running the whole source tree via the indent.py script found
     in the Python distribution.
 
- demos/gtk-demo/demos/Entry/search_entry.py     |   4 +-
- demos/gtk-demo/demos/Icon View/iconviewedit.py |  41 +++----
- demos/gtk-demo/demos/Tree View/liststore.py    |   8 +-
- demos/gtk-demo/demos/appwindow.py              |  18 +--
- demos/gtk-demo/demos/dialogs.py                |  26 ++---
- demos/gtk-demo/demos/expander.py               |   6 +-
- demos/gtk-demo/demos/images.py                 |   2 +-
- demos/gtk-demo/demos/links.py                  |   2 +-
- demos/gtk-demo/demos/rotatedtext.py            |  20 ++--
- gi/_glib/option.py                             |   2 +-
- gi/_gobject/constants.py                       |   1 -
- gi/importer.py                                 |   1 -
- gi/module.py                                   |  10 +-
- gi/overrides/GLib.py                           |  11 +-
- gi/overrides/Gdk.py                            |  30 ++---
- gi/overrides/Gio.py                            |   4 +-
- gi/overrides/Gtk.py                            | 150
- ++++++++++++-------------
- gi/overrides/Pango.py                          |   1 -
- gi/overrides/__init__.py                       |  10 +-
- gi/pygtkcompat.py                              |   2 +-
- tests/compathelper.py                          |   2 +-
- tests/runtests.py                              |  19 ++--
- tests/test_everything.py                       |  22 ++--
- tests/test_gdbus.py                            |  11 +-
- tests/test_gi.py                               |  38 +++----
- tests/test_gobject.py                          |   2 +-
- tests/test_interface.py                        |   1 -
- tests/test_option.py                           |   1 -
- tests/test_overrides.py                        |  78 ++++++-------
- tests/test_properties.py                       |   2 +-
- tests/test_uris.py                             |   1 -
+ demos/gtk-demo/demos/Entry/search_entry.py     |    4 +-
+ demos/gtk-demo/demos/Icon View/iconviewedit.py |   41 +++----
+ demos/gtk-demo/demos/Tree View/liststore.py    |    8 +-
+ demos/gtk-demo/demos/appwindow.py              |   18 +--
+ demos/gtk-demo/demos/dialogs.py                |   26 ++--
+ demos/gtk-demo/demos/expander.py               |    6 +-
+ demos/gtk-demo/demos/images.py                 |    2 +-
+ demos/gtk-demo/demos/links.py                  |    2 +-
+ demos/gtk-demo/demos/rotatedtext.py            |   20 ++--
+ gi/_glib/option.py                             |    2 +-
+ gi/_gobject/constants.py                       |    1 -
+ gi/importer.py                                 |    1 -
+ gi/module.py                                   |   10 +-
+ gi/overrides/GLib.py                           |   11 +-
+ gi/overrides/Gdk.py                            |   30 ++---
+ gi/overrides/Gio.py                            |    4 +-
+ gi/overrides/Gtk.py                            |  150
+ ++++++++++++------------
+ gi/overrides/Pango.py                          |    1 -
+ gi/overrides/__init__.py                       |   10 +-
+ gi/pygtkcompat.py                              |    2 +-
+ tests/compathelper.py                          |    2 +-
+ tests/runtests.py                              |   19 ++-
+ tests/test_everything.py                       |   22 ++--
+ tests/test_gdbus.py                            |   11 +-
+ tests/test_gi.py                               |   38 +++---
+ tests/test_gobject.py                          |    2 +-
+ tests/test_interface.py                        |    1 -
+ tests/test_option.py                           |    1 -
+ tests/test_overrides.py                        |   78 ++++++------
+ tests/test_properties.py                       |    2 +-
+ tests/test_uris.py                             |    1 -
  31 files changed, 255 insertions(+), 271 deletions(-)
 
 commit c375e3136f0f48eb8a6717c0053155db088b329d
@@ -3959,12 +3865,12 @@ Date:   Thu Mar 22 10:32:43 2012 +0100
 
     Caught by the previous commit of making deprecations fatal.
 
- tests/test_option.py      | 10 +++----
- tests/test_overrides.py   | 66
- +++++++++++++++++++++++------------------------
- tests/test_properties.py  | 14 +++++-----
- tests/test_pygtkcompat.py | 18 ++++++-------
- tests/test_signal.py      |  4 +--
+ tests/test_option.py      |   10 +++----
+ tests/test_overrides.py   |   66
+ ++++++++++++++++++++++-----------------------
+ tests/test_properties.py  |   14 +++++-----
+ tests/test_pygtkcompat.py |   18 ++++++-------
+ tests/test_signal.py      |    4 +--
  5 files changed, 56 insertions(+), 56 deletions(-)
 
 commit 32525e565cc48454cdacbc44ad3fd751b81cb7e3
@@ -3973,7 +3879,7 @@ Date:   Thu Mar 22 10:31:22 2012 +0100
 
     Fail tests if they use or encounter deprecations
 
- tests/Makefile.am | 2 +-
+ tests/Makefile.am |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 65762243a34af014950527c323a51a29d40fb3e1
@@ -3993,9 +3899,9 @@ Date:   Thu Mar 22 10:15:16 2012 +0100
     to
     tests/runtests.py.
 
- tests/Makefile.am       | 33 ++++++++++++---------------------
- tests/runtests.py       |  7 +++++++
- tests/test_overrides.py |  6 ------
+ tests/Makefile.am       |   33 ++++++++++++---------------------
+ tests/runtests.py       |    7 +++++++
+ tests/test_overrides.py |    6 ------
  3 files changed, 19 insertions(+), 27 deletions(-)
 
 commit 3b4ae83a0ece8e3aed1de5452e2acd32841e629a
@@ -4010,7 +3916,7 @@ Date:   Thu Mar 22 09:58:21 2012 +0100
     import,
     which makes this work again.
 
- tests/test_overrides.py | 9 +++++----
+ tests/test_overrides.py |    9 +++++----
  1 file changed, 5 insertions(+), 4 deletions(-)
 
 commit 927f7877ffa5e16c4cabcecbc05656ee0ec6a167
@@ -4024,8 +3930,8 @@ Date:   Wed Mar 21 21:09:24 2012 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=672589
 
- gi/pygtkcompat.py         | 19 +++++++++++++++++++
- tests/test_pygtkcompat.py | 22 ++++++++++++++++++++++
+ gi/pygtkcompat.py         |   19 +++++++++++++++++++
+ tests/test_pygtkcompat.py |   22 ++++++++++++++++++++++
  2 files changed, 41 insertions(+)
 
 commit b322d6a1f6d44bace4eefb98558cfe94a73a727c
@@ -4036,8 +3942,8 @@ Date:   Wed Mar 21 16:01:35 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=672578
 
- tests/test_everything.py  |  4 ++--
- tests/test_pygtkcompat.py | 18 ++++++++++++++++++
+ tests/test_everything.py  |    4 ++--
+ tests/test_pygtkcompat.py |   18 ++++++++++++++++++
  2 files changed, 20 insertions(+), 2 deletions(-)
 
 commit c8bc6ae10cfe8b2eff4204ec2175907a6eb0585a
@@ -4050,54 +3956,54 @@ Date:   Wed Mar 21 14:45:53 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=672578
 
- demos/gtk-demo/demos/Entry/entry_buffer.py       |   2 +-
- demos/gtk-demo/demos/Entry/entry_completion.py   |   2 +-
- demos/gtk-demo/demos/Entry/search_entry.py       |  12 +-
- demos/gtk-demo/demos/Icon View/iconviewbasics.py |   2 +-
- demos/gtk-demo/demos/Icon View/iconviewedit.py   |   2 +-
- demos/gtk-demo/demos/Tree View/liststore.py      |   3 +-
- demos/gtk-demo/demos/appwindow.py                |  13 +-
- demos/gtk-demo/demos/assistant.py                |   4 +-
- demos/gtk-demo/demos/builder.py                  |   4 +-
- demos/gtk-demo/demos/button_box.py               |   2 +-
- demos/gtk-demo/demos/clipboard.py                |   2 +-
- demos/gtk-demo/demos/colorselector.py            |   2 +-
- demos/gtk-demo/demos/combobox.py                 |   4 +-
- demos/gtk-demo/demos/dialogs.py                  |   4 +-
- demos/gtk-demo/demos/drawingarea.py              |   2 +-
- demos/gtk-demo/demos/expander.py                 |   4 +-
- demos/gtk-demo/demos/images.py                   |   8 +-
- demos/gtk-demo/demos/infobars.py                 |   2 +-
- demos/gtk-demo/demos/links.py                    |   2 +-
- demos/gtk-demo/demos/menus.py                    |   5 +-
- demos/gtk-demo/demos/pickers.py                  |   2 +-
- demos/gtk-demo/demos/pixbuf.py                   |   2 +-
- demos/gtk-demo/demos/printing.py                 |   3 +-
- demos/gtk-demo/demos/rotatedtext.py              |   6 +-
- demos/gtk-demo/gtk-demo.py                       |   9 +-
- examples/cairo-demo.py                           |   2 +-
- gi/__init__.py                                   |   4 +
- gi/_glib/__init__.py                             | 101 ++++++++++-
- gi/_glib/option.py                               |   1 +
- gi/_gobject/__init__.py                          | 203
- ++++++++++++++++++++---
- gi/_gobject/constants.py                         |   2 -
- gi/_gobject/propertyhelper.py                    |   4 +-
- gi/importer.py                                   |   2 +-
- gi/module.py                                     |   1 -
- gi/overrides/Gtk.py                              |   1 -
- gi/overrides/__init__.py                         |   1 -
- gi/pygtkcompat.py                                |   2 +
- gi/types.py                                      |   3 +
- tests/Makefile.am                                |   5 +
- tests/test_everything.py                         |   6 +-
- tests/test_gi.py                                 |   8 +-
- tests/test_option.py                             |  10 +-
- tests/test_overrides.py                          |  30 ++--
- tests/test_properties.py                         |  12 +-
- tests/test_pygtkcompat.py                        |   4 -
- tests/test_signal.py                             |   4 +-
- tests/test_source.py                             |   6 +-
+ demos/gtk-demo/demos/Entry/entry_buffer.py       |    2 +-
+ demos/gtk-demo/demos/Entry/entry_completion.py   |    2 +-
+ demos/gtk-demo/demos/Entry/search_entry.py       |   12 +-
+ demos/gtk-demo/demos/Icon View/iconviewbasics.py |    2 +-
+ demos/gtk-demo/demos/Icon View/iconviewedit.py   |    2 +-
+ demos/gtk-demo/demos/Tree View/liststore.py      |    3 +-
+ demos/gtk-demo/demos/appwindow.py                |   13 +-
+ demos/gtk-demo/demos/assistant.py                |    4 +-
+ demos/gtk-demo/demos/builder.py                  |    4 +-
+ demos/gtk-demo/demos/button_box.py               |    2 +-
+ demos/gtk-demo/demos/clipboard.py                |    2 +-
+ demos/gtk-demo/demos/colorselector.py            |    2 +-
+ demos/gtk-demo/demos/combobox.py                 |    4 +-
+ demos/gtk-demo/demos/dialogs.py                  |    4 +-
+ demos/gtk-demo/demos/drawingarea.py              |    2 +-
+ demos/gtk-demo/demos/expander.py                 |    4 +-
+ demos/gtk-demo/demos/images.py                   |    8 +-
+ demos/gtk-demo/demos/infobars.py                 |    2 +-
+ demos/gtk-demo/demos/links.py                    |    2 +-
+ demos/gtk-demo/demos/menus.py                    |    5 +-
+ demos/gtk-demo/demos/pickers.py                  |    2 +-
+ demos/gtk-demo/demos/pixbuf.py                   |    2 +-
+ demos/gtk-demo/demos/printing.py                 |    3 +-
+ demos/gtk-demo/demos/rotatedtext.py              |    6 +-
+ demos/gtk-demo/gtk-demo.py                       |    9 +-
+ examples/cairo-demo.py                           |    2 +-
+ gi/__init__.py                                   |    4 +
+ gi/_glib/__init__.py                             |  101 ++++++++++-
+ gi/_glib/option.py                               |    1 +
+ gi/_gobject/__init__.py                          |  203
+ +++++++++++++++++++---
+ gi/_gobject/constants.py                         |    2 -
+ gi/_gobject/propertyhelper.py                    |    4 +-
+ gi/importer.py                                   |    2 +-
+ gi/module.py                                     |    1 -
+ gi/overrides/Gtk.py                              |    1 -
+ gi/overrides/__init__.py                         |    1 -
+ gi/pygtkcompat.py                                |    2 +
+ gi/types.py                                      |    3 +
+ tests/Makefile.am                                |    5 +
+ tests/test_everything.py                         |    6 +-
+ tests/test_gi.py                                 |    8 +-
+ tests/test_option.py                             |   10 +-
+ tests/test_overrides.py                          |   30 ++--
+ tests/test_properties.py                         |   12 +-
+ tests/test_pygtkcompat.py                        |    4 -
+ tests/test_signal.py                             |    4 +-
+ tests/test_source.py                             |    6 +-
  47 files changed, 377 insertions(+), 138 deletions(-)
 
 commit 39650906559fcc39b4be406fa7e25c4788d349a3
@@ -4116,10 +4022,10 @@ Date:   Wed Mar 21 16:59:33 2012 +0100
     values).
     For these, warnings/criticals are now explicitly permitted.
 
- tests/runtests.py        |  1 +
- tests/test_gi.py         |  7 ++++++-
- tests/test_overrides.py  | 14 +++++++-------
- tests/test_properties.py | 36 +++++++++++++++++++++---------------
+ tests/runtests.py        |    1 +
+ tests/test_gi.py         |    7 ++++++-
+ tests/test_overrides.py  |   14 +++++++-------
+ tests/test_properties.py |   36 +++++++++++++++++++++---------------
  4 files changed, 35 insertions(+), 23 deletions(-)
 
 commit efcb4b0b32c4dda06c3eeec83802fc0f302f0d27
@@ -4137,8 +4043,8 @@ Date:   Tue Mar 20 14:55:07 2012 +0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=668903
 
- gi/pygi-marshal-from-py.c | 3 ++-
- gi/pygi-marshal-to-py.c   | 3 ++-
+ gi/pygi-marshal-from-py.c |    3 ++-
+ gi/pygi-marshal-to-py.c   |    3 ++-
  2 files changed, 4 insertions(+), 2 deletions(-)
 
 commit 8d85d6639778ec6364235071d272d67e7aae49ae
@@ -4168,8 +4074,8 @@ Date:   Wed Mar 21 14:34:36 2012 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=672463
 
- gi/overrides/Gtk.py     | 26 ++++++++++++++------------
- tests/test_overrides.py |  5 +++++
+ gi/overrides/Gtk.py     |   26 ++++++++++++++------------
+ tests/test_overrides.py |    5 +++++
  2 files changed, 19 insertions(+), 12 deletions(-)
 
 commit 38aecc481741fd3a319a76a0ec8bf5329a483876
@@ -4187,7 +4093,7 @@ Date:   Wed Mar 21 15:21:02 2012 +0100
 
     Fix this by calling close().
 
- tests/test_pygtkcompat.py | 3 ++-
+ tests/test_pygtkcompat.py |    3 ++-
  1 file changed, 2 insertions(+), 1 deletion(-)
 
 commit 5e0e5e72a4436badd09f0aa07f62960afcdca8c6
@@ -4198,7 +4104,7 @@ Date:   Mon Mar 19 16:58:22 2012 +0100
 
     Use 3.1.93 for now, this will most likely become 3.2.0 as it is.
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 88924e399d7ccf7af2e9a78720e0c508cd6080d8
@@ -4207,7 +4113,7 @@ Date:   Mon Mar 19 16:41:17 2012 +0100
 
     Release 3.1.92
 
- NEWS | 46 ++++++++++++++++++++++++++++++++++++++++++++++
+ NEWS |   46 ++++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 46 insertions(+)
 
 commit b41e6139befb984c0b78bcefe2630ab1393b4b40
@@ -4218,8 +4124,8 @@ Date:   Mon Mar 19 16:14:54 2012 +0100
 
     Also update Martin's email address.
 
- README         | 10 ++++++----
- pygobject.doap |  2 +-
+ README         |   10 ++++++----
+ pygobject.doap |    2 +-
  2 files changed, 7 insertions(+), 5 deletions(-)
 
 commit 45e27ba7e447552057a2950fc768c63ff2e6612e
@@ -4228,7 +4134,7 @@ Date:   Mon Mar 19 16:11:22 2012 +0100
 
     Bump version to 3.1.92, in sync with GNOME
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 77d358f8c5f524259249ea686899e3a4da05562e
@@ -4237,7 +4143,7 @@ Date:   Mon Mar 19 11:54:07 2012 -0300
 
     Correct Gtk.TreePath.__iter__ to work with Python 3
 
- gi/overrides/Gtk.py | 2 +-
+ gi/overrides/Gtk.py |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 1f18bcb37bdc42368ad9a07c7f348f736c2f665d
@@ -4246,7 +4152,7 @@ Date:   Mon Mar 19 15:54:13 2012 +0100
 
     Fix pygtkcompat.py to work with Python 3
 
- gi/pygtkcompat.py | 20 +++++++++++++++-----
+ gi/pygtkcompat.py |   20 +++++++++++++++-----
  1 file changed, 15 insertions(+), 5 deletions(-)
 
 commit 96a9f92da801989464fbcedf6d849819f6dbea64
@@ -4261,7 +4167,7 @@ Date:   Mon Mar 19 15:32:22 2012 +0100
     is not
     exactly two at the moment.
 
- tests/test_everything.py | 4 ++--
+ tests/test_everything.py |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit ba00afb1e50759b2b321f16e05a15946053cdafa
@@ -4270,8 +4176,8 @@ Date:   Mon Mar 19 10:58:09 2012 -0300
 
     pygtkcompat: Remove first argument for get_origin()
 
- gi/pygtkcompat.py         | 5 +++++
- tests/test_pygtkcompat.py | 5 +++++
+ gi/pygtkcompat.py         |    5 +++++
+ tests/test_pygtkcompat.py |    5 +++++
  2 files changed, 10 insertions(+)
 
 commit 65499246a862ce6a82bc3b0cc74fe8ff82dde687
@@ -4283,8 +4189,8 @@ Date:   Fri Mar 16 16:08:44 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=672260
 
- gi/overrides/Gtk.py     | 10 ++++++++++
- tests/test_overrides.py | 11 +++++++++++
+ gi/overrides/Gtk.py     |   10 ++++++++++
+ tests/test_overrides.py |   11 +++++++++++
  2 files changed, 21 insertions(+)
 
 commit 43c761d9f35252dcb58b9cf2278016d841eea4ec
@@ -4295,8 +4201,8 @@ Date:   Fri Mar 16 16:08:23 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=672260
 
- gi/overrides/Gtk.py     | 11 +++++++++++
- tests/test_overrides.py |  6 ++++++
+ gi/overrides/Gtk.py     |   11 +++++++++++
+ tests/test_overrides.py |    6 ++++++
  2 files changed, 17 insertions(+)
 
 commit 116d3712251b1b8aa2d4f4a9e40e22f5b9fcbe4f
@@ -4307,8 +4213,8 @@ Date:   Fri Mar 16 16:07:30 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=672260
 
- gi/overrides/Pango.py   | 3 +++
- tests/test_overrides.py | 4 ++++
+ gi/overrides/Pango.py   |    3 +++
+ tests/test_overrides.py |    4 ++++
  2 files changed, 7 insertions(+)
 
 commit a3ca47b086b7fcf084282be788c5d737dde847ac
@@ -4320,8 +4226,8 @@ Date:   Fri Mar 16 16:06:37 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=672260
 
- gi/overrides/Gtk.py     | 15 +++++++++++++++
- tests/test_overrides.py | 14 ++++++++++++++
+ gi/overrides/Gtk.py     |   15 +++++++++++++++
+ tests/test_overrides.py |   14 ++++++++++++++
  2 files changed, 29 insertions(+)
 
 commit 458dab08c78cb730dd95bcd67af20a0d73a3af2f
@@ -4333,8 +4239,8 @@ Date:   Fri Mar 16 16:06:12 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=672260
 
- gi/overrides/Gtk.py     | 10 ++++++++++
- tests/test_overrides.py |  9 ++++++++-
+ gi/overrides/Gtk.py     |   10 ++++++++++
+ tests/test_overrides.py |    9 ++++++++-
  2 files changed, 18 insertions(+), 1 deletion(-)
 
 commit 2f7789a5a1f55ec38c5ff0f96bc5c9023679a333
@@ -4345,8 +4251,8 @@ Date:   Fri Mar 16 16:05:55 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=672260
 
- gi/overrides/Gtk.py     |  3 +++
- tests/test_overrides.py | 11 +++++++++++
+ gi/overrides/Gtk.py     |    3 +++
+ tests/test_overrides.py |   11 +++++++++++
  2 files changed, 14 insertions(+)
 
 commit 2dd9dadd1bd92c3324e9de209ba8205a9d4106d6
@@ -4357,8 +4263,8 @@ Date:   Thu Mar 15 15:22:46 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=672260
 
- gi/overrides/Gtk.py     | 5 +++++
- tests/test_overrides.py | 3 +++
+ gi/overrides/Gtk.py     |    5 +++++
+ tests/test_overrides.py |    3 +++
  2 files changed, 8 insertions(+)
 
 commit bf8c95836e1cc1e1629937cbc69ea3027fb82746
@@ -4388,9 +4294,10 @@ Date:   Thu Mar 15 09:48:10 2012 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=671610
 
- gi/overrides/Gtk.py     | 81
- ++++++++++++++++++++++++++++++-------------------
- tests/test_overrides.py | 74 ++++++++++++++++++++++++++++++++++++++++++++
+ gi/overrides/Gtk.py     |   81
+ +++++++++++++++++++++++++++++------------------
+ tests/test_overrides.py |   74
+ +++++++++++++++++++++++++++++++++++++++++++
  2 files changed, 124 insertions(+), 31 deletions(-)
 
 commit f7db4eaf8148f2dd8bf1718152a1dcae509470c7
@@ -4405,8 +4312,8 @@ Date:   Sun Mar 18 16:07:26 2012 +0100
 
     Signed-off-by: Martin Pitt <martin.pitt@ubuntu.com>
 
- gi/overrides/Gtk.py     | 4 +---
- tests/test_overrides.py | 6 ++++++
+ gi/overrides/Gtk.py     |    4 +---
+ tests/test_overrides.py |    6 ++++++
  2 files changed, 7 insertions(+), 3 deletions(-)
 
 commit 466337cf2fd091738eeab12c10d250a9d0827284
@@ -4415,7 +4322,7 @@ Date:   Fri Mar 16 16:55:47 2012 -0300
 
     Correct bad rebase, remove duplicate Window
 
- gi/overrides/Gtk.py | 7 -------
+ gi/overrides/Gtk.py |    7 -------
  1 file changed, 7 deletions(-)
 
 commit c60d5ee3c88bd8e1c68ea97f079947cf79d5bb7d
@@ -4429,11 +4336,11 @@ Date:   Thu Mar 15 15:42:28 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=653462
 
- gi/Makefile.am            |   3 +-
- gi/pygtkcompat.py         | 421
- ++++++++++++++++++++++++++++++++++++++++++++++
- tests/Makefile.am         |   3 +-
- tests/test_pygtkcompat.py |  77 +++++++++
+ gi/Makefile.am            |    3 +-
+ gi/pygtkcompat.py         |  421
+ +++++++++++++++++++++++++++++++++++++++++++++
+ tests/Makefile.am         |    3 +-
+ tests/test_pygtkcompat.py |   77 +++++++++
  4 files changed, 502 insertions(+), 2 deletions(-)
 
 commit 680a2e04ac4f80ad16e820d3f753519477c988aa
@@ -4448,7 +4355,7 @@ Date:   Wed Mar 14 15:20:53 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=672087
 
- gi/overrides/Gtk.py | 8 +++++++-
+ gi/overrides/Gtk.py |    8 +++++++-
  1 file changed, 7 insertions(+), 1 deletion(-)
 
 commit fbd21ee7176bc1b70547ea464b512c8ffd674187
@@ -4459,8 +4366,8 @@ Date:   Wed Mar 14 17:13:04 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=672093
 
- gi/overrides/Gtk.py     | 3 +++
- tests/test_overrides.py | 2 ++
+ gi/overrides/Gtk.py     |    3 +++
+ tests/test_overrides.py |    2 ++
  2 files changed, 5 insertions(+)
 
 commit a7b08cb75541612c78d123b1d968be7874e3c481
@@ -4471,7 +4378,7 @@ Date:   Wed Mar 14 13:32:31 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=672081
 
- gi/overrides/Gtk.py | 14 ++++++++++++++
+ gi/overrides/Gtk.py |   14 ++++++++++++++
  1 file changed, 14 insertions(+)
 
 commit 02950cabb38b1b3c9378c42c069eefdbccbce17d
@@ -4484,8 +4391,8 @@ Date:   Wed Mar 14 13:31:41 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=672081
 
- gi/overrides/Gtk.py     |  4 ++++
- tests/test_overrides.py | 10 ++++++++++
+ gi/overrides/Gtk.py     |    4 ++++
+ tests/test_overrides.py |   10 ++++++++++
  2 files changed, 14 insertions(+)
 
 commit 7245bd0ae3f6243c79fa8543a0ed1e50e5015844
@@ -4496,7 +4403,7 @@ Date:   Wed Mar 14 13:31:06 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=672081
 
- gi/overrides/Pango.py | 9 +++++++++
+ gi/overrides/Pango.py |    9 +++++++++
  1 file changed, 9 insertions(+)
 
 commit bc1fd8814df6c1e85b586d0fb943c89f7e2b78b5
@@ -4516,7 +4423,7 @@ Date:   Fri Mar 16 13:27:56 2012 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=672224
 
- gi/pygi-marshal-from-py.c | 7 ++++++-
+ gi/pygi-marshal-from-py.c |    7 ++++++-
  1 file changed, 6 insertions(+), 1 deletion(-)
 
 commit a906b7d1947ba905f959d3f738eb6c29b02f96e7
@@ -4535,12 +4442,12 @@ Date:   Fri Mar 16 00:29:31 2012 -0700
 
     Signed-off-by: Martin Pitt <martin.pitt@ubuntu.com>
 
- examples/properties.py        |  6 +--
- gi/_gobject/__init__.py       |  7 ++--
- gi/_gobject/propertyhelper.py | 12 +++---
- tests/test_interface.py       |  4 +-
- tests/test_properties.py      | 94
- +++++++++++++++++++++----------------------
+ examples/properties.py        |    6 +--
+ gi/_gobject/__init__.py       |    7 +--
+ gi/_gobject/propertyhelper.py |   12 +++---
+ tests/test_interface.py       |    4 +-
+ tests/test_properties.py      |   94
+ ++++++++++++++++++++---------------------
  5 files changed, 62 insertions(+), 61 deletions(-)
 
 commit d7d28d717e38c0546529b09b8b571a5cc631c5b5
@@ -4573,9 +4480,9 @@ Date:   Wed Mar 14 22:52:47 2012 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=672065
 
- gi/pygi-marshal-cleanup.c | 19 ++++++++++++++-----
- gi/pygi-marshal-from-py.c | 13 ++++++++++++-
- tests/test_gi.py          |  8 ++++++++
+ gi/pygi-marshal-cleanup.c |   19 ++++++++++++++-----
+ gi/pygi-marshal-from-py.c |   13 ++++++++++++-
+ tests/test_gi.py          |    8 ++++++++
  3 files changed, 34 insertions(+), 6 deletions(-)
 
 commit 27ac9c1de6487035b18ef4511c155d251cb6d39d
@@ -4600,9 +4507,9 @@ Date:   Fri Mar 16 09:59:57 2012 +0100
 
     Signed-off-by: Martin Pitt <martin.pitt@ubuntu.com>
 
- gi/overrides/Gtk.py     | 56
- ++++++++++++++++++++++++-------------------------
- tests/test_overrides.py | 35 +++++++++++++++++++++++++++++--
+ gi/overrides/Gtk.py     |   56
+ +++++++++++++++++++++++------------------------
+ tests/test_overrides.py |   35 +++++++++++++++++++++++++++--
  2 files changed, 61 insertions(+), 30 deletions(-)
 
 commit 77ab27ab8a580d98f76730f075e083e1e870f55e
@@ -4635,10 +4542,10 @@ Date:   Tue Mar 13 01:41:53 2012 -0700
 
     Signed-off-by: Martin Pitt <martin.pitt@ubuntu.com>
 
- gi/_gobject/__init__.py       | 10 ++++----
- gi/_gobject/propertyhelper.py | 59
- +++++++++++++++++++++++++++++++------------
- tests/test_properties.py      | 41 ++++++++++++++++++++++++++++++
+ gi/_gobject/__init__.py       |   10 +++----
+ gi/_gobject/propertyhelper.py |   59
+ ++++++++++++++++++++++++++++++-----------
+ tests/test_properties.py      |   41 ++++++++++++++++++++++++++++
  3 files changed, 89 insertions(+), 21 deletions(-)
 
 commit 174a61fb3149c07dab5cc35e64825922cdefcb95
@@ -4651,7 +4558,7 @@ Date:   Tue Mar 13 17:10:13 2012 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=672045
 
- gi/overrides/Gtk.py | 17 +++++++++++++++++
+ gi/overrides/Gtk.py |   17 +++++++++++++++++
  1 file changed, 17 insertions(+)
 
 commit 7746d2188ac4933c2c9011d84525d1e62fc18953
@@ -4664,9 +4571,9 @@ Date:   Fri Mar 9 12:26:53 2012 +0100
 
     Signed-off-by: Martin Pitt <martin.pitt@ubuntu.com>
 
- gi/pygi-argument.c        | 25 ++++++++++++++++---------
- gi/pygi-marshal-from-py.c | 32 +++++++++++++++++++++++++-------
- gi/pygi-marshal-to-py.c   | 19 +++++++++++++++++++
+ gi/pygi-argument.c        |   25 ++++++++++++++++---------
+ gi/pygi-marshal-from-py.c |   32 +++++++++++++++++++++++++-------
+ gi/pygi-marshal-to-py.c   |   19 +++++++++++++++++++
  3 files changed, 60 insertions(+), 16 deletions(-)
 
 commit 0591cc6f160ae6e9d8c3970934ae105ef340d7d3
@@ -4684,12 +4591,12 @@ Date:   Thu Mar 8 12:21:28 2012 +0100
     Signed-off-by: Michel Dänzer <michel@daenzer.net>
     Signed-off-by: Martin Pitt <martin.pitt@ubuntu.com>
 
- configure.ac                 |   3 +-
- gi/_gobject/Makefile.am      |   7 +-
- gi/_gobject/ffi-marshaller.c | 194
- -------------------------------------------
- gi/_gobject/ffi-marshaller.h |  31 -------
- gi/_gobject/gobjectmodule.c  |  12 +--
+ configure.ac                 |    3 +-
+ gi/_gobject/Makefile.am      |    7 +-
+ gi/_gobject/ffi-marshaller.c |  194
+ ------------------------------------------
+ gi/_gobject/ffi-marshaller.h |   31 -------
+ gi/_gobject/gobjectmodule.c  |   12 +--
  5 files changed, 4 insertions(+), 243 deletions(-)
 
 commit 8ca828825a2c47080055c5f986979aac8da9a93f
@@ -4702,7 +4609,7 @@ Date:   Mon Mar 5 21:10:55 2012 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=671409
 
- gi/overrides/Gtk.py | 5 +++++
+ gi/overrides/Gtk.py |    5 +++++
  1 file changed, 5 insertions(+)
 
 commit 4824ceaa77b59788325a2c1ee0f994d4e74d7a1c
@@ -4714,7 +4621,7 @@ Date:   Sun Mar 4 16:41:18 2012 +0100
     When we found the member, unref the objects before breaking out of the
     loop.
 
- gi/pygi-marshal-from-py.c | 9 +++------
+ gi/pygi-marshal-from-py.c |    9 +++------
  1 file changed, 3 insertions(+), 6 deletions(-)
 
 commit c6ae29ac157978a61b11cc2de9e8485d8a175105
@@ -4723,7 +4630,7 @@ Date:   Tue Feb 21 15:37:18 2012 +0100
 
     tests: Split TestInterfaces into separate tests
 
- tests/test_gi.py | 36 +++++++++++++++++++-----------------
+ tests/test_gi.py |   36 +++++++++++++++++++-----------------
  1 file changed, 19 insertions(+), 17 deletions(-)
 
 commit de3299818ae5fdf1c7abbe05a36bfd5cdface7b8
@@ -4732,7 +4639,7 @@ Date:   Mon Feb 20 19:37:32 2012 +0100
 
     Post release version bump to 3.1.2
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit fd020e783c0dacea3320225b4ddd57d6a0fce7ea
@@ -4741,7 +4648,7 @@ Date:   Mon Feb 20 19:33:56 2012 +0100
 
     Prepare 3.1.1 release
 
- NEWS | 18 ++++++++++++++++++
+ NEWS |   18 ++++++++++++++++++
  1 file changed, 18 insertions(+)
 
 commit 99485d96811667ef7a7a393b68b7361733157d61
@@ -4750,7 +4657,7 @@ Date:   Sat Feb 18 00:38:05 2012 +0100
 
     Don't use C99 style
 
- gi/pygi-cache.c | 3 ++-
+ gi/pygi-cache.c |    3 ++-
  1 file changed, 2 insertions(+), 1 deletion(-)
 
 commit 0739c39f6282d95fc17ee406fa1151d074b0450d
@@ -4766,7 +4673,7 @@ Date:   Thu Feb 16 16:42:53 2012 +0100
     internally, but at least we can verify that it does not crash due to
     double-free.
 
- tests/test_everything.py | 10 +++++++++-
+ tests/test_everything.py |   10 +++++++++-
  1 file changed, 9 insertions(+), 1 deletion(-)
 
 commit 087a104f66793a981a0c02f1c7ab9cc1cf659da3
@@ -4777,7 +4684,7 @@ Date:   Wed Feb 15 13:36:39 2012 +0100
 
     Not necessary any more since glib 2.24, and we depend on 2.31.
 
- gi/_glib/pyglib.c | 3 ---
+ gi/_glib/pyglib.c |    3 ---
  1 file changed, 3 deletions(-)
 
 commit 66fb610e45912a7def29e5848577d280ef55643a
@@ -4790,7 +4697,7 @@ Date:   Wed Feb 15 13:35:33 2012 +0100
     documentation. This also
     simplifies the code.
 
- gi/_glib/pygsource.c | 4 +---
+ gi/_glib/pygsource.c |    4 +---
  1 file changed, 1 insertion(+), 3 deletions(-)
 
 commit 18342edded05d3d9cccf648ed92bc1cac95c51eb
@@ -4801,9 +4708,9 @@ Date:   Wed Feb 15 13:31:23 2012 +0100
 
     Replace with _schar(). We depend on glib >= 2.31 already.
 
- gi/_gobject/ffi-marshaller.c | 2 +-
- gi/_gobject/pygtype.c        | 6 +++---
- gi/pygi-argument.c           | 2 +-
+ gi/_gobject/ffi-marshaller.c |    2 +-
+ gi/_gobject/pygtype.c        |    6 +++---
+ gi/pygi-argument.c           |    2 +-
  3 files changed, 5 insertions(+), 5 deletions(-)
 
 commit 3dfb8dcbe7cf09dc170433fc48d3273c6ea9448e
@@ -4815,7 +4722,7 @@ Date:   Thu Feb 2 19:06:01 2012 +0100
     Looking at the gir file gtk.gdk.x11_* should get converted to
     GdkX11.x11_*. Fixing pygiconvert.sh to do so.
 
- pygi-convert.sh | 2 +-
+ pygi-convert.sh |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 3af5016978df598d5fd1c225cc49bb2c04dc4e35
@@ -4826,7 +4733,7 @@ Date:   Fri Feb 10 13:29:41 2012 +0100
 
     Commit ee62df4d2fc0cc63c2f29d3ad9b47b875dbd5f89 introduced both calls
 
- configure.ac | 6 +++---
+ configure.ac |    6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)
 
 commit 50c3b1bad3ea79750649f4b48fce0adbfaba5268
@@ -4837,7 +4744,7 @@ Date:   Fri Feb 10 09:28:36 2012 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=649267
 
- gi/_gobject/pygparamspec.c | 2 +-
+ gi/_gobject/pygparamspec.c |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 6ab542fb3ec1031922ba65664d77bbaac0df453e
@@ -4848,8 +4755,8 @@ Date:   Mon Nov 14 14:41:08 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=664496
 
- pygi-convert.sh | 76
- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ pygi-convert.sh |   76
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 76 insertions(+)
 
 commit 4aeb27efc43e131de5d0bc0f60dca7c1d34c3d45
@@ -4862,9 +4769,9 @@ Date:   Fri Feb 10 09:04:18 2012 +0100
 
     Signed-off-by: Martin Pitt <martin.pitt@ubuntu.com>
 
- gi/pygi-argument.c       |  3 ++-
- gi/pygi-info.c           | 13 +++++++++++++
- tests/test_everything.py | 21 +++++++++++++++++++++
+ gi/pygi-argument.c       |    3 ++-
+ gi/pygi-info.c           |   13 +++++++++++++
+ tests/test_everything.py |   21 +++++++++++++++++++++
  3 files changed, 36 insertions(+), 1 deletion(-)
 
 commit 5c0b20cc1a261cb7430a5251dffe60da698033b5
@@ -4875,7 +4782,7 @@ Date:   Thu Feb 9 18:15:42 2012 +0100
 
     Use what was recently added in g-i
 
- tests/test_gi.py | 17 +++++++++++++++--
+ tests/test_gi.py |   17 +++++++++++++++--
  1 file changed, 15 insertions(+), 2 deletions(-)
 
 commit ea7778f6f37a6fc38f88d89d4b6cae8be0ed9753
@@ -4886,7 +4793,7 @@ Date:   Thu Feb 9 18:14:52 2012 +0100
 
     Also tidy up the spacing a bit
 
- tests/test_gi.py | 29 +++++++++++++++++++++++------
+ tests/test_gi.py |   29 +++++++++++++++++++++++------
  1 file changed, 23 insertions(+), 6 deletions(-)
 
 commit db7f9be319d3cf52aef300fbac60cabb7ff57276
@@ -4895,7 +4802,7 @@ Date:   Wed Feb 8 22:23:30 2012 +0100
 
     Add unit test for builder's connect_after
 
- tests/test_overrides.py | 8 ++++++++
+ tests/test_overrides.py |    8 ++++++++
  1 file changed, 8 insertions(+)
 
 commit 671f9b0dd73ac41a84caf9d1f04cec351bc01b47
@@ -4910,7 +4817,7 @@ Date:   Wed Feb 8 16:06:22 2012 -0500
 
     https://bugzilla.gnome.org/show_bug.cgi?id=669705
 
- gi/overrides/Gtk.py | 2 +-
+ gi/overrides/Gtk.py |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 1d23d8006be98b77a0134fddd23b76df05e489fa
@@ -4921,7 +4828,7 @@ Date:   Tue Feb 7 11:49:58 2012 +0000
 
     https://bugzilla.gnome.org/show_bug.cgi?id=669598
 
- m4/python.m4 | 6 +++---
+ m4/python.m4 |    6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)
 
 commit 945fd18e531c2131440af93dcd89f6c63abbfd7c
@@ -4944,7 +4851,7 @@ Date:   Tue Feb 7 13:42:19 2012 -0500
 
     https://bugzilla.gnome.org/show_bug.cgi?id=669594
 
- gi/_glib/pygspawn.c | 4 ++--
+ gi/_glib/pygspawn.c |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit 8fc969c45d6d720400dc6c9ef391d0ca93f14b5a
@@ -4953,7 +4860,7 @@ Date:   Mon Feb 6 19:15:53 2012 +0100
 
     Post release version bump to 3.1.1
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit f76b2fe6d37be76bf129ee2adee90b2cc0eee56e
@@ -4962,7 +4869,7 @@ Date:   Mon Feb 6 19:11:52 2012 +0100
 
     Prepare 3.1.0 release
 
- NEWS | 34 ++++++++++++++++++++++++++++++++++
+ NEWS |   34 ++++++++++++++++++++++++++++++++++
  1 file changed, 34 insertions(+)
 
 commit c09d0dffc5a570d5ae4df1ae07b2e5594c3ca1bf
@@ -4974,8 +4881,8 @@ Date:   Mon Feb 6 19:04:41 2012 +0100
 
     Removed obsolete MAINTAINERS file
 
- MAINTAINERS    | 19 -------------------
- pygobject.doap | 44 +++++++++++++++-----------------------------
+ MAINTAINERS    |   19 -------------------
+ pygobject.doap |   44 +++++++++++++++-----------------------------
  2 files changed, 15 insertions(+), 48 deletions(-)
 
 commit 0285e107be581c4d594127dc06cd05df1f02fb3f
@@ -4990,9 +4897,9 @@ Date:   Mon Feb 6 18:57:01 2012 +0100
     Due to this commit breaking backwards compatability, we decided to
     revert this change
 
- gi/overrides/Gtk.py     | 15 ---------------
- tests/compathelper.py   |  2 --
- tests/test_overrides.py | 31 +------------------------------
+ gi/overrides/Gtk.py     |   15 ---------------
+ tests/compathelper.py   |    2 --
+ tests/test_overrides.py |   31 +------------------------------
  3 files changed, 1 insertion(+), 47 deletions(-)
 
 commit 0e921cd26ed5a6e3bc6ef5f553e8b22b862d72a6
@@ -5001,7 +4908,7 @@ Date:   Sun Feb 5 13:47:10 2012 +0100
 
     tests: Fixed issues with python3
 
- tests/test_gi.py | 9 ++++++---
+ tests/test_gi.py |    9 ++++++---
  1 file changed, 6 insertions(+), 3 deletions(-)
 
 commit ee62df4d2fc0cc63c2f29d3ad9b47b875dbd5f89
@@ -5012,9 +4919,9 @@ Date:   Sun Feb 5 11:59:51 2012 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=664150
 
- gi/pygi-property.c | 48 ++++++++++++++++++++++++++++++++++++++----
- tests/test_gi.py   | 62
- ++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ gi/pygi-property.c |   48 ++++++++++++++++++++++++++++++++++++----
+ tests/test_gi.py   |   62
+ ++++++++++++++++++++++++++++++++++++++++++++++++++++
  2 files changed, 106 insertions(+), 4 deletions(-)
 
 commit c329bf2aee8d75ce452638db75e09197ff2b9b65
@@ -5028,7 +4935,7 @@ Date:   Sun Feb 5 11:46:21 2012 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=669393
 
- gi/pygi-marshal-cleanup.c | 32 +++++++++++++++++++++++---------
+ gi/pygi-marshal-cleanup.c |   32 +++++++++++++++++++++++---------
  1 file changed, 23 insertions(+), 9 deletions(-)
 
 commit 4ea37c606f67df843788261b2c8acd6bac4c1e0c
@@ -5042,7 +4949,7 @@ Date:   Sun Feb 5 18:51:53 2012 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=669415
 
- tests/test_everything.py | 9 +++++++++
+ tests/test_everything.py |    9 +++++++++
  1 file changed, 9 insertions(+)
 
 commit a41984780ee49dcf02c718ca1be87bba747472e5
@@ -5061,7 +4968,7 @@ Date:   Mon Feb 6 09:34:28 2012 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=669415
 
- gi/_glib/pyglib.c | 2 ++
+ gi/_glib/pyglib.c |    2 ++
  1 file changed, 2 insertions(+)
 
 commit 2c797c17913999379e277788d5e4cce8d68cebb0
@@ -5072,7 +4979,7 @@ Date:   Sat Feb 4 16:11:34 2012 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=663288
 
- tests/Makefile.am | 1 +
+ tests/Makefile.am |    1 +
  1 file changed, 1 insertion(+)
 
 commit d6a899cdf70e978534326155e3fad75a705f4b20
@@ -5084,7 +4991,7 @@ Date:   Sat Feb 4 15:55:55 2012 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=665553
 
- gi/overrides/Gtk.py | 6 ++----
+ gi/overrides/Gtk.py |    6 ++----
  1 file changed, 2 insertions(+), 4 deletions(-)
 
 commit 534ec71c575a279ff1c05da20a8858bb1145b4d0
@@ -5099,8 +5006,8 @@ Date:   Sat Feb 4 15:42:36 2012 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=647723
 
- gi/overrides/GLib.py    | 18 ++++++++++++++++++
- tests/test_overrides.py | 45
+ gi/overrides/GLib.py    |   18 ++++++++++++++++++
+ tests/test_overrides.py |   45
  +++++++++++++++++++++++++++++++++++++++++++++
  2 files changed, 63 insertions(+)
 
@@ -5117,9 +5024,9 @@ Date:   Sat Feb 4 15:41:08 2012 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=647725
 
- gi/overrides/GLib.py    | 23 ++++++++++++++++++++
- tests/test_overrides.py | 56
- +++++++++++++++++++++++++++++++++++++++++++++++++
+ gi/overrides/GLib.py    |   23 +++++++++++++++++++
+ tests/test_overrides.py |   56
+ +++++++++++++++++++++++++++++++++++++++++++++++
  2 files changed, 79 insertions(+)
 
 commit f82404034be042bf2026bbb7f1e33b11d6e17a6f
@@ -5134,7 +5041,7 @@ Date:   Wed Jan 25 07:01:06 2012 +0100
     other test
     case names.
 
- tests/test_everything.py | 30 +++++++++++++++---------------
+ tests/test_everything.py |   30 +++++++++++++++---------------
  1 file changed, 15 insertions(+), 15 deletions(-)
 
 commit e37ee78fbf0aa72159a40da4165a26bea065faf1
@@ -5147,7 +5054,7 @@ Date:   Mon Jan 23 13:10:30 2012 +0000
 
     https://bugzilla.gnome.org/show_bug.cgi?id=668497
 
- gi/pygi-foreign-cairo.c | 2 +-
+ gi/pygi-foreign-cairo.c |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit db24865d6b60351d72f5b8f47103d6d0a6c63b2e
@@ -5160,7 +5067,7 @@ Date:   Mon Jan 23 13:06:41 2012 +0000
 
     https://bugzilla.gnome.org/show_bug.cgi?id=668497
 
- gi/_gobject/gobjectmodule.c | 2 +-
+ gi/_gobject/gobjectmodule.c |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit a8408cfd68cd5e7cdb0b8a83e107d9a0d828e4bd
@@ -5180,10 +5087,10 @@ Date:   Mon Jan 23 13:01:27 2012 +0000
 
     https://bugzilla.gnome.org/show_bug.cgi?id=668497
 
- gi/_glib/pygiochannel.c   | 2 +-
- gi/_glib/pygmainloop.c    | 3 +--
- gi/_gobject/pygobject.c   | 2 +-
- gi/pygi-marshal-cleanup.c | 2 --
+ gi/_glib/pygiochannel.c   |    2 +-
+ gi/_glib/pygmainloop.c    |    3 +--
+ gi/_gobject/pygobject.c   |    2 +-
+ gi/pygi-marshal-cleanup.c |    2 --
  4 files changed, 3 insertions(+), 6 deletions(-)
 
 commit 29a30490ed51e347e8f57d2bf9af69400734eee8
@@ -5198,7 +5105,7 @@ Date:   Thu Jan 19 18:09:07 2012 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=668288
 
- gi/_glib/pygmainloop.c | 4 ++--
+ gi/_glib/pygmainloop.c |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit 557a61c12c01137a0d7c679c4b053973df09d445
@@ -5211,7 +5118,7 @@ Date:   Mon Dec 26 00:44:56 2011 -0500
 
     https://bugzilla.gnome.org/show_bug.cgi?id=666852
 
- tests/test_gi.py | 4 ++--
+ tests/test_gi.py |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit d69e5b3c7bdb9113382fd125c256b12bff4c24d2
@@ -5228,7 +5135,7 @@ Date:   Mon Jan 23 12:37:26 2012 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=666270
 
- gi/pygi-argument.c | 12 +++++++++++-
+ gi/pygi-argument.c |   12 +++++++++++-
  1 file changed, 11 insertions(+), 1 deletion(-)
 
 commit 77f32d9110bfeb6dad8457f565b4c70b5998fef6
@@ -5247,8 +5154,8 @@ Date:   Thu Dec 15 16:12:01 2011 +0200
 
     Signed-off-by: Martin Pitt <martin.pitt@ubuntu.com>
 
- gi/pygi-closure.c        |  2 ++
- tests/test_everything.py | 35 +++++++++++++++++++++++++++++++++++
+ gi/pygi-closure.c        |    2 ++
+ tests/test_everything.py |   35 +++++++++++++++++++++++++++++++++++
  2 files changed, 37 insertions(+)
 
 commit 4b9dc03d0e49e9a1f4bf0f2df503bdff00d13a2b
@@ -5266,7 +5173,7 @@ Date:   Mon Jan 23 13:56:02 2012 +0000
 
     https://bugzilla.gnome.org/show_bug.cgi?id=666098
 
- gi/_glib/pyglib.c | 3 +++
+ gi/_glib/pyglib.c |    3 +++
  1 file changed, 3 insertions(+)
 
 commit adcfe96d49b09bcc550653d73de196610fd5144d
@@ -5291,11 +5198,11 @@ Date:   Fri Jan 20 16:20:10 2012 +0000
 
     https://bugzilla.gnome.org/show_bug.cgi?id=666098
 
- gi/_glib/pyglib.c       | 46
+ gi/_glib/pyglib.c       |   46
  +++++++++++++++++++++++++++++++++++-----------
- gi/_glib/pyglib.h       |  1 +
- gi/pygi-marshal-to-py.c | 16 +++++++++++++---
- tests/test_gi.py        | 32 ++++++++++++++++++++++++++++++++
+ gi/_glib/pyglib.h       |    1 +
+ gi/pygi-marshal-to-py.c |   16 +++++++++++++---
+ tests/test_gi.py        |   32 ++++++++++++++++++++++++++++++++
  4 files changed, 81 insertions(+), 14 deletions(-)
 
 commit 09f003729eac9d553a208c343c2a14d253b77d9a
@@ -5308,7 +5215,7 @@ Date:   Mon Jan 23 12:42:21 2012 +0200
 
     Signed-off-by: Martin Pitt <martin.pitt@ubuntu.com>
 
- gi/pygi-argument.c | 26 +++++++++++++-------------
+ gi/pygi-argument.c |   26 +++++++++++++-------------
  1 file changed, 13 insertions(+), 13 deletions(-)
 
 commit c71c010be01d706f90bc200194325fd82f4071b2
@@ -5317,7 +5224,7 @@ Date:   Sat Jan 14 14:24:23 2012 +0100
 
     Avoid C99 syntax.
 
- gi/gimodule.c | 10 ++++++----
+ gi/gimodule.c |   10 ++++++----
  1 file changed, 6 insertions(+), 4 deletions(-)
 
 commit c299d058c22385ececaec64c872d1dd1bc1ae17a
@@ -5326,7 +5233,7 @@ Date:   Fri Jan 6 13:39:31 2012 +0100
 
     Connect to first action of a radio group.
 
- gi/overrides/Gtk.py | 4 ++--
+ gi/overrides/Gtk.py |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit dee2f179037902a3883bd0e61ff1c350e1fd8a4f
@@ -5335,7 +5242,7 @@ Date:   Wed Jan 4 16:40:51 2012 +0100
 
     Use g_slist_free_full in pygi-closure.
 
- gi/pygi-closure.c | 3 +--
+ gi/pygi-closure.c |    3 +--
  1 file changed, 1 insertion(+), 2 deletions(-)
 
 commit 2bee4207ab6f07dc9c0952affe72f0e304cfb624
@@ -5350,7 +5257,7 @@ Date:   Wed Jan 4 15:24:13 2012 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=667261
 
- gi/pygi-marshal-from-py.c | 8 ++++----
+ gi/pygi-marshal-from-py.c |    8 ++++----
  1 file changed, 4 insertions(+), 4 deletions(-)
 
 commit d68455e99b1a9ebba31209b17a11317b1958678b
@@ -5361,8 +5268,8 @@ Date:   Tue Jan 3 16:57:40 2012 +0100
 
     Treat NULL as an empty array and add the corresponding testcase
 
- gi/pygi-marshal-to-py.c | 9 +++++----
- tests/test_gi.py        | 3 +++
+ gi/pygi-marshal-to-py.c |    9 +++++----
+ tests/test_gi.py        |    3 +++
  2 files changed, 8 insertions(+), 4 deletions(-)
 
 commit e3451b8e6018bb76e9992fb6af24a71725de5cfd
@@ -5371,7 +5278,7 @@ Date:   Fri Dec 23 12:01:43 2011 +0100
 
     Branching, bump version to 3.1.0
 
- configure.ac | 4 ++--
+ configure.ac |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit 8d1a36cc73f5f4df091ecb289c8a7b38ec2ab605
@@ -5380,7 +5287,7 @@ Date:   Mon Dec 12 18:35:30 2011 +0100
 
     Add notes about branching to HACKING
 
- HACKING | 10 ++++++++++
+ HACKING |   10 ++++++++++
  1 file changed, 10 insertions(+)
 
 commit 00030bc6f0fb961c716ed692144cd8e4bb9be7d0
@@ -5392,8 +5299,8 @@ Date:   Sat Dec 10 12:51:45 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=664864
 
- gi/_gobject/propertyhelper.py |  2 +-
- tests/test_properties.py      | 31 +++++++++++++++++++++++++++++++
+ gi/_gobject/propertyhelper.py |    2 +-
+ tests/test_properties.py      |   31 +++++++++++++++++++++++++++++++
  2 files changed, 32 insertions(+), 1 deletion(-)
 
 commit 7b78abc6c399abd0daa4c11c644d107e1bb7b452
@@ -5402,7 +5309,7 @@ Date:   Mon Dec 12 17:00:24 2011 +0100
 
     Remove mention of removed option --enable-docs
 
- HACKING | 2 +-
+ HACKING |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 4cba52f5b5e79b7b6212cb0795e8976a9da9f21d
@@ -5411,7 +5318,7 @@ Date:   Mon Dec 12 17:00:03 2011 +0100
 
     Fix sebp's name in NEWS
 
- NEWS | 2 +-
+ NEWS |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 8c95981d0ba224a577f87998030c384b3dae3d80
@@ -5420,7 +5327,7 @@ Date:   Mon Dec 12 16:20:09 2011 +0100
 
     Release 3.0.3
 
- NEWS | 15 +++++++++++++++
+ NEWS |   15 +++++++++++++++
  1 file changed, 15 insertions(+)
 
 commit 58e47fd28c5d75bb78042c8f9eb5aae84de9c64d
@@ -5429,7 +5336,7 @@ Date:   Mon Dec 12 16:16:44 2011 +0100
 
     Pre-release version bump
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 884468d4816fc976c0c0c72651e7f81d13f3f78b
@@ -5440,7 +5347,7 @@ Date:   Thu Dec 1 11:50:38 2011 -0300
 
     Signed-off-by: Manuel Quiñones <manuq@laptop.org>
 
- pygi-convert.sh | 14 ++++++++++++++
+ pygi-convert.sh |   14 ++++++++++++++
  1 file changed, 14 insertions(+)
 
 commit 654711d0f940d7480d0f1cdb25a3dc9996f7a706
@@ -5451,9 +5358,9 @@ Date:   Tue Nov 8 12:38:12 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=663610
 
- gi/overrides/Gtk.py     | 15 +++++++++++++++
- tests/compathelper.py   |  2 ++
- tests/test_overrides.py | 31 ++++++++++++++++++++++++++++++-
+ gi/overrides/Gtk.py     |   15 +++++++++++++++
+ tests/compathelper.py   |    2 ++
+ tests/test_overrides.py |   31 ++++++++++++++++++++++++++++++-
  3 files changed, 47 insertions(+), 1 deletion(-)
 
 commit 4f637212f13b197a95c824967a58496b9e3b877c
@@ -5462,7 +5369,7 @@ Date:   Wed Nov 2 14:51:24 2011 -0400
 
     add test for bytearray variants
 
- tests/test_gi.py | 4 ++++
+ tests/test_gi.py |    4 ++++
  1 file changed, 4 insertions(+)
 
 commit 20ca3f129d6cc662285cce8c732b55596016aefa
@@ -5471,7 +5378,7 @@ Date:   Wed Nov 2 14:50:42 2011 -0400
 
     handle NULL arrays correctly for each array type
 
- gi/pygi-marshal-to-py.c | 11 ++++++-----
+ gi/pygi-marshal-to-py.c |   11 ++++++-----
  1 file changed, 6 insertions(+), 5 deletions(-)
 
 commit ce2f780bffe44b1d4de617dcbce4b90c58b03c18
@@ -5482,8 +5389,8 @@ Date:   Wed Nov 2 14:17:21 2011 -0400
 
     This reverts commit cfda820e8d9604c5ef2ad1161c22b20080d5daf4.
 
- gi/pygi-marshal-from-py.c | 6 +++++-
- gi/pygi-marshal-to-py.c   | 8 +++++++-
+ gi/pygi-marshal-from-py.c |    6 +++++-
+ gi/pygi-marshal-to-py.c   |    8 +++++++-
  2 files changed, 12 insertions(+), 2 deletions(-)
 
 commit 832f16f96815adc22cc3acbeb3fa969631795a29
@@ -5499,7 +5406,7 @@ Date:   Sun Oct 30 18:08:57 2011 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=663068
 
- gi/_glib/pygmainloop.c | 5 ++++-
+ gi/_glib/pygmainloop.c |    5 ++++-
  1 file changed, 4 insertions(+), 1 deletion(-)
 
 commit 2fd3aa9d4ca0906a5e609845ee500ba72e358f94
@@ -5510,8 +5417,8 @@ Date:   Sat Oct 29 15:08:03 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=662994
 
- gi/types.py      | 22 +++++++++++++---------
- tests/test_gi.py | 20 ++++++++++----------
+ gi/types.py      |   22 +++++++++++++---------
+ tests/test_gi.py |   20 ++++++++++----------
  2 files changed, 23 insertions(+), 19 deletions(-)
 
 commit cfda820e8d9604c5ef2ad1161c22b20080d5daf4
@@ -5522,8 +5429,8 @@ Date:   Wed Nov 2 14:54:21 2011 +0100
 
     This reverts commit eef35b2df8023ffff2d195ee16c084f5cfcb6ba3.
 
- gi/pygi-marshal-from-py.c | 6 +-----
- gi/pygi-marshal-to-py.c   | 8 +-------
+ gi/pygi-marshal-from-py.c |    6 +-----
+ gi/pygi-marshal-to-py.c   |    8 +-------
  2 files changed, 2 insertions(+), 12 deletions(-)
 
 commit eef35b2df8023ffff2d195ee16c084f5cfcb6ba3
@@ -5541,8 +5448,8 @@ Date:   Sun Oct 30 16:36:32 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=662550
 
- gi/pygi-marshal-from-py.c | 6 +++++-
- gi/pygi-marshal-to-py.c   | 8 +++++++-
+ gi/pygi-marshal-from-py.c |    6 +++++-
+ gi/pygi-marshal-to-py.c   |    8 +++++++-
  2 files changed, 12 insertions(+), 2 deletions(-)
 
 commit 4c1d9f01b8fa6702f73b290180f934250e179caa
@@ -5551,7 +5458,7 @@ Date:   Sun Oct 30 09:20:45 2011 +0000
 
     pygi-convert: fix for Pango.Alignment
 
- pygi-convert.sh | 1 +
+ pygi-convert.sh |    1 +
  1 file changed, 1 insertion(+)
 
 commit e3abd76096cc9f335681c7225f452c286b9c59e2
@@ -5560,7 +5467,7 @@ Date:   Sun Oct 30 07:06:57 2011 +0000
 
     pygi-convert: fix for Gtk.Orientation
 
- pygi-convert.sh | 1 +
+ pygi-convert.sh |    1 +
  1 file changed, 1 insertion(+)
 
 commit 52b82c5f78ef3755388457fa9440c36ccd2dfbbf
@@ -5576,7 +5483,7 @@ Date:   Thu Oct 27 07:16:24 2011 +0200
     this as EXFAIL
     for now. (See https://bugzilla.gnome.org/show_bug.cgi?id=656554)
 
- tests/test_everything.py | 24 ++++++++++++++++++++++++
+ tests/test_everything.py |   24 ++++++++++++++++++++++++
  1 file changed, 24 insertions(+)
 
 commit c7aa0e79dfb4c1092c51ae1464b8414083b4f3fc
@@ -5599,12 +5506,12 @@ Date:   Tue Oct 4 12:28:26 2011 +0200
 
     Signed-off-by: Martin Pitt <martin.pitt@ubuntu.com>
 
- gi/pygi-cache.c           |  2 +-
- gi/pygi-marshal-cleanup.c | 81
- ++++++++++++++++++++++++++++++-----------------
- gi/pygi-marshal-from-py.c | 10 ++++--
- gi/pygi-marshal-to-py.c   | 13 ++++++--
- tests/test_gi.py          | 14 +++++++-
+ gi/pygi-cache.c           |    2 +-
+ gi/pygi-marshal-cleanup.c |   81
+ +++++++++++++++++++++++++++++----------------
+ gi/pygi-marshal-from-py.c |   10 ++++--
+ gi/pygi-marshal-to-py.c   |   13 ++++++--
+ tests/test_gi.py          |   14 +++++++-
  5 files changed, 85 insertions(+), 35 deletions(-)
 
 commit c2ec4d8eb46ae2e6ee4372b2a4f9d5df0e5d82f3
@@ -5613,7 +5520,7 @@ Date:   Sat Oct 22 00:20:57 2011 +0200
 
     Release 3.0.2
 
- NEWS | 8 ++++++++
+ NEWS |    8 ++++++++
  1 file changed, 8 insertions(+)
 
 commit 5c24760b797e985721f7fe51d52252e4dd54a417
@@ -5630,8 +5537,8 @@ Date:   Fri Oct 21 17:31:41 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=662383
 
- gi/pygi-invoke.c         | 10 ++++++++++
- tests/test_everything.py |  8 ++++++++
+ gi/pygi-invoke.c         |   10 ++++++++++
+ tests/test_everything.py |    8 ++++++++
  2 files changed, 18 insertions(+)
 
 commit 585222915dc98b0e375de3db4771466278a32e81
@@ -5644,8 +5551,8 @@ Date:   Tue Oct 18 00:39:16 2011 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=661673
 
- gi/pygi-marshal-from-py.c | 121
- ++++++++++++++++++++++++++--------------------
+ gi/pygi-marshal-from-py.c |  121
+ +++++++++++++++++++++++++--------------------
  1 file changed, 68 insertions(+), 53 deletions(-)
 
 commit 8deaec6b9abd87f02060c9feec773d4693e89028
@@ -5660,8 +5567,8 @@ Date:   Wed Oct 19 14:35:11 2011 +0200
 
     https://launchpad.net/bugs/875399
 
- gi/overrides/Gdk.py | 95
- +++++++++++++++++++++++++++--------------------------
+ gi/overrides/Gdk.py |   95
+ ++++++++++++++++++++++++++-------------------------
  1 file changed, 48 insertions(+), 47 deletions(-)
 
 commit f395fb131caf7ca550acd17138d8061926ef4f92
@@ -5672,7 +5579,7 @@ Date:   Fri Oct 14 17:19:45 2011 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=661359
 
- tests/test_everything.py | 11 +++++++++++
+ tests/test_everything.py |   11 +++++++++++
  1 file changed, 11 insertions(+)
 
 commit 611f58b99851328653af4930f188c33eccaa9f6f
@@ -5684,7 +5591,7 @@ Date:   Fri Oct 14 16:42:32 2011 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=661359
 
- gi/pygi-argument.c | 10 ++++++++++
+ gi/pygi-argument.c |   10 ++++++++++
  1 file changed, 10 insertions(+)
 
 commit 0f1eb9fa0e7aa5e7c22dabc709c0dfb469e404f1
@@ -5696,7 +5603,7 @@ Date:   Tue Oct 4 11:13:43 2011 +0200
     Add the GBoxed type as valid type to the gobject property helper
     https://bugzilla.gnome.org/show_bug.cgi?id=660798
 
- gi/_gobject/propertyhelper.py | 5 +++--
+ gi/_gobject/propertyhelper.py |    5 +++--
  1 file changed, 3 insertions(+), 2 deletions(-)
 
 commit bef8d385117dd0295c9ba7567710d76fc2bb729a
@@ -5705,7 +5612,7 @@ Date:   Mon Oct 10 11:24:42 2011 +0200
 
     Add tests for boxed properties.
 
- tests/test_properties.py | 20 ++++++++++++++++++--
+ tests/test_properties.py |   20 ++++++++++++++++++--
  1 file changed, 18 insertions(+), 2 deletions(-)
 
 commit 77123ffeb1585837033848f4d5a90cfa63fdaee0
@@ -5714,7 +5621,7 @@ Date:   Fri Sep 30 20:21:07 2011 +0200
 
     Post release bump version
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit f5ccfec0a1bc4c999bfa49d75383ea06d3a068c4
@@ -5723,8 +5630,8 @@ Date:   Fri Sep 30 20:19:46 2011 +0200
 
     Release 3.0.1
 
- NEWS         | 5 +++++
- configure.ac | 2 +-
+ NEWS         |    5 +++++
+ configure.ac |    2 +-
  2 files changed, 6 insertions(+), 1 deletion(-)
 
 commit 56ac9339eb1d6950623dc4d8c3b9972874e7fa86
@@ -5740,8 +5647,8 @@ Date:   Thu Sep 22 19:03:20 2011 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=659879
 
- gi/pygi-marshal-from-py.c | 60
- +++++++++++++++++++++++++++++++++++++++++++----
+ gi/pygi-marshal-from-py.c |   60
+ ++++++++++++++++++++++++++++++++++++++++++---
  1 file changed, 56 insertions(+), 4 deletions(-)
 
 commit 311a4f8035a95b41bc3c0a836c32b7a5bf2d9959
@@ -5754,10 +5661,10 @@ Date:   Wed Sep 21 21:50:48 2011 -0400
     instantiated
       via g_object_new
 
- gi/_gobject/gobjectmodule.c     |  5 +++++
- gi/_gobject/pygobject-private.h |  3 +++
- gi/_gobject/pygobject.c         | 27 ++++++++++++++++++++++++++-
- gi/_gobject/pygobject.h         |  3 ++-
+ gi/_gobject/gobjectmodule.c     |    5 +++++
+ gi/_gobject/pygobject-private.h |    3 +++
+ gi/_gobject/pygobject.c         |   27 ++++++++++++++++++++++++++-
+ gi/_gobject/pygobject.h         |    3 ++-
  4 files changed, 36 insertions(+), 2 deletions(-)
 
 commit d2d29ae5845217254b9336fd8629f369cb119b25
@@ -5769,7 +5676,7 @@ Date:   Wed Sep 21 21:13:22 2011 -0400
 
     This reverts commit f6fa5dd8f39af1b8a52d7600d257400b0983e8c5.
 
- gi/_gobject/gobjectmodule.c | 32 +++++++++++++++++---------------
+ gi/_gobject/gobjectmodule.c |   32 +++++++++++++++++---------------
  1 file changed, 17 insertions(+), 15 deletions(-)
 
 commit a24c10b779f2a1b0425d56d03d59c393389cad98
@@ -5778,7 +5685,7 @@ Date:   Wed Sep 21 21:10:00 2011 -0400
 
     make sure to commit the NEWS file
 
- NEWS | 4 ++++
+ NEWS |    4 ++++
  1 file changed, 4 insertions(+)
 
 commit 2eed2940c9be099fb6305288d895265e6b35d3d2
@@ -5787,7 +5694,7 @@ Date:   Mon Sep 19 13:19:57 2011 -0400
 
     prep for 3.0 release
 
- configure.ac | 6 +++---
+ configure.ac |    6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)
 
 commit fbd58b70c2c3c1128f95a87eb4cc8313b6a401b8
@@ -5796,7 +5703,7 @@ Date:   Fri Sep 16 14:19:15 2011 -0400
 
     up version required of gobject-introspection to 1.29.0
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 225f21117b6b3546989abe22538c784291e86b2a
@@ -5810,12 +5717,12 @@ Date:   Fri Sep 16 12:26:10 2011 -0400
     * handle deprecated enums in switch statments by using default:
     * unused wanrings still remain in some places
 
- gi/pygi-argument.c        |  2 +-
- gi/pygi-cache.c           |  7 ++-----
- gi/pygi-info.c            |  6 ++++++
- gi/pygi-invoke.c          |  2 +-
- gi/pygi-marshal-from-py.c | 17 +++++++++--------
- gi/pygi-marshal-to-py.c   |  3 +--
+ gi/pygi-argument.c        |    2 +-
+ gi/pygi-cache.c           |    7 ++-----
+ gi/pygi-info.c            |    6 ++++++
+ gi/pygi-invoke.c          |    2 +-
+ gi/pygi-marshal-from-py.c |   17 +++++++++--------
+ gi/pygi-marshal-to-py.c   |    3 +--
  6 files changed, 20 insertions(+), 17 deletions(-)
 
 commit 9a70f01288e1b049206d25d67938907f1b38a490
@@ -5824,7 +5731,7 @@ Date:   Fri Sep 16 12:24:38 2011 -0400
 
     post release bump
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 3ec4020205e909ee4400650434f9ae7b89c2bde8
@@ -5833,7 +5740,7 @@ Date:   Thu Sep 15 18:12:01 2011 -0400
 
     edit HACKING file to show correct tag format
 
- HACKING | 2 +-
+ HACKING |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 2e864fd05bc0adf48df9f65ab72785ebb1d0d3f0
@@ -5842,7 +5749,7 @@ Date:   Thu Sep 15 18:10:33 2011 -0400
 
     update NEWS file to prep for release
 
- NEWS | 35 +++++++++++++++++++++++++++++++++++
+ NEWS |   35 +++++++++++++++++++++++++++++++++++
  1 file changed, 35 insertions(+)
 
 commit 0da687fa699aba4f42c42a924d6754e2bd47df50
@@ -5851,7 +5758,7 @@ Date:   Thu Sep 15 17:59:31 2011 -0400
 
     fix typo s/lenth/length
 
- gi/overrides/Gtk.py | 2 +-
+ gi/overrides/Gtk.py |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 0e4861abaff64d8e7e8d1aeedf9dd1e80de8aab2
@@ -5860,7 +5767,7 @@ Date:   Thu Sep 15 17:48:58 2011 -0400
 
     fix typo in docstring
 
- gi/_gobject/propertyhelper.py | 2 +-
+ gi/_gobject/propertyhelper.py |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit e7fcc326d64def610e5a1003cf6c7ca97023814d
@@ -5878,7 +5785,7 @@ Date:   Thu Sep 15 17:46:46 2011 -0400
       just
       set length to that.
 
- gi/overrides/Gtk.py | 6 ++----
+ gi/overrides/Gtk.py |    6 ++----
  1 file changed, 2 insertions(+), 4 deletions(-)
 
 commit 6f380153afb3390f7da9f4b8befb1c4ee224da17
@@ -5893,7 +5800,7 @@ Date:   Mon Sep 12 21:07:20 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=659140
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 11c45ac6dcb6ffad766d03bfc77f45a6d703a90d
@@ -5908,8 +5815,8 @@ Date:   Thu Sep 15 14:18:57 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=659142
 
- gi/_gobject/gobjectmodule.c | 4 ----
- gi/_gobject/pygobject.h     | 2 --
+ gi/_gobject/gobjectmodule.c |    4 ----
+ gi/_gobject/pygobject.h     |    2 --
  2 files changed, 6 deletions(-)
 
 commit 7e48fd6dfd86b7082c3fd35d25d9693c56c9665a
@@ -5927,8 +5834,8 @@ Date:   Thu Sep 15 15:52:18 2011 -0400
         import gi
         installdir = gi._overridesdir
 
- gi/__init__.py      |  2 ++
- pygobject-3.0.pc.in | 10 +++++++++-
+ gi/__init__.py      |    2 ++
+ pygobject-3.0.pc.in |   10 +++++++++-
  2 files changed, 11 insertions(+), 1 deletion(-)
 
 commit beea7072a5a989be47a755ac46647380d4dbd6b4
@@ -5951,7 +5858,7 @@ Date:   Thu Sep 15 00:11:09 2011 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=627236
 
- tests/test_overrides.py | 4 ++--
+ tests/test_overrides.py |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit 46ba7f04ef3df08e07ddda5c10f0c98bec5fa183
@@ -5971,8 +5878,8 @@ Date:   Thu Sep 15 00:08:31 2011 -0400
       for arrays
     https://bugzilla.gnome.org/show_bug.cgi?id=627236
 
- gi/pygi-marshal-from-py.c | 35 ++++++++++++++++++++++++++++++++---
- tests/test_gi.py          | 29 +++++++++++++++++++++++++++++
+ gi/pygi-marshal-from-py.c |   35 ++++++++++++++++++++++++++++++++---
+ tests/test_gi.py          |   29 +++++++++++++++++++++++++++++
  2 files changed, 61 insertions(+), 3 deletions(-)
 
 commit e30a41592baa942188574e5c9f99572963e2e387
@@ -5997,8 +5904,8 @@ Date:   Thu Sep 15 00:02:34 2011 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=627236
 
- gi/pygi-cache.c | 30 ++++++++++++++++++++----------
- gi/pygi-cache.h |  9 +++++++--
+ gi/pygi-cache.c |   30 ++++++++++++++++++++----------
+ gi/pygi-cache.h |    9 +++++++--
  2 files changed, 27 insertions(+), 12 deletions(-)
 
 commit f6fa5dd8f39af1b8a52d7600d257400b0983e8c5
@@ -6026,7 +5933,7 @@ Date:   Wed Sep 14 20:26:15 2011 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=657403
 
- gi/_gobject/gobjectmodule.c | 32 +++++++++++++++-----------------
+ gi/_gobject/gobjectmodule.c |   32 +++++++++++++++-----------------
  1 file changed, 15 insertions(+), 17 deletions(-)
 
 commit 61b64a65beee9011f8e4ed20f0a83e6630ba154f
@@ -6038,7 +5945,7 @@ Date:   Tue Sep 13 18:08:04 2011 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=657403
 
- gi/_gobject/gobjectmodule.c | 2 +-
+ gi/_gobject/gobjectmodule.c |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 93e12cc2eb7e7f2c18971da86e9c9452d3f566b7
@@ -6049,7 +5956,7 @@ Date:   Fri Aug 26 11:22:09 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=657416
 
- gi/_gobject/pygobject.h | 19 +------------------
+ gi/_gobject/pygobject.h |   19 +------------------
  1 file changed, 1 insertion(+), 18 deletions(-)
 
 commit e1c71092af6e2cffa36248519adfceac1874051d
@@ -6060,7 +5967,7 @@ Date:   Wed Aug 31 09:43:28 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=657785
 
- pygi-convert.sh | 2 ++
+ pygi-convert.sh |    2 ++
  1 file changed, 2 insertions(+)
 
 commit 3ace5c2e2268285a5dcb39889fcb2a71bc1063bd
@@ -6075,8 +5982,8 @@ Date:   Fri Sep 2 08:37:15 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=658032
 
- examples/signal.py      |  2 --
- gi/_gobject/pygobject.c | 11 -----------
+ examples/signal.py      |    2 --
+ gi/_gobject/pygobject.c |   11 -----------
  2 files changed, 13 deletions(-)
 
 commit fcd457d1d1d8a813acb2ebfe5ee0e9aab2c9c88c
@@ -6090,10 +5997,10 @@ Date:   Tue Sep 13 12:05:30 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=658856
 
- configure.ac            |  4 +++-
- gi/Makefile.am          |  9 ++++++---
- gi/_glib/Makefile.am    | 10 ++++++++--
- gi/_gobject/Makefile.am |  8 +++++++-
+ configure.ac            |    4 +++-
+ gi/Makefile.am          |    9 ++++++---
+ gi/_glib/Makefile.am    |   10 ++++++++--
+ gi/_gobject/Makefile.am |    8 +++++++-
  4 files changed, 24 insertions(+), 7 deletions(-)
 
 commit 863c087911203a8f3ebaa8e77622a3437a7cd320
@@ -6104,7 +6011,7 @@ Date:   Mon Sep 12 23:03:05 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=658856
 
- Makefile.am | 6 ------
+ Makefile.am |    6 ------
  1 file changed, 6 deletions(-)
 
 commit 24b920f9922e367bdb8b3e56c2f61e0c8f5cdb66
@@ -6113,7 +6020,7 @@ Date:   Tue Sep 13 16:20:48 2011 -0400
 
     cast params for PyObject_IsInstance to suppress warnings
 
- gi/_gobject/pygobject-private.h | 4 ++--
+ gi/_gobject/pygobject-private.h |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit 861369ec59b17f67151813dc2e87c6e86126b954
@@ -6130,7 +6037,7 @@ Date:   Tue Sep 13 16:04:31 2011 -0400
        could at best give you a false positive and at worse read
        memory beyond the bounds of the actual structure passed in
 
- gi/_gobject/pygobject-private.h | 4 ++--
+ gi/_gobject/pygobject-private.h |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit eea93e89fb064253bd8903c8b453daf4b3c87c2c
@@ -6140,7 +6047,7 @@ Date:   Tue Sep 13 16:03:02 2011 -0400
     fix regression - add instance type checks since Py3 no longer does
     this for us
 
- gi/pygi-marshal-from-py.c | 21 +++++++++++++++++++--
+ gi/pygi-marshal-from-py.c |   21 +++++++++++++++++++--
  1 file changed, 19 insertions(+), 2 deletions(-)
 
 commit a4e4318b50a24a688e32579273fbcfa51d1b422a
@@ -6185,7 +6092,7 @@ Date:   Fri Sep 9 16:50:25 2011 +0200
 
     Examples: fix cairo-demo.py imports
 
- examples/cairo-demo.py | 6 +++---
+ examples/cairo-demo.py |    6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)
 
 commit 3ca19fc13e6024fd04851e6f269020a92b09fa17
@@ -6197,7 +6104,7 @@ Date:   Fri Sep 9 15:08:27 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=658654
 
- pygobject-3.0-uninstalled.pc.in | 14 +++++++-------
+ pygobject-3.0-uninstalled.pc.in |   14 +++++++-------
  1 file changed, 7 insertions(+), 7 deletions(-)
 
 commit 6e773175b9d2f46b3df5075ec952a8c5aff3c607
@@ -6208,8 +6115,8 @@ Date:   Fri Sep 9 15:08:04 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=658654
 
- pygobject-3.0-uninstalled.pc.in | 6 ------
- pygobject-3.0.pc.in             | 5 +----
+ pygobject-3.0-uninstalled.pc.in |    6 ------
+ pygobject-3.0.pc.in             |    5 +----
  2 files changed, 1 insertion(+), 10 deletions(-)
 
 commit 81d388780311311d8dc4a027a59d114edf9a00fc
@@ -6220,8 +6127,8 @@ Date:   Fri Sep 9 14:57:58 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=658652
 
- docs/Makefile.am | 2 +-
- m4/python.m4     | 2 +-
+ docs/Makefile.am |    2 +-
+ m4/python.m4     |    2 +-
  2 files changed, 2 insertions(+), 2 deletions(-)
 
 commit 7e692ee061406e48e4862b98a0829650b1d6d585
@@ -6232,13 +6139,13 @@ Date:   Fri Sep 9 14:57:46 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=658652
 
- Makefile.am               |   2 -
- gi/Makefile.am            |  81 +++++++++++++++++++++++--------------
- gi/_glib/Makefile.am      | 100
- ++++++++++++++++++++++++++++++----------------
- gi/_gobject/Makefile.am   |  85 ++++++++++++++++++++-------------------
- gi/overrides/Makefile.am  |   4 +-
- gi/repository/Makefile.am |   4 +-
+ Makefile.am               |    2 -
+ gi/Makefile.am            |   81 ++++++++++++++++++++++--------------
+ gi/_glib/Makefile.am      |  100
+ +++++++++++++++++++++++++++++----------------
+ gi/_gobject/Makefile.am   |   85 ++++++++++++++++++++------------------
+ gi/overrides/Makefile.am  |    4 +-
+ gi/repository/Makefile.am |    4 +-
  6 files changed, 162 insertions(+), 114 deletions(-)
 
 commit 3dd59b07d1f4a93ee1f65d6a64e1afb6f5e84232
@@ -6249,9 +6156,9 @@ Date:   Fri Sep 9 14:57:36 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=658652
 
- gi/Makefile.am            | 2 --
- gi/overrides/Makefile.am  | 1 -
- gi/repository/Makefile.am | 1 -
+ gi/Makefile.am            |    2 --
+ gi/overrides/Makefile.am  |    1 -
+ gi/repository/Makefile.am |    1 -
  3 files changed, 4 deletions(-)
 
 commit db1e484bfa157967de55ee2e0e18a82b8e388b61
@@ -6262,8 +6169,8 @@ Date:   Fri Sep 9 14:57:25 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=658652
 
- gi/tests/Makefile.am | 24 ------------------------
- gi/tests/runtests.py | 21 ---------------------
+ gi/tests/Makefile.am |   24 ------------------------
+ gi/tests/runtests.py |   21 ---------------------
  2 files changed, 45 deletions(-)
 
 commit b0ecbf00138ef1147e478ebf3c66f0e9b3f85dfc
@@ -6275,9 +6182,9 @@ Date:   Fri Sep 9 14:55:25 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=658652
 
- Makefile.am |  2 +-
- autogen.sh  | 95
- +++++++------------------------------------------------------
+ Makefile.am |    2 +-
+ autogen.sh  |   95
+ +++++++----------------------------------------------------
  2 files changed, 12 insertions(+), 85 deletions(-)
 
 commit 4671f5397003f376f00830e3fd1c214de594619f
@@ -6288,8 +6195,8 @@ Date:   Fri Sep 9 14:55:01 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=658652
 
- configure.ac |  3 ++-
- m4/python.m4 | 47 +++++++++++++++++++++++++++++++++++++----------
+ configure.ac |    3 ++-
+ m4/python.m4 |   47 +++++++++++++++++++++++++++++++++++++----------
  2 files changed, 39 insertions(+), 11 deletions(-)
 
 commit 2c9fd09da196d35db968bff4ae63fcce2d891e69
@@ -6301,7 +6208,7 @@ Date:   Fri Sep 9 15:38:22 2011 +0100
     See
     http://blogs.gnome.org/desrt/2011/09/08/am_maintainer_mode-is-not-cool/
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit b24dcb415406668931e02a1f669ef9861bb3a660
@@ -6312,8 +6219,8 @@ Date:   Wed Aug 24 09:58:10 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=657054
 
- Makefile.am  |  2 +-
- configure.ac | 25 -------------------------
+ Makefile.am  |    2 +-
+ configure.ac |   25 -------------------------
  2 files changed, 1 insertion(+), 26 deletions(-)
 
 commit ecea2358a379c8ff44dff2f8f9c30a9092af1681
@@ -6324,7 +6231,7 @@ Date:   Wed Sep 7 10:38:28 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=657054
 
- docs/Makefile.am | 5 +++--
+ docs/Makefile.am |    5 +++--
  1 file changed, 3 insertions(+), 2 deletions(-)
 
 commit 8d3125c8ce9890c70400dd8a3ac273b590fe6a31
@@ -6340,13 +6247,13 @@ Date:   Tue Sep 6 22:22:11 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=657054
 
- MANIFEST.in              |   7 -
- Makefile.am              |  25 +--
- README.win32             |  21 --
- dsextras.py              | 509
- -----------------------------------------------
- pygobject_postinstall.py |   9 -
- setup.py                 | 351 --------------------------------
+ MANIFEST.in              |    7 -
+ Makefile.am              |   25 +--
+ README.win32             |   21 --
+ dsextras.py              |  509
+ ----------------------------------------------
+ pygobject_postinstall.py |    9 -
+ setup.py                 |  351 --------------------------------
  6 files changed, 7 insertions(+), 915 deletions(-)
 
 commit b82d916635aa0b732840548088a3fcfcb2e41bc4
@@ -6366,7 +6273,7 @@ Date:   Wed Sep 7 10:40:36 2011 +0200
     selecting
     the rotated text demo in the treeview.
 
- demos/gtk-demo/gtk-demo.py | 3 +++
+ demos/gtk-demo/gtk-demo.py |    3 +++
  1 file changed, 3 insertions(+)
 
 commit 31db3ed3d233bd495c3a2f99b3fa51031bfa30c6
@@ -6375,7 +6282,7 @@ Date:   Tue Sep 6 22:13:54 2011 +0200
 
     overrides: add constants for atoms
 
- gi/overrides/Gdk.py | 49
+ gi/overrides/Gdk.py |   49
  +++++++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 49 insertions(+)
 
@@ -6398,10 +6305,10 @@ Date:   Wed Aug 31 14:18:56 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=657814
 
- gi/_gobject/gobjectmodule.c     | 118
- +++++++++-------------------------------
- gi/_gobject/pygobject-private.h |   3 -
- gi/_gobject/pygobject.h         |   8 ---
+ gi/_gobject/gobjectmodule.c     |  118
+ +++++++++------------------------------
+ gi/_gobject/pygobject-private.h |    3 -
+ gi/_gobject/pygobject.h         |    8 ---
  3 files changed, 26 insertions(+), 103 deletions(-)
 
 commit c4c55a98ccf9e39ed0d10ed49b66a76dc7d7c509
@@ -6410,7 +6317,7 @@ Date:   Wed Aug 31 18:00:44 2011 +0200
 
     post release version bump
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit ac5a0f46242abdd3cd98ec5f9f2bf8e5b05f3845
@@ -6419,7 +6326,7 @@ Date:   Wed Aug 31 17:58:37 2011 +0200
 
     Release 2.90.3
 
- NEWS | 12 ++++++++++++
+ NEWS |   12 ++++++++++++
  1 file changed, 12 insertions(+)
 
 commit 429569abddada5a3bad554de707ddf35b349936e
@@ -6435,11 +6342,11 @@ Date:   Thu Aug 25 13:57:53 2011 -0400
       full
     https://bugzilla.gnome.org/show_bug.cgi?id=650135
 
- gi/pygi-cache.c          |  1 +
- gi/pygi-cache.h          |  1 +
- gi/pygi-invoke.c         | 48
- ++++++++++++++++++++++++++++++------------------
- tests/test_everything.py |  8 ++++++++
+ gi/pygi-cache.c          |    1 +
+ gi/pygi-cache.h          |    1 +
+ gi/pygi-invoke.c         |   48
+ +++++++++++++++++++++++++++++-----------------
+ tests/test_everything.py |    8 ++++++++
  4 files changed, 40 insertions(+), 18 deletions(-)
 
 commit 7a234b185b131f3eb6a6e8a8c717ddf4d508b15e
@@ -6448,7 +6355,7 @@ Date:   Tue Aug 2 12:05:12 2011 +0200
 
     Test GPtrArray regression
 
- tests/test_everything.py | 3 +++
+ tests/test_everything.py |    3 +++
  1 file changed, 3 insertions(+)
 
 commit 42fc9fa437102c882844a0e70a081ab08de92658
@@ -6463,13 +6370,13 @@ Date:   Fri Aug 26 10:53:43 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=657413
 
- gi/_gobject/gobjectmodule.c     | 20 --------------------
- gi/_gobject/pygobject-private.h |  1 -
- gi/_gobject/pygobject.c         |  1 -
- gi/_gobject/pygobject.h         |  2 --
- gi/gimodule.c                   | 28 ----------------------------
- gi/types.py                     |  2 --
- tests/testhelpermodule.c        |  5 -----
+ gi/_gobject/gobjectmodule.c     |   20 --------------------
+ gi/_gobject/pygobject-private.h |    1 -
+ gi/_gobject/pygobject.c         |    1 -
+ gi/_gobject/pygobject.h         |    2 --
+ gi/gimodule.c                   |   28 ----------------------------
+ gi/types.py                     |    2 --
+ tests/testhelpermodule.c        |    5 -----
  7 files changed, 59 deletions(-)
 
 commit 3961a405e1bddef22e1a5a0c7aa3ae55e4ec09ad
@@ -6483,14 +6390,14 @@ Date:   Fri Aug 26 10:45:59 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=642233
 
- gi/_gobject/gobjectmodule.c |  1 -
- gi/_gobject/pygobject.c     | 53 ----------------------------------------
- gi/_gobject/pygobject.h     |  4 ---
- tests/test-floating.c       | 59
- +++++++--------------------------------------
- tests/test-floating.h       | 42 +++++++++-----------------------
- tests/test_gobject.py       | 13 +++-------
- tests/testhelpermodule.c    | 32 +++++++-----------------
+ gi/_gobject/gobjectmodule.c |    1 -
+ gi/_gobject/pygobject.c     |   53 --------------------------------------
+ gi/_gobject/pygobject.h     |    4 ---
+ tests/test-floating.c       |   59
+ +++++++------------------------------------
+ tests/test-floating.h       |   42 ++++++++----------------------
+ tests/test_gobject.py       |   13 +++-------
+ tests/testhelpermodule.c    |   32 +++++++----------------
  7 files changed, 32 insertions(+), 172 deletions(-)
 
 commit 631d8ef879a13492945a3e30b3df9863a4ba2f44
@@ -6506,7 +6413,7 @@ Date:   Wed Aug 24 17:30:09 2011 -0500
 
     https://bugzilla.gnome.org/show_bug.cgi?id=657120
 
- gi/pygi-marshal-out.c | 8 +++++++-
+ gi/pygi-marshal-out.c |    8 +++++++-
  1 file changed, 7 insertions(+), 1 deletion(-)
 
 commit f38511f251602e18551c04617cc2e2d42e812e1e
@@ -6523,8 +6430,8 @@ Date:   Tue Aug 23 14:18:43 2011 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=657120
 
- gi/pygi-marshal-out.c | 23 +++++++++--------------
- tests/test_gi.py      |  8 ++++++++
+ gi/pygi-marshal-out.c |   23 +++++++++--------------
+ tests/test_gi.py      |    8 ++++++++
  2 files changed, 17 insertions(+), 14 deletions(-)
 
 commit d92846a5446b0dd2e69c813f56224a1966ab1a33
@@ -6533,7 +6440,7 @@ Date:   Tue Aug 23 11:30:41 2011 +0200
 
     [gtk-demo] printing.py: set print and error dialog transient parent
 
- demos/gtk-demo/demos/printing.py | 8 ++++----
+ demos/gtk-demo/demos/printing.py |    8 ++++----
  1 file changed, 4 insertions(+), 4 deletions(-)
 
 commit 1aebc1565752840075027b9452fe2a67217bf53b
@@ -6543,7 +6450,7 @@ Date:   Tue Aug 23 11:28:05 2011 +0200
     [gtk-demo] printing.py: exit Gtk mainloop when done and correctly
     handle printing errors
 
- demos/gtk-demo/demos/printing.py | 14 ++++++++++----
+ demos/gtk-demo/demos/printing.py |   14 ++++++++++----
  1 file changed, 10 insertions(+), 4 deletions(-)
 
 commit 1f9e4486c5b84209ce0038887738fc16a4ef7da3
@@ -6552,7 +6459,7 @@ Date:   Tue Aug 23 08:05:43 2011 +0200
 
     [gtk-demo] show "activated" demo's in italic font in the TreeView
 
- demos/gtk-demo/gtk-demo.py | 7 +++++--
+ demos/gtk-demo/gtk-demo.py |    7 +++++--
  1 file changed, 5 insertions(+), 2 deletions(-)
 
 commit 971d063f7a36e13ef6621db7002b00af52f6292a
@@ -6562,7 +6469,7 @@ Date:   Mon Aug 22 14:52:28 2011 +0200
     [gtk-demo] source colorizer: Python3 does not have the BACKQUOTE
     token, so simply remove it
 
- demos/gtk-demo/gtk-demo.py | 5 +----
+ demos/gtk-demo/gtk-demo.py |    5 +----
  1 file changed, 1 insertion(+), 4 deletions(-)
 
 commit c2979a37d6d505095b6e55789150a6498d95819d
@@ -6577,7 +6484,7 @@ Date:   Mon Aug 22 14:22:18 2011 +0200
     section "If pre-2.6 compatibility is needed" (because configure.ac
     is still happy with Python 2.5.2).
 
- demos/gtk-demo/gtk-demo.py | 6 +++++-
+ demos/gtk-demo/gtk-demo.py |    6 +++++-
  1 file changed, 5 insertions(+), 1 deletion(-)
 
 commit 9ea56535f35abbea4cd977dea4c89247e4b01694
@@ -6586,7 +6493,7 @@ Date:   Mon Aug 22 12:30:24 2011 +0200
 
     [gtk-demo] images.py: fix 'Insensitive 'button mnenomic
 
- demos/gtk-demo/demos/images.py | 2 +-
+ demos/gtk-demo/demos/images.py |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 7829dae1cdb8697a19c2b5e158ef0e08f6c2558b
@@ -6596,7 +6503,7 @@ Date:   Mon Aug 22 10:38:04 2011 +0200
     [gtk-demo] printing.py: fix Pango.EllipsizeType > Pango.EllipsizeMode
     & get_pixel_size
 
- demos/gtk-demo/demos/printing.py | 4 ++--
+ demos/gtk-demo/demos/printing.py |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit 07f0274301d77d9bf62b49a14b059d9a52afb445
@@ -6605,7 +6512,7 @@ Date:   Mon Aug 22 10:37:08 2011 +0200
 
     [gtk-demo] printing.py: fix text file loading
 
- demos/gtk-demo/demos/printing.py | 32 ++++++++++++++++----------------
+ demos/gtk-demo/demos/printing.py |   32 ++++++++++++++++----------------
  1 file changed, 16 insertions(+), 16 deletions(-)
 
 commit 135148a4c35aac1d132b0b8fa3adbf1fdcdb3a24
@@ -6614,7 +6521,7 @@ Date:   Mon Aug 22 10:20:35 2011 +0200
 
     [gtk-demo] pixbuf.py: fix image loading
 
- demos/gtk-demo/demos/pixbuf.py | 25 +++++++++++--------------
+ demos/gtk-demo/demos/pixbuf.py |   25 +++++++++++--------------
  1 file changed, 11 insertions(+), 14 deletions(-)
 
 commit a93cae2c80e30a408f86e7e6c4d15a538011a189
@@ -6623,8 +6530,8 @@ Date:   Mon Aug 22 10:10:02 2011 +0200
 
     [gtk-demo] images.py: fix logo loading
 
- demos/gtk-demo/demos/images.py | 70
- +++++++++++++++++-------------------------
+ demos/gtk-demo/demos/images.py |   70
+ +++++++++++++++++-----------------------
  1 file changed, 29 insertions(+), 41 deletions(-)
 
 commit eddc0824e0e4c156fca5de05bdeb600c534d4b24
@@ -6633,7 +6540,7 @@ Date:   Wed Aug 24 12:19:21 2011 +0200
 
     [gtk-demo] appwindow.py: set AboutDialog parent
 
- demos/gtk-demo/demos/appwindow.py | 7 +++----
+ demos/gtk-demo/demos/appwindow.py |    7 +++----
  1 file changed, 3 insertions(+), 4 deletions(-)
 
 commit 7fe10a5b33148b1f029f3d34f76b7f880c1c2e7a
@@ -6642,7 +6549,7 @@ Date:   Mon Aug 22 07:58:25 2011 +0200
 
     [gtk-demo] appwindow.py: fix logo loading
 
- demos/gtk-demo/demos/appwindow.py | 10 +++-------
+ demos/gtk-demo/demos/appwindow.py |   10 +++-------
  1 file changed, 3 insertions(+), 7 deletions(-)
 
 commit 62fda288c1c37167c589e8e9d49ed625f770a98a
@@ -6651,7 +6558,7 @@ Date:   Mon Aug 22 07:57:31 2011 +0200
 
     [gtk-demo] appwindow.py: fix callback signatures
 
- demos/gtk-demo/demos/appwindow.py | 6 +++---
+ demos/gtk-demo/demos/appwindow.py |    6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)
 
 commit 87e9ab4d3a0aac4f4710aa0f8af0a1736f781ad9
@@ -6660,8 +6567,8 @@ Date:   Mon Aug 22 07:48:28 2011 +0200
 
     [gtk-demo] fix glib vs GLib usage
 
- demos/gtk-demo/demos/Icon View/iconviewbasics.py | 2 +-
- demos/gtk-demo/demos/appwindow.py                | 2 +-
+ demos/gtk-demo/demos/Icon View/iconviewbasics.py |    2 +-
+ demos/gtk-demo/demos/appwindow.py                |    2 +-
  2 files changed, 2 insertions(+), 2 deletions(-)
 
 commit d29cad6976a80862e1fc590d3e7d190e8a234866
@@ -6671,7 +6578,7 @@ Date:   Wed Aug 24 12:19:02 2011 +0200
     [gtk-demo] iconviewedit.py: fix for Gdk.color_parse API breakage
     caused by improved GDK overrides
 
- demos/gtk-demo/demos/Icon View/iconviewedit.py | 6 +++---
+ demos/gtk-demo/demos/Icon View/iconviewedit.py |    6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)
 
 commit f29d3a85a275a39e8481484779264b0dea1160ab
@@ -6681,7 +6588,7 @@ Date:   Mon Aug 22 07:25:32 2011 +0200
     [gtk-demo] optimize source colorizer by only preparing iters for
     known colorized tokens
 
- demos/gtk-demo/gtk-demo.py | 20 +++++++++++++++-----
+ demos/gtk-demo/gtk-demo.py |   20 +++++++++++++++-----
  1 file changed, 15 insertions(+), 5 deletions(-)
 
 commit ecd1eb00b19733da3f2e3d7935792378f34cab19
@@ -6690,17 +6597,17 @@ Date:   Fri Aug 19 18:31:20 2011 +0200
 
     [gtk-demo] small formatting fixes
 
- demos/gtk-demo/demos/Entry/entry_buffer.py       | 1 +
- demos/gtk-demo/demos/Entry/entry_completion.py   | 1 +
- demos/gtk-demo/demos/Icon View/iconviewbasics.py | 8 ++++----
- demos/gtk-demo/demos/assistant.py                | 1 +
- demos/gtk-demo/demos/builder.py                  | 4 +++-
- demos/gtk-demo/demos/button_box.py               | 1 +
- demos/gtk-demo/demos/clipboard.py                | 1 +
- demos/gtk-demo/demos/colorselector.py            | 1 +
- demos/gtk-demo/demos/combobox.py                 | 1 +
- demos/gtk-demo/demos/drawingarea.py              | 4 +++-
- demos/gtk-demo/demos/test.py                     | 2 ++
+ demos/gtk-demo/demos/Entry/entry_buffer.py       |    1 +
+ demos/gtk-demo/demos/Entry/entry_completion.py   |    1 +
+ demos/gtk-demo/demos/Icon View/iconviewbasics.py |    8 ++++----
+ demos/gtk-demo/demos/assistant.py                |    1 +
+ demos/gtk-demo/demos/builder.py                  |    4 +++-
+ demos/gtk-demo/demos/button_box.py               |    1 +
+ demos/gtk-demo/demos/clipboard.py                |    1 +
+ demos/gtk-demo/demos/colorselector.py            |    1 +
+ demos/gtk-demo/demos/combobox.py                 |    1 +
+ demos/gtk-demo/demos/drawingarea.py              |    4 +++-
+ demos/gtk-demo/demos/test.py                     |    2 ++
  11 files changed, 19 insertions(+), 6 deletions(-)
 
 commit c42cb4da399ff5732f4ca732b85134de796a60fa
@@ -6709,17 +6616,17 @@ Date:   Fri Aug 19 18:30:50 2011 +0200
 
     [gtk-demo] remove "is_fully_bound" from demos
 
- demos/gtk-demo/demos/Entry/entry_buffer.py     | 2 --
- demos/gtk-demo/demos/Entry/entry_completion.py | 2 --
- demos/gtk-demo/demos/appwindow.py              | 3 ---
- demos/gtk-demo/demos/assistant.py              | 2 --
- demos/gtk-demo/demos/builder.py                | 2 --
- demos/gtk-demo/demos/button_box.py             | 2 --
- demos/gtk-demo/demos/clipboard.py              | 2 --
- demos/gtk-demo/demos/colorselector.py          | 2 --
- demos/gtk-demo/demos/combobox.py               | 2 --
- demos/gtk-demo/demos/drawingarea.py            | 2 --
- demos/gtk-demo/demos/test.py                   | 1 -
+ demos/gtk-demo/demos/Entry/entry_buffer.py     |    2 --
+ demos/gtk-demo/demos/Entry/entry_completion.py |    2 --
+ demos/gtk-demo/demos/appwindow.py              |    3 ---
+ demos/gtk-demo/demos/assistant.py              |    2 --
+ demos/gtk-demo/demos/builder.py                |    2 --
+ demos/gtk-demo/demos/button_box.py             |    2 --
+ demos/gtk-demo/demos/clipboard.py              |    2 --
+ demos/gtk-demo/demos/colorselector.py          |    2 --
+ demos/gtk-demo/demos/combobox.py               |    2 --
+ demos/gtk-demo/demos/drawingarea.py            |    2 --
+ demos/gtk-demo/demos/test.py                   |    1 -
  11 files changed, 22 deletions(-)
 
 commit cad6a62c63f455f0b1315465a9cd71c0f02b12a5
@@ -6729,8 +6636,8 @@ Date:   Fri Aug 19 18:26:31 2011 +0200
     [gtk-demo] add source colorizer loosely based on PyGTK's pygtk-demo
     and GTK+'s gtk-demo code
 
- demos/gtk-demo/gtk-demo.py | 116
- +++++++++++++++++++++++++++++++++++++++------
+ demos/gtk-demo/gtk-demo.py |  116
+ ++++++++++++++++++++++++++++++++++++++------
  1 file changed, 101 insertions(+), 15 deletions(-)
 
 commit 250c36f4a8352ff1b31c1c85b156d3e803d4b8ef
@@ -6739,7 +6646,7 @@ Date:   Fri Aug 19 15:08:15 2011 +0200
 
     [gtk-demo] remove C-isms
 
- demos/gtk-demo/gtk-demo.py | 28 ++++++++++++++--------------
+ demos/gtk-demo/gtk-demo.py |   28 ++++++++++++++--------------
  1 file changed, 14 insertions(+), 14 deletions(-)
 
 commit cf35fe8e259e786d0fa21b08b1f5c64c9bb0a84e
@@ -6748,7 +6655,7 @@ Date:   Fri Aug 19 14:54:39 2011 +0200
 
     [gtk-demo] fix text on info tab to be more like GTK+'s gtk-demo
 
- demos/gtk-demo/gtk-demo.py | 4 ++--
+ demos/gtk-demo/gtk-demo.py |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit 241827208e25c72a990d8edd95a3b879470d6409
@@ -6761,8 +6668,8 @@ Date:   Fri Aug 19 14:40:56 2011 +0200
     This also moves demos loading code into the TreeStore subclass and
     demo loading code into the Demo class
 
- demos/gtk-demo/gtk-demo.py | 151
- +++++++++++++++++++++------------------------
+ demos/gtk-demo/gtk-demo.py |  151
+ ++++++++++++++++++++------------------------
  1 file changed, 70 insertions(+), 81 deletions(-)
 
 commit 58797c355a08a35375988881a17958bb42ad54bb
@@ -6772,7 +6679,7 @@ Date:   Fri Aug 19 14:40:00 2011 +0200
     [gtk-demo] make GtkDemoApp a Gtk.Window subclass and adapt main()
     to demonstrate the GLib.MainLoop
 
- demos/gtk-demo/gtk-demo.py | 43
+ demos/gtk-demo/gtk-demo.py |   43
  ++++++++++++++++++++++++++-----------------
  1 file changed, 26 insertions(+), 17 deletions(-)
 
@@ -6782,7 +6689,7 @@ Date:   Fri Aug 19 11:46:17 2011 +0200
 
     [gtk-demo] correctly load demo code when cwd != demos/gtk-demo/
 
- demos/gtk-demo/gtk-demo.py | 39 +++++++++++++++++++++++----------------
+ demos/gtk-demo/gtk-demo.py |   39 +++++++++++++++++++++++----------------
  1 file changed, 23 insertions(+), 16 deletions(-)
 
 commit 6ffc999fbd4c9990fb5bde53ddd46d139b53245e
@@ -6791,7 +6698,7 @@ Date:   Fri Aug 19 11:02:35 2011 +0200
 
     [gtk-demo] drawingarea: fix labels
 
- demos/gtk-demo/demos/drawingarea.py | 4 ++--
+ demos/gtk-demo/demos/drawingarea.py |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit 9fd3986affe11cbc5a816adcccdc56d0592f3618
@@ -6800,9 +6707,9 @@ Date:   Fri Aug 19 09:57:31 2011 +0200
 
     [gtk-demo] fix imports
 
- demos/gtk-demo/demos/Icon View/iconviewbasics.py | 6 ++++--
- demos/gtk-demo/demos/appwindow.py                | 9 ++++++---
- demos/gtk-demo/gtk-demo.py                       | 8 ++++----
+ demos/gtk-demo/demos/Icon View/iconviewbasics.py |    6 ++++--
+ demos/gtk-demo/demos/appwindow.py                |    9 ++++++---
+ demos/gtk-demo/gtk-demo.py                       |    8 ++++----
  3 files changed, 14 insertions(+), 9 deletions(-)
 
 commit 9f314babfdee3b82799e00ea003972b0bbe6a8d5
@@ -6811,7 +6718,7 @@ Date:   Fri Aug 19 10:07:14 2011 +0200
 
     [gtk-demo] fix shebang
 
- demos/gtk-demo/gtk-demo.py | 2 +-
+ demos/gtk-demo/gtk-demo.py |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 01142060ae7d71a8a1f7d3e9bbc6f52e65f01c8d
@@ -6823,9 +6730,9 @@ Date:   Fri Aug 19 12:27:04 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=656891
 
- gi/overrides/Gtk.py     | 26 ++++++++++++++++++++--
- tests/test_overrides.py | 57
- +++++++++++++++++++++++++++++++++++++++++++++++++
+ gi/overrides/Gtk.py     |   26 +++++++++++++++++++--
+ tests/test_overrides.py |   57
+ +++++++++++++++++++++++++++++++++++++++++++++++
  2 files changed, 81 insertions(+), 2 deletions(-)
 
 commit d6da96c65b2ed3cda238886990a624fbc31f6987
@@ -6834,7 +6741,7 @@ Date:   Wed Aug 24 16:31:12 2011 +0200
 
     Convert ACCEL_* constants into Gtk.AccelFlags.
 
- pygi-convert.sh | 1 +
+ pygi-convert.sh |    1 +
  1 file changed, 1 insertion(+)
 
 commit 0841d41698302abb5d987849a5874252564ed428
@@ -6843,7 +6750,7 @@ Date:   Wed Aug 24 16:22:17 2011 +0200
 
     Convert TREE_VIEW_DROP_* constants into Gtk.TreeViewDropPosition
 
- pygi-convert.sh | 1 +
+ pygi-convert.sh |    1 +
  1 file changed, 1 insertion(+)
 
 commit 37b0d0f9dc3d485829cae6e50da369fdea91a2d1
@@ -6852,7 +6759,7 @@ Date:   Thu Aug 18 14:06:32 2011 -0400
 
     post commit version bump
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit e51efc50835a14e0418cc27cc928c52d1aa6a3cf
@@ -6861,7 +6768,7 @@ Date:   Thu Aug 18 14:02:30 2011 -0400
 
     release 2.90.2
 
- NEWS | 10 ++++++++++
+ NEWS |   10 ++++++++++
  1 file changed, 10 insertions(+)
 
 commit 74c727b53fcf64f465ee77b5a1ea04a69ca90968
@@ -6870,7 +6777,7 @@ Date:   Thu Aug 18 13:50:51 2011 -0400
 
     remove tests that were removed from gi
 
- tests/test_gi.py | 11 -----------
+ tests/test_gi.py |   11 -----------
  1 file changed, 11 deletions(-)
 
 commit 11ea24dd30d8eeca11c8433c6bd75b06e52ae1ef
@@ -6883,7 +6790,7 @@ Date:   Thu Aug 18 13:48:57 2011 -0400
        arrays causes a crash in the tests because of this
      * disregaurd is_pointer when cacluating item sizes
 
- gi/pygi-info.c | 8 ++------
+ gi/pygi-info.c |    8 ++------
  1 file changed, 2 insertions(+), 6 deletions(-)
 
 commit 493b4a21dd162d78cf572b548b58ba6a9ff22971
@@ -6894,7 +6801,7 @@ Date:   Wed Jul 6 01:50:31 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=654162
 
- examples/signal.py | 9 ++++-----
+ examples/signal.py |    9 ++++-----
  1 file changed, 4 insertions(+), 5 deletions(-)
 
 commit 0332010e704e253380e993874eab9dd122e59a7e
@@ -6905,7 +6812,7 @@ Date:   Wed Jul 6 01:54:50 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=654162
 
- examples/properties.py | 14 +++++++-------
+ examples/properties.py |   14 +++++++-------
  1 file changed, 7 insertions(+), 7 deletions(-)
 
 commit c39f4555ebd703651eca6f978ed9870655b737f0
@@ -6920,9 +6827,9 @@ Date:   Fri Aug 12 22:55:02 2011 +0200
     generating
     introspection XML for exported DBus server objects.
 
- gi/overrides/GLib.py    | 50
- +++++++++++++++++++++++++++++++++++++++++++++++++
- tests/test_overrides.py | 22 ++++++++++++++++++++++
+ gi/overrides/GLib.py    |   50
+ +++++++++++++++++++++++++++++++++++++++++++++++
+ tests/test_overrides.py |   22 +++++++++++++++++++++
  2 files changed, 72 insertions(+)
 
 commit 735f98d83c1c19df7457aa32a378e8c80cf2831f
@@ -6933,7 +6840,7 @@ Date:   Mon Aug 15 18:58:31 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=654001
 
- pygi-convert.sh | 2 ++
+ pygi-convert.sh |    2 ++
  1 file changed, 2 insertions(+)
 
 commit d0a96a0a75f2bc969522abce2d326ef440cf143a
@@ -6944,9 +6851,9 @@ Date:   Mon Aug 15 13:12:49 2011 +0200
 
     This is needed by libpeas.
 
- gi/_gobject/Makefile.am         | 5 ++++-
- pygobject-3.0-uninstalled.pc.in | 4 ++--
- pygobject-3.0.pc.in             | 6 +++---
+ gi/_gobject/Makefile.am         |    5 ++++-
+ pygobject-3.0-uninstalled.pc.in |    4 ++--
+ pygobject-3.0.pc.in             |    6 +++---
  3 files changed, 9 insertions(+), 6 deletions(-)
 
 commit 081dc2eb03b677eac9f08d3ad05deecc7c51554c
@@ -6955,7 +6862,7 @@ Date:   Sun Aug 14 11:20:15 2011 -0400
 
     update the doap file
 
- pygobject.doap | 26 ++++++++++++++------------
+ pygobject.doap |   26 ++++++++++++++------------
  1 file changed, 14 insertions(+), 12 deletions(-)
 
 commit 762a36d2343bc39a502507d600fd1b9db9649dae
@@ -6964,7 +6871,7 @@ Date:   Sun Aug 14 11:13:25 2011 -0400
 
     prerelease bump
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit d3f85a61ec4b1a1d04838f73dc8d862258150048
@@ -6973,8 +6880,8 @@ Date:   Sun Aug 14 10:13:37 2011 -0400
 
     get things ready for release
 
- NEWS | 194
- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ NEWS |  194
+ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 194 insertions(+)
 
 commit ffd057649380d4249c1c52e1225e3646f3994bc6
@@ -6983,7 +6890,7 @@ Date:   Sun Aug 14 05:26:18 2011 -0400
 
     pass exta keywords to the Box constructor
 
- gi/overrides/Gtk.py | 4 ++--
+ gi/overrides/Gtk.py |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit cadbd4142bd0045368b5123d4b0a1876bdd5d798
@@ -6992,9 +6899,9 @@ Date:   Sat Aug 13 11:03:07 2011 -0400
 
     add (Tree|List)Store set method override
 
- gi/overrides/Gtk.py     |  50 ++++++++++++++++++++++++
- tests/test_overrides.py | 102
- ++++++++++++++++++++++++++++++++++++++++++++++--
+ gi/overrides/Gtk.py     |   50 +++++++++++++++++++++++
+ tests/test_overrides.py |  102
+ +++++++++++++++++++++++++++++++++++++++++++++--
  2 files changed, 149 insertions(+), 3 deletions(-)
 
 commit 9ee9b22bd95e44bd2eca26e7bf3b0a9a988700c5
@@ -7003,7 +6910,7 @@ Date:   Sat Aug 13 09:19:29 2011 -0400
 
     add test for object arrays
 
- tests/test_everything.py | 6 ++++++
+ tests/test_everything.py |    6 ++++++
  1 file changed, 6 insertions(+)
 
 commit c9d9ffd0380878792cbdb13dec4e53be897e5fbc
@@ -7018,8 +6925,8 @@ Date:   Sat Aug 13 08:46:18 2011 -0400
       prevelant
       it has been decided to only support those arrays
 
- gi/pygi-marshal-out.c | 2 +-
- tests/test_gi.py      | 8 --------
+ gi/pygi-marshal-out.c |    2 +-
+ tests/test_gi.py      |    8 --------
  2 files changed, 1 insertion(+), 9 deletions(-)
 
 commit b12379de1790b72d51883bf7b63c892639a892e7
@@ -7028,7 +6935,7 @@ Date:   Sat Aug 13 06:31:52 2011 -0400
 
     revert Gtk.Window override because it causes issues with subclasses
 
- gi/overrides/Gtk.py | 9 ---------
+ gi/overrides/Gtk.py |    9 ---------
  1 file changed, 9 deletions(-)
 
 commit 3e64a62d6d7f9e9d2820aad54187ef9c34710a1f
@@ -7037,7 +6944,7 @@ Date:   Thu Apr 7 21:05:32 2011 +1000
 
     take GIL in _pygi_invoke_closure_free (bug #647016)
 
- gi/pygi-closure.c | 3 +++
+ gi/pygi-closure.c |    3 +++
  1 file changed, 3 insertions(+)
 
 commit f8de9b8615f5dc30f492781d792aef5fc1e9ab73
@@ -7048,7 +6955,7 @@ Date:   Mon Jun 27 00:41:24 2011 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=653462
 
- gi/overrides/Gtk.py | 3 +++
+ gi/overrides/Gtk.py |    3 +++
  1 file changed, 3 insertions(+)
 
 commit 583d0b3c6b53712128d7c2d5f075000a2a76ae5f
@@ -7063,7 +6970,7 @@ Date:   Mon Jun 27 00:40:12 2011 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=653462
 
- gi/overrides/Gtk.py | 3 +++
+ gi/overrides/Gtk.py |    3 +++
  1 file changed, 3 insertions(+)
 
 commit 017fdfc1dd06259006719e02ffa48883cee01ffd
@@ -7077,7 +6984,7 @@ Date:   Mon Jun 27 00:39:41 2011 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=653462
 
- gi/overrides/Gtk.py | 40 ++++++++++++++++++++++++++++++++++++++++
+ gi/overrides/Gtk.py |   40 ++++++++++++++++++++++++++++++++++++++++
  1 file changed, 40 insertions(+)
 
 commit af8bc9d5cdba48a7ee728ccb7ea9039df3ecceba
@@ -7091,7 +6998,7 @@ Date:   Mon Jun 27 00:38:30 2011 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=653462
 
- gi/overrides/Gtk.py | 15 ++++++++++++---
+ gi/overrides/Gtk.py |   15 ++++++++++++---
  1 file changed, 12 insertions(+), 3 deletions(-)
 
 commit 7914d814350af1a18bdeda64f049c8e9a68d1d18
@@ -7102,7 +7009,7 @@ Date:   Mon Jun 27 00:38:20 2011 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=653462
 
- gi/overrides/Gtk.py | 3 +++
+ gi/overrides/Gtk.py |    3 +++
  1 file changed, 3 insertions(+)
 
 commit 5b1c875269b7979caae97e84919a690a34d92f29
@@ -7119,7 +7026,7 @@ Date:   Mon Jun 27 00:36:20 2011 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=653462
 
- gi/overrides/Gdk.py | 8 ++++++++
+ gi/overrides/Gdk.py |    8 ++++++++
  1 file changed, 8 insertions(+)
 
 commit 187a2932bbf1e724f759ff3ed3392fc7341c6aa8
@@ -7130,13 +7037,13 @@ Date:   Mon Aug 8 12:06:18 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=625596
 
- gi/pygi-cache.c          |  39 ++++++++++++
- gi/pygi-cache.h          |   4 ++
- gi/pygi-invoke.c         | 162
- +++++++++++++++++++++++++++++++++++++++++++++--
- gi/types.py              |  12 ++--
- tests/test_everything.py |   2 +-
- tests/test_gi.py         |  58 +++++++++++++++++
+ gi/pygi-cache.c          |   39 +++++++++++
+ gi/pygi-cache.h          |    4 ++
+ gi/pygi-invoke.c         |  162
+ ++++++++++++++++++++++++++++++++++++++++++++--
+ gi/types.py              |   12 ++--
+ tests/test_everything.py |    2 +-
+ tests/test_gi.py         |   58 +++++++++++++++++
  6 files changed, 265 insertions(+), 12 deletions(-)
 
 commit e5df32ffbf37481dbb6a70c4d4e7b7b9778c5549
@@ -7145,7 +7052,7 @@ Date:   Sat Aug 13 04:13:28 2011 -0400
 
     remove references to deprecated GI_INFO_TYPE_ERROR_DOMAIN
 
- gi/pygi-info.c | 5 -----
+ gi/pygi-info.c |    5 -----
  1 file changed, 5 deletions(-)
 
 commit 745001178fc72be5626c7211366d694f41162987
@@ -7158,7 +7065,7 @@ Date:   Thu Aug 11 15:11:42 2011 +0200
     works. Also
     update the warning to explain how to fix the problem.
 
- gi/_gobject/__init__.py | 8 ++++----
+ gi/_gobject/__init__.py |    8 ++++----
  1 file changed, 4 insertions(+), 4 deletions(-)
 
 commit 25d2d05cba05414cd4551e0e06f6286a9b97a509
@@ -7171,9 +7078,9 @@ Date:   Fri Jul 22 15:46:31 2011 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=642048
 
- gi/importer.py |  11 +++---
- gi/module.py   | 118
- ++++++++++++++++++++++++++++-----------------------------
+ gi/importer.py |   11 +++---
+ gi/module.py   |  118
+ ++++++++++++++++++++++++++++----------------------------
  2 files changed, 64 insertions(+), 65 deletions(-)
 
 commit 698b2284e29c0f699198cf6a22eeb0e399daba6e
@@ -7184,7 +7091,7 @@ Date:   Fri Jul 22 15:45:09 2011 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=642048
 
- gi/__init__.py | 2 +-
+ gi/__init__.py |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 7b068ebe59884ebd9aeb4425dc80cdff73a66fb1
@@ -7195,12 +7102,12 @@ Date:   Fri Jul 22 14:13:02 2011 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=642048
 
- tests/test_mainloop.py   |  7 +++----
- tests/test_option.py     |  3 ++-
- tests/test_source.py     | 24 +++++++++++-------------
- tests/test_subprocess.py | 12 +++++-------
- tests/test_thread.py     | 10 ++++------
- tests/test_uris.py       |  4 ++--
+ tests/test_mainloop.py   |    7 +++----
+ tests/test_option.py     |    3 ++-
+ tests/test_source.py     |   24 +++++++++++-------------
+ tests/test_subprocess.py |   12 +++++-------
+ tests/test_thread.py     |   10 ++++------
+ tests/test_uris.py       |    4 ++--
  6 files changed, 27 insertions(+), 33 deletions(-)
 
 commit 191ef79315f8a5641699536fde58da18e23ef904
@@ -7211,8 +7118,8 @@ Date:   Fri Jul 22 14:11:53 2011 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=642048
 
- gi/importer.py |  7 +++++--
- gi/module.py   | 32 +++++++++++++++++++++++++++++---
+ gi/importer.py |    7 +++++--
+ gi/module.py   |   32 +++++++++++++++++++++++++++++---
  2 files changed, 34 insertions(+), 5 deletions(-)
 
 commit fbd4a8263260c187211799454c08b1e55e2cb998
@@ -7223,13 +7130,13 @@ Date:   Fri Jul 22 12:27:41 2011 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=642048
 
- gi/_glib/pygiochannel.c     | 38 +++++++++++++++++++-------------------
- gi/_glib/pygmaincontext.c   |  2 +-
- gi/_glib/pygmainloop.c      |  4 ++--
- gi/_glib/pygoptioncontext.c |  4 ++--
- gi/_glib/pygoptiongroup.c   |  4 ++--
- gi/_glib/pygsource.c        | 14 +++++++-------
- gi/_glib/pygspawn.c         | 14 +++++++-------
+ gi/_glib/pygiochannel.c     |   38 +++++++++++++++++++-------------------
+ gi/_glib/pygmaincontext.c   |    2 +-
+ gi/_glib/pygmainloop.c      |    4 ++--
+ gi/_glib/pygoptioncontext.c |    4 ++--
+ gi/_glib/pygoptiongroup.c   |    4 ++--
+ gi/_glib/pygsource.c        |   14 +++++++-------
+ gi/_glib/pygspawn.c         |   14 +++++++-------
  7 files changed, 40 insertions(+), 40 deletions(-)
 
 commit 7431b49a161df9178c55b814d3adff992ac2d722
@@ -7240,9 +7147,9 @@ Date:   Fri Jul 22 12:26:32 2011 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=642048
 
- gi/Makefile.am          |  2 +-
- gi/_glib/Makefile.am    | 10 +++++-----
- gi/_gobject/Makefile.am |  2 +-
+ gi/Makefile.am          |    2 +-
+ gi/_glib/Makefile.am    |   10 +++++-----
+ gi/_gobject/Makefile.am |    2 +-
  3 files changed, 7 insertions(+), 7 deletions(-)
 
 commit b8700451acd4a19b59b64fc8641fca748d2189e2
@@ -7260,22 +7167,22 @@ Date:   Fri Jul 22 11:20:09 2011 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=642048
 
- tests/runtests-windows.py |   4 +-
- tests/test_gdbus.py       |  12 ++---
- tests/test_gi.py          |   4 +-
- tests/test_gobject.py     |  31 ++++++------
- tests/test_interface.py   |  16 +++---
- tests/test_mainloop.py    |   3 +-
- tests/test_overrides.py   |   8 +--
- tests/test_properties.py  | 124
- +++++++++++++++++++++++-----------------------
- tests/test_signal.py      |  98 ++++++++++++++++++------------------
- tests/test_source.py      |   5 +-
- tests/test_subprocess.py  |   3 +-
- tests/test_thread.py      |   5 +-
- tests/test_unknown.py     |   8 +--
- tests/testhelpermodule.c  |   2 +-
- tests/testmodule.py       |  10 ++--
+ tests/runtests-windows.py |    4 +-
+ tests/test_gdbus.py       |   12 ++---
+ tests/test_gi.py          |    4 +-
+ tests/test_gobject.py     |   31 ++++++------
+ tests/test_interface.py   |   16 +++---
+ tests/test_mainloop.py    |    3 +-
+ tests/test_overrides.py   |    8 +--
+ tests/test_properties.py  |  124
+ ++++++++++++++++++++++-----------------------
+ tests/test_signal.py      |   98 +++++++++++++++++------------------
+ tests/test_source.py      |    5 +-
+ tests/test_subprocess.py  |    3 +-
+ tests/test_thread.py      |    5 +-
+ tests/test_unknown.py     |    8 +--
+ tests/testhelpermodule.c  |    2 +-
+ tests/testmodule.py       |   10 ++--
  15 files changed, 169 insertions(+), 164 deletions(-)
 
 commit c980dae21468fe073cc8782608148c346bb90ad7
@@ -7286,10 +7193,10 @@ Date:   Fri Jul 22 11:16:00 2011 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=642048
 
- gi/_glib/__init__.py  |  3 ++-
- gi/_glib/glibmodule.c | 10 +++++-----
- gi/_glib/option.py    |  4 ++--
- gi/_glib/pyglib.c     | 18 +++++++++---------
+ gi/_glib/__init__.py  |    3 ++-
+ gi/_glib/glibmodule.c |   10 +++++-----
+ gi/_glib/option.py    |    4 ++--
+ gi/_glib/pyglib.c     |   18 +++++++++---------
  4 files changed, 18 insertions(+), 17 deletions(-)
 
 commit 65ac35cca8d24f4c133991e1c6ac02f49416a9a4
@@ -7305,12 +7212,12 @@ Date:   Fri Jul 22 11:10:46 2011 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=642048
 
- gi/_gobject/__init__.py       | 20 +++++++++++++-------
- gi/_gobject/constants.py      |  3 +--
- gi/_gobject/gobjectmodule.c   |  2 +-
- gi/_gobject/propertyhelper.py | 11 +++++------
- gi/_gobject/pygobject.c       | 16 ++++++++--------
- gi/_gobject/pygobject.h       |  2 +-
+ gi/_gobject/__init__.py       |   20 +++++++++++++-------
+ gi/_gobject/constants.py      |    3 +--
+ gi/_gobject/gobjectmodule.c   |    2 +-
+ gi/_gobject/propertyhelper.py |   11 +++++------
+ gi/_gobject/pygobject.c       |   16 ++++++++--------
+ gi/_gobject/pygobject.h       |    2 +-
  6 files changed, 29 insertions(+), 25 deletions(-)
 
 commit 59ed1289f76bc287443b3974710ea0da3e2cc8cc
@@ -7321,12 +7228,12 @@ Date:   Fri Jul 22 11:07:10 2011 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=642048
 
- gi/importer.py           |  2 --
- gi/module.py             | 31 ++++++++++++++++---------------
- gi/overrides/Gtk.py      |  2 +-
- gi/overrides/__init__.py |  6 +++---
- gi/pygobject-external.h  |  2 +-
- gi/types.py              | 12 ++++++------
+ gi/importer.py           |    2 --
+ gi/module.py             |   31 ++++++++++++++++---------------
+ gi/overrides/Gtk.py      |    2 +-
+ gi/overrides/__init__.py |    6 +++---
+ gi/pygobject-external.h  |    2 +-
+ gi/types.py              |   12 ++++++------
  6 files changed, 27 insertions(+), 28 deletions(-)
 
 commit 6b9d738d78c6ac45d49f00402c89356887555069
@@ -7451,9 +7358,9 @@ Date:   Mon Jul 18 18:46:31 2011 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=642048
 
- Makefile.am |  5 ----
- pygtk.py    | 95
- -------------------------------------------------------------
+ Makefile.am |    5 ----
+ pygtk.py    |   95
+ -----------------------------------------------------------
  2 files changed, 100 deletions(-)
 
 commit 75e9f7d80d9224c05e6063b88479f1baee48c489
@@ -7464,11 +7371,11 @@ Date:   Mon Jul 18 18:41:41 2011 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=642048
 
- Makefile.am         |  8 +-------
- configure.ac        | 43 +++++++++++++++++--------------------------
- gi/pygi.h           | 37 -------------------------------------
- gobject/Makefile.am |  5 +----
- tests/Makefile.am   |  7 +------
+ Makefile.am         |    8 +-------
+ configure.ac        |   43 +++++++++++++++++--------------------------
+ gi/pygi.h           |   37 -------------------------------------
+ gobject/Makefile.am |    5 +----
+ tests/Makefile.am   |    7 +------
  5 files changed, 20 insertions(+), 80 deletions(-)
 
 commit d862168d6a82edd59547d39f5b0ab8279b1e511c
@@ -7479,12 +7386,12 @@ Date:   Mon Jul 18 18:28:50 2011 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=642048
 
- Makefile.am                     |  2 +-
- configure.ac                    |  4 ++--
- pygobject-2.0-uninstalled.pc.in | 18 ------------------
- pygobject-2.0.pc.in             | 22 ----------------------
- pygobject-3.0-uninstalled.pc.in | 18 ++++++++++++++++++
- pygobject-3.0.pc.in             | 22 ++++++++++++++++++++++
+ Makefile.am                     |    2 +-
+ configure.ac                    |    4 ++--
+ pygobject-2.0-uninstalled.pc.in |   18 ------------------
+ pygobject-2.0.pc.in             |   22 ----------------------
+ pygobject-3.0-uninstalled.pc.in |   18 ++++++++++++++++++
+ pygobject-3.0.pc.in             |   22 ++++++++++++++++++++++
  6 files changed, 43 insertions(+), 43 deletions(-)
 
 commit 5189b360ccddbbaee267ce857968fbf1aafdd07a
@@ -7496,7 +7403,7 @@ Date:   Thu Aug 11 09:53:15 2011 +0200
     Callbacks still use GIArgument, add missing GVariant support for
     return types.
 
- gi/pygi-argument.c | 6 ++++--
+ gi/pygi-argument.c |    6 ++++--
  1 file changed, 4 insertions(+), 2 deletions(-)
 
 commit 18a240cc492d2e5ebe2709a0d7155e27c8ff9e63
@@ -7509,7 +7416,7 @@ Date:   Wed Aug 10 14:11:10 2011 +0200
     is the
     equivalent of what commit 9d5604220bd56 did for pygi_marshall_*().
 
- gi/pygi-argument.c | 7 +++++++
+ gi/pygi-argument.c |    7 +++++++
  1 file changed, 7 insertions(+)
 
 commit aa820d6ce2fee83e61e3e9de7c6b7d2452e2847d
@@ -7519,7 +7426,7 @@ Date:   Mon Aug 8 01:58:10 2011 +0200
     [gi] Fix crash: check return value of
     _invoke_state_init_from_callable_cache() before continuing.
 
- gi/pygi-invoke.c | 4 +++-
+ gi/pygi-invoke.c |    4 +++-
  1 file changed, 3 insertions(+), 1 deletion(-)
 
 commit eaad9f3c71cedfe28ff2d2bb05ea6c64e323715f
@@ -7529,8 +7436,8 @@ Date:   Fri Aug 5 21:03:33 2011 +0200
     [gi] Pass gtype as first parameter to vfuncs (instead of using
     kwargs).
 
- gi/pygi-invoke.c | 32 ++++++++++++++++++--------------
- gi/types.py      |  2 +-
+ gi/pygi-invoke.c |   32 ++++++++++++++++++--------------
+ gi/types.py      |    2 +-
  2 files changed, 19 insertions(+), 15 deletions(-)
 
 commit 76edfd0d5776f61c92c84fd9fb8dcc246c580e93
@@ -7576,10 +7483,10 @@ Date:   Mon Jul 18 11:04:58 2011 -0400
     remove some left over ifdefs to complete merge of the invoke-rewrite
     branch
 
- gi/pygi-cache.h   | 2 --
- gi/pygi-info.c    | 2 --
- gi/pygi-private.h | 5 +----
- gi/pygi.h         | 2 --
+ gi/pygi-cache.h   |    2 --
+ gi/pygi-info.c    |    2 --
+ gi/pygi-private.h |    5 +----
+ gi/pygi.h         |    2 --
  4 files changed, 1 insertion(+), 10 deletions(-)
 
 commit 8c653ec3033fab47c4bb4071b5732a349357141f
@@ -7588,11 +7495,11 @@ Date:   Mon Jul 18 10:59:45 2011 -0400
 
     rename pygi-invoke-ng to pygi-invoke
 
- gi/Makefile.am      |   3 +-
- gi/pygi-invoke-ng.c | 464
- ----------------------------------------------------
- gi/pygi-invoke.c    | 464
- ++++++++++++++++++++++++++++++++++++++++++++++++++++
+ gi/Makefile.am      |    3 +-
+ gi/pygi-invoke-ng.c |  464
+ ---------------------------------------------------
+ gi/pygi-invoke.c    |  464
+ +++++++++++++++++++++++++++++++++++++++++++++++++++
  3 files changed, 466 insertions(+), 465 deletions(-)
 
 commit 62d59fa2c2b31d7a3cac8996d58234d4b13bb19f
@@ -7646,7 +7553,7 @@ Date:   Thu Jul 14 11:21:10 2011 +0200
 
     Ship tests/te_ST@nouppera in release tarballs for tests to succeed
 
- tests/Makefile.am | 1 +
+ tests/Makefile.am |    1 +
  1 file changed, 1 insertion(+)
 
 commit e024e832ab9c82d3e299cc6e1cb427de44f2d16e
@@ -7655,8 +7562,8 @@ Date:   Wed Jul 13 15:43:02 2011 -0400
 
     [invoke] break out caller_allocates allocating into its own function
 
- gi/pygi-invoke-ng.c | 78
- +++++++++++++++++++++++++++++++++--------------------
+ gi/pygi-invoke-ng.c |   78
+ ++++++++++++++++++++++++++++++++-------------------
  1 file changed, 49 insertions(+), 29 deletions(-)
 
 commit fc8b8ce768ac780f7ed9edc63b70dd35194153c0
@@ -7665,7 +7572,7 @@ Date:   Wed Jul 13 15:42:26 2011 -0400
 
     [invoke] missed a bit when removing constructor_class usage
 
- gi/pygi-invoke-ng.c | 2 +-
+ gi/pygi-invoke-ng.c |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit c94bcf4ae7e36f90c356c89712b00609f9f849bd
@@ -7674,8 +7581,8 @@ Date:   Wed Jul 13 15:16:17 2011 -0400
 
     [invoke] don't hold on to the constructor class, just add a TODO
 
- gi/pygi-invoke-ng.c           | 11 +++++------
- gi/pygi-invoke-state-struct.h |  1 -
+ gi/pygi-invoke-ng.c           |   11 +++++------
+ gi/pygi-invoke-state-struct.h |    1 -
  2 files changed, 5 insertions(+), 7 deletions(-)
 
 commit c11d3195f324ea41e86e3da7ff99b55425c2faec
@@ -7690,7 +7597,7 @@ Date:   Wed Jul 13 10:40:25 2011 +0200
     completely with
     Python 3. Rewrite it to use gi.repository.Gio.
 
- tests/test_properties.py | 38 +++++++++++++++++++-------------------
+ tests/test_properties.py |   38 +++++++++++++++++++-------------------
  1 file changed, 19 insertions(+), 19 deletions(-)
 
 commit 8f89ff24fcac627ce15ca93038711fded1a7c5ed
@@ -7703,7 +7610,7 @@ Date:   Wed Jul 13 08:42:22 2011 +0200
     str method.
     This unbreaks gi/module.py for Python 3 again.
 
- gi/module.py | 8 ++++++--
+ gi/module.py |    8 ++++++--
  1 file changed, 6 insertions(+), 2 deletions(-)
 
 commit 20aea4b052126fa0bface3e6e0dccfd77f9505b1
@@ -7712,8 +7619,8 @@ Date:   Fri Jul 8 14:39:22 2011 -0400
 
     [caching] remove all inline compiler flags
 
- gi/pygi-cache.c | 96
- ++++++++++++++++++++++++++++-----------------------------
+ gi/pygi-cache.c |   96
+ +++++++++++++++++++++++++++----------------------------
  1 file changed, 48 insertions(+), 48 deletions(-)
 
 commit bf7bb79b66ad406063fb443e7452d830c55986ef
@@ -7722,8 +7629,8 @@ Date:   Fri Jul 8 14:35:20 2011 -0400
 
     [caching] refactor function names to be less confusing
 
- gi/pygi-cache.c | 307
- +++++++++++++++++++++++++++-----------------------------
+ gi/pygi-cache.c |  307
+ +++++++++++++++++++++++++++----------------------------
  1 file changed, 150 insertions(+), 157 deletions(-)
 
 commit c167a9345b01c070bd5a84b4a4b3a53baf9e217d
@@ -7744,7 +7651,7 @@ Date:   Fri Jul 8 11:24:09 2011 -0400
     NO_SEPARATOR
       flag
 
- gi/overrides/Gtk.py | 13 ++++++++-----
+ gi/overrides/Gtk.py |   13 ++++++++-----
  1 file changed, 8 insertions(+), 5 deletions(-)
 
 commit 367e4ededd4a45125157050bcc9e4e685fd4a82d
@@ -7757,7 +7664,7 @@ Date:   Fri Jul 8 10:15:53 2011 +0200
     loop was
     never quit when the call failed.
 
- tests/test_gdbus.py | 6 ++++--
+ tests/test_gdbus.py |    6 ++++--
  1 file changed, 4 insertions(+), 2 deletions(-)
 
 commit 11b578400cbf9f7c270b662a5e8953ccd466e5ef
@@ -7766,10 +7673,10 @@ Date:   Thu Jul 7 19:30:11 2011 -0400
 
     use an enum instead of booleans to denote function type
 
- gi/pygi-cache.c     | 85
- ++++++++++++++++++++++++++++++-----------------------
- gi/pygi-cache.h     | 18 +++++++++---
- gi/pygi-invoke-ng.c |  8 ++---
+ gi/pygi-cache.c     |   85
+ +++++++++++++++++++++++++++++----------------------
+ gi/pygi-cache.h     |   18 ++++++++---
+ gi/pygi-invoke-ng.c |    8 ++---
  3 files changed, 67 insertions(+), 44 deletions(-)
 
 commit 10e31005baec26f61c0f8fca2b5c0337b0be6c70
@@ -7778,11 +7685,11 @@ Date:   Thu Jul 7 15:18:03 2011 -0400
 
     rename aux arguments to child arguments to make their purpose clearer
 
- gi/pygi-cache.c     | 64
- ++++++++++++++++++++++++++---------------------------
- gi/pygi-cache.h     | 29 ++++++++++++++++--------
- gi/pygi-invoke-ng.c | 10 ++++-----
- gi/pygi-marshal.c   | 12 +++++-----
+ gi/pygi-cache.c     |   64
+ +++++++++++++++++++++++++--------------------------
+ gi/pygi-cache.h     |   29 +++++++++++++++--------
+ gi/pygi-invoke-ng.c |   10 ++++----
+ gi/pygi-marshal.c   |   12 +++++-----
  4 files changed, 63 insertions(+), 52 deletions(-)
 
 commit b4ad91c40f713ebdc278ce40b011e4adf9ddbbd7
@@ -7793,7 +7700,7 @@ Date:   Thu Jul 7 10:59:08 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=653844
 
- examples/cairo-demo.py | 6 ++----
+ examples/cairo-demo.py |    6 ++----
  1 file changed, 2 insertions(+), 4 deletions(-)
 
 commit a606bab1ddc605167f2e9dc7c46c8f929fdce23b
@@ -7804,8 +7711,8 @@ Date:   Tue Jul 5 14:28:20 2011 -0700
 
     https://bugzilla.gnome.org/show_bug.cgi?id=654056
 
- gi/overrides/Gtk.py     |  8 ++++++++
- tests/test_overrides.py | 13 ++++++++++++-
+ gi/overrides/Gtk.py     |    8 ++++++++
+ tests/test_overrides.py |   13 ++++++++++++-
  2 files changed, 20 insertions(+), 1 deletion(-)
 
 commit fc5c869486c7f6929e285ea7a86623ec41ecd9bd
@@ -7848,7 +7755,7 @@ Date:   Thu Jul 7 13:39:19 2011 +0200
     Gtk.main()
     -------------- 8< -----------------
 
- gi/overrides/Gtk.py | 10 ++++++++--
+ gi/overrides/Gtk.py |  10 ++++++++--
  1 file changed, 8 insertions(+), 2 deletions(-)
 
 commit 5c04fc5b2ca7e262c052426d5863d69d0c4a24da
@@ -7857,10 +7764,10 @@ Date:   Tue Jul 5 15:57:23 2011 -0400
 
     use gssize instead of int for arg indexes
 
- gi/pygi-cache.c          | 24 ++++++++++++------------
- gi/pygi-cache.h          |  6 +++---
- gi/pygi-invoke-ng.c      |  6 +++---
- gi/pygi-marshal-cleanup.c |  6 +++---
+ gi/pygi-cache.c          |   24 ++++++++++++------------
+ gi/pygi-cache.h          |    6 +++---
+ gi/pygi-invoke-ng.c      |    6 +++---
+ gi/pygi-marshal-cleanup.c |   6 +++---
  4 files changed, 21 insertions(+), 21 deletions(-)
 
 commit ecc09749c34cd4eabf47cc722d768b042dc0be9f
@@ -7869,7 +7776,7 @@ Date:     Tue Jul 5 14:17:30 2011 -0400
 
     [cache] remove refrence to default value as it is not implemented yet
 
- gi/pygi-cache.h | 1 -
+ gi/pygi-cache.h |    1 -
  1 file changed, 1 deletion(-)
 
 commit 433e0fb259047d8c81e5949a31abb5e0feefd27b
@@ -7880,7 +7787,7 @@ Date:     Thu May 12 18:53:06 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=647581
 
- gi/pygi-argument.c | 2 ++
+ gi/pygi-argument.c |   2 ++
  1 file changed, 2 insertions(+)
 
 commit 38cca3c14e79fbc383e3fc65a120bee03714b99f
@@ -7889,7 +7796,7 @@ Date:     Fri Jul 1 05:19:15 2011 -0400
 
     correctly initialize the _gi_cairo_functions array to be zero filled
 
- gi/pygi-foreign-cairo.c | 2 +-
+ gi/pygi-foreign-cairo.c |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 9ae43fdbcc547eb1e3c61bf9545da40555b2e2c6
@@ -7898,7 +7805,7 @@ Date:     Fri Jul 1 05:19:15 2011 -0400
 
     correctly initialize the _gi_cairo_functions array to be zero filled
 
- gi/pygi-foreign-cairo.c | 2 +-
+ gi/pygi-foreign-cairo.c |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit d3ee40b36b1718e6fb4544dbe07e291138ea1eb9
@@ -7907,7 +7814,7 @@ Date:     Wed Jun 29 18:14:40 2011 -0400
 
     pass in the address of the gerror, not the gerror itself
 
- gi/pygi-argument.c | 2 +-
+ gi/pygi-argument.c |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 49dc98eb9339ea64355cd752ca000c79da56f3a2
@@ -7916,7 +7823,7 @@ Date:     Wed Jun 29 18:01:44 2011 -0400
 
     [gi] handle marshalling gerrors arguments for signals
 
- gi/pygi-argument.c | 18 ++++++++++++++++--
+ gi/pygi-argument.c |  18 ++++++++++++++++--
  1 file changed, 16 insertions(+), 2 deletions(-)
 
 commit db9419fcef628e9ffee10591156007ea9c0bc1f0
@@ -7926,7 +7833,7 @@ Date:     Wed Jun 29 12:12:29 2011 -0400
     [gi-invoke-ng] fix NULL check to check before we access the cache
     struct
 
- gi/pygi-cache.c | 6 +++---
+ gi/pygi-cache.c |    6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)
 
 commit 9027e1a20fd06df5c26edcec1893ef0814ec938a
@@ -7938,7 +7845,7 @@ Date:     Tue Jun 28 18:21:55 2011 -0400
       * make sure we can store a custom GObject as a PyObject inside of
       a TreeModel
 
- tests/test_overrides.py | 26 +++++++++++++++-----------
+ tests/test_overrides.py |   26 +++++++++++++++-----------
  1 file changed, 15 insertions(+), 11 deletions(-)
 
 commit b6842e4b2a28733e143d4022864041ca82e91f7a
@@ -7950,8 +7857,8 @@ Date:     Tue Jun 28 18:13:38 2011 -0400
      * box the PYGOBJECT in a GValue so we can store PyGObjects in a
      TreeModel row
 
- gi/overrides/Gtk.py | 7 ++++---
- gobject/pygtype.c   | 7 ++++---
+ gi/overrides/Gtk.py |   7 ++++---
+ gobject/pygtype.c   |   7 ++++---
  2 files changed, 8 insertions(+), 6 deletions(-)
 
 commit 7fc9d45860210fd9d333fd3769c6cf93a6a20eb6
@@ -7960,7 +7867,7 @@ Date:     Tue Jun 28 17:32:29 2011 -0400
 
     [gi-invoke-ng] copy structs when transfer is full for array
 
- gi/pygi-marshal.c | 21 ++++++++++++++++++---
+ gi/pygi-marshal.c |   21 ++++++++++++++++++---
  1 file changed, 18 insertions(+), 3 deletions(-)
 
 commit 8d60c0bc7b327aa757a8727f1146f02cc0b78af8
@@ -7973,7 +7880,7 @@ Date:     Tue Jun 28 13:54:48 2011 -0400
      importing 2.0
        which is not supported
 
- gi/overrides/Gtk.py | 12 ++++++++++++
+ gi/overrides/Gtk.py |  12 ++++++++++++
  1 file changed, 12 insertions(+)
 
 commit 7c589c0c1de1a786e00685afd5292b6fb1f93ed3
@@ -7999,7 +7906,7 @@ Date:     Tue Jun 28 13:08:49 2011 -0400
        dict
        to avoid name clashing
 
- gi/overrides/Gtk.py | 5 +++++
+ gi/overrides/Gtk.py |   5 +++++
  1 file changed, 5 insertions(+)
 
 commit 2aa12267bee91aa696633a0cea2a0accae09250a
@@ -8010,8 +7917,8 @@ Date:     Mon Jun 27 10:56:20 2011 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=653488
 
- gobject/propertyhelper.py | 23 ++++++++++++++++-------
- tests/test_properties.py  | 40 ++++++++++++++++++++++++++++++++++++----
+ gobject/propertyhelper.py |   23 ++++++++++++++++-------
+ tests/test_properties.py  |   40 ++++++++++++++++++++++++++++++++++++----
  2 files changed, 52 insertions(+), 11 deletions(-)
 
 commit dc62e67b447ef526a6f2d1aa8648ad101d95024b
@@ -8022,8 +7929,8 @@ Date:     Mon Jun 27 10:56:20 2011 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=653488
 
- gobject/propertyhelper.py | 23 ++++++++++++++++-------
- tests/test_properties.py  | 40 ++++++++++++++++++++++++++++++++++++----
+ gobject/propertyhelper.py |   23 ++++++++++++++++-------
+ tests/test_properties.py  |   40 ++++++++++++++++++++++++++++++++++++----
  2 files changed, 52 insertions(+), 11 deletions(-)
 
 commit 50cfccb5801c1b9a0a42ffe2826cd245f21fd88d
@@ -8033,8 +7940,8 @@ Date:     Fri Jun 24 14:17:24 2011 -0400
     [gi-invoke-ng] use g_slice for allocating GValues that are caller
     allocated
 
- gi/pygi-invoke-ng.c      | 2 ++
- gi/pygi-marshal-cleanup.c | 2 ++
+ gi/pygi-invoke-ng.c      |    2 ++
+ gi/pygi-marshal-cleanup.c |   2 ++
  2 files changed, 4 insertions(+)
 
 commit eff65cd2ce490296865441c3c78b7846f380459c
@@ -8044,8 +7951,8 @@ Date:     Fri Jun 24 11:49:05 2011 -0400
     [gi-invoke-ng] Convert Overflow errors to ValueErrors when marshalling
     integers
 
- gi/pygi-marshal.c | 56
- +++++++++++++++++++++++++++++++++++++++++++------------
+ gi/pygi-marshal.c |   56
+ +++++++++++++++++++++++++++++++++++++++++------------
  1 file changed, 44 insertions(+), 12 deletions(-)
 
 commit 05ed688d54e3ff04e961b60d0b5d3ed0b97c771d
@@ -8055,7 +7962,7 @@ Date:     Wed Jun 22 12:26:39 2011 -0400
     [gi-invoke-ng] only cache caller allocates for interfaces as some
     API are broken
 
- gi/pygi-cache.c | 6 ++++--
+ gi/pygi-cache.c |    6 ++++--
  1 file changed, 4 insertions(+), 2 deletions(-)
 
 commit 4fd957a5de364c0588168dee15e1e61d4f12e173
@@ -8064,7 +7971,7 @@ Date:     Fri Jun 17 17:07:56 2011 -0400
 
     [gi-invoke-ng] handle in pointer array marshalling
 
- gi/pygi-marshal.c | 28 ++++++++++++++++++++++------
+ gi/pygi-marshal.c |   28 ++++++++++++++++++++++------
  1 file changed, 22 insertions(+), 6 deletions(-)
 
 commit df3911ad2ce83af9bf9679ed1b221847b23ba2de
@@ -8073,7 +7980,7 @@ Date:     Fri Jun 10 08:44:04 2011 +0300
 
     Adding GPtrArray tests
 
- tests/test_gi.py | 43 ++++++++++++++++++++++++++++++++++++++++++-
+ tests/test_gi.py |   43 ++++++++++++++++++++++++++++++++++++++++++-
  1 file changed, 42 insertions(+), 1 deletion(-)
 
 commit e32c2be53175014399d89e1e85c9afc6e53c94be
@@ -8086,7 +7993,7 @@ Date:     Fri Jun 17 11:32:28 2011 -0400
       relying on the size of GIArgument
     * special case GPtrArrays
 
- gi/pygi-marshal.c | 27 +++++++++------------------
+ gi/pygi-marshal.c |   27 +++++++++------------------
  1 file changed, 9 insertions(+), 18 deletions(-)
 
 commit 6e8dc28cb261cafbfed40fc0797a0dd5f91f497b
@@ -8096,7 +8003,7 @@ Date:     Wed Jun 15 12:46:03 2011 -0400
     [gi] don't clean up arguments that weren't yet processed during in
     arg failure
 
- gi/pygi-marshal-cleanup.c | 2 +-
+ gi/pygi-marshal-cleanup.c |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit af7c93ea98b7f492eef265e58c8b3c878805524f
@@ -8108,8 +8015,8 @@ Date:     Wed Jun 15 12:06:47 2011 -0400
 
     * init is now skipped in the gir
 
- gi/overrides/GLib.py   | 18 ++++++++----------
- tests/test_overrides.py |  6 ++----
+ gi/overrides/GLib.py   |   18 ++++++++----------
+ tests/test_overrides.py |    6 ++----
  2 files changed, 10 insertions(+), 14 deletions(-)
 
 commit c6112307f29f9a850e6e9efa5f55d5d4a363c6b0
@@ -8118,7 +8025,7 @@ Date:     Wed Jun 15 11:42:45 2011 -0400
 
     [gi-invoke-ng] actual code to import overrides
 
- gi/pygi-cache.c | 7 +------
+ gi/pygi-cache.c |    7 +------
  1 file changed, 1 insertion(+), 6 deletions(-)
 
 commit 902575d857beffb14e56821ea8a52f705385f6bb
@@ -8127,7 +8034,7 @@ Date:     Wed Jun 15 11:25:10 2011 -0400
 
     [gi-invoke-ng] import pytypes so we get overrides
 
- gi/pygi-marshal.c | 4 +++-
+ gi/pygi-marshal.c |   4 +++-
  1 file changed, 3 insertions(+), 1 deletion(-)
 
 commit 9d5604220bd56ae2708e9b74122c14208e0a30b4
@@ -8136,7 +8043,7 @@ Date:     Tue Jun 14 16:13:37 2011 -0400
 
     [gi-invoke-ng] handle gvariants now that they are not foreign
 
- gi/pygi-marshal.c | 7 ++++++-
+ gi/pygi-marshal.c |   7 ++++++-
  1 file changed, 6 insertions(+), 1 deletion(-)
 
 commit c1f5651062687e800a52b5d8d16c88c0acde2934
@@ -8145,7 +8052,7 @@ Date:     Tue Jun 14 16:12:43 2011 -0400
 
     [gi-invoke-ng] do not try to clean up NULL arguments
 
- gi/pygi-marshal-cleanup.c | 24 ++++++++++++++++--------
+ gi/pygi-marshal-cleanup.c |   24 ++++++++++++++++--------
  1 file changed, 16 insertions(+), 8 deletions(-)
 
 commit fbf5382fbc1aed49ed491d2255d616a1643a45fc
@@ -8168,7 +8075,7 @@ Date:     Fri Jun 10 14:01:32 2011 +0200
 
     closure: avoid double free crash
 
- gi/pygi-closure.c | 12 ++++--------
+ gi/pygi-closure.c |   12 ++++--------
  1 file changed, 4 insertions(+), 8 deletions(-)
 
 commit 929f4236f2b8601e7960a4a7b0a860d976ad83c6
@@ -8180,8 +8087,8 @@ Date:     Fri Jun 3 23:11:17 2011 -0700
     Call Gdk.Color.equal and Gdk.RGBA.equal when
     == equality testing is used.
 
- gi/overrides/Gdk.py    | 6 ++++++
- tests/test_overrides.py | 4 ++++
+ gi/overrides/Gdk.py    |    6 ++++++
+ tests/test_overrides.py |    4 ++++
  2 files changed, 10 insertions(+)
 
 commit dff5961ba229c7c34bd7b0a18a446b56bbe39e3a
@@ -8190,7 +8097,7 @@ Date:     Wed Jun 8 19:13:48 2011 +0200
 
     closure: Check the out arg is not null. Fixes bug #651812
 
- gi/pygi-closure.c | 3 +++
+ gi/pygi-closure.c |   3 +++
  1 file changed, 3 insertions(+)
 
 commit d7d178206bfbb0858556fcfd6c9ca8eefda3fdf5
@@ -8199,7 +8106,7 @@ Date:     Wed Jun 8 09:47:20 2011 +0200
 
     Use constants instead of literals
 
- tests/test_overrides.py | 8 ++++----
+ tests/test_overrides.py |    8 ++++----
  1 file changed, 4 insertions(+), 4 deletions(-)
 
 commit fe386a0ad548a23e30e9cb947bfa2198fb48ef29
@@ -8210,8 +8117,8 @@ Date:     Mon Jun 6 19:07:22 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=647509
 
- gi/pygi-argument.c |  8 ++++----
- gi/pygi-invoke.c   | 20 +++++++++++++-------
+ gi/pygi-argument.c |   8 ++++----
+ gi/pygi-invoke.c   |  20 +++++++++++++-------
  2 files changed, 17 insertions(+), 11 deletions(-)
 
 commit bd7b8d96a7420522c1fdc127ef8cfb7d6e8a1b31
@@ -8222,7 +8129,7 @@ Date:     Mon Jun 6 19:05:07 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=647509
 
- gi/gimodule.c | 2 +-
+ gi/gimodule.c |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 2d73012e5dbcc45a5782a6c119dfb272c14b5a61
@@ -8233,7 +8140,7 @@ Date:     Mon Jun 6 17:38:21 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=647509
 
- gi/module.py | 4 +++-
+ gi/module.py |    4 +++-
  1 file changed, 3 insertions(+), 1 deletion(-)
 
 commit d82e6c8d1d9f2fc48fdcc15b7d2a97e4f24cf3bf
@@ -8242,8 +8149,8 @@ Date:     Mon Jun 6 17:24:28 2011 +0200
 
     Merge gi/HACKING into /HACKING
 
- HACKING    | 16 ++++++++++++++++
- gi/HACKING | 26 --------------------------
+ HACKING    |  16 ++++++++++++++++
+ gi/HACKING |  26 --------------------------
  2 files changed, 16 insertions(+), 26 deletions(-)
 
 commit 92aca4416a7930e5870b8d1a4016bae8140462ee
@@ -8292,8 +8199,8 @@ Date:     Fri Jun 3 16:59:15 2011 +0100
 
     Thanks to Bernie Innocenti for initial diagnosis.
 
- glib/pygsource.c    | 6 ++++--
- gobject/pygobject.c | 8 +++++++-
+ glib/pygsource.c    |   6 ++++--
+ gobject/pygobject.c |   8 +++++++-
  2 files changed, 11 insertions(+), 3 deletions(-)
 
 commit 4c9bcedb4e11ad66a4b86174e2425c7afcafc473
@@ -8302,7 +8209,7 @@ Date:     Tue May 31 16:59:41 2011 -0400
 
     [gi-invoke-ng] enable invoke-ng by default
 
- configure.ac | 8 ++++----
+ configure.ac |    8 ++++----
  1 file changed, 4 insertions(+), 4 deletions(-)
 
 commit 2e4cfb85a55ff205e263591d573ee5ecf0ffff3e
@@ -8311,7 +8218,7 @@ Date:     Tue May 31 16:37:21 2011 -0400
 
     [gi-invoke-ng] add code to clean up when input values fail to marshal
 
- gi/pygi-marshal-cleanup.c | 30 +++++++++++++++++++++++++-----
+ gi/pygi-marshal-cleanup.c |   30 +++++++++++++++++++++++++-----
  1 file changed, 25 insertions(+), 5 deletions(-)
 
 commit 508b1b6ca1b143f1e123a3ddb83e8ce146758dfc
@@ -8320,10 +8227,10 @@ Date:   Tue May 31 16:01:03 2011 -0400
 
     [gi-invoke-ng] add hash cleanup routines
 
- gi/pygi-cache.c          |  2 ++
- gi/pygi-marshal-cleanup.c | 64
- +++++++++++++++++++++++++++++++++++++++++++++++
- gi/pygi-marshal-cleanup.h | 10 ++++++--
+ gi/pygi-cache.c          |    2 ++
+ gi/pygi-marshal-cleanup.c |   64
+ +++++++++++++++++++++++++++++++++++++++++++++
+ gi/pygi-marshal-cleanup.h |   10 +++++--
  3 files changed, 74 insertions(+), 2 deletions(-)
 
 commit 1954c75b94a74259b4e5d28f5ff8d76aa4610832
@@ -8332,7 +8239,7 @@ Date:     Tue May 31 14:47:30 2011 -0400
 
     [gi-invoke-ng] handle arrays with transfers of GI_TRANSFER_CONTAINER
 
- gi/pygi-marshal-cleanup.c | 3 ++-
+ gi/pygi-marshal-cleanup.c |   3 ++-
  1 file changed, 2 insertions(+), 1 deletion(-)
 
 commit b626c46b4a95602c7bf1278c2a39aacb7f5027d9
@@ -8341,10 +8248,10 @@ Date:   Tue May 31 14:40:49 2011 -0400
 
     [gi-invoke-ng] add list cleanup routines
 
- gi/pygi-cache.c          |  8 ++---
- gi/pygi-marshal-cleanup.c | 84
- +++++++++++++++++++++++++++++++++++++++++++++++
- gi/pygi-marshal-cleanup.h |  8 +++++
+ gi/pygi-cache.c          |    8 ++---
+ gi/pygi-marshal-cleanup.c |   84
+ +++++++++++++++++++++++++++++++++++++++++++++
+ gi/pygi-marshal-cleanup.h |   8 +++++
  3 files changed, 96 insertions(+), 4 deletions(-)
 
 commit 2e542c327cd52c1f77af28905557dd25c64175d8
@@ -8353,7 +8260,7 @@ Date:     Thu May 26 16:10:13 2011 -0400
 
     indentation fix
 
- gi/pygi-marshal.c | 8 ++++----
+ gi/pygi-marshal.c |   8 ++++----
  1 file changed, 4 insertions(+), 4 deletions(-)
 
 commit 601aec11c49e821fe97dd30a2187fe3c75844712
@@ -8362,9 +8269,9 @@ Date:     Thu May 26 16:09:38 2011 -0400
 
     [gi-invoke-ng] add out array cleanup
 
- gi/pygi-cache.c          |  2 +-
- gi/pygi-marshal-cleanup.c | 24 ++++++++++++++++++++++++
- gi/pygi-marshal.c        | 37 +++++++++++++++++++++++++++++++------
+ gi/pygi-cache.c          |    2 +-
+ gi/pygi-marshal-cleanup.c |   24 ++++++++++++++++++++++++
+ gi/pygi-marshal.c        |   37 +++++++++++++++++++++++++++++++------
  3 files changed, 56 insertions(+), 7 deletions(-)
 
 commit e9ad4428b769f8c9ace1cdc973c684de84fb1a5e
@@ -8376,7 +8283,7 @@ Date:     Thu May 26 13:22:38 2011 -0400
     * We are simply setting our own array so we don't want any allocate
     null byte
 
- gi/pygi-marshal.c | 2 +-
+ gi/pygi-marshal.c |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit a986b2b8e5ee37f2a330f5aabc85c73ebb0de508
@@ -8385,11 +8292,11 @@ Date:   Thu May 26 13:21:55 2011 -0400
 
     [gi-invoke-ng] add array cleanup for in arrays
 
- gi/pygi-cache.c          |  2 +-
- gi/pygi-marshal-cleanup.c | 72
- ++++++++++++++++++++++++++++++++++++++++++++++-
- gi/pygi-marshal-cleanup.h |  9 ++++++
- gi/pygi-marshal.c        | 13 +++++++--
+ gi/pygi-cache.c          |    2 +-
+ gi/pygi-marshal-cleanup.c |   72
+ ++++++++++++++++++++++++++++++++++++++++++++-
+ gi/pygi-marshal-cleanup.h |   9 ++++++
+ gi/pygi-marshal.c        |   13 ++++++--
  4 files changed, 91 insertions(+), 5 deletions(-)
 
 commit 990c60805c8ef718eb29e2e1b24f057552c6159e
@@ -8398,8 +8305,8 @@ Date:     Mon May 23 17:06:30 2011 -0400
 
     [gi-invoke-ng] remove remaining bits of the invoke stage state machine
 
- gi/pygi-invoke-ng.c          |  7 +------
- gi/pygi-invoke-state-struct.h | 14 --------------
+ gi/pygi-invoke-ng.c          |    7 +------
+ gi/pygi-invoke-state-struct.h |   14 --------------
  2 files changed, 1 insertion(+), 20 deletions(-)
 
 commit dbbcf4a0e76fb572d85843ee31c3798df5cd5cc5
@@ -8418,14 +8325,14 @@ Date:   Mon May 23 16:59:57 2011 -0400
       happens at
       each stage
 
- gi/pygi-cache.c              |  19 ++-
- gi/pygi-cache.h              |   7 +-
- gi/pygi-invoke-ng.c          |  10 +-
- gi/pygi-invoke-state-struct.h |   2 +
- gi/pygi-marshal-cleanup.c     | 301
- +++++++++++++++++-------------------------
- gi/pygi-marshal-cleanup.h     |  45 ++++---
- gi/pygi-marshal.c            |  15 +--
+ gi/pygi-cache.c              |   19 ++-
+ gi/pygi-cache.h              |    7 +-
+ gi/pygi-invoke-ng.c          |   10 +-
+ gi/pygi-invoke-state-struct.h |    2 +
+ gi/pygi-marshal-cleanup.c     |  301
+ ++++++++++++++++-------------------------
+ gi/pygi-marshal-cleanup.h     |   45 +++---
+ gi/pygi-marshal.c            |   15 +-
  7 files changed, 174 insertions(+), 225 deletions(-)
 
 commit 198714dc4585f7463f38929f1ca4e4b60a27dadb
@@ -8439,10 +8346,10 @@ Date:   Thu May 12 17:29:20 2011 -0400
     * Now we call specific cleanup functions at the point of failure (or
       successful completion of a marshalling stage)
 
- gi/pygi-invoke-ng.c      | 59 +++++++++++++++++++++++++++++++-------
- gi/pygi-marshal-cleanup.c | 72
- +++++++++++++++++++++++++++++++++++++++++++++++
- gi/pygi-marshal-cleanup.h | 14 +++++++++
+ gi/pygi-invoke-ng.c      |   59 ++++++++++++++++++++++++++++++-------
+ gi/pygi-marshal-cleanup.c |   72
+ +++++++++++++++++++++++++++++++++++++++++++++
+ gi/pygi-marshal-cleanup.h |   14 +++++++++
  3 files changed, 135 insertions(+), 10 deletions(-)
 
 commit c1389dadbf35afee3f28d90ef637efd8c1f071a5
@@ -8460,7 +8367,7 @@ Date:     Thu May 12 11:53:40 2011 -0400
        flow of
        processing.
 
- codegen/docextract.py | 4 ++--
+ codegen/docextract.py |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit 303d8e8ab9e60cb554de7fc0e8592cd9b2c50843
@@ -8479,8 +8386,8 @@ Date:     Mon May 9 17:32:09 2011 -0400
        as long
        as the C API is still unstable.
 
- codegen/docextract.py       | 15 ++++++++++++++-
- codegen/docextract_to_xml.py |  9 ++++++---
+ codegen/docextract.py       |   15 ++++++++++++++-
+ codegen/docextract_to_xml.py |    9 ++++++---
  2 files changed, 20 insertions(+), 4 deletions(-)
 
 commit 4f615c6e300d6f2d7551b640efa301060206ab58
@@ -8489,11 +8396,11 @@ Date:   Thu May 5 14:04:34 2011 -0400
 
     [gi-invoke-ng] tweek cleanup routines
 
- gi/pygi-cache.c          |  5 +++
- gi/pygi-marshal-cleanup.c | 87
- +++++++++++++++++++++++++++++++++++------------
- gi/pygi-marshal-cleanup.h |  6 ++--
- gi/pygi-marshal.c        | 11 ++----
+ gi/pygi-cache.c          |    5 +++
+ gi/pygi-marshal-cleanup.c |   87
+ ++++++++++++++++++++++++++++++++++-----------
+ gi/pygi-marshal-cleanup.h |   6 ++--
+ gi/pygi-marshal.c        |   11 ++----
  4 files changed, 76 insertions(+), 33 deletions(-)
 
 commit 63c7f17c224821cb7136d06e8ef87eab7291848d
@@ -8519,10 +8426,10 @@ Date:   Mon May 2 15:49:52 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=649165
 
- gi/module.py        |  9 ++++++++-
- tests/te_ST@nouppera | 50
+ gi/module.py        |    9 ++++++++-
+ tests/te_ST@nouppera |   50
  ++++++++++++++++++++++++++++++++++++++++++++++++++
- tests/test_gi.py     | 30 ++++++++++++++++++++++++++++++
+ tests/test_gi.py     |   30 ++++++++++++++++++++++++++++++
  3 files changed, 88 insertions(+), 1 deletion(-)
 
 commit b5e150da76c3d4de1a75f58d03c3a761e9005a63
@@ -8531,7 +8438,7 @@ Date:     Wed May 4 08:35:27 2011 +0200
 
     [gi] pygi-convert.sh: Convert gtk.gdk.CROSSHAIR
 
- pygi-convert.sh | 1 +
+ pygi-convert.sh |    1 +
  1 file changed, 1 insertion(+)
 
 commit fcc5ea201ab25da6db94ea8a37364a1d3c4d7c65
@@ -8540,7 +8447,7 @@ Date:     Fri Apr 29 17:41:08 2011 -0400
 
     [gi-invoke-ng] handle filename cleanup with the utf8 cleanup function
 
- gi/pygi-cache.c | 2 ++
+ gi/pygi-cache.c |    2 ++
  1 file changed, 2 insertions(+)
 
 commit dbe8c4fabc8ac19415a3be0e854d3a54c2317e0b
@@ -8549,10 +8456,10 @@ Date:   Fri Apr 29 17:40:13 2011 -0400
 
     [gi-invoke-ng] handle caller allocates cleanup
 
- gi/pygi-invoke-ng.c      |   5 ++-
- gi/pygi-marshal-cleanup.c | 104
- ++++++++++++++++++++++++++++++++++++----------
- gi/pygi-marshal-cleanup.h |   7 ++--
+ gi/pygi-invoke-ng.c      |    5 ++-
+ gi/pygi-marshal-cleanup.c |  104
+ ++++++++++++++++++++++++++++++++++++---------
+ gi/pygi-marshal-cleanup.h |   7 +--
  3 files changed, 90 insertions(+), 26 deletions(-)
 
 commit cdbf57f3b1f041a06cf545a5557424f701ed1ec7
@@ -8562,12 +8469,12 @@ Date:   Thu Apr 28 19:16:02 2011 -0400
     [gi-invoke-ng] refactor the cleanup code and add utf8 cleanup as
     initial test
 
- gi/pygi-cache.c              | 15 ++-----------
- gi/pygi-invoke-ng.c          |  8 +++----
- gi/pygi-invoke-state-struct.h |  2 ++
- gi/pygi-marshal-cleanup.c     | 51
- ++++++++++++++++++++++++++++++++++++++++++-
- gi/pygi-marshal-cleanup.h     |  3 +++
+ gi/pygi-cache.c              |   15 ++----------
+ gi/pygi-invoke-ng.c          |    8 +++----
+ gi/pygi-invoke-state-struct.h |    2 ++
+ gi/pygi-marshal-cleanup.c     |   51
+ ++++++++++++++++++++++++++++++++++++++++-
+ gi/pygi-marshal-cleanup.h     |    3 +++
  5 files changed, 60 insertions(+), 19 deletions(-)
 
 commit d1f1f4ccc55f9ecab73b7c0ee78762c4039b2c79
@@ -8580,8 +8487,8 @@ Date:     Wed Apr 27 15:47:19 2011 -0400
     * PyCObject is deprecated and pycairo 1.10.0 is first release to
     fix this issue
 
- configure.ac           | 15 +++++++++++----
- gi/pygi-foreign-cairo.c |  2 +-
+ configure.ac           |   15 +++++++++++----
+ gi/pygi-foreign-cairo.c |    2 +-
  2 files changed, 12 insertions(+), 5 deletions(-)
 
 commit 83b7823a510b0b391560c6deaf9d15d8303c7b14
@@ -8590,7 +8497,7 @@ Date:     Thu Apr 21 16:52:20 2011 +0200
 
     [python3] fix build. PYcairo_IMPORT doesn't exists anymore
 
- gi/pygi-foreign-cairo.c | 7 ++++++-
+ gi/pygi-foreign-cairo.c |    7 ++++++-
  1 file changed, 6 insertions(+), 1 deletion(-)
 
 commit 3e933784df423757e591d703614cb700adb0bbe0
@@ -8599,7 +8506,7 @@ Date:     Mon Apr 18 18:36:25 2011 +0200
 
     Updated DOAP file
 
- pygobject.doap | 15 +++++++++++++++
+ pygobject.doap |   15 +++++++++++++++
  1 file changed, 15 insertions(+)
 
 commit 399d06b4b20685eb38acfd7e43226e06737ab7d2
@@ -8608,7 +8515,7 @@ Date:     Sat Apr 16 16:02:05 2011 +0200
 
     [gi] Don't create variant twice
 
- gi/overrides/GLib.py | 2 +-
+ gi/overrides/GLib.py |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 8d8a84ea23d28d25851c5870f261c020d762cef4
@@ -8620,7 +8527,7 @@ Date:     Fri Apr 15 16:14:43 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=647736
 
- pygi-convert.sh | 1 +
+ pygi-convert.sh |    1 +
  1 file changed, 1 insertion(+)
 
 commit 3b51d6426d0f59b2dd7e0dcdcded4bed43d6b9d8
@@ -8633,7 +8540,7 @@ Date:     Fri Apr 15 15:58:53 2011 +0200
     https://bugzilla.gnome.org/show_bug.cgi?id=639952
     https://bugzilla.gnome.org/show_bug.cgi?id=647796
 
- gi/overrides/GLib.py | 14 +-------------
+ gi/overrides/GLib.py |   14 +-------------
  1 file changed, 1 insertion(+), 13 deletions(-)
 
 commit bb4dce14ba666969815d4e56adbc38f0ac4f7ff7
@@ -8642,7 +8549,7 @@ Date:     Fri Apr 15 15:58:31 2011 +0200
 
     [gi] Added additional test case for GVariant handling
 
- tests/test_overrides.py | 15 +++++++++++++++
+ tests/test_overrides.py |   15 +++++++++++++++
  1 file changed, 15 insertions(+)
 
 commit 138df2778543409752e229a09828a805f68a420d
@@ -8657,7 +8564,7 @@ Date:     Mon Apr 11 18:34:31 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=647477
 
- gi/pygi-argument.c | 2 ++
+ gi/pygi-argument.c |   2 ++
  1 file changed, 2 insertions(+)
 
 commit 985f239d891c7697d76ccecb797b189669ae6ee1
@@ -8673,8 +8580,8 @@ Date:     Tue Mar 22 18:46:28 2011 -0400
      * this restores that code while still keeping unicode and python 3
        compatability
 
- gobject/pygtype.c       | 28 +++++++++++++++++++---------
- tests/test_properties.py |  8 ++++++++
+ gobject/pygtype.c       |   28 +++++++++++++++++++---------
+ tests/test_properties.py |    8 ++++++++
  2 files changed, 27 insertions(+), 9 deletions(-)
 
 commit 58cfc3cd1152b4448b56a6ff597f954d8450b83e
@@ -8684,7 +8591,7 @@ Date:     Tue Mar 22 20:47:51 2011 +0100
     dsextras.py: ensure eol characters are preserved when writing template
     files (so \n does not become \r\n)
 
- dsextras.py | 2 +-
+ dsextras.py |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 629d267478982c426ba61a639d5c9603fed856e6
@@ -8693,7 +8600,7 @@ Date:     Tue Mar 22 11:35:44 2011 +0100
 
     dsextras.py: remove \r as wel as \n character
 
- dsextras.py | 2 +-
+ dsextras.py |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 426c7109d4c0dbf0d56cc075f97f33b3451f79a8
@@ -8706,8 +8613,8 @@ Date:     Wed Apr 27 15:47:19 2011 -0400
     * PyCObject is deprecated and pycairo 1.10.0 is first release to
     fix this issue
 
- configure.ac           | 15 +++++++++++----
- gi/pygi-foreign-cairo.c |  2 +-
+ configure.ac           |   15 +++++++++++----
+ gi/pygi-foreign-cairo.c |    2 +-
  2 files changed, 12 insertions(+), 5 deletions(-)
 
 commit 4e5833d0c2fe548617e5ea510f05920fd0caf73b
@@ -8716,7 +8623,7 @@ Date:     Thu Apr 21 16:52:20 2011 +0200
 
     [python3] fix build. PYcairo_IMPORT doesn't exists anymore
 
- gi/pygi-foreign-cairo.c | 7 ++++++-
+ gi/pygi-foreign-cairo.c |    7 ++++++-
  1 file changed, 6 insertions(+), 1 deletion(-)
 
 commit 91ec337359720839862d3f5a8a0ea98f760a0752
@@ -8725,7 +8632,7 @@ Date:     Mon Apr 18 18:36:25 2011 +0200
 
     Updated DOAP file
 
- pygobject.doap | 15 +++++++++++++++
+ pygobject.doap |   15 +++++++++++++++
  1 file changed, 15 insertions(+)
 
 commit 05c766044c83340c44564d0097514bfc1d1d9df7
@@ -8734,7 +8641,7 @@ Date:     Sat Apr 16 16:02:05 2011 +0200
 
     [gi] Don't create variant twice
 
- gi/overrides/GLib.py | 2 +-
+ gi/overrides/GLib.py |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit eb8f212e3687af30407cf01fcdfbf530257bcddb
@@ -8746,7 +8653,7 @@ Date:     Fri Apr 15 16:14:43 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=647736
 
- pygi-convert.sh | 1 +
+ pygi-convert.sh |    1 +
  1 file changed, 1 insertion(+)
 
 commit af31729573de24161ee90563e5738187c749783c
@@ -8759,7 +8666,7 @@ Date:     Fri Apr 15 15:58:53 2011 +0200
     https://bugzilla.gnome.org/show_bug.cgi?id=639952
     https://bugzilla.gnome.org/show_bug.cgi?id=647796
 
- gi/overrides/GLib.py | 14 +-------------
+ gi/overrides/GLib.py |   14 +-------------
  1 file changed, 1 insertion(+), 13 deletions(-)
 
 commit 070f6688be4afb926656038dcceac4c8b8ed97c7
@@ -8768,7 +8675,7 @@ Date:     Fri Apr 15 15:58:31 2011 +0200
 
     [gi] Added additional test case for GVariant handling
 
- tests/test_overrides.py | 15 +++++++++++++++
+ tests/test_overrides.py |   15 +++++++++++++++
  1 file changed, 15 insertions(+)
 
 commit 65aa040e86d94ee6bb227a2bce09668b60208027
@@ -8777,7 +8684,7 @@ Date:     Tue Apr 12 14:51:35 2011 -0400
 
     [gi-invoke-ng] fix prototype
 
- gi/pygi-cache.h | 2 +-
+ gi/pygi-cache.h |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 12aa4e6376366ca9d758434f6544c9c70a1e5df8
@@ -8793,15 +8700,15 @@ Date:   Tue Apr 12 14:48:16 2011 -0400
     marshalling
       the out parameters and at any time an error occures
 
- gi/Makefile.am                       |  4 ++-
- gi/pygi-cache.c              | 25 +++++++------
- gi/pygi-cache.h              |  5 ++-
- gi/pygi-invoke-ng.c          | 34 ++++++++++++++----
- gi/pygi-invoke-state-struct.h | 13 +++++++
- gi/pygi-marshal-cleanup.c     | 81
- +++++++++++++++++++++++++++++++++++++++++++
- gi/pygi-marshal-cleanup.h     | 43 +++++++++++++++++++++++
- gi/pygi-marshal.c            |  1 +
+ gi/Makefile.am                       |    4 +-
+ gi/pygi-cache.c              |   25 +++++++------
+ gi/pygi-cache.h              |    5 ++-
+ gi/pygi-invoke-ng.c          |   34 ++++++++++++++---
+ gi/pygi-invoke-state-struct.h |   13 +++++++
+ gi/pygi-marshal-cleanup.c     |   81
+ +++++++++++++++++++++++++++++++++++++++++
+ gi/pygi-marshal-cleanup.h     |   43 ++++++++++++++++++++++
+ gi/pygi-marshal.c            |    1 +
  8 files changed, 187 insertions(+), 19 deletions(-)
 
 commit 0463295cd046bd6382ad9dc71ea1518858d63c5f
@@ -8816,7 +8723,7 @@ Date:     Mon Apr 11 18:34:31 2011 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=647477
 
- gi/pygi-argument.c | 2 ++
+ gi/pygi-argument.c |   2 ++
  1 file changed, 2 insertions(+)
 
 commit 1d64c3d3db2ec17b9a48df55271f712db6c07060
@@ -8826,7 +8733,7 @@ Date:     Wed Mar 30 16:40:31 2011 -0400
     [gi-invoke-ng] fix marshal header that is no longer part of
     pygi-arguments.h
 
- gi/pygi-marshal.h | 8 ++++----
+ gi/pygi-marshal.h |   8 ++++----
  1 file changed, 4 insertions(+), 4 deletions(-)
 
 commit 3580cd1c7222022ebeef3476f9e609c8045f12a3
@@ -8835,10 +8742,10 @@ Date:   Wed Mar 30 15:53:13 2011 -0400
 
     [gi-invoke-ng] code style space fixes
 
- gi/pygi-cache.c     | 420 +++++++++++++++++++-------------------
- gi/pygi-invoke-ng.c | 145 +++++++-------
- gi/pygi-marshal.c   | 565
- ++++++++++++++++++++++++++--------------------------
+ gi/pygi-cache.c     | 420 +++++++++++++++++++-------------------
+ gi/pygi-invoke-ng.c | 145 +++++++------
+ gi/pygi-marshal.c   | 565
+ ++++++++++++++++++++++++++-------------------------
  3 files changed, 566 insertions(+), 564 deletions(-)
 
 commit 81662fcd09f112bfffcdc5b7f01a5537b84cd9d4
@@ -8847,7 +8754,7 @@ Date:     Tue Mar 29 16:54:44 2011 -0400
 
     [gi-invoke-ng] don't decref value taken from a dict as it is borrowed
 
- gi/pygi-invoke-ng.c | 1 -
+ gi/pygi-invoke-ng.c |   1 -
  1 file changed, 1 deletion(-)
 
 commit a456fc0adc1f8a0754bf59cde8924f905bfc7dc1
@@ -8856,7 +8763,7 @@ Date:     Tue Mar 29 15:23:06 2011 -0400
 
     [gi-invoke-ng] return None when appropriate so we don't crash
 
- gi/pygi-marshal.c | 18 +++++++++++++++++-
+ gi/pygi-marshal.c |   18 +++++++++++++++++-
  1 file changed, 17 insertions(+), 1 deletion(-)
 
 commit e8c8c37e5587dc7ff62519df336988a12e6f5d0a
@@ -8865,7 +8772,7 @@ Date:     Tue Mar 29 15:21:41 2011 -0400
 
     [gi-invoke-ng] fix aux value caching
 
- gi/pygi-cache.c | 15 ++++++++++-----
+ gi/pygi-cache.c |   15 ++++++++++-----
  1 file changed, 10 insertions(+), 5 deletions(-)
 
 commit 4e4c1847c713a4eb4ab34d04488e94dac24d9167
@@ -8874,7 +8781,7 @@ Date:     Mon Mar 28 20:25:46 2011 -0400
 
     [gi-invoke-ng] backport handling flags with no gtype
 
- gi/pygi-marshal.c | 25 ++++++++++++++++++++++++-
+ gi/pygi-marshal.c |   25 ++++++++++++++++++++++++-
  1 file changed, 24 insertions(+), 1 deletion(-)
 
 commit fd76423e655b3711e1ffbf9b61ea4e2c94040234
@@ -8883,7 +8790,7 @@ Date:     Mon Mar 28 18:32:00 2011 -0400
 
     [gi-invoke-ng] backport raw gvalue handling
 
- gi/pygi-marshal.c | 23 ++++++++++++++++++-----
+ gi/pygi-marshal.c |   23 ++++++++++++++++++-----
  1 file changed, 18 insertions(+), 5 deletions(-)
 
 commit 507b5051c83f70ceae79e0fa693c86e5cbb9f442
@@ -8893,8 +8800,8 @@ Date:     Mon Mar 28 18:30:31 2011 -0400
     [gi-invoke-ng] marshal instances seperately since they differ slightly
     from other args
 
- gi/pygi-cache.c   |  2 +-
- gi/pygi-marshal.c | 38 ++++++++++++++++++++++++++++++++++++++
+ gi/pygi-cache.c   |   2 +-
+ gi/pygi-marshal.c |   38 ++++++++++++++++++++++++++++++++++++++
  2 files changed, 39 insertions(+), 1 deletion(-)
 
 commit 726a27c0e74ace3ff23d9cc4d393ae53e57f1fac
@@ -8903,14 +8810,14 @@ Date:   Mon Mar 28 18:26:09 2011 -0400
 
     [gi-invoke-ng] refactor FunctionCache to be more generic CallableCache
 
- gi/pygi-cache.c     | 392
- +++++++++++++++++++++++++++-------------------------
- gi/pygi-cache.h     | 12 +-
- gi/pygi-info.c      |  2 +-
- gi/pygi-invoke-ng.c | 40 +++---
- gi/pygi-marshal.c   | 140 +++++++++----------
- gi/pygi-marshal.h   | 159 +++++++++------------
- gi/pygi.h          |   2 +-
+ gi/pygi-cache.c     | 392
+ ++++++++++++++++++++++++++-------------------------
+ gi/pygi-cache.h     |  12 +-
+ gi/pygi-info.c      |   2 +-
+ gi/pygi-invoke-ng.c |  40 +++---
+ gi/pygi-marshal.c   | 140 +++++++++---------
+ gi/pygi-marshal.h   | 159 +++++++++------------
+ gi/pygi.h          |    2 +-
  7 files changed, 362 insertions(+), 385 deletions(-)
 
 commit 3d5d9ff5c18a850650992bdd52e8e4c722b23396
@@ -8919,7 +8826,7 @@ Date:     Mon Mar 28 15:01:12 2011 -0400
 
     [gi-invoke-rewrite] backport glib error handling
 
- gi/pygi-invoke-ng.c | 14 ++++++--------
+ gi/pygi-invoke-ng.c |  14 ++++++--------
  1 file changed, 6 insertions(+), 8 deletions(-)
 
 commit 37b14b28a5f2aec16ac7f321efbf07e1403e9531
@@ -8928,7 +8835,7 @@ Date:     Fri Mar 25 18:48:42 2011 -0400
 
     [gi-invoke-ng] backport closure passing from invoke
 
- gi/pygi-marshal.c | 13 ++++++++++---
+ gi/pygi-marshal.c |   13 ++++++++++---
  1 file changed, 10 insertions(+), 3 deletions(-)
 
 commit cf7f97eabc9c49773c2916929b8c43ef453d0652
@@ -8937,11 +8844,11 @@ Date:   Fri Mar 25 18:47:36 2011 -0400
 
     [gi-invoke-ng] handle vfuncs and fix cosntrutors
 
- gi/pygi-cache.c              |  9 +++++++
- gi/pygi-cache.h              |  2 ++
- gi/pygi-invoke-ng.c          | 56
- ++++++++++++++++++++++++++++++++-----------
- gi/pygi-invoke-state-struct.h |  2 ++
+ gi/pygi-cache.c              |    9 +++++++
+ gi/pygi-cache.h              |    2 ++
+ gi/pygi-invoke-ng.c          |   56
+ ++++++++++++++++++++++++++++++-----------
+ gi/pygi-invoke-state-struct.h |    2 ++
  4 files changed, 55 insertions(+), 14 deletions(-)
 
 commit af2ce400fcf771ee6c9bc01aecfb59467be5a0ce
@@ -8950,8 +8857,8 @@ Date:     Fri Mar 25 18:39:06 2011 -0400
 
     [gi-invoke-ng] handle foreign types correctly
 
- gi/pygi-cache.c   | 22 ++++++----------------
- gi/pygi-marshal.c |  3 +++
+ gi/pygi-cache.c   |   22 ++++++----------------
+ gi/pygi-marshal.c |   3 +++
  2 files changed, 9 insertions(+), 16 deletions(-)
 
 commit 482553ae5d863ca523be3bd1eededa5d02a4f87e
@@ -8965,9 +8872,9 @@ Date:     Fri Mar 25 13:14:01 2011 -0400
        and g_object_new to do the construction we ignore this for now but
        keep it around in the state for future use.
 
- gi/pygi-invoke-ng.c          | 46
- +++++++++++++++++++++++++++++++++++++------
- gi/pygi-invoke-state-struct.h |  1 +
+ gi/pygi-invoke-ng.c          |   46
+ +++++++++++++++++++++++++++++++++++------
+ gi/pygi-invoke-state-struct.h |    1 +
  2 files changed, 41 insertions(+), 6 deletions(-)
 
 commit 0534eb0e843cdf09611143da184052f7e549e4dc
@@ -8983,8 +8890,8 @@ Date:     Tue Mar 22 18:46:28 2011 -0400
      * this restores that code while still keeping unicode and python 3
        compatability
 
- gobject/pygtype.c       | 28 +++++++++++++++++++---------
- tests/test_properties.py |  8 ++++++++
+ gobject/pygtype.c       |   28 +++++++++++++++++++---------
+ tests/test_properties.py |    8 ++++++++
  2 files changed, 27 insertions(+), 9 deletions(-)
 
 commit 5f0e130026a663a57ed1317e0fa0e1f78f9e6e0a
@@ -8994,7 +8901,7 @@ Date:     Tue Mar 22 20:47:51 2011 +0100
     dsextras.py: ensure eol characters are preserved when writing template
     files (so \n does not become \r\n)
 
- dsextras.py | 2 +-
+ dsextras.py |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 62a6274105003ef386ddfe9ef38e8afa8c43d124
@@ -9003,7 +8910,7 @@ Date:     Tue Mar 22 11:35:44 2011 +0100
 
     dsextras.py: remove \r as wel as \n character
 
- dsextras.py | 2 +-
+ dsextras.py |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 86c436978c933f6ebe17627abe98325ce66f6baa
@@ -9027,12 +8934,12 @@ Date:   Tue Mar 22 15:40:02 2011 -0400
 
     [gi] conditionalize invoke code paths
 
- configure.ac     |  7 +++++++
- gi/Makefile.am    | 20 +++++++++++++++-----
- gi/pygi-cache.h   |  2 ++
- gi/pygi-info.c    |  4 +++-
- gi/pygi-private.h |  9 +++++++--
- gi/pygi.h        |  4 +++-
+ configure.ac     |    7 +++++++
+ gi/Makefile.am    |   20 +++++++++++++++-----
+ gi/pygi-cache.h   |   2 ++
+ gi/pygi-info.c    |   4 +++-
+ gi/pygi-private.h |   9 +++++++--
+ gi/pygi.h        |    4 +++-
  6 files changed, 37 insertions(+), 9 deletions(-)
 
 commit 83c51bd2bb6ca24ce610c04cff1527bcd2689d90
@@ -9041,7 +8948,7 @@ Date:     Tue Mar 22 15:37:24 2011 -0400
 
     [gi] revert back to the type.py from master
 
- gi/types.py | 21 +++++++++++++++------
+ gi/types.py |  21 +++++++++++++++------
  1 file changed, 15 insertions(+), 6 deletions(-)
 
 commit cb30d00d1c92e73d9bfb08cc7b600a5aa70f2fc0
@@ -9051,9 +8958,9 @@ Date:     Tue Mar 22 14:46:29 2011 -0400
     [gi] revert pygi-argument.h and move the invoke-ng code to
     pygi-marshal.h
 
- gi/pygi-argument.h | 268 +-----------------------------------------
- gi/pygi-marshal.h  | 336
- +++++++++++++++++++++++++++++++++++++++++++++++++++++
+ gi/pygi-argument.h |  268 +----------------------------------------
+ gi/pygi-marshal.h  |  336
+ ++++++++++++++++++++++++++++++++++++++++++++++++++++
  2 files changed, 337 insertions(+), 267 deletions(-)
 
 commit 17cb714cfdaf45b6d7dd627b0189bd24e6578f74
@@ -9088,13 +8995,13 @@ Date:   Tue Mar 22 13:20:54 2011 -0400
        refcounting to keep track of
      * also fixes a bug where we were leaking PyNone ref counts
 
- gi/pygi-argument.c        |  4 ++--
- gi/pygi-foreign-cairo.c    | 16 ++++++++--------
- gi/pygi-foreign-gvariant.c | 12 ++++++------
- gi/pygi-foreign.c         | 32 +++++++++++++-------------------
- gi/pygi-foreign.h         |  8 ++++----
- gi/pygi-invoke.c          |  6 +++---
- gi/pygi.h                 | 12 ++++++------
+ gi/pygi-argument.c        |    4 ++--
+ gi/pygi-foreign-cairo.c    |  16 ++++++++--------
+ gi/pygi-foreign-gvariant.c |  12 ++++++------
+ gi/pygi-foreign.c         |   32 +++++++++++++-------------------
+ gi/pygi-foreign.h         |    8 ++++----
+ gi/pygi-invoke.c          |    6 +++---
+ gi/pygi.h                 |   12 ++++++------
  7 files changed, 42 insertions(+), 48 deletions(-)
 
 commit fbabc1fdafa1dcbd1f6aaea7b821bd1c64a546ab
@@ -9111,8 +9018,8 @@ Date:     Tue Mar 22 15:04:01 2011 +0100
     prefer it
     over test_overrides.py's directory.
 
- tests/Makefile.am      | 3 ++-
- tests/test_overrides.py | 4 +++-
+ tests/Makefile.am      |    3 ++-
+ tests/test_overrides.py |    4 +++-
  2 files changed, 5 insertions(+), 2 deletions(-)
 
 commit 7332a1b99775519fdc5500cab6628b713e946a8c
@@ -9146,8 +9053,8 @@ Date:     Wed Mar 16 17:34:18 2011 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=644757
 
- gi/pygi-argument.c | 17 ++++++++++-------
- tests/test_gi.py   |  4 ++++
+ gi/pygi-argument.c |  17 ++++++++++-------
+ tests/test_gi.py   |   4 ++++
  2 files changed, 14 insertions(+), 7 deletions(-)
 
 commit 1e70957c5470a0f4bceba38ca66a4e4274fdc8d8
@@ -9158,7 +9065,7 @@ Date:     Sun Mar 6 23:41:01 2011 +1300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=644347
 
- pygi-convert.sh | 7 +++++++
+ pygi-convert.sh |    7 +++++++
  1 file changed, 7 insertions(+)
 
 commit 2292673c96e7973a0732ca15bbd5b0bf7a9c7dcf
@@ -9169,7 +9076,7 @@ Date:     Sun Mar 6 23:41:30 2011 +1300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=644347
 
- pygi-convert.sh | 28 ----------------------------
+ pygi-convert.sh |   28 ----------------------------
  1 file changed, 28 deletions(-)
 
 commit d26e5cc45f277f6b7edb32aa416520bb53bff9c2
@@ -9178,8 +9085,8 @@ Date:     Fri Mar 11 14:09:02 2011 -0500
 
     [gi-demos] add pickers demo
 
- demos/gtk-demo/demos/pickers.py | 74
- +++++++++++++++++++++++++++++++++++++++++
+ demos/gtk-demo/demos/pickers.py |   74
+ +++++++++++++++++++++++++++++++++++++++
  1 file changed, 74 insertions(+)
 
 commit b8d926a458ed7d7e92719e41b5bc1c36f68882b3
@@ -9188,8 +9095,8 @@ Date:     Thu Mar 10 18:12:50 2011 -0500
 
     [gi-demos] add menu demo
 
- demos/gtk-demo/demos/menus.py | 122
- ++++++++++++++++++++++++++++++++++++++++++
+ demos/gtk-demo/demos/menus.py |  122
+ +++++++++++++++++++++++++++++++++++++++++
  1 file changed, 122 insertions(+)
 
 commit 9baec8ed1c5d99c1677a75eaa1d38912f41f0b2d
@@ -9198,7 +9105,7 @@ Date:     Wed Mar 9 13:02:50 2011 -0500
 
     [gi-overrides] fix exception block so it works in Python 2.5
 
- gi/overrides/Gio.py | 5 ++++-
+ gi/overrides/Gio.py |   5 ++++-
  1 file changed, 4 insertions(+), 1 deletion(-)
 
 commit 5ac534ac3ceee3cc19fe2297e3cd009817ed726f
@@ -9217,10 +9124,10 @@ Date:   Mon Mar 21 13:19:58 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=620215
 
- gi/Makefile.am    | 4 +---
- glib/Makefile.am  | 2 +-
- m4/python.m4     | 7 ++-----
- tests/Makefile.am | 2 +-
+ gi/Makefile.am    |   4 +---
+ glib/Makefile.am  |   2 +-
+ m4/python.m4     |    7 ++-----
+ tests/Makefile.am |   2 +-
  4 files changed, 5 insertions(+), 10 deletions(-)
 
 commit cd01f8ce1373f28b1427dd847bef44f747f1e6b3
@@ -9229,7 +9136,7 @@ Date:     Fri Mar 18 17:06:08 2011 +0100
 
     setup.py: fix user_access_control option
 
- setup.py | 2 +-
+ setup.py |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 2da60baec4f43c41f43527cbfde4e21e0eea728c
@@ -9242,7 +9149,7 @@ Date:     Wed Mar 16 10:22:35 2011 +0100
     to Tualatrix
     Chou for spotting this!
 
- gi/overrides/Gtk.py | 1 +
+ gi/overrides/Gtk.py |   1 +
  1 file changed, 1 insertion(+)
 
 commit 029a79d1af1e0998aa6bc88ce1c1f48ce0ccd2a0
@@ -9266,8 +9173,8 @@ Date:     Tue Mar 15 10:22:39 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=644260
 
- gi/overrides/Gio.py | 16 +++++++++++++++-
- tests/test_gdbus.py | 13 +++++++++++++
+ gi/overrides/Gio.py |  16 +++++++++++++++-
+ tests/test_gdbus.py |  13 +++++++++++++
  2 files changed, 28 insertions(+), 1 deletion(-)
 
 commit 5bf66ce79267b25bcc80251f9170498fa1d765f6
@@ -9278,7 +9185,7 @@ Date:     Sun Mar 6 23:05:33 2011 +1300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=644343
 
- gi/overrides/Gtk.py | 2 ++
+ gi/overrides/Gtk.py |   2 ++
  1 file changed, 2 insertions(+)
 
 commit 8e4f86e17a1de533a93b0748fd8de3cbfa70ba62
@@ -9287,7 +9194,7 @@ Date:     Sun Mar 6 17:48:04 2011 +1300
 
     [gi-demos] dont try and run demos that represent directories
 
- demos/gtk-demo/gtk-demo.py | 3 ++-
+ demos/gtk-demo/gtk-demo.py |   3 ++-
  1 file changed, 2 insertions(+), 1 deletion(-)
 
 commit 097e5efab29d3d2d91d0b9fc75bf00219e9b7810
@@ -9296,10 +9203,10 @@ Date:   Mon Mar 7 18:09:18 2011 -0500
 
     [gi-demos] some python 3 compat fixes
 
- demos/gtk-demo/demos/Icon View/iconviewbasics.py | 6 ++++++
- demos/gtk-demo/demos/Tree View/liststore.py     | 2 +-
- demos/gtk-demo/demos/rotatedtext.py             | 4 ++--
- demos/gtk-demo/gtk-demo.py                      | 4 ++--
+ demos/gtk-demo/demos/Icon View/iconviewbasics.py |    6 ++++++
+ demos/gtk-demo/demos/Tree View/liststore.py     |    2 +-
+ demos/gtk-demo/demos/rotatedtext.py             |    4 ++--
+ demos/gtk-demo/gtk-demo.py                      |    4 ++--
  4 files changed, 11 insertions(+), 5 deletions(-)
 
 commit fd5d5ef3abc947d3c6066eea6378514f87b7f0ce
@@ -9308,8 +9215,8 @@ Date:     Tue Feb 22 15:07:40 2011 -0500
 
     [gi-demos] add liststore demo
 
- demos/gtk-demo/demos/Tree View/liststore.py | 205
- ++++++++++++++++++++++++++++
+ demos/gtk-demo/demos/Tree View/liststore.py | 205
+ +++++++++++++++++++++++++++
  1 file changed, 205 insertions(+)
 
 commit 09de5cf99474fc8a34b5f4a61cede1fb47353ebb
@@ -9318,7 +9225,7 @@ Date:     Mon Mar 7 18:08:40 2011 -0500
 
     [gi-demos] catch the correct error class
 
- demos/gtk-demo/demos/images.py | 11 ++++++-----
+ demos/gtk-demo/demos/images.py |   11 ++++++-----
  1 file changed, 6 insertions(+), 5 deletions(-)
 
 commit 7284d2d4622978fc9ddfd00f2714b3a572b7ab56
@@ -9335,8 +9242,8 @@ Date:     Sun Mar 6 21:18:36 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=644039
 
- gobject/propertyhelper.py |  5 ++---
- tests/test_properties.py  | 23 +++++++++++++++++++++++
+ gobject/propertyhelper.py |   5 ++---
+ tests/test_properties.py  |   23 +++++++++++++++++++++++
  2 files changed, 25 insertions(+), 3 deletions(-)
 
 commit 618dbb0ee15b47e5e7cb16a34ffce0937d7fa26d
@@ -9353,7 +9260,7 @@ Date:     Fri Mar 4 12:25:49 2011 -0500
     * PYGLIB_PyBytes_FromStringAndSize evaluates to a PyString in Python 2
       and a PyBytes object in Python 3
 
- gobject/pygtype.c | 2 +-
+ gobject/pygtype.c |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 7e9483ff75b7a63ddda0fa9a9847f9f22ad71240
@@ -9362,7 +9269,7 @@ Date:     Fri Mar 4 12:24:35 2011 -0500
 
     [gi-overrides] handle unichar gvalues when setting treemodels
 
- gi/overrides/Gtk.py | 10 ++++++++++
+ gi/overrides/Gtk.py |  10 ++++++++++
  1 file changed, 10 insertions(+)
 
 commit 6367bffa006e94dc667d7008fccad8d47d8d3646
@@ -9371,8 +9278,8 @@ Date:     Fri Mar 4 11:43:51 2011 -0500
 
     [gi-overrides] special case python 2 keywords that crept in
 
- gi/overrides/Gtk.py    | 6 +++++-
- tests/test_overrides.py | 8 ++++----
+ gi/overrides/Gtk.py    |    6 +++++-
+ tests/test_overrides.py |    8 ++++----
  2 files changed, 9 insertions(+), 5 deletions(-)
 
 commit 83b0f8a37d5f3236780d87a1ca466c5e44ae2bc0
@@ -9382,7 +9289,7 @@ Date:     Fri Mar 4 11:10:16 2011 -0500
     check for the py3 _thread module in configure.ac if thread is
     not found
 
- configure.ac | 6 +++++-
+ configure.ac |    6 +++++-
  1 file changed, 5 insertions(+), 1 deletion(-)
 
 commit 4645af87d3c587f535404867dab56608719e5c7b
@@ -9391,8 +9298,8 @@ Date:     Fri Mar 4 00:39:23 2011 -0500
 
     [gi-demos] add iconview demo
 
- demos/gtk-demo/demos/Icon View/iconviewbasics.py | 212
- +++++++++++++++++++++++
+ demos/gtk-demo/demos/Icon View/iconviewbasics.py |  212
+ ++++++++++++++++++++++
  1 file changed, 212 insertions(+)
 
 commit 761dcb516a04f7a89b3c7d68e88fff23055e2a80
@@ -9405,7 +9312,7 @@ Date:     Thu Mar 3 18:39:16 2011 -0500
     sending in
       *args.  You can only send in **kwds.
 
- gi/types.py | 2 +-
+ gi/types.py |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit f9604e90af12a1b9dbe7d7f311308e87cd0ed7dd
@@ -9414,8 +9321,8 @@ Date:     Thu Mar 3 18:30:40 2011 -0500
 
     [gi-demos] add the combobox with string ids section to the demos
 
- demos/gtk-demo/demos/combobox.py | 49
- +++++++++++++++++++++++++++++++++++++++-
+ demos/gtk-demo/demos/combobox.py |   49
+ +++++++++++++++++++++++++++++++++++++-
  1 file changed, 48 insertions(+), 1 deletion(-)
 
 commit b70f4daf071cf77a4561b57f5521eb928f66d1ce
@@ -9424,8 +9331,8 @@ Date:     Thu Mar 3 16:47:51 2011 -0500
 
     [gi-overrides] add an override for Gdk.RGBA
 
- gi/overrides/Gdk.py    | 18 ++++++++++++++++++
- tests/test_overrides.py | 10 ++++++++++
+ gi/overrides/Gdk.py    |   18 ++++++++++++++++++
+ tests/test_overrides.py |   10 ++++++++++
  2 files changed, 28 insertions(+)
 
 commit ee2b63f60f350332ed21927721ed9ddff3a8034e
@@ -9435,7 +9342,7 @@ Date:     Thu Mar 3 16:10:17 2011 -0500
     [gi-demos] fix up search-entry to reflect annotations fixed in Gtk+
     master
 
- demos/gtk-demo/demos/Entry/search_entry.py | 23 +++++++++--------------
+ demos/gtk-demo/demos/Entry/search_entry.py |  23 +++++++++--------------
  1 file changed, 9 insertions(+), 14 deletions(-)
 
 commit cd046e4c355706ead5f512b810a2a48317f8c32e
@@ -9444,8 +9351,8 @@ Date:     Wed Mar 2 18:13:43 2011 -0500
 
     [gi-demos] add search entry demo
 
- demos/gtk-demo/demos/Entry/search_entry.py | 257
- +++++++++++++++++++++++++++++
+ demos/gtk-demo/demos/Entry/search_entry.py |  257
+ ++++++++++++++++++++++++++++
  1 file changed, 257 insertions(+)
 
 commit d5ddaa92e6349c2f52b67317326060973cb69661
@@ -9454,7 +9361,7 @@ Date:     Wed Mar 2 15:37:27 2011 -0500
 
     [gi] wrap map in a list for Python 3 compat
 
- gi/types.py | 2 +-
+ gi/types.py |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 3e5ab72a2e1fa2d8c4c2864137c6251f264ff4af
@@ -9463,7 +9370,7 @@ Date:     Tue Mar 1 14:52:00 2011 -0500
 
     [gi-demos] fix up the validation combobox
 
- demos/gtk-demo/demos/combobox.py | 21 +++++++++++++++------
+ demos/gtk-demo/demos/combobox.py |   21 +++++++++++++++------
  1 file changed, 15 insertions(+), 6 deletions(-)
 
 commit 08af5f99f0838b3584f6a3b210d0a0304811e8ff
@@ -9472,7 +9379,7 @@ Date:     Tue Mar 1 12:31:35 2011 -0500
 
     add overridesdir variable in the .pc file for 3rd party overrides
 
- pygobject-2.0.pc.in | 1 +
+ pygobject-2.0.pc.in |   1 +
  1 file changed, 1 insertion(+)
 
 commit 4a6b14a92a687a2311516b2c16c355216b5270a7
@@ -9481,7 +9388,7 @@ Date:     Fri Feb 11 17:14:11 2011 +0100
 
     setup.py: Set bdist_wininst user-access-control property
 
- setup.py | 3 ++-
+ setup.py |    3 ++-
  1 file changed, 2 insertions(+), 1 deletion(-)
 
 commit ad3ab659b83cb985730e19a83651da319d4bcb9c
@@ -9490,7 +9397,7 @@ Date:     Wed Mar 2 16:29:00 2011 +0100
 
     Fix uninitialized variable in gi.require_version()
 
- gi/__init__.py | 3 ++-
+ gi/__init__.py |    3 ++-
  1 file changed, 2 insertions(+), 1 deletion(-)
 
 commit 6e7606ee8830f6f51b777f41f6df2f6ea1784e89
@@ -9504,7 +9411,7 @@ Date:     Tue Mar 1 23:26:07 2011 +0100
     visible strings. Ensure that these do not get translated in the
     test suite.
 
- tests/runtests.py | 2 ++
+ tests/runtests.py |   2 ++
  1 file changed, 2 insertions(+)
 
 commit 0461e05174637ae02f34029b85ba217d5ae48c53
@@ -9513,8 +9420,8 @@ Date:     Mon Feb 28 18:21:43 2011 -0500
 
     [gi-overrides] override Gtk.stock_lookup to not return success
 
- demos/gtk-demo/demos/combobox.py | 2 +-
- gi/overrides/Gtk.py             | 9 +++++++++
+ demos/gtk-demo/demos/combobox.py |    2 +-
+ gi/overrides/Gtk.py             |    9 +++++++++
  2 files changed, 10 insertions(+), 1 deletion(-)
 
 commit 40decf3501823004a6e4d3acbbf204c4d4d0a7ec
@@ -9524,7 +9431,7 @@ Date:     Mon Feb 28 14:16:00 2011 -0500
     update NEWS to reflect changes in the 2.27.91 release (PYGOBJECT_2_28
     branch)
 
- NEWS | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
+ NEWS |   50 ++++++++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 50 insertions(+)
 
 commit c2d5122b8e3cf51ec52418f90f1788895b842b6a
@@ -9538,7 +9445,7 @@ Date:     Mon Feb 28 14:08:05 2011 -0500
      use this
        instead of creating our own button press event
 
- tests/test_overrides.py | 9 +++++----
+ tests/test_overrides.py |    9 +++++----
  1 file changed, 5 insertions(+), 4 deletions(-)
 
 commit 1be1a2ea2787dffeb71ab4a38233fb71e761bd21
@@ -9552,7 +9459,7 @@ Date:     Thu Feb 24 19:30:32 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=642554
 
- tests/test_overrides.py | 21 +++++++++++++++++++++
+ tests/test_overrides.py |   21 +++++++++++++++++++++
  1 file changed, 21 insertions(+)
 
 commit 99044a4860dd65c97f52b41b7cd3f216f4a97cd4
@@ -9563,8 +9470,8 @@ Date:     Wed Feb 23 18:43:27 2011 -0500
 
     https://bugzilla.gnome.org/show_bug.cgi?id=642554
 
- gi/overrides/Gdk.py | 70
- +++++++++++++++++++++++++++++++++++++++++++++++++++++
+ gi/overrides/Gdk.py |  70
+ +++++++++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 70 insertions(+)
 
 commit 6e30c69d38fd382414eb820097c297a80be547ac
@@ -9589,7 +9496,7 @@ Date:     Wed Feb 23 14:14:16 2011 -0500
 
     https://bugzilla.gnome.org/show_bug.cgi?id=642554
 
- gi/pygi-argument.c | 38 ++++++++++++++++++++++++++++++++++++++
+ gi/pygi-argument.c |  38 ++++++++++++++++++++++++++++++++++++++
  1 file changed, 38 insertions(+)
 
 commit 525f21d1365c24488b768955362085bf82512dee
@@ -9600,9 +9507,9 @@ Date:     Wed Feb 16 09:44:12 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=642437
 
- gi/types.py            | 40 ++++++++++++++++++++++++++++++++++++++++
- gobject/gobjectmodule.c |  9 +++++++--
- tests/test_gi.py       | 16 ++++++++++++++++
+ gi/types.py            |   40 ++++++++++++++++++++++++++++++++++++++++
+ gobject/gobjectmodule.c |    9 +++++++--
+ tests/test_gi.py       |   16 ++++++++++++++++
  3 files changed, 63 insertions(+), 2 deletions(-)
 
 commit da212024772a7a0c32f04f3589bfb24d2eb5706f
@@ -9612,8 +9519,8 @@ Date:     Thu Feb 24 18:46:15 2011 +0100
     [gi] Remove DyanmicModule.load() to _load() to prevent overriding
     GI attrs.
 
- gi/importer.py | 2 +-
- gi/module.py  | 2 +-
+ gi/importer.py |    2 +-
+ gi/module.py  |    2 +-
  2 files changed, 2 insertions(+), 2 deletions(-)
 
 commit 2ce6b58c7427cf67ba4f55731ba0a4c04703e495
@@ -9662,9 +9569,9 @@ Date:     Wed Feb 23 12:05:03 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=642708
 
- gi/pygi-invoke.c | 54
+ gi/pygi-invoke.c |   54
  ++++++++++++++++++++++++++++++++++++++++++++++++++----
- tests/test_gi.py |  9 +++++++++
+ tests/test_gi.py |    9 +++++++++
  2 files changed, 59 insertions(+), 4 deletions(-)
 
 commit 702a89beca92cab6b0142829b20281b9245f28b8
@@ -9675,8 +9582,8 @@ Date:     Wed Feb 23 15:11:59 2011 -0500
 
      * as done in PyGTK None indicates the column should not be set
 
- gi/overrides/Gtk.py    |  3 +++
- tests/test_overrides.py | 18 +++++++++++++-----
+ gi/overrides/Gtk.py    |    3 +++
+ tests/test_overrides.py |   18 +++++++++++++-----
  2 files changed, 16 insertions(+), 5 deletions(-)
 
 commit 498f0d9c903131aca5efe27ffaad7620e40f72ea
@@ -9686,8 +9593,8 @@ Date:     Wed Feb 23 14:23:19 2011 +0100
     [gi] Add value_name for enum and flags from introspection
     "c:identifier" (if attr is available).
 
- gi/gimodule.c   | 22 ++++++++++++++++++----
- tests/test_gi.py | 36 ++++++++++++++++++++++++++++++++++++
+ gi/gimodule.c   |   22 ++++++++++++++++++----
+ tests/test_gi.py |   36 ++++++++++++++++++++++++++++++++++++
  2 files changed, 54 insertions(+), 4 deletions(-)
 
 commit 824aeb7fab17d6590e5babf2d1f64298f2d0e16b
@@ -9705,7 +9612,7 @@ Date:     Wed Feb 23 11:40:55 2011 +0100
     of duplicate instances we keep, because if an instance is not
     found in the dict, a new one is created anyway.
 
- gobject/pygflags.c | 2 +-
+ gobject/pygflags.c |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 3afbebeee486e14fd3f48552368903eb78f6b10c
@@ -9720,7 +9627,7 @@ Date:     Tue Feb 22 21:37:33 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=642305
 
- gi/importer.py | 2 +-
+ gi/importer.py |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 2a9cbfb435b47dc646e2c6ffe630464b560229a6
@@ -9733,9 +9640,9 @@ Date:     Mon Feb 21 17:20:57 2011 -0500
 
     https://bugzilla.gnome.org/show_bug.cgi?id=642921
 
- gi/overrides/Gtk.py    | 37 ++++++++++++++++++---
- tests/test_overrides.py | 87
- +++++++++++++++++++++++++++++++++++++++++--------
+ gi/overrides/Gtk.py    |   37 +++++++++++++++++---
+ tests/test_overrides.py |   87
+ ++++++++++++++++++++++++++++++++++++++++-------
  2 files changed, 107 insertions(+), 17 deletions(-)
 
 commit 9e4ce7dc0f03ea407654c4af028122f57cbc4c5e
@@ -9766,8 +9673,8 @@ Date:     Mon Feb 21 16:14:20 2011 -0500
 
     https://bugzilla.gnome.org/show_bug.cgi?id=642914
 
- gi/pygi-argument.c | 24 ++++++++++++++++++------
- tests/test_gi.py   |  9 ++++++++-
+ gi/pygi-argument.c |  24 ++++++++++++++++++------
+ tests/test_gi.py   |   9 ++++++++-
  2 files changed, 26 insertions(+), 7 deletions(-)
 
 commit b458f6f3424a04f6ceece09d443009372d70544c
@@ -9776,8 +9683,8 @@ Date:     Sat Feb 19 19:42:41 2011 -0500
 
     [gi-demos] add icon view edit and drag-and-drop demo
 
- demos/gtk-demo/demos/Icon View/iconviewedit.py | 101
- +++++++++++++++++++++++++
+ demos/gtk-demo/demos/Icon View/iconviewedit.py |  101
+ ++++++++++++++++++++++++
  1 file changed, 101 insertions(+)
 
 commit 7b47289e25d1dd57ce15556ccfbb3ede1c4bfe8b
@@ -9786,8 +9693,8 @@ Date:     Sat Feb 19 17:26:42 2011 -0500
 
     [gi-demos] add info bars demo
 
- demos/gtk-demo/demos/infobars.py | 99
- ++++++++++++++++++++++++++++++++++++++++
+ demos/gtk-demo/demos/infobars.py |   99
+ ++++++++++++++++++++++++++++++++++++++
  1 file changed, 99 insertions(+)
 
 commit 76758efb6579752237a0dc4d56cf9518de6c6e55
@@ -9800,10 +9707,10 @@ Date:   Wed Feb 16 11:53:18 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=642305
 
- gi/__init__.py       | 29 ++++++++++++++++++++++++++++-
- gi/importer.py       |  1 +
- gi/module.py        | 21 ++++-----------------
- gi/pygi-repository.c | 23 +++++++++++++++++++++++
+ gi/__init__.py       |   29 ++++++++++++++++++++++++++++-
+ gi/importer.py       |    1 +
+ gi/module.py        |   21 ++++-----------------
+ gi/pygi-repository.c |   23 +++++++++++++++++++++++
  4 files changed, 56 insertions(+), 18 deletions(-)
 
 commit 96f7d1aed732db09a74cd463ed894b7347dbcb15
@@ -9825,13 +9732,13 @@ Date:   Sat Feb 19 23:11:25 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=642607
 
- gi/gimodule.c     | 117
- +++++++++++++++++++++++++++++++++++++++++++++++++++++
- gi/module.py      |  24 ++++++-----
- gi/pygi-info.c     |  15 +++++++
- gi/types.py       |  16 --------
- gobject/pygflags.c |  13 ++++--
- tests/test_gi.py   |  35 ++++++++++++++++
+ gi/gimodule.c     |  117
+ ++++++++++++++++++++++++++++++++++++++++++++++++++++
+ gi/module.py      |   24 +++++++----
+ gi/pygi-info.c     |  15 +++++++
+ gi/types.py       |   16 -------
+ gobject/pygflags.c |  13 ++++--
+ tests/test_gi.py   |  35 ++++++++++++++++
  6 files changed, 191 insertions(+), 29 deletions(-)
 
 commit 63a60bcc20e724f96ea8d565ee0cf13a228b72b9
@@ -9856,10 +9763,10 @@ Date:   Tue Feb 8 15:38:21 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=640181
 
- gi/overrides/Gio.py | 99
- ++++++++++++++++++++++++++++++++++++++++++++++++++
- tests/test_gdbus.py | 102
- ++++++++++++++++++++++++++++++++++++++++++++++++++--
+ gi/overrides/Gio.py |  99
+ +++++++++++++++++++++++++++++++++++++++++++++++++
+ tests/test_gdbus.py | 102
+ ++++++++++++++++++++++++++++++++++++++++++++++++++-
  2 files changed, 199 insertions(+), 2 deletions(-)
 
 commit ed5cdbb6f52bdbd13521a814516b15687955d6f7
@@ -9875,7 +9782,7 @@ Date:     Fri Feb 18 22:48:59 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=642715
 
- gi/pygi-closure.c | 8 ++++++++
+ gi/pygi-closure.c |   8 ++++++++
  1 file changed, 8 insertions(+)
 
 commit 5a5ee3877e22939a697772a7f0630ef8cae3d52f
@@ -9884,7 +9791,7 @@ Date:     Fri Feb 18 10:15:59 2011 +0100
 
     Fix runtests.py to work with Python3 (print function syntax error).
 
- tests/runtests.py | 2 +-
+ tests/runtests.py |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit ad5d3fccff9433e2dadac89d731dac5cafb0eac3
@@ -9895,8 +9802,8 @@ Date:     Thu Feb 17 19:46:49 2011 -0500
 
     * needs some Pango Attr fixes to be 100% done, See FIXME
 
- demos/gtk-demo/demos/rotatedtext.py | 196
- ++++++++++++++++++++++++++++++++++++
+ demos/gtk-demo/demos/rotatedtext.py | 196
+ +++++++++++++++++++++++++++++++++++
  1 file changed, 196 insertions(+)
 
 commit 9ac11c3c3b1c0399c85ece57c0983ed60d419d7a
@@ -9907,8 +9814,8 @@ Date:     Thu Feb 17 17:25:00 2011 -0500
 
      * needs annotation fix from GdkPixbuf for ImageLoader to work
 
- demos/gtk-demo/demos/images.py | 311
- +++++++++++++++++++++++++++++++++++++++++
+ demos/gtk-demo/demos/images.py |  311
+ ++++++++++++++++++++++++++++++++++++++++
  1 file changed, 311 insertions(+)
 
 commit 13b06170b89b3468e6255be32af4833ffc675c9d
@@ -9917,8 +9824,8 @@ Date:     Thu Feb 17 14:48:24 2011 -0500
 
     [gi-demos] add pixbuf demo
 
- demos/gtk-demo/demos/pixbuf.py | 183
- +++++++++++++++++++++++++++++++++++++++++
+ demos/gtk-demo/demos/pixbuf.py |  183
+ ++++++++++++++++++++++++++++++++++++++++
  1 file changed, 183 insertions(+)
 
 commit 7abcfd5b4db99bb0f50c5a47d346a2de3836f994
@@ -9927,7 +9834,7 @@ Date:     Thu Feb 17 14:47:12 2011 -0500
 
     [gi-demos] remove fixmes from print demo, fixed in pango
 
- demos/gtk-demo/demos/printing.py | 10 +++-------
+ demos/gtk-demo/demos/printing.py |   10 +++-------
  1 file changed, 3 insertions(+), 7 deletions(-)
 
 commit 9b13f49356da7d71c69b82da2a59d92f456a6913
@@ -9938,8 +9845,8 @@ Date:     Wed Feb 16 19:39:30 2011 -0500
 
     * needs some annotations for pango before it is 100% useful
 
- demos/gtk-demo/demos/printing.py | 177
- +++++++++++++++++++++++++++++++++++++++
+ demos/gtk-demo/demos/printing.py |  177
+ ++++++++++++++++++++++++++++++++++++++
  1 file changed, 177 insertions(+)
 
 commit 6025b62ee662af347e48b6752e6d5be74b4a8215
@@ -9950,8 +9857,8 @@ Date:     Wed Feb 16 17:52:38 2011 -0500
 
     https://bugzilla.gnome.org/show_bug.cgi?id=635947
 
- gi/overrides/Gdk.py    | 41 +++++++++++++++++++++++++++++++++++++++++
- tests/test_overrides.py | 23 +++++++++++++++++++++++
+ gi/overrides/Gdk.py    |   41 +++++++++++++++++++++++++++++++++++++++++
+ tests/test_overrides.py |   23 +++++++++++++++++++++++
  2 files changed, 64 insertions(+)
 
 commit 03c0aa498470037ef2aa6a8233198ff521f8d42f
@@ -9960,8 +9867,8 @@ Date:     Wed Feb 16 16:18:24 2011 -0500
 
     [gi-demos] add the links demo
 
- demos/gtk-demo/demos/links.py | 74
- +++++++++++++++++++++++++++++++++++++++++++
+ demos/gtk-demo/demos/links.py |   74
+ +++++++++++++++++++++++++++++++++++++++++
  1 file changed, 74 insertions(+)
 
 commit 79ecddf8d54b3f4f8b5ef05d302675152622c832
@@ -9970,8 +9877,8 @@ Date:     Wed Feb 16 15:48:40 2011 -0500
 
     [gi-demos] add expander demo
 
- demos/gtk-demo/demos/expander.py | 60
- ++++++++++++++++++++++++++++++++++++++++
+ demos/gtk-demo/demos/expander.py |   60
+ ++++++++++++++++++++++++++++++++++++++
  1 file changed, 60 insertions(+)
 
 commit 76cdb13ab872f91f8384d26b0f2932087a746117
@@ -9981,8 +9888,8 @@ Date:     Wed Feb 16 15:14:35 2011 -0500
     [gi-overrides] use pop instead of del and add extra tests for
     Gtk.Table kwargs
 
- gi/overrides/Gtk.py    | 6 ++----
- tests/test_overrides.py | 8 ++++++++
+ gi/overrides/Gtk.py    |    6 ++----
+ tests/test_overrides.py |    8 ++++++++
  2 files changed, 10 insertions(+), 4 deletions(-)
 
 commit 6ef83c049735689c42f085ca9d7b8e1f251c410f
@@ -10002,8 +9909,8 @@ Date:    Tue Feb 15 20:07:42 2011 +0100
     so that make does not continue. Otherwise you might miss the
     failures from the first batch of tests in the scrollback.
 
- tests/Makefile.am | 19 +++++++++++--------
- tests/runtests.py |  4 +++-
+ tests/Makefile.am |   19 +++++++++++--------
+ tests/runtests.py |   4 +++-
  2 files changed, 14 insertions(+), 9 deletions(-)
 
 commit e0896b45f60f37097ec521f1bc38778383b78dd8
@@ -10012,8 +9919,8 @@ Date:    Tue Feb 15 14:47:10 2011 -0500
 
     [gi-demos] add dialogs demo
 
- demos/gtk-demo/demos/dialogs.py | 153
- ++++++++++++++++++++++++++++++++++++++++
+ demos/gtk-demo/demos/dialogs.py |  153
+ +++++++++++++++++++++++++++++++++++++++
  1 file changed, 153 insertions(+)
 
 commit 2dea743e82f6b18697950c34f116b2d0f1d6b1dd
@@ -10022,7 +9929,7 @@ Date:    Tue Feb 15 14:46:41 2011 -0500
 
     [gi-overrides] fix typo in GtkTable constructor
 
- gi/overrides/Gtk.py | 8 ++++----
+ gi/overrides/Gtk.py |   8 ++++----
  1 file changed, 4 insertions(+), 4 deletions(-)
 
 commit 9c277e1782c5a9d672d91fabf5289c5415891682
@@ -10032,7 +9939,7 @@ Date:    Tue Feb 15 13:26:38 2011 -0500
     [gi-demos] keep popup menu from destroying itself by holding a ref
     in app class
 
- demos/gtk-demo/demos/clipboard.py | 8 ++++----
+ demos/gtk-demo/demos/clipboard.py |   8 ++++----
  1 file changed, 4 insertions(+), 4 deletions(-)
 
 commit 18800c4db0e1faea38fd84f635d26a7ded5d10de
@@ -10041,7 +9948,7 @@ Date:    Tue Feb 15 13:25:13 2011 -0500
 
     [gi-overrides] add a Gtk.Menu override for the popup method
 
- gi/overrides/Gtk.py | 7 +++++++
+ gi/overrides/Gtk.py |   7 +++++++
  1 file changed, 7 insertions(+)
 
 commit ad93386ba9f73ef4c3826544b3868cf03c01225e
@@ -10050,7 +9957,7 @@ Date:    Tue Feb 15 13:24:33 2011 -0500
 
     [gi-demos] fix the about dialog in appwindow demo
 
- demos/gtk-demo/demos/appwindow.py | 22 +++++++++-------------
+ demos/gtk-demo/demos/appwindow.py |   22 +++++++++-------------
  1 file changed, 9 insertions(+), 13 deletions(-)
 
 commit d0c45c80974f05b6adfd3bb01d785be268a53a98
@@ -10063,7 +9970,7 @@ Date:    Tue Feb 15 11:21:13 2011 -0500
     a destroy
       notify
 
- demos/gtk-demo/demos/clipboard.py | 20 ++++++++++----------
+ demos/gtk-demo/demos/clipboard.py |   20 ++++++++++----------
  1 file changed, 10 insertions(+), 10 deletions(-)
 
 commit 02d0327508234ab2e3b7dc6de506d70e6fcaaa17
@@ -10072,7 +9979,7 @@ Date:    Tue Feb 15 10:18:53 2011 -0500
 
     [gi-demos] fix clipboard demo to reflect new API
 
- demos/gtk-demo/demos/clipboard.py | 6 +++---
+ demos/gtk-demo/demos/clipboard.py |   6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)
 
 commit aa006cad6990eff0cbb68fa9550e428f2bc96473
@@ -10082,8 +9989,8 @@ Date:    Mon Feb 14 18:17:20 2011 -0500
     [gi-demo] Fix color dialog demo to run with new draw, style and
     color apis
 
- demos/gtk-demo/demos/colorselector.py | 44
- ++++++++++++++---------------------
+ demos/gtk-demo/demos/colorselector.py |   44
+ +++++++++++++--------------------
  1 file changed, 17 insertions(+), 27 deletions(-)
 
 commit f94a96c53e9432ac085bd05acee7ebdd2803fbad
@@ -10094,7 +10001,7 @@ Date:   Mon Feb 14 17:58:25 2011 -0500
 
     * Still having some issues with filtering the ComboBoxText widget
 
- demos/gtk-demo/demos/combobox.py | 17 ++++++++---------
+ demos/gtk-demo/demos/combobox.py |   17 ++++++++---------
  1 file changed, 8 insertions(+), 9 deletions(-)
 
 commit 3606eb20ad1651af621bf1aa429ec102082565eb
@@ -10108,16 +10015,16 @@ Date: Mon Feb 14 19:36:27 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=637601
 
- gi/Makefile.am                  |   2 +
- gi/gimodule.c           |   1 +
- gi/pygi-argument.c      |  91 ++++++++++++++++++
- gi/pygi-argument.h      |   2 +
- gi/pygi-private.h       |   1 +
- gi/pygi-signal-closure.c | 245
- +++++++++++++++++++++++++++++++++++++++++++++++
- gi/pygi-signal-closure.h |  46 +++++++++
- gi/pygi.h               |  28 ++++++
- gobject/pygobject.c     |  24 ++++-
+ gi/Makefile.am                  |    2 +
+ gi/gimodule.c           |    1 +
+ gi/pygi-argument.c      |   91 +++++++++++++++++
+ gi/pygi-argument.h      |    2 +
+ gi/pygi-private.h       |    1 +
+ gi/pygi-signal-closure.c |  245
+ ++++++++++++++++++++++++++++++++++++++++++++++
+ gi/pygi-signal-closure.h |   46 +++++++++
+ gi/pygi.h               |   28 ++++++
+ gobject/pygobject.c     |   24 ++++-
  9 files changed, 436 insertions(+), 4 deletions(-)
 
 commit 2e39d5e8f96be2253acb2f34a0d0b5b9c9adb8ff
@@ -10126,8 +10033,8 @@ Date:   Mon Feb 14 16:47:03 2011 -0500
 
     [gi-demos] fix drawingarea app to use the new draw api
 
- demos/gtk-demo/demos/drawingarea.py | 144
- +++++++++++++-----------------------
+ demos/gtk-demo/demos/drawingarea.py | 144
+ ++++++++++++-----------------------
  1 file changed, 50 insertions(+), 94 deletions(-)
 
 commit 8385afbbc5df295d9b7cd3b5d19c90faa1f7ea8e
@@ -10141,7 +10048,7 @@ Date:   Mon Feb 14 16:43:35 2011 -0500
       bindings
     * we alias this so people do not get confused
 
- gi/overrides/Gdk.py | 5 +++++
+ gi/overrides/Gdk.py |   5 +++++
  1 file changed, 5 insertions(+)
 
 commit d491c369e049ab726f09002af0462391d5c2f3ec
@@ -10156,7 +10063,7 @@ Date:   Mon Feb 14 15:07:11 2011 -0500
     * The GTK properties are n_columns and n_rows
     * support both
 
- gi/overrides/Gtk.py | 8 ++++++++
+ gi/overrides/Gtk.py |   8 ++++++++
  1 file changed, 8 insertions(+)
 
 commit 95bc2b2b025d659725d701c3b759c0c4d9681a36
@@ -10165,7 +10072,7 @@ Date:   Mon Feb 14 15:06:38 2011 -0500
 
     [gi-demos] get appwindow demo working again
 
- demos/gtk-demo/demos/appwindow.py | 24 ++++--------------------
+ demos/gtk-demo/demos/appwindow.py |   24 ++++--------------------
  1 file changed, 4 insertions(+), 20 deletions(-)
 
 commit 015185f502c498c21cb108d3bb288c5b6dbf202f
@@ -10174,7 +10081,7 @@ Date:   Mon Feb 14 15:05:44 2011 -0500
 
     [gi-demos] fixed use of tree_iter_get
 
- demos/gtk-demo/gtk-demo.py | 2 +-
+ demos/gtk-demo/gtk-demo.py |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 0c20977e4598e5447dd07c069e91226efacb1160
@@ -10185,13 +10092,13 @@ Date: Fri Feb 11 22:02:03 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=638899
 
- PKG-INFO.in                    |  2 +-
- README                                 |  3 +-
- configure.ac                   |  3 --
- examples/gio/directory-async.py | 33 ------------------
- examples/gio/downloader.py     | 77
- -----------------------------------------
- pygobject.doap                         |  2 +-
+ PKG-INFO.in                    |    2 +-
+ README                                 |    3 +-
+ configure.ac                   |    3 --
+ examples/gio/directory-async.py |   33 -----------------
+ examples/gio/downloader.py     |   77
+ ---------------------------------------
+ pygobject.doap                         |    2 +-
  6 files changed, 3 insertions(+), 117 deletions(-)
 
 commit e4ebbd7de5570af1abf41bdf9469d4ce3edd48cb
@@ -10258,9 +10165,9 @@ Date:   Fri Feb 11 11:05:04 2011 -0500
     * this branch will drop support for the static binding
     * use the pygobject-2-28 branch for static binding fixes
 
- NEWS        | 289
- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
- configure.ac |   4 +-
+ NEWS        |  289
+ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ configure.ac |    4 +-
  2 files changed, 291 insertions(+), 2 deletions(-)
 
 commit 16140237aa45b4f188923da9f95b9d2af971011b
@@ -10269,10 +10176,10 @@ Date: Thu Feb 10 16:46:08 2011 -0500
 
     fix build to correctly use python-config
 
- autogen.sh       | 3 +++
- configure.ac     | 6 ------
- m4/python.m4     | 9 +++++----
- tests/runtests.py | 1 +
+ autogen.sh       |    3 +++
+ configure.ac     |    6 ------
+ m4/python.m4     |    9 +++++----
+ tests/runtests.py |   1 +
  4 files changed, 9 insertions(+), 10 deletions(-)
 
 commit c2079f415638ef892b1e51f25eaafa3e1621667f
@@ -10281,8 +10188,8 @@ Date:   Thu Feb 10 22:26:00 2011 +0100
 
     Add missing libraries to link against
 
- glib/Makefile.am    | 2 +-
- gobject/Makefile.am | 1 +
+ glib/Makefile.am    |   2 +-
+ gobject/Makefile.am |   1 +
  2 files changed, 2 insertions(+), 1 deletion(-)
 
 commit 3cca62a9e7afd3d3d302c66f4fafe253f7743d4e
@@ -10297,7 +10204,7 @@ Date:   Wed Jan 19 15:00:56 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=639948
 
- tests/runtests.py | 9 +++++++++
+ tests/runtests.py |   9 +++++++++
  1 file changed, 9 insertions(+)
 
 commit 14c4cf8e6edae893538680964380d543bde4a14d
@@ -10312,7 +10219,7 @@ Date:   Wed Feb 9 11:34:59 2011 +0100
     session
     D-BUS (such as distribution package builds).
 
- tests/Makefile.am | 3 ++-
+ tests/Makefile.am |   3 ++-
  1 file changed, 2 insertions(+), 1 deletion(-)
 
 commit 0858f550e2b6f75e3f583f963f5952f5ddae4e0e
@@ -10324,7 +10231,7 @@ Date:   Tue Feb 8 15:46:36 2011 +0100
     - TestCase.assert_() has been deprecated by assertTrue().
     - Exceptions don't have a message attribute any more, use str(e)
 
- tests/test_gdbus.py | 34 +++++++++++++++-------------------
+ tests/test_gdbus.py |  34 +++++++++++++++-------------------
  1 file changed, 15 insertions(+), 19 deletions(-)
 
 commit b7f32e4cca0cef201489b55653f96ac64a8f9ab9
@@ -10339,10 +10246,10 @@ Date: Sat Jan 29 12:20:50 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=640838
 
- gi/overrides/Gio.py             | 54 +++++++++++++++++++++++++++++
- tests/org.gnome.test.gschema.xml |  9 +++++
- tests/test_overrides.py         | 73
- ++++++++++++++++++++++++++++++++--------
+ gi/overrides/Gio.py             |   54 ++++++++++++++++++++++++++++
+ tests/org.gnome.test.gschema.xml |    9 +++++
+ tests/test_overrides.py         |   73
+ ++++++++++++++++++++++++++++++--------
  3 files changed, 122 insertions(+), 14 deletions(-)
 
 commit 8dad0eaed60a9de26e9a729a48a1f6bc74be486e
@@ -10358,8 +10265,8 @@ Date:   Fri Feb 4 16:36:07 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=641493
 
- gi/types.py     | 4 +++-
- tests/test_gi.py | 8 ++++++++
+ gi/types.py     |    4 +++-
+ tests/test_gi.py |    8 ++++++++
  2 files changed, 11 insertions(+), 1 deletion(-)
 
 commit 2660be1f227be7a53092483bc9d8ead1bd1fb266
@@ -10375,7 +10282,7 @@ Date:   Thu Feb 3 15:31:42 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=639945
 
- tests/test_overrides.py | 40 ++++++++++++++++++++++++++++++++++++++++
+ tests/test_overrides.py |   40 ++++++++++++++++++++++++++++++++++++++++
  1 file changed, 40 insertions(+)
 
 commit d57500537014b3da624be33b40401ba289fa22b8
@@ -10384,8 +10291,8 @@ Date:   Thu Feb 3 09:02:16 2011 -0500
 
     [gi] make caller allocates work again
 
- gi/pygi-cache.c  | 18 +++---------------
- gi/pygi-invoke.c | 37 ++++++++++++++++++++++++++++++++++---
+ gi/pygi-cache.c  |   18 +++---------------
+ gi/pygi-invoke.c |   37 ++++++++++++++++++++++++++++++++++---
  2 files changed, 37 insertions(+), 18 deletions(-)
 
 commit 99d6e6c8d806e6f9e48c3c2380024fb3511d110a
@@ -10394,8 +10301,8 @@ Date:   Wed Feb 2 19:27:40 2011 -0500
 
     [gi] fix container object reffing
 
- gi/pygi-argument.c |  7 +++----
- gi/pygi-cache.c    | 12 ++++--------
+ gi/pygi-argument.c |   7 +++----
+ gi/pygi-cache.c    |  12 ++++--------
  2 files changed, 7 insertions(+), 12 deletions(-)
 
 commit 09acaff29dfaabc77477cffca2c7137f68991e7f
@@ -10404,9 +10311,9 @@ Date:   Wed Feb 2 21:00:48 2011 +0100
 
     [python 3] use the right syntaxis to raise exceptions
 
- codegen/argtypes.py   |  8 ++++----
- codegen/definitions.py | 14 +++++++-------
- gi/overrides/Gtk.py   |  2 +-
+ codegen/argtypes.py   |    8 ++++----
+ codegen/definitions.py |   14 +++++++-------
+ gi/overrides/Gtk.py   |    2 +-
  3 files changed, 12 insertions(+), 12 deletions(-)
 
 commit 36094e5982d3e05d5662843b6d401f0974f5235f
@@ -10415,7 +10322,7 @@ Date:   Wed Feb 2 20:50:12 2011 +0100
 
     [gi] return PYGLIB_MODULE_ERROR_RETURN on error and use pygobject_init
 
- tests/testhelpermodule.c | 6 +++---
+ tests/testhelpermodule.c |    6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)
 
 commit c913c1789296310c2cf27554ce719d7f6e9c94cd
@@ -10426,7 +10333,7 @@ Date:   Wed Feb 2 20:37:21 2011 +0100
 
     This is to avoid some warnings when building with python 3
 
- gi/gimodule.c | 6 +++---
+ gi/gimodule.c |    6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)
 
 commit 7bc4122897d9d05172a2bd5b56bded87e2afaec4
@@ -10447,8 +10354,8 @@ Date:   Sat Jan 29 00:16:50 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=640868
 
- gobject/pygobject.c     | 4 +++-
- tests/test_everything.py | 9 ++++++++-
+ gobject/pygobject.c     |    4 +++-
+ tests/test_everything.py |    9 ++++++++-
  2 files changed, 11 insertions(+), 2 deletions(-)
 
 commit afeaaa126f7cd6556fb855ecd0facc174c0f946c
@@ -10465,8 +10372,8 @@ Date:   Wed Jan 19 16:19:46 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=639936
 
- gi/overrides/Gdk.py    | 6 ++++++
- tests/test_overrides.py | 8 ++++++++
+ gi/overrides/Gdk.py    |    6 ++++++
+ tests/test_overrides.py |    8 ++++++++
  2 files changed, 14 insertions(+)
 
 commit 4a67f45880433905de33632fe0c32a13b44c0b33
@@ -10475,7 +10382,7 @@ Date:   Mon Jan 31 16:51:37 2011 -0500
 
     [gi] handle hash being NULL
 
- gi/pygi-argument.c | 6 ++++++
+ gi/pygi-argument.c |   6 ++++++
  1 file changed, 6 insertions(+)
 
 commit 2fbfe410f4b4394a2018ada0e538585c1bec23ae
@@ -10484,9 +10391,9 @@ Date:   Mon Jan 31 16:50:52 2011 -0500
 
     [gi] handle the situation where an aux arg comes before its parent
 
- gi/pygi-cache.c  | 70
- ++++++++++++++++++++++++++++++++++++++++----------------
- gi/pygi-invoke.c |  2 +-
+ gi/pygi-cache.c  |   70
+ ++++++++++++++++++++++++++++++++++++++----------------
+ gi/pygi-invoke.c |    2 +-
  2 files changed, 51 insertions(+), 21 deletions(-)
 
 commit 858669f92c9907dd70b4966d6a8521ed122225be
@@ -10495,7 +10402,7 @@ Date:   Mon Jan 31 17:38:52 2011 +0100
 
     Ship tests/org.gnome.test.gschema.xml in dist tarballs
 
- tests/Makefile.am | 3 ++-
+ tests/Makefile.am |   3 ++-
  1 file changed, 2 insertions(+), 1 deletion(-)
 
 commit 77d76df59606e470808085e977fb199cc76e8251
@@ -10504,9 +10411,9 @@ Date:   Sun Jan 30 18:21:24 2011 -0500
 
     [gi] allow caching and marshalling of ghash out
 
- gi/pygi-argument.c | 155
- +++++++++++++++++++++++++++++++++++++++++++++++++----
- gi/pygi-cache.c    |  27 ++++++----
+ gi/pygi-argument.c |  155
+ ++++++++++++++++++++++++++++++++++++++++++++++++----
+ gi/pygi-cache.c    |  27 +++++----
  2 files changed, 162 insertions(+), 20 deletions(-)
 
 commit bd66af67f248a3ca90d2fa2626605263c2392e16
@@ -10515,8 +10422,8 @@ Date:   Sun Jan 30 17:06:44 2011 -0500
 
     [gi] whitespace fixes
 
- gi/pygi-cache.c | 60
- ++++++++++++++++++++++++++++-----------------------------
+ gi/pygi-cache.c |   60
+ +++++++++++++++++++++++++++----------------------------
  1 file changed, 30 insertions(+), 30 deletions(-)
 
 commit 1cdbd4be9b015f792c2c02afa5ac7e24edbdae86
@@ -10530,11 +10437,11 @@ Date: Sun Jan 30 17:04:13 2011 -0500
     * this works for now but is fragile if new aux values are added in
     the future
 
- gi/pygi-argument.c | 12 ++++++++--
- gi/pygi-cache.c    | 66
- +++++++++++++++++++++++++++++++++++++-----------------
- gi/pygi-cache.h    |  2 ++
- gi/pygi-invoke.c   | 12 +++++++---
+ gi/pygi-argument.c |  12 ++++++++--
+ gi/pygi-cache.c    |  66
+ +++++++++++++++++++++++++++++++++++-----------------
+ gi/pygi-cache.h    |   2 ++
+ gi/pygi-invoke.c   |  12 +++++++---
  4 files changed, 66 insertions(+), 26 deletions(-)
 
 commit c51447f4efde2ce4caf39c1ffac905ec428d1d64
@@ -10559,8 +10466,8 @@ Date:   Sat Jan 29 13:49:36 2011 -0500
 
     [gi] marshal arrays out
 
- gi/pygi-argument.c | 101
- +++++++++++++++++++++++++++++++++++++++++++++++++++--
+ gi/pygi-argument.c |  101
+ ++++++++++++++++++++++++++++++++++++++++++++++++++--
  1 file changed, 99 insertions(+), 2 deletions(-)
 
 commit e62e7062d5cfd782eac64852f681c63e2776b8d4
@@ -10569,8 +10476,8 @@ Date:   Sat Jan 29 13:48:23 2011 -0500
 
     [gi] fix sequence caching to support out
 
- gi/pygi-cache.c | 111
- ++++++++++++++++++++++++++++++++++++++++++++------------
+ gi/pygi-cache.c |  111
+ +++++++++++++++++++++++++++++++++++++++++++------------
  1 file changed, 87 insertions(+), 24 deletions(-)
 
 commit 69207910209ebfe450df616aeb8fa4cc2e7eccf3
@@ -10583,9 +10490,9 @@ Date:   Fri Jan 28 17:14:19 2011 +0100
     so let's
     first make sure that the canonical GLib API works.
 
- tests/Makefile.am               |  7 +++++--
- tests/org.gnome.test.gschema.xml | 16 ++++++++++++++++
- tests/test_overrides.py         | 31 +++++++++++++++++++++++++++++++
+ tests/Makefile.am               |    7 +++++--
+ tests/org.gnome.test.gschema.xml |   16 ++++++++++++++++
+ tests/test_overrides.py         |   31 +++++++++++++++++++++++++++++++
  3 files changed, 52 insertions(+), 2 deletions(-)
 
 commit 488478a83640d50baee963337fcc870fec76b784
@@ -10599,8 +10506,8 @@ Date:   Fri Jan 28 07:20:26 2011 +0100
     consistent
     with the actual GTK API.
 
- gi/overrides/Gtk.py    | 19 ++++++++++++++-----
- tests/test_overrides.py |  4 ++--
+ gi/overrides/Gtk.py    |   19 ++++++++++++++-----
+ tests/test_overrides.py |    4 ++--
  2 files changed, 16 insertions(+), 7 deletions(-)
 
 commit dace1a553793fb7fb054b60760f02c9e5cf00b38
@@ -10614,8 +10521,8 @@ Date:   Thu Jan 27 13:37:18 2011 +0100
     due to using varargs. As both are useful, support both cases in
     the override.
 
- gi/overrides/Gtk.py    | 5 +++++
- tests/test_overrides.py | 9 +++++++++
+ gi/overrides/Gtk.py    |    5 +++++
+ tests/test_overrides.py |    9 +++++++++
  2 files changed, 14 insertions(+)
 
 commit 91d34124b2a5128e93e13c7fee8693d5edc4e9bb
@@ -10627,7 +10534,7 @@ Date:   Thu Jan 27 12:23:18 2011 +0100
     This var behaves like .gitignore and allows us to skip some specific
     files.
 
- Makefile.am | 27 +++++++++++++++++++++++++++
+ Makefile.am |  27 +++++++++++++++++++++++++++
  1 file changed, 27 insertions(+)
 
 commit 8a98d26981ce68809a21c64cac4962e58c927905
@@ -10639,25 +10546,25 @@ Date: Thu Jan 27 12:15:30 2011 +0100
     git.mk is a script maintained in pango. From time to time we must
     check if it was updated and update it here.
 
- .gitignore               |  46 -----------
- Makefile.am              |   2 +
- codegen/.gitignore       |   2 -
- codegen/Makefile.am      |   2 +
- docs/.gitignore          |   7 --
- docs/Makefile.am         |   2 +
- examples/Makefile.am     |   2 +
- gi/.gitignore            |  40 ----------
- gi/Makefile.am                   |   2 +
- gi/overrides/Makefile.am  |   2 +
- gi/repository/Makefile.am |   2 +
- gi/tests/Makefile.am     |   2 +
- git.mk                           | 200
- ++++++++++++++++++++++++++++++++++++++++++++++
- glib/Makefile.am         |   2 +
- gobject/.gitignore       |   3 -
- gobject/Makefile.am      |   2 +
- tests/.gitignore         |   2 -
- tests/Makefile.am        |   2 +
+ .gitignore               |   46 -----------
+ Makefile.am              |    2 +
+ codegen/.gitignore       |    2 -
+ codegen/Makefile.am      |    2 +
+ docs/.gitignore          |    7 --
+ docs/Makefile.am         |    2 +
+ examples/Makefile.am     |    2 +
+ gi/.gitignore            |   40 ---------
+ gi/Makefile.am                   |    2 +
+ gi/overrides/Makefile.am  |   2 +
+ gi/repository/Makefile.am |   2 +
+ gi/tests/Makefile.am     |    2 +
+ git.mk                           |  200
+ +++++++++++++++++++++++++++++++++++++++++++++
+ glib/Makefile.am         |    2 +
+ gobject/.gitignore       |    3 -
+ gobject/Makefile.am      |    2 +
+ tests/.gitignore         |    2 -
+ tests/Makefile.am        |    2 +
  18 files changed, 222 insertions(+), 100 deletions(-)
 
 commit 331c42b63bc60a3b906fa21e1c0a7c1b9428f347
@@ -10666,7 +10573,7 @@ Date:   Thu Jan 27 12:04:19 2011 +0100
 
     pygi-convert.sh: Convert Pango.TabAlign.*
 
- pygi-convert.sh | 1 +
+ pygi-convert.sh |    1 +
  1 file changed, 1 insertion(+)
 
 commit be1a2959fa0a3d8682e0e8aef389d73dacab0689
@@ -10678,7 +10585,7 @@ Date:   Thu Jan 27 12:02:39 2011 +0100
     It is doing more harm than good for projects which use things like
     self.window.
 
- pygi-convert.sh | 1 -
+ pygi-convert.sh |    1 -
  1 file changed, 1 deletion(-)
 
 commit dd7deb4b658c56857c26b1a278a3d688f2ea6a2a
@@ -10687,7 +10594,7 @@ Date:   Thu Jan 27 11:58:26 2011 +0100
 
     pygi-convert.sh: Don't convert self.window assignments
 
- pygi-convert.sh | 2 +-
+ pygi-convert.sh |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 975341a26772966d4afc87a88a6a566d61237fa0
@@ -10698,8 +10605,8 @@ Date:   Fri Jan 21 18:41:54 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=640184
 
- gobject/gobjectmodule.c | 1 +
- tests/test_gobject.py  | 4 ++++
+ gobject/gobjectmodule.c |    1 +
+ tests/test_gobject.py  |    4 ++++
  2 files changed, 5 insertions(+)
 
 commit a59e2d58bdb3f31a4f415dbe14b7d9988ac28ce3
@@ -10710,7 +10617,7 @@ Date:   Fri Jan 21 15:54:43 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=640184
 
- tests/test_gobject.py | 21 +++++++++++++++++++++
+ tests/test_gobject.py |   21 +++++++++++++++++++++
  1 file changed, 21 insertions(+)
 
 commit 7d70105eb324ea4b6a58c2d3fb3f2dda36e7ab33
@@ -10721,10 +10628,10 @@ Date: Fri Jan 21 17:24:49 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=640197
 
- gobject/gobjectmodule.c     | 35 ++--------------------
- gobject/pygobject-private.h | 5 ++++
- gobject/pygobject.c        | 71
- +++++++++++++++++++++++++++------------------
+ gobject/gobjectmodule.c     |  35 ++-------------------
+ gobject/pygobject-private.h |   5 +++
+ gobject/pygobject.c        |   71
+ +++++++++++++++++++++++++------------------
  3 files changed, 50 insertions(+), 61 deletions(-)
 
 commit a3e0cfe8924887ecd1e07cedd2cfb999c853ac62
@@ -10733,7 +10640,7 @@ Date:   Wed Jan 26 15:34:24 2011 -0500
 
     [gi] in python 3 an array of uint8 can be bytes but not string
 
- tests/test_gi.py | 4 +++-
+ tests/test_gi.py |    4 +++-
  1 file changed, 3 insertions(+), 1 deletion(-)
 
 commit 843553ea958eddec185bb660851a310dc050a14b
@@ -10742,7 +10649,7 @@ Date:   Wed Jan 26 15:30:06 2011 -0500
 
     [gi] fix Gio.FileEnumerator to reflect the Python 3 iter protocol
 
- gi/overrides/Gio.py | 6 +++++-
+ gi/overrides/Gio.py |   6 +++++-
  1 file changed, 5 insertions(+), 1 deletion(-)
 
 commit 6ff357839feb39930a5f3175de3d0ed35f24d3f4
@@ -10806,12 +10713,12 @@ Date: Wed Jan 26 15:17:03 2011 -0500
          from compathelper import _long
          l = _long(42)
 
- gi/overrides/GLib.py   | 16 ++++++++--------
- gi/types.py            |  5 ++++-
- tests/compathelper.py  | 19 +++++++++++++++++++
- tests/test_gdbus.py    | 12 ++++++++----
- tests/test_gi.py       | 19 ++++++++++++-------
- tests/test_overrides.py |  8 +++++---
+ gi/overrides/GLib.py   |   16 ++++++++--------
+ gi/types.py            |    5 ++++-
+ tests/compathelper.py  |   19 +++++++++++++++++++
+ tests/test_gdbus.py    |   12 ++++++++----
+ tests/test_gi.py       |   19 ++++++++++++-------
+ tests/test_overrides.py |    8 +++++---
  6 files changed, 56 insertions(+), 23 deletions(-)
 
 commit 832d662b9f90f5762bbf28b3cca73f947c1f83ce
@@ -10820,8 +10727,8 @@ Date:   Wed Jan 26 14:00:08 2011 -0500
 
     [gi] fix try/except blocks using depricated raise format
 
- gi/overrides/GLib.py | 4 ++--
- gi/overrides/Gdk.py  | 2 +-
+ gi/overrides/GLib.py |    4 ++--
+ gi/overrides/Gdk.py  |    2 +-
  2 files changed, 3 insertions(+), 3 deletions(-)
 
 commit d3e30e240fed6ef1dd40fd29fd13dc2effc6c7b1
@@ -10830,7 +10737,7 @@ Date:   Wed Jan 26 19:03:48 2011 +0100
 
     [gi] Add docstring to GLib.Variant constructor
 
- gi/overrides/GLib.py | 11 +++++++++++
+ gi/overrides/GLib.py |   11 +++++++++++
  1 file changed, 11 insertions(+)
 
 commit 963cd52fec26f7a4fb34414f8ac6662932ede322
@@ -10839,7 +10746,7 @@ Date:   Wed Jan 26 18:45:38 2011 +0100
 
     [gi] update gdbus test cases for previous GVariant change
 
- tests/test_gdbus.py | 4 ++--
+ tests/test_gdbus.py |   4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit 27e3a6276ff5f2cdc03ddf69ee80d44c3bf2c094
@@ -10864,8 +10771,8 @@ Date:   Wed Jan 26 18:39:17 2011 +0100
 
     Thanks to Ryan Lortie for pointing this out!
 
- gi/overrides/GLib.py   | 25 ++++++++++---------------
- tests/test_overrides.py | 32 +++++++++++++-------------------
+ gi/overrides/GLib.py   |   25 ++++++++++---------------
+ tests/test_overrides.py |   32 +++++++++++++-------------------
  2 files changed, 23 insertions(+), 34 deletions(-)
 
 commit b15e8e2c0c933d0f827a70280faf875ac383d81b
@@ -10892,8 +10799,8 @@ Date:   Wed Jan 26 00:40:49 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=640629
 
- gi/types.py     | 26 +++++++++++++-------------
- tests/test_gi.py | 13 +++++++++++++
+ gi/types.py     |   26 +++++++++++++-------------
+ tests/test_gi.py |   13 +++++++++++++
  2 files changed, 26 insertions(+), 13 deletions(-)
 
 commit 569d42ac2f50fb706ef289ff631db743483f40ee
@@ -10926,9 +10833,9 @@ Date:   Thu Jan 20 16:26:18 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=640073
 
- gi/types.py     | 104
- ++++++++++++++++++++++++++++++++++---------------------
- tests/test_gi.py |  13 +++++++
+ gi/types.py     |  104
+ +++++++++++++++++++++++++++++++++---------------------
+ tests/test_gi.py |   13 +++++++
  2 files changed, 77 insertions(+), 40 deletions(-)
 
 commit 8f4e6536f3c2edf38a45632d1c23eb7c6681c3be
@@ -10937,7 +10844,7 @@ Date:   Mon Jan 24 19:23:19 2011 +0100
 
     pygi-convert.sh: Convert gtk.UI_MANAGER_*
 
- pygi-convert.sh | 1 +
+ pygi-convert.sh |    1 +
  1 file changed, 1 insertion(+)
 
 commit 1f473b5164407a178203eb8cc7f3c786e0d0e5c2
@@ -10946,7 +10853,7 @@ Date:   Fri Jan 21 18:41:54 2011 +0100
 
     pygi-convert.sh: Convert gdk.GRAB_*
 
- pygi-convert.sh | 1 +
+ pygi-convert.sh |    1 +
  1 file changed, 1 insertion(+)
 
 commit f5d0b7b9d189f65503c0bf66d8bda4186ca3223a
@@ -10955,7 +10862,7 @@ Date:   Fri Jan 21 16:45:07 2011 +0100
 
     [gi] set the gtype GValue correctly
 
- gi/pygi-property.c | 4 ++--
+ gi/pygi-property.c |   4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit ce521011d7f6d7f082aaea76fa05c5af9f6e93f5
@@ -10964,11 +10871,11 @@ Date: Fri Jan 21 16:20:23 2011 +0100
 
     [gi] use the right argument type for callback
 
- gi/pygi-foreign-cairo.c    | 8 ++++----
- gi/pygi-foreign-gvariant.c | 4 ++--
- gi/pygi-foreign-gvariant.h | 2 +-
- gi/pygi-foreign.c         | 2 +-
- gi/pygi.h                 | 2 +-
+ gi/pygi-foreign-cairo.c    |   8 ++++----
+ gi/pygi-foreign-gvariant.c |   4 ++--
+ gi/pygi-foreign-gvariant.h |   2 +-
+ gi/pygi-foreign.c         |    2 +-
+ gi/pygi.h                 |    2 +-
  5 files changed, 9 insertions(+), 9 deletions(-)
 
 commit 9f101baaa63a75acf62f955cfc4b311ff0dd5464
@@ -10977,8 +10884,8 @@ Date:   Fri Jan 21 09:23:54 2011 -0500
 
     [gi] marshal out flags and enum
 
- gi/pygi-argument.c | 14 +++++++++-----
- gi/pygi-cache.c    | 24 ++++++++++++------------
+ gi/pygi-argument.c |  14 +++++++++-----
+ gi/pygi-cache.c    |  24 ++++++++++++------------
  2 files changed, 21 insertions(+), 17 deletions(-)
 
 commit 4c93bdeae76830aa4029dfc86e32e6f277d5271d
@@ -10987,7 +10894,7 @@ Date:   Fri Jan 21 08:18:37 2011 -0500
 
     [gi] marshal unions
 
- gi/pygi-cache.c | 27 +++++++++++++--------------
+ gi/pygi-cache.c |   27 +++++++++++++--------------
  1 file changed, 13 insertions(+), 14 deletions(-)
 
 commit a060287d1a6d190acb9d344f08fd5662e3296da5
@@ -10996,9 +10903,9 @@ Date:   Fri Jan 21 11:00:27 2011 +0100
 
     [gi] Add test cases for GDBus client operations
 
- tests/Makefile.am   | 1 +
- tests/test_gdbus.py | 94
- +++++++++++++++++++++++++++++++++++++++++++++++++++++
+ tests/Makefile.am   |   1 +
+ tests/test_gdbus.py |  94
+ +++++++++++++++++++++++++++++++++++++++++++++++++++
  2 files changed, 95 insertions(+)
 
 commit e7699d9af41f8c374326b8a4ec0939ef1426e386
@@ -11007,7 +10914,7 @@ Date:   Fri Jan 21 04:28:15 2011 -0500
 
     [gi] error out if the constructor returns NULL
 
- gi/pygi-invoke.c | 7 +++++++
+ gi/pygi-invoke.c |    7 +++++++
  1 file changed, 7 insertions(+)
 
 commit 58ff2b2c38c1004861083ca88633be76767229f0
@@ -11017,7 +10924,7 @@ Date:   Fri Jan 21 04:26:45 2011 -0500
     [gi] throw error for caller allocates until we can write code to
     support it
 
- gi/pygi-cache.c | 11 +++++++++++
+ gi/pygi-cache.c |   11 +++++++++++
  1 file changed, 11 insertions(+)
 
 commit 5eb779439daa8bf1e86df689377dc10ef1430eab
@@ -11026,8 +10933,8 @@ Date:   Fri Jan 21 04:26:11 2011 -0500
 
     [gi] support struct out
 
- gi/pygi-argument.c | 30 ++++++++++++++++++++++++++----
- gi/pygi-cache.c    | 15 ++-------------
+ gi/pygi-argument.c |  30 ++++++++++++++++++++++++++----
+ gi/pygi-cache.c    |  15 ++-------------
  2 files changed, 28 insertions(+), 17 deletions(-)
 
 commit 3133dc595adf44279397d30712c0f8595f0e1acc
@@ -11044,16 +10951,16 @@ Date: Fri Jan 21 04:22:06 2011 -0500
       interface_info
       to the interface cache
 
- gi/pygi-argument.c        | 20 ++++----------------
- gi/pygi-cache.c           | 43
+ gi/pygi-argument.c        |   20 ++++----------------
+ gi/pygi-cache.c           |   43
  ++++++++++++++++++++++++++++++++-----------
- gi/pygi-cache.h           |  4 +++-
- gi/pygi-foreign-cairo.c    | 24 ++++++++++++------------
- gi/pygi-foreign-gvariant.c | 11 +++++------
- gi/pygi-foreign-gvariant.h | 10 +++++-----
- gi/pygi-foreign.c         | 21 +++++++++------------
- gi/pygi-foreign.h         |  6 +++---
- gi/pygi.h                 |  8 ++++----
+ gi/pygi-cache.h           |    4 +++-
+ gi/pygi-foreign-cairo.c    |  24 ++++++++++++------------
+ gi/pygi-foreign-gvariant.c |  11 +++++------
+ gi/pygi-foreign-gvariant.h |  10 +++++-----
+ gi/pygi-foreign.c         |   21 +++++++++------------
+ gi/pygi-foreign.h         |    6 +++---
+ gi/pygi.h                 |    8 ++++----
  9 files changed, 77 insertions(+), 70 deletions(-)
 
 commit e97e28048efb966ecc1a03277d36cbaa81b8db7d
@@ -11067,8 +10974,8 @@ Date:   Fri Jan 21 09:54:14 2011 +0100
     currently does not work (see
     https://bugzilla.gnome.org/show_bug.cgi?id=639952)
 
- gi/overrides/GLib.py   | 18 +++++++++++++++++-
- tests/test_overrides.py | 26 ++++++++++++++++++++++++++
+ gi/overrides/GLib.py   |   18 +++++++++++++++++-
+ tests/test_overrides.py |   26 ++++++++++++++++++++++++++
  2 files changed, 43 insertions(+), 1 deletion(-)
 
 commit 71dd03261fc06b8180c14cd31b54d8e4b200be3a
@@ -11086,7 +10993,7 @@ Date:   Thu Jan 20 19:48:23 2011 +0100
 
     GNOME bug #639880
 
- pygi-convert.sh | 1 +
+ pygi-convert.sh |    1 +
  1 file changed, 1 insertion(+)
 
 commit d1b0fa501cc431baa530d96fb50f4c35590890ac
@@ -11097,7 +11004,7 @@ Date:   Thu Jan 20 19:45:01 2011 +0100
 
     GNOME bug #639880
 
- pygi-convert.sh | 1 +
+ pygi-convert.sh |    1 +
  1 file changed, 1 insertion(+)
 
 commit 6d8ff4d5bdda5480089543869535cc3ee83da2f5
@@ -11122,9 +11029,9 @@ Date:   Wed Jan 19 11:41:11 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=639939
 
- gi/overrides/GLib.py   | 229
- ++++++++++++++++++++++++++----------------------
- tests/test_overrides.py | 159 +++++++++++++++++++++++++++++++--
+ gi/overrides/GLib.py   |  229
+ +++++++++++++++++++++++++----------------------
+ tests/test_overrides.py |  159 ++++++++++++++++++++++++++++++--
  2 files changed, 273 insertions(+), 115 deletions(-)
 
 commit ac095f5435f106e175fa3297cb273e63c85d2809
@@ -11133,7 +11040,7 @@ Date:   Thu Jan 20 15:55:45 2011 +0100
 
     Uncomment test_gi.TestInterfaceClash
 
- tests/test_gi.py | 22 +++++++++++-----------
+ tests/test_gi.py |   22 +++++++++++-----------
  1 file changed, 11 insertions(+), 11 deletions(-)
 
 commit 1239f3709ba257c404dda72b7067b77b19c240fa
@@ -11142,9 +11049,9 @@ Date:   Thu Jan 20 09:05:02 2011 -0500
 
     [gi] add support for enum and flags
 
- gi/pygi-argument.c | 121
- +++++++++++++++++++++++++++++++++++++++++------------
- gi/pygi-cache.c    |  30 ++++++-------
+ gi/pygi-argument.c |  121
+ +++++++++++++++++++++++++++++++++++++++++-----------
+ gi/pygi-cache.c    |  30 +++++++------
  2 files changed, 111 insertions(+), 40 deletions(-)
 
 commit f0a0b6c2eda89622de2b1e5ebb6a48103ad72a42
@@ -11159,13 +11066,13 @@ Date: Thu Jan 20 14:14:15 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=639949
 
- gobject/gobjectmodule.c  |  2 ++
- gobject/pygobject.c     | 14 +++++------
- tests/test-floating.c   | 36 +++++++++++++++++++++++++++
- tests/test-floating.h   | 21 ++++++++++++++++
- tests/test_gobject.py   | 63
- ++++++++++++++++++++++++++++++++++++++++++++++++
- tests/testhelpermodule.c | 50 ++++++++++++++++++++++++++++++++++++++
+ gobject/gobjectmodule.c  |    2 ++
+ gobject/pygobject.c     |   14 +++++------
+ tests/test-floating.c   |   36 ++++++++++++++++++++++++++
+ tests/test-floating.h   |   21 ++++++++++++++++
+ tests/test_gobject.py   |   63
+ ++++++++++++++++++++++++++++++++++++++++++++++
+ tests/testhelpermodule.c |   50 ++++++++++++++++++++++++++++++++++++
  6 files changed, 179 insertions(+), 7 deletions(-)
 
 commit cae2cf3d4fb049c94389bf8f84d7d97a544d7a3f
@@ -11180,11 +11087,11 @@ Date: Wed Jan 19 16:57:57 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=639949
 
- tests/test-floating.c   | 30 +++++++++++++++++++++++
- tests/test-floating.h   | 20 ++++++++++++++++
- tests/test_gobject.py   | 62
- ++++++++++++++++++++++++++++++++++++++++++++++++
- tests/testhelpermodule.c | 51 +++++++++++++++++++++++++++++++++++++++
+ tests/test-floating.c   |   30 ++++++++++++++++++++++
+ tests/test-floating.h   |   20 +++++++++++++++
+ tests/test_gobject.py   |   62
+ ++++++++++++++++++++++++++++++++++++++++++++++
+ tests/testhelpermodule.c |   51 ++++++++++++++++++++++++++++++++++++++
  4 files changed, 163 insertions(+)
 
 commit b6737b91938d527872eff1d645a205cacf94e15d
@@ -11195,7 +11102,7 @@ Date:   Wed Jan 19 14:52:41 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=639949
 
- tests/test_gobject.py | 8 +++++++-
+ tests/test_gobject.py |    8 +++++++-
  1 file changed, 7 insertions(+), 1 deletion(-)
 
 commit 2b0f1ede820414ef1cfd6b37569fcb946d2031fc
@@ -11210,7 +11117,7 @@ Date:   Thu Jan 20 14:15:52 2011 +0100
     Gtk.TreeView.enable_model_drag_{source,dest}(). Thus
     drop the explicit array length argument from the call in the override.
 
- gi/overrides/Gtk.py | 2 --
+ gi/overrides/Gtk.py |   2 --
  1 file changed, 2 deletions(-)
 
 commit b59edf4f0f7cab44033f9d704d476e10ee0d0c0a
@@ -11219,7 +11126,7 @@ Date:   Wed Jan 19 18:04:10 2011 +0100
 
     Fix a typo in a private symbol name.
 
- gobject/gobjectmodule.c | 6 +++---
+ gobject/gobjectmodule.c |    6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)
 
 commit 6447688e283a8fb22de3ab68cbc06e34ad23d198
@@ -11228,7 +11135,7 @@ Date:   Thu Jan 20 11:49:08 2011 +0100
 
     pygi-convert.sh: Convert glib.source_remove()
 
- pygi-convert.sh | 1 +
+ pygi-convert.sh |    1 +
  1 file changed, 1 insertion(+)
 
 commit 84ee8de4bc00a8f901926cc6386d73c12dbd0b0b
@@ -11237,7 +11144,7 @@ Date:   Thu Jan 20 11:42:34 2011 +0100
 
     Fix typo in previous commit to actually convert glib.GError
 
- pygi-convert.sh | 2 +-
+ pygi-convert.sh |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit b238cb614338f46e6feb7935cca0a55c7a929418
@@ -11247,7 +11154,7 @@ Date:   Thu Jan 20 11:40:14 2011 +0100
     pygi-convert.sh: Move some glib bits which are better handled
     by gobject
 
- pygi-convert.sh | 3 +++
+ pygi-convert.sh |    3 +++
  1 file changed, 3 insertions(+)
 
 commit 21c09a7ee294b59abb3eca6f64f13bf5c8a2fa0e
@@ -11265,8 +11172,8 @@ Date:   Wed Jan 19 12:00:02 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=639934
 
- gi/overrides/Gtk.py    | 14 ++++++++++++--
- tests/test_overrides.py | 34 +++++++++++++++++++++++++++-------
+ gi/overrides/Gtk.py    |   14 ++++++++++++--
+ tests/test_overrides.py |   34 +++++++++++++++++++++++++++-------
  2 files changed, 39 insertions(+), 9 deletions(-)
 
 commit d465e25297ad6589ff2cd0c00e11e8bd8ffe3f78
@@ -11281,7 +11188,7 @@ Date:   Wed Jan 19 22:52:51 2011 +0100
     in bug
     639939 does.
 
- tests/test_overrides.py | 2 +-
+ tests/test_overrides.py |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 2b8e1d0531dcb8f57dc9f2fddf25970bee3daa90
@@ -11292,8 +11199,8 @@ Date:   Wed Jan 19 20:18:19 2011 +0100
 
     This extends commit b1a98083c to also work for strings.
 
- gi/overrides/GLib.py   |  8 +++++++-
- tests/test_overrides.py | 13 +++++++++++++
+ gi/overrides/GLib.py   |    8 +++++++-
+ tests/test_overrides.py |   13 +++++++++++++
  2 files changed, 20 insertions(+), 1 deletion(-)
 
 commit 8efd14c87b35072cdd039bf223f8ced8f51be9bb
@@ -11302,7 +11209,7 @@ Date:   Wed Jan 19 14:08:03 2011 -0500
 
     [gi] return NULL if out_marshaller fails
 
- gi/pygi-invoke.c | 5 +++++
+ gi/pygi-invoke.c |    5 +++++
  1 file changed, 5 insertions(+)
 
 commit 5b1db41d60204c8021f47f43b85dac126c389c8d
@@ -11311,9 +11218,9 @@ Date:   Wed Jan 19 13:57:54 2011 -0500
 
     [gi] fix some transfer issues and test case failures
 
- gi/pygi-argument.c |  4 ++++
- gi/pygi-cache.c    | 11 ++++++++---
- gi/pygi-invoke.c   | 17 +++++++++--------
+ gi/pygi-argument.c |   4 ++++
+ gi/pygi-cache.c    |  11 ++++++++---
+ gi/pygi-invoke.c   |  17 +++++++++--------
  3 files changed, 21 insertions(+), 11 deletions(-)
 
 commit 7c2f48bb6d67ec9a1ee5ac03a5aee34b54c6ebdd
@@ -11328,8 +11235,8 @@ Date:   Wed Jan 19 18:09:23 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=627444
 
- gi/pygi-info.c | 37 +++++++++++++++++++++++++++++++++++++
- gi/types.py   |  7 +++++++
+ gi/pygi-info.c |   37 +++++++++++++++++++++++++++++++++++++
+ gi/types.py   |    7 +++++++
  2 files changed, 44 insertions(+)
 
 commit db7300e173388d9557dcd2333781bfaa6b021605
@@ -11338,7 +11245,7 @@ Date:   Wed Jan 19 18:54:39 2011 +0100
 
     pygi-convert.sh: Migrate Gdk.Cursor constructor, and some cursor names
 
- pygi-convert.sh | 2 ++
+ pygi-convert.sh |    2 ++
  1 file changed, 2 insertions(+)
 
 commit 4c1d4faddf1c9cb233c484da3eadd8e31c231f70
@@ -11351,7 +11258,7 @@ Date:   Wed Jan 19 18:43:29 2011 +0100
     calling the
     GtkWidget methods instead.
 
- pygi-convert.sh | 5 ++++-
+ pygi-convert.sh |    5 ++++-
  1 file changed, 4 insertions(+), 1 deletion(-)
 
 commit b1049b947d073fb569ba900a4d5c8519482d831e
@@ -11364,7 +11271,7 @@ Date:   Wed Jan 19 17:35:09 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=639967
 
- gi/pygi-argument.c | 4 ++--
+ gi/pygi-argument.c |   4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit 25b69ae257a12b6dc97ed3f2f7ea54b166ddbba1
@@ -11384,9 +11291,9 @@ Date:   Wed Jan 19 17:45:11 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=639834
 
- gi/Makefile.am   |  3 ++-
- gi/pygi-invoke.c | 12 +++---------
- tests/test_gi.py | 10 ++++++++++
+ gi/Makefile.am   |    3 ++-
+ gi/pygi-invoke.c |   12 +++---------
+ tests/test_gi.py |   10 ++++++++++
  3 files changed, 15 insertions(+), 10 deletions(-)
 
 commit 18b84767db1d66e3d6f09067ab19ffd4b82539ca
@@ -11395,8 +11302,8 @@ Date:   Wed Jan 19 12:05:45 2011 -0500
 
     [gi] fix out marshalling for a couple of int types
 
- gi/pygi-argument.c | 2 +-
- gi/pygi-cache.c    | 2 +-
+ gi/pygi-argument.c |   2 +-
+ gi/pygi-cache.c    |   2 +-
  2 files changed, 2 insertions(+), 2 deletions(-)
 
 commit c5d7c730008275b2c585b2609fc2ff5e051cce47
@@ -11406,9 +11313,9 @@ Date:   Wed Jan 19 11:59:09 2011 -0500
     [gi] fixed range checking and type conversion with unsigned and
     large numbers
 
- gi/pygi-argument.c | 90
- +++++++++++++++++++++++++++++++++++++++++++++---------
- gi/pygi-cache.c    |  2 +-
+ gi/pygi-argument.c |  90
+ +++++++++++++++++++++++++++++++++++++++++++---------
+ gi/pygi-cache.c    |   2 +-
  2 files changed, 76 insertions(+), 16 deletions(-)
 
 commit e6fcafc6179e963cbae7774e7ee50415bde2c523
@@ -11426,7 +11333,7 @@ Date:   Wed Jan 19 17:03:06 2011 +0100
     preferred for
     now, so disable the replacement rules.
 
- pygi-convert.sh | 19 ++++++++++---------
+ pygi-convert.sh |   19 ++++++++++---------
  1 file changed, 10 insertions(+), 9 deletions(-)
 
 commit 167261d556eab0d2e448c7ed28eef540a024ba1d
@@ -11435,7 +11342,7 @@ Date:   Wed Jan 19 16:47:08 2011 +0100
 
     Link libregress.so to GIO_LIBS again
 
- configure.ac | 5 +++++
+ configure.ac |    5 +++++
  1 file changed, 5 insertions(+)
 
 commit d143afa6da4f5b5f47be8df11fa41d7b47ab1794
@@ -11448,7 +11355,7 @@ Date:   Wed Jan 19 16:14:42 2011 +0100
     because in Python attributes starting with a numeral causes a
     syntax error.
 
- gi/overrides/Gdk.py | 7 +++++--
+ gi/overrides/Gdk.py |   7 +++++--
  1 file changed, 5 insertions(+), 2 deletions(-)
 
 commit 4f5d20966d4a8c649e5fae584039621edab178f3
@@ -11457,7 +11364,7 @@ Date:   Wed Jan 19 10:02:40 2011 -0500
 
     [gi] use correct format stings when setting errors
 
- gi/pygi-argument.c | 12 ++++++------
+ gi/pygi-argument.c |  12 ++++++------
  1 file changed, 6 insertions(+), 6 deletions(-)
 
 commit 7f08fd5c33ee5c9907f5becbe2f21fb7122d6e19
@@ -11466,7 +11373,7 @@ Date:   Wed Jan 19 09:45:09 2011 -0500
 
     [gi] allow marshalling strings as None
 
- gi/pygi-argument.c | 5 +++++
+ gi/pygi-argument.c |   5 +++++
  1 file changed, 5 insertions(+)
 
 commit 093242a9e125998cd07bf66fc4b2880f532a2e4d
@@ -11475,8 +11382,8 @@ Date:   Wed Jan 19 09:41:56 2011 -0500
 
     [gi] make error messages more detailed
 
- gi/pygi-argument.c |  2 +-
- gi/pygi-cache.c    | 18 +++++++++---------
+ gi/pygi-argument.c |   2 +-
+ gi/pygi-cache.c    |  18 +++++++++---------
  2 files changed, 10 insertions(+), 10 deletions(-)
 
 commit f0b17605ed2eb917b350654b070984beb553eae3
@@ -11485,7 +11392,7 @@ Date:   Wed Jan 19 09:41:13 2011 -0500
 
     [gi] allow marshalling None for hashes
 
- gi/pygi-argument.c | 5 +++++
+ gi/pygi-argument.c |   5 +++++
  1 file changed, 5 insertions(+)
 
 commit 93f1b787ab8420300d1064c0237a0c2d8a2ac98f
@@ -11494,7 +11401,7 @@ Date:   Wed Jan 19 09:40:37 2011 -0500
 
     [gi] add marshalling to some out values
 
- gi/pygi-argument.c | 50
+ gi/pygi-argument.c |  50
  +++++++++++++++++++++++++++++++++++++++++---------
  1 file changed, 41 insertions(+), 9 deletions(-)
 
@@ -11504,7 +11411,7 @@ Date:   Wed Jan 19 15:27:33 2011 +0100
 
     [gi] Fixed typo in exception
 
- gi/overrides/Gtk.py | 2 +-
+ gi/overrides/Gtk.py |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 5f16df31b5a5a9f45f702eee48c3a18899ea3f71
@@ -11513,9 +11420,9 @@ Date:   Wed Jan 19 09:13:44 2011 -0500
 
     [gi] fix marshalling structs
 
- gi/pygi-argument.c | 47 +++++++++++++++++++++++++++++++++++------------
- gi/pygi-foreign.c  | 18 ++++++++++++------
- gi/pygi-foreign.h  |  8 ++++----
+ gi/pygi-argument.c |  47 +++++++++++++++++++++++++++++++++++------------
+ gi/pygi-foreign.c  |  18 ++++++++++++------
+ gi/pygi-foreign.h  |   8 ++++----
  3 files changed, 51 insertions(+), 22 deletions(-)
 
 commit b2189424f9dd6d3a4a5b9792f0d5843fc27657d1
@@ -11524,7 +11431,7 @@ Date:   Wed Jan 19 15:12:25 2011 +0100
 
     [gi] Enable handling of Gdk.EventType.2BUTTON_PRESS and 3BUTTON_PRESS
 
- gi/overrides/Gdk.py | 4 ++--
+ gi/overrides/Gdk.py |   4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit 5eca5ff2c9509ec96158fe43b29f0fd951243efe
@@ -11547,8 +11454,8 @@ Date:   Wed Jan 19 14:54:57 2011 +0100
 
     This reverts commit 8878c57676091c08e66bc6cbe735d898cb420582.
 
- gi/overrides/Pango.py  | 5 ++++-
- tests/test_overrides.py | 5 +++++
+ gi/overrides/Pango.py  |    5 ++++-
+ tests/test_overrides.py |    5 +++++
  2 files changed, 9 insertions(+), 1 deletion(-)
 
 commit 9e7b95b3676a1b502662523a9bd4ebe40ccb4845
@@ -11557,9 +11464,9 @@ Date:   Thu Dec 16 23:39:33 2010 +0000
 
     Python iterator interface support for GFileEnumerator.
 
- gi/overrides/Gio.py     | 41 +++++++++++++++++++++++++++++++++++++++++
- gi/overrides/Makefile.am |  1 +
- tests/test_overrides.py  | 20 ++++++++++++++++++++
+ gi/overrides/Gio.py     |   41 +++++++++++++++++++++++++++++++++++++++++
+ gi/overrides/Makefile.am |    1 +
+ tests/test_overrides.py  |   20 ++++++++++++++++++++
  3 files changed, 62 insertions(+)
 
 commit bca5834fc8fa342149e0eec7b396877a2abe6d33
@@ -11626,8 +11533,8 @@ Date:   Wed Jan 19 07:56:16 2011 -0500
     [gi] switch from using (*arg). to arg-> when referencing union
     memebers
 
- gi/pygi-argument.c | 54
- +++++++++++++++++++++++++++---------------------------
+ gi/pygi-argument.c |  54
+ ++++++++++++++++++++++++++--------------------------
  1 file changed, 27 insertions(+), 27 deletions(-)
 
 commit 762ccb3d2620ea22023446b6ae79f3a111d8b56a
@@ -11636,7 +11543,7 @@ Date:   Wed Jan 19 07:49:52 2011 -0500
 
     [gi] return FALSE when setting errors in the marshaller
 
- gi/pygi-argument.c | 3 ++-
+ gi/pygi-argument.c |   3 ++-
  1 file changed, 2 insertions(+), 1 deletion(-)
 
 commit cbaba6357937cbed3ebd34d2db1cdd59d37df118
@@ -11645,10 +11552,10 @@ Date: Wed Jan 19 07:14:18 2011 -0500
 
     [gi] do arg counting in new invoke
 
- gi/pygi-cache.c              |  2 ++
- gi/pygi-cache.h              | 14 ++++++++------
- gi/pygi-invoke-state-struct.h |  2 +-
- gi/pygi-invoke.c             | 20 +++++++++++++++++++-
+ gi/pygi-cache.c              |    2 ++
+ gi/pygi-cache.h              |   14 ++++++++------
+ gi/pygi-invoke-state-struct.h |    2 +-
+ gi/pygi-invoke.c             |   20 +++++++++++++++++++-
  4 files changed, 30 insertions(+), 8 deletions(-)
 
 commit f45033858bed70d7defec3f71f26aa5b3999d680
@@ -11657,7 +11564,7 @@ Date:   Wed Jan 19 06:35:45 2011 -0500
 
     [gi] set length for uint8 in arrays in new invoke marshaller
 
- gi/pygi-argument.c | 1 +
+ gi/pygi-argument.c |   1 +
  1 file changed, 1 insertion(+)
 
 commit 09f7ca7e2378e6679002677ac3f4802f4cc7d9d5
@@ -11666,8 +11573,8 @@ Date:   Wed Jan 19 12:04:15 2011 +0100
 
     [gi] set length when marshalling guint8 erases
 
- gi/pygi-argument.c | 1 +
- tests/test_gi.py   | 4 ++++
+ gi/pygi-argument.c |   1 +
+ tests/test_gi.py   |   4 ++++
  2 files changed, 5 insertions(+)
 
 commit 22eee43e50a150ace80694213fb87be9f0c72f51
@@ -11676,7 +11583,7 @@ Date:   Wed Jan 19 10:27:47 2011 +0100
 
     Convert Gdk.Pixbuf to GdkPixbuf.Pixbuf
 
- pygi-convert.sh | 1 +
+ pygi-convert.sh |    1 +
  1 file changed, 1 insertion(+)
 
 commit a4b210d69c832629894090b7154ae194209b0c60
@@ -11691,8 +11598,8 @@ Date:   Tue Jan 18 18:31:29 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=374603
 
- glib/pyglib.c              | 12 ++++++++++++
- gobject/pygobject-private.h | 6 ++++++
+ glib/pyglib.c              |   12 ++++++++++++
+ gobject/pygobject-private.h |   6 ++++++
  2 files changed, 18 insertions(+)
 
 commit 329afb6fb1b3c325a6a9de2b6aca91c64d51dd9f
@@ -11701,9 +11608,9 @@ Date:   Tue Jan 18 12:31:57 2011 -0500
 
     [gi] fix handling of garrays vs c arrays
 
- gi/pygi-argument.c | 9 +++++++--
- gi/pygi-cache.c    | 2 ++
- gi/pygi-cache.h    | 1 +
+ gi/pygi-argument.c |   9 +++++++--
+ gi/pygi-cache.c    |   2 ++
+ gi/pygi-cache.h    |   1 +
  3 files changed, 10 insertions(+), 2 deletions(-)
 
 commit a000627ec3904b9414ce375aec8d144fc0c26248
@@ -11713,7 +11620,7 @@ Date:   Tue Jan 18 18:29:50 2011 +0100
     pygi-convert.sh: Do not comment out set_cell_data_func() calls;
     these should be ported properly
 
- pygi-convert.sh | 1 -
+ pygi-convert.sh |    1 -
  1 file changed, 1 deletion(-)
 
 commit 99ff4610fb5ece2fc8d2f9eba13e661968adf3f0
@@ -11722,7 +11629,7 @@ Date:   Tue Jan 18 18:26:01 2011 +0100
 
     pygi-convert.sh: Fix match for adding missing imports
 
- pygi-convert.sh | 8 ++++----
+ pygi-convert.sh |    8 ++++----
  1 file changed, 4 insertions(+), 4 deletions(-)
 
 commit 3aa95011fad67df20370e92bf25236a34d7d08d3
@@ -11736,7 +11643,7 @@ Date:   Tue Jan 18 18:09:30 2011 +0100
     hackish unfortunately. We can't use a match test or a lookahead/behind
     assertion.
 
- pygi-convert.sh | 5 +++--
+ pygi-convert.sh |    5 +++--
  1 file changed, 3 insertions(+), 2 deletions(-)
 
 commit f66051380c0432bf142774542ade2144adcd455e
@@ -11745,7 +11652,7 @@ Date:   Tue Jan 18 11:44:27 2011 -0500
 
     [gi] use correct union memeber when marshalling floats
 
- gi/pygi-argument.c | 2 +-
+ gi/pygi-argument.c |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 36bc1c17e7d4189059337cc6a73c64edd819ec12
@@ -11754,7 +11661,7 @@ Date:   Tue Jan 18 17:29:52 2011 +0100
 
     Remove trailing whitespace from gi/overrides/Gtk.py
 
- gi/overrides/Gtk.py | 10 +++++-----
+ gi/overrides/Gtk.py |  10 +++++-----
  1 file changed, 5 insertions(+), 5 deletions(-)
 
 commit 1006df1929a667716c25e74b35b8f14643358732
@@ -11768,11 +11675,11 @@ Date: Tue Jan 18 11:24:06 2011 -0500
     static methods
       which happen to return an instance
 
- gi/pygi-argument.c |  8 ++--
- gi/pygi-cache.c    | 132
- +++++++++++++++++++++++++++++++++++++++++++++++++++--
- gi/pygi-invoke.c   |  9 ++--
- gi/types.py       |  21 +++------
+ gi/pygi-argument.c |   8 ++--
+ gi/pygi-cache.c    |  132
+ ++++++++++++++++++++++++++++++++++++++++++++++++++--
+ gi/pygi-invoke.c   |   9 ++--
+ gi/types.py       |   21 +++------
  4 files changed, 142 insertions(+), 28 deletions(-)
 
 commit 8878c57676091c08e66bc6cbe735d898cb420582
@@ -11787,7 +11694,7 @@ Date:   Tue Jan 18 16:47:10 2011 +0100
     (which works
     just fine now).
 
- gi/overrides/Pango.py | 7 +------
+ gi/overrides/Pango.py |    7 +------
  1 file changed, 1 insertion(+), 6 deletions(-)
 
 commit efbbe71634037fa100b17327389b883b259cca54
@@ -11798,7 +11705,7 @@ Date:   Tue Jan 18 16:23:39 2011 +0100
 
     This allows us to run the test suite against local typelibs.
 
- tests/Makefile.am | 2 +-
+ tests/Makefile.am |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit c96ca383350e5b9b079d9a86464922314939c006
@@ -11812,7 +11719,7 @@ Date:   Tue Jan 18 07:16:40 2011 -0500
     * use _pygi_g_type_info_size instead of _pygi_g_type_tag_size to
       support all types
 
- gi/pygi-cache.c | 42 ++++++++++++++++++++++++------------------
+ gi/pygi-cache.c |   42 ++++++++++++++++++++++++------------------
  1 file changed, 24 insertions(+), 18 deletions(-)
 
 commit f56d85a7f39c2088bf9fd50b1b1e5b67c03104d3
@@ -11829,8 +11736,8 @@ Date:   Tue Jan 18 13:12:36 2011 +0100
     GTK overrides: Do type conversion to column types of ListStore and
     TreeStore in set_value
 
- gi/overrides/Gtk.py    | 28 ++++++++++++++++++----------
- tests/test_overrides.py | 12 +++++++++++-
+ gi/overrides/Gtk.py    |   28 ++++++++++++++++++----------
+ tests/test_overrides.py |   12 +++++++++++-
  2 files changed, 29 insertions(+), 11 deletions(-)
 
 commit 84d6142c14a7ebfb7284d3db52e14d3393f93905
@@ -11853,8 +11760,8 @@ Date:   Mon Jan 17 18:57:58 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=543056
 
- gobject/__init__.py | 6 +++---
- tests/test_gi.py    | 21 ++-------------------
+ gobject/__init__.py |   6 +++---
+ tests/test_gi.py    |  21 ++-------------------
  2 files changed, 5 insertions(+), 22 deletions(-)
 
 commit 30750ccef31e6c864628f418fc00e8c573d29a1b
@@ -11865,7 +11772,7 @@ Date:   Tue Jan 18 12:57:13 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=612126
 
- configure.ac | 6 +++---
+ configure.ac |    6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)
 
 commit 761e98d32729f5894f4c75a54c65ed11329dc9d5
@@ -11874,7 +11781,7 @@ Date:   Tue Jan 18 12:52:32 2011 +0100
 
     pygi-convert.sh: Handle keysyms
 
- pygi-convert.sh | 1 +
+ pygi-convert.sh |    1 +
  1 file changed, 1 insertion(+)
 
 commit d62cdfa38a675c1daf3bc12d5cd769434eea5dc8
@@ -11883,7 +11790,7 @@ Date:   Tue Jan 18 12:14:09 2011 +0100
 
     GLib overrides: Add test case for array variant building
 
- tests/test_overrides.py | 7 +++++++
+ tests/test_overrides.py |    7 +++++++
  1 file changed, 7 insertions(+)
 
 commit 69a78307f3762e3f54d28d98514cec7d31ff20db
@@ -11894,8 +11801,8 @@ Date:   Tue Jan 18 10:21:03 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=639824
 
- gi/pygi-foreign-cairo.c | 96
- -------------------------------------------------
+ gi/pygi-foreign-cairo.c |   96
+ -----------------------------------------------
  1 file changed, 96 deletions(-)
 
 commit 017680c9a5e163021628bf29543598861a3b600a
@@ -11906,7 +11813,7 @@ Date:   Tue Jan 18 10:20:25 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=639823
 
- gi/pygi-invoke.c | 5 ++++-
+ gi/pygi-invoke.c |    5 ++++-
  1 file changed, 4 insertions(+), 1 deletion(-)
 
 commit 771ef76574690eb98926249f38661d741d1ebbb0
@@ -11915,7 +11822,7 @@ Date:   Tue Jan 18 12:02:01 2011 +0100
 
     The tags can be Empty not None.
 
- gi/overrides/Gtk.py | 2 +-
+ gi/overrides/Gtk.py |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit b1a98083cdc50653e1d7bfb809bdf089f833df3d
@@ -11930,9 +11837,9 @@ Date:   Tue Jan 18 12:01:28 2011 +0100
 
     Add corresponding test cases.
 
- gi/overrides/GLib.py   | 50 ++++++++++++++++++++++++++++++++++++++++++++
- tests/test_overrides.py | 55
- +++++++++++++++++++++++++++++++++++++++++++++++++
+ gi/overrides/GLib.py   |   50 ++++++++++++++++++++++++++++++++++++++++++
+ tests/test_overrides.py |   55
+ +++++++++++++++++++++++++++++++++++++++++++++++
  2 files changed, 105 insertions(+)
 
 commit ecb9f824c503c529d43e585b4cdb4c1c9ab14593
@@ -11949,9 +11856,9 @@ Date:   Tue Jan 18 10:48:03 2011 +0100
 
     Add appropriate test case.
 
- gi/overrides/GLib.py   | 45
+ gi/overrides/GLib.py   |   45
  +++++++++++++++++++++++++++++++++++++++++++++
- tests/test_overrides.py | 33 ++++++++++++++++++++++++++++++++-
+ tests/test_overrides.py |   33 ++++++++++++++++++++++++++++++++-
  2 files changed, 77 insertions(+), 1 deletion(-)
 
 commit 31c73dee34a52fd22b5ff3a23adce92cea5ddc3d
@@ -11960,8 +11867,8 @@ Date:   Tue Jan 18 10:56:18 2011 +0100
 
     Add override for gtk_text_buffer_insert_with_tags
 
- gi/overrides/Gtk.py    | 12 ++++++++++++
- tests/test_overrides.py |  6 ++++++
+ gi/overrides/Gtk.py    |   12 ++++++++++++
+ tests/test_overrides.py |    6 ++++++
  2 files changed, 18 insertions(+)
 
 commit fc7d7f7f153d57ff3866b7bfd5e6479d702cc4d9
@@ -11972,11 +11879,11 @@ Date: Mon Jan 17 14:35:14 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=620215
 
- gi/Makefile.am    | 6 ++++--
- gio/Makefile.am   | 2 +-
- glib/Makefile.am  | 2 +-
- m4/python.m4     | 7 +++++--
- tests/Makefile.am | 2 +-
+ gi/Makefile.am    |   6 ++++--
+ gio/Makefile.am   |   2 +-
+ glib/Makefile.am  |   2 +-
+ m4/python.m4     |    7 +++++--
+ tests/Makefile.am |   2 +-
  5 files changed, 12 insertions(+), 7 deletions(-)
 
 commit bceec758b27e6c396d17a79424633b5dc9116f54
@@ -11989,8 +11896,8 @@ Date:   Mon Jan 17 14:20:55 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=620215
 
- configure.ac |  2 +-
- m4/python.m4 | 31 +------------------------------
+ configure.ac |    2 +-
+ m4/python.m4 |   31 +------------------------------
  2 files changed, 2 insertions(+), 31 deletions(-)
 
 commit e2dea065da94d17a915abe1ce4671b1dc48e02c0
@@ -12006,7 +11913,7 @@ Date:   Mon Jan 17 19:09:27 2011 +0100
 
        gi/overrides/Gtk.py
 
- gi/overrides/Gtk.py | 10 ----------
+ gi/overrides/Gtk.py |  10 ----------
  1 file changed, 10 deletions(-)
 
 commit 4fbae9629adc166627de05bb0946b71485343d69
@@ -12018,7 +11925,7 @@ Date:   Mon Jan 17 19:08:23 2011 +0100
 
     This reverts commit 232841148f35684be83a2f47b5b18da4fb74f63a.
 
- gi/overrides/Gtk.py | 13 ++-----------
+ gi/overrides/Gtk.py |  13 ++-----------
  1 file changed, 2 insertions(+), 11 deletions(-)
 
 commit c054f0aca67952876b3519bb75ddc62c5517f7cb
@@ -12030,7 +11937,7 @@ Date:   Mon Jan 17 19:08:06 2011 +0100
 
     This reverts commit ed7e7a8f22b1481acf78c0c2e4c489dbad72f599.
 
- gi/overrides/Gtk.py | 9 ---------
+ gi/overrides/Gtk.py |   9 ---------
  1 file changed, 9 deletions(-)
 
 commit 2d9534f347505573da46743b47318e08bf073aef
@@ -12039,7 +11946,7 @@ Date:   Mon Jan 17 18:54:10 2011 +0100
 
     pygi-convert.sh: Handle gtk.combo_box_new_text()
 
- pygi-convert.sh | 1 +
+ pygi-convert.sh |    1 +
  1 file changed, 1 insertion(+)
 
 commit 0586a83212a9f9234fe00659ae744ab04e7ccc67
@@ -12048,11 +11955,11 @@ Date: Mon Jan 17 12:31:03 2011 -0500
 
     support callbacks
 
- gi/pygi-argument.c | 68 ++++++++++++++++++++++++++++++++++++++++++++--
- gi/pygi-cache.c    | 80
- +++++++++++++++++++++++++++++++++++++++++-------------
- gi/pygi-cache.h    | 13 +++++++--
- gi/pygi-invoke.c   |  2 +-
+ gi/pygi-argument.c |  68 ++++++++++++++++++++++++++++++++++++++++++--
+ gi/pygi-cache.c    |  80
+ +++++++++++++++++++++++++++++++++++++++-------------
+ gi/pygi-cache.h    |  13 +++++++--
+ gi/pygi-invoke.c   |   2 +-
  4 files changed, 138 insertions(+), 25 deletions(-)
 
 commit 914d3a0a29680f4d3aa0e1f8afdd625b017b013a
@@ -12062,7 +11969,7 @@ Date:   Mon Jan 17 16:57:53 2011 +0100
     Override TreeSortable.set_sort_func and set_default_sort_func to
     add default values to be pygtk compliant
 
- gi/overrides/Gtk.py | 6 ++++++
+ gi/overrides/Gtk.py |   6 ++++++
  1 file changed, 6 insertions(+)
 
 commit ed7e7a8f22b1481acf78c0c2e4c489dbad72f599
@@ -12072,7 +11979,7 @@ Date:   Mon Jan 17 16:29:28 2011 +0100
     Override Gtk.TreeViewColumn.pack_start, pack_end and
     set_cell_data_func to add default values to be compliant with pygtk
 
- gi/overrides/Gtk.py | 9 +++++++++
+ gi/overrides/Gtk.py |   9 +++++++++
  1 file changed, 9 insertions(+)
 
 commit 232841148f35684be83a2f47b5b18da4fb74f63a
@@ -12082,7 +11989,7 @@ Date:   Mon Jan 17 16:28:51 2011 +0100
     Override Gtk.CellLayout.pack_start and pack_end to add default values
     to be compliant with pygtk
 
- gi/overrides/Gtk.py | 13 +++++++++++--
+ gi/overrides/Gtk.py |  13 +++++++++++--
  1 file changed, 11 insertions(+), 2 deletions(-)
 
 commit 1dec12826753756fcadefc8ef8c756fc902c320b
@@ -12092,7 +11999,7 @@ Date:   Mon Jan 17 15:54:32 2011 +0100
     Override Gtk.Paned pack1 and pack2 to add default values to be
     compliant with pygtk
 
- gi/overrides/Gtk.py | 10 ++++++++++
+ gi/overrides/Gtk.py |  10 ++++++++++
  1 file changed, 10 insertions(+)
 
 commit a8c727b9c4195d8085a45661683a18614ae84485
@@ -12102,7 +12009,7 @@ Date:   Mon Jan 17 15:46:25 2011 +0100
     Override Gtk.Box.pack_start and pack_end to set default values to
     be compliant with pygtk
 
- gi/overrides/Gtk.py | 10 ++++++++++
+ gi/overrides/Gtk.py |  10 ++++++++++
  1 file changed, 10 insertions(+)
 
 commit 7cc8ac35bb0d8dbf7d66f014f8cd7ff070b3acb8
@@ -12113,8 +12020,8 @@ Date:   Wed Aug 4 00:30:05 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=625982
 
- gobject/propertyhelper.py | 26 +++++++++++++-------------
- tests/test_properties.py  |  9 +++++++++
+ gobject/propertyhelper.py |   26 +++++++++++++-------------
+ tests/test_properties.py  |   9 +++++++++
  2 files changed, 22 insertions(+), 13 deletions(-)
 
 commit 7a0548dbfbdfe481f75315b6bc7824a9f1a8a87b
@@ -12131,8 +12038,8 @@ Date:   Mon Jan 17 17:52:15 2011 +0100
 
     Add corresponding test case.
 
- gi/overrides/Gtk.py    |  2 +-
- tests/test_overrides.py | 12 +++++++++++-
+ gi/overrides/Gtk.py    |    2 +-
+ tests/test_overrides.py |   12 +++++++++++-
  2 files changed, 12 insertions(+), 2 deletions(-)
 
 commit 09c21c79fb6063c8451f53d4588363d2be7239f4
@@ -12149,14 +12056,14 @@ Date: Mon Jan 17 16:46:08 2011 +0100
     In Gstreamer, there is a function gst_version, which was previously
     inaccessible because of IntrospectionModule.version overriding it.
 
- gi/module.py                      | 26 +++++++++++++-------------
- gi/overrides/GIMarshallingTests.py |  2 +-
- gi/overrides/GLib.py              |  2 +-
- gi/overrides/Gdk.py               | 10 +++++-----
- gi/overrides/Gtk.py               |  2 +-
- gi/overrides/Pango.py             |  2 +-
- gi/overrides/__init__.py          |  2 +-
- tests/test_everything.py          |  2 +-
+ gi/module.py                      |   26 +++++++++++++-------------
+ gi/overrides/GIMarshallingTests.py |   2 +-
+ gi/overrides/GLib.py              |    2 +-
+ gi/overrides/Gdk.py               |   10 +++++-----
+ gi/overrides/Gtk.py               |    2 +-
+ gi/overrides/Pango.py             |    2 +-
+ gi/overrides/__init__.py          |    2 +-
+ tests/test_everything.py          |    2 +-
  8 files changed, 24 insertions(+), 24 deletions(-)
 
 commit 2c70beca9e76e4dc253453c556e6985ce59a3dd9
@@ -12166,8 +12073,8 @@ Date:   Mon Jan 17 16:17:25 2011 +0100
     Amend previous enum wrapping commit to remove redundant setting of
     __info__ attribute.
 
- gi/module.py | 2 +-
- gi/types.py  | 6 +++---
+ gi/module.py |    2 +-
+ gi/types.py  |    6 +++---
  2 files changed, 4 insertions(+), 4 deletions(-)
 
 commit 6fbb6be5a5d0d9cd43e1504b8dda5aa75feb95ca
@@ -12176,7 +12083,7 @@ Date:   Mon Jan 17 16:16:45 2011 +0100
 
     pygi-convert.sh: Handle GdkPixbuf.InterpType
 
- pygi-convert.sh | 2 ++
+ pygi-convert.sh |    2 ++
  1 file changed, 2 insertions(+)
 
 commit 66a5784f4ab5de5b6d8d51eb4ce869fa26f6a601
@@ -12194,9 +12101,9 @@ Date:   Mon Jan 17 15:43:34 2011 +0100
     enum from the GIMarshallingTests (updating gobject-introspection
     will be required).
 
- gi/module.py    |  2 +-
- gi/types.py     |  2 ++
- tests/test_gi.py | 10 ++++++++++
+ gi/module.py    |    2 +-
+ gi/types.py     |    2 ++
+ tests/test_gi.py |   10 ++++++++++
  3 files changed, 13 insertions(+), 1 deletion(-)
 
 commit da50d5620a42046d4fc905bb28a0890d73533cb1
@@ -12207,12 +12114,12 @@ Date: Mon Dec 13 18:03:51 2010 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=637165
 
- gi/pygi-info.c   |  4 ++--
- gi/pygi-invoke.c | 72
- +++++++++++++++++++++++++++++++++++++++++++-------------
- gi/pygi-invoke.h |  3 ++-
- gi/types.py     | 28 +++++++++++++++++++++-
- tests/test_gi.py |  5 ++--
+ gi/pygi-info.c   |    4 +--
+ gi/pygi-invoke.c |   72
+ +++++++++++++++++++++++++++++++++++++++++-------------
+ gi/pygi-invoke.h |    3 ++-
+ gi/types.py     |   28 ++++++++++++++++++++-
+ tests/test_gi.py |    5 ++--
  5 files changed, 89 insertions(+), 23 deletions(-)
 
 commit 8ceef79c98a1c2e22ed8ab655ef1169f1763dd23
@@ -12237,18 +12144,18 @@ Date: Fri Dec 31 18:38:04 2010 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=636656
 
- glib/glibmodule.c      |  5 ++++-
- glib/pyglib-private.h  |  3 +++
- glib/pyglib.c          | 48
- +++---------------------------------------------
- glib/pygmaincontext.c  | 22 ++++++++++++++++++++++
- glib/pygmaincontext.h  |  2 +-
- glib/pygmainloop.c     |  2 +-
- glib/pygoptioncontext.c | 21 +++++++++++++++++++++
- glib/pygoptioncontext.h |  2 ++
- glib/pygoptiongroup.c  | 26 ++++++++++++++++++++++++++
- glib/pygoptiongroup.h  |  2 ++
- glib/pygsource.c       |  2 +-
+ glib/glibmodule.c      |    5 ++++-
+ glib/pyglib-private.h  |    3 +++
+ glib/pyglib.c          |   48
+ +++--------------------------------------------
+ glib/pygmaincontext.c  |   22 ++++++++++++++++++++++
+ glib/pygmaincontext.h  |    2 +-
+ glib/pygmainloop.c     |    2 +-
+ glib/pygoptioncontext.c |   21 +++++++++++++++++++++
+ glib/pygoptioncontext.h |    2 ++
+ glib/pygoptiongroup.c  |   26 +++++++++++++++++++++++++
+ glib/pygoptiongroup.h  |    2 ++
+ glib/pygsource.c       |    2 +-
  11 files changed, 86 insertions(+), 49 deletions(-)
 
 commit 17caffe4eeefeaf33a56ececbc6c7454f60b9d76
@@ -12257,7 +12164,7 @@ Date:   Mon Jan 17 14:51:26 2011 +0100
 
     pygi-convert.sh: Handle Gdk.DragAction
 
- pygi-convert.sh | 1 +
+ pygi-convert.sh |    1 +
  1 file changed, 1 insertion(+)
 
 commit aa390aa80f06ac83ec89e5c5ee143d21ace97917
@@ -12268,7 +12175,7 @@ Date:   Mon Jan 17 14:46:58 2011 +0100
 
     There are other GSettings.get_* functions like get_for_screen().
 
- pygi-convert.sh | 2 +-
+ pygi-convert.sh |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 2e6d5bb49425e6087ca61765ecb72e7a760f2ab2
@@ -12279,7 +12186,7 @@ Date:   Mon Jan 17 11:22:46 2011 +0100
 
     This particular affects dbus.mainloop.glib.*
 
- pygi-convert.sh | 2 +-
+ pygi-convert.sh |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 3887b030fc19d25e0cd7b4ed504f4ed23363c3d6
@@ -12290,7 +12197,7 @@ Date:   Sun Jan 16 22:09:56 2011 +0100
 
     Do not leak interface info in (g|s)_et_property.
 
- gi/pygi-property.c | 4 ++++
+ gi/pygi-property.c |   4 ++++
  1 file changed, 4 insertions(+)
 
 commit a4950b4cbb3c7567a8586061bb361adb7d9afb98
@@ -12301,7 +12208,7 @@ Date:   Sun Jan 16 21:43:30 2011 +0100
 
     Do not leak type_info in find_vfunc_info
 
- gi/gimodule.c | 10 +++++-----
+ gi/gimodule.c |   10 +++++-----
  1 file changed, 5 insertions(+), 5 deletions(-)
 
 commit d0cbcc45366d40702c69cef207d3c0f361260c02
@@ -12312,8 +12219,8 @@ Date:   Sun Jan 16 12:16:31 2011 +0100
 
     It is fairly common and even gtk itself still has attach_defaults.
 
- gi/overrides/Gtk.py    | 3 +++
- tests/test_overrides.py | 4 ++++
+ gi/overrides/Gtk.py    |    3 +++
+ tests/test_overrides.py |    4 ++++
  2 files changed, 7 insertions(+)
 
 commit 6409d659326bf3cefdf6051379e8bc2031f16733
@@ -12322,7 +12229,7 @@ Date:   Sat Jan 15 11:20:23 2011 -0600
 
     pygi-convert.sh: Convert Pango.WrapMode
 
- pygi-convert.sh | 1 +
+ pygi-convert.sh |    1 +
  1 file changed, 1 insertion(+)
 
 commit 6aaa6a38198e84a189ca1e8d26b1871d5b6bb711
@@ -12335,7 +12242,7 @@ Date:   Sat Jan 15 11:17:09 2011 -0600
     changing those,
     just change module names which start with "gtk" or "gdk".
 
- pygi-convert.sh | 4 ++--
+ pygi-convert.sh |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit 9be0f1f2dfb89150faf1827ef482feea03645149
@@ -12344,10 +12251,10 @@ Date: Thu Jan 13 23:56:19 2011 -0500
 
     [gi] implement aux arg handling for array lengths
 
- gi/pygi-argument.c |  8 ++++++++
- gi/pygi-cache.c    | 36 ++++++++++++++++++++++++++++--------
- gi/pygi-cache.h    |  1 -
- gi/pygi-invoke.c   |  8 ++++++--
+ gi/pygi-argument.c |   8 ++++++++
+ gi/pygi-cache.c    |  36 ++++++++++++++++++++++++++++--------
+ gi/pygi-cache.h    |   1 -
+ gi/pygi-invoke.c   |   8 ++++++--
  4 files changed, 42 insertions(+), 11 deletions(-)
 
 commit cfca2f0a53a5c29f543875ca4cb83a2e18d3bc72
@@ -12356,9 +12263,9 @@ Date:   Thu Jan 13 21:07:25 2011 -0500
 
     [gi] marshal in hashes
 
- gi/pygi-argument.c |  93 ++++++++++++++++++++++++++++++++++++++--
- gi/pygi-cache.c    | 122
- +++++++++++++++++++++++++++++++++++++----------------
+ gi/pygi-argument.c |  93 +++++++++++++++++++++++++++++++++++++--
+ gi/pygi-cache.c    |  122
+ ++++++++++++++++++++++++++++++++++++----------------
  2 files changed, 176 insertions(+), 39 deletions(-)
 
 commit c36fbf4918c8557a8e274a12004a412da3b22b2c
@@ -12379,8 +12286,8 @@ Date:   Tue Jan 11 21:41:47 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=639229
 
- gi/module.py            | 28 +++++++++++++++++++++-------
- tests/test_everything.py | 18 ++++++++++++++++++
+ gi/module.py            |   28 +++++++++++++++++++++-------
+ tests/test_everything.py |   18 ++++++++++++++++++
  2 files changed, 39 insertions(+), 7 deletions(-)
 
 commit 1679e6af3f212e4d4644e048dc3c6177ed3fac6b
@@ -12389,7 +12296,7 @@ Date:   Thu Jan 13 00:02:20 2011 +0100
 
     pygi-convert.sh: handle ReliefStyle
 
- pygi-convert.sh | 1 +
+ pygi-convert.sh |    1 +
  1 file changed, 1 insertion(+)
 
 commit e9166ba5d19f2b586f65a3b83a671a5afd486d8f
@@ -12398,8 +12305,8 @@ Date:   Wed Jan 12 16:50:30 2011 -0500
 
     [gi] support for GList and GSList in
 
- gi/pygi-argument.c | 122
- ++++++++++++++++++++++++++++++++++++++++++++++++++---
+ gi/pygi-argument.c |  122
+ +++++++++++++++++++++++++++++++++++++++++++++++++---
  1 file changed, 116 insertions(+), 6 deletions(-)
 
 commit 9baf3240fbac103823ad0feaaf1c82e46d276722
@@ -12408,9 +12315,9 @@ Date:   Wed Jan 12 16:24:17 2011 -0500
 
     [gi] handle allow_none for all args
 
- gi/pygi-cache.c  | 3 ++-
- gi/pygi-cache.h  | 1 +
- gi/pygi-invoke.c | 7 +++++++
+ gi/pygi-cache.c  |    3 ++-
+ gi/pygi-cache.h  |    1 +
+ gi/pygi-invoke.c |    7 +++++++
  3 files changed, 10 insertions(+), 1 deletion(-)
 
 commit d54d12c66226910952b0dc44c8d9514a7edaa6f2
@@ -12421,8 +12328,8 @@ Date:   Wed Jan 12 16:23:02 2011 -0500
 
     * get the correct item_size and pass the GArray data not the GArray
 
- gi/pygi-argument.c | 39 ++++++++++++++++++++++-----------------
- gi/pygi-cache.c    |  3 ++-
+ gi/pygi-argument.c |  39 ++++++++++++++++++++++-----------------
+ gi/pygi-cache.c    |   3 ++-
  2 files changed, 24 insertions(+), 18 deletions(-)
 
 commit 3b0eff80d2ee35e0417476f0a170b9e178e3d1ee
@@ -12431,11 +12338,11 @@ Date: Tue Jan 11 17:20:43 2011 -0500
 
     [gi] implement out arg handling
 
- gi/pygi-argument.c           | 43 ++++++++++---------------------------
- gi/pygi-cache.c              | 22 ++++++++++++++-----
- gi/pygi-invoke-state-struct.h | 13 +++++++++++
- gi/pygi-invoke.c             | 50
- +++++++++++++++++++++++++++++++++++++++++--
+ gi/pygi-argument.c           |   43 +++++++++--------------------------
+ gi/pygi-cache.c              |   22 +++++++++++++-----
+ gi/pygi-invoke-state-struct.h |   13 +++++++++++
+ gi/pygi-invoke.c             |   50
+ +++++++++++++++++++++++++++++++++++++++--
  4 files changed, 89 insertions(+), 39 deletions(-)
 
 commit bd002c72675d35b5e60ab773181e7c36c30d2625
@@ -12444,7 +12351,7 @@ Date:   Tue Jan 11 22:21:18 2011 +0100
 
     setup.py: fix the provides keyword argument
 
- setup.py | 2 +-
+ setup.py |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 59dac72d0fa8e1d68bbbc13d76c2747f1cb11857
@@ -12453,7 +12360,7 @@ Date:   Tue Jan 11 22:19:18 2011 +0100
 
     setup.py: use the same spaces-less format for all setup() parameters
 
- setup.py | 8 ++++----
+ setup.py |    8 ++++----
  1 file changed, 4 insertions(+), 4 deletions(-)
 
 commit c5c149be171895d292852df364541f14f0ec423a
@@ -12462,12 +12369,12 @@ Date: Tue Jan 11 15:39:09 2011 -0500
 
     [gi] implemented return marshalling and started on out marshalling
 
- gi/pygi-argument.c | 387
- ++++++++++++++++++++++++++++++++++++++++++++++++++++-
- gi/pygi-argument.h | 117 ++++++++++++++++
- gi/pygi-cache.c    | 316 ++++++++++++++++++++++++++++++++++++++++++-
- gi/pygi-cache.h    |  8 +-
- gi/pygi-invoke.c   |  12 +-
+ gi/pygi-argument.c |  387
+ +++++++++++++++++++++++++++++++++++++++++++++++++++-
+ gi/pygi-argument.h |  117 ++++++++++++++++
+ gi/pygi-cache.c    |  316 +++++++++++++++++++++++++++++++++++++++++-
+ gi/pygi-cache.h    |   8 +-
+ gi/pygi-invoke.c   |  12 +-
  5 files changed, 829 insertions(+), 11 deletions(-)
 
 commit 4fcca8518774ab89607196dfc52037e3da30ac8a
@@ -12476,11 +12383,11 @@ Date: Tue Jan 11 13:49:58 2011 -0500
 
     [gi] flesh out interface in marshalling a bit more
 
- gi/pygi-argument.c | 74
- ++++++++++++++++++++++++++++++++++++++++----------
- gi/pygi-cache.c    | 79
- ++++++++++++++++++++++++++++++++++++++++++------------
- gi/pygi-cache.h    |  1 +
+ gi/pygi-argument.c |  74
+ ++++++++++++++++++++++++++++++++++++++----------
+ gi/pygi-cache.c    |  79
+ +++++++++++++++++++++++++++++++++++++++++-----------
+ gi/pygi-cache.h    |   1 +
  3 files changed, 123 insertions(+), 31 deletions(-)
 
 commit 4992dca9f5cea68d85eb2ed86105c9c6b8311d79
@@ -12500,7 +12407,7 @@ Date:   Tue Jan 11 19:30:38 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=639232
 
- gi/module.py | 9 +++++++++
+ gi/module.py |    9 +++++++++
  1 file changed, 9 insertions(+)
 
 commit 2ffaec59e7349c145a0e2a5edba2ffb7d8628369
@@ -12511,7 +12418,7 @@ Date:   Tue Jan 11 19:40:19 2011 +0100
 
     Breaks marshalling of some types
 
- gi/module.py | 2 +-
+ gi/module.py |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 52a298cc0f05ceec96457f17f9a801e9838fb757
@@ -12532,7 +12439,7 @@ Date:   Tue Jan 11 19:26:50 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=639229
 
- gi/module.py | 10 +++++++---
+ gi/module.py |   10 +++++++---
  1 file changed, 7 insertions(+), 3 deletions(-)
 
 commit 369a75ba5fb64ff7a7c95d21f8bfe359e639e9ff
@@ -12544,11 +12451,11 @@ Date: Mon Jan 10 17:55:03 2011 -0500
     * also remove the PyGIArgCleanup sinature as GDestroyNotify works
     just fine
 
- gi/pygi-argument.c |  15 +++--
- gi/pygi-cache.c    | 182
- ++++++++++++++++++++++++++++++++++++++++++++++++-----
- gi/pygi-cache.h    |  1 -
- gi/pygi-invoke.c   |  1 +
+ gi/pygi-argument.c |  15 +++--
+ gi/pygi-cache.c    |  182
+ +++++++++++++++++++++++++++++++++++++++++++++++-----
+ gi/pygi-cache.h    |   1 -
+ gi/pygi-invoke.c   |   1 +
  4 files changed, 178 insertions(+), 21 deletions(-)
 
 commit 88531c58d0491a31dd319387237a03df5c9edc07
@@ -12557,7 +12464,7 @@ Date:   Mon Jan 10 15:33:56 2011 -0500
 
     [gi] fix casting when marshaling a char to uint8
 
- gi/pygi-argument.c | 2 +-
+ gi/pygi-argument.c |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 441da4a7346ca059630dbc820c5b46e4d0222f4b
@@ -12571,15 +12478,15 @@ Date: Mon Jan 10 15:07:16 2011 -0500
     complex
       in types
 
- gi/Makefile.am                       |   1 +
- gi/pygi-argument.c           |  60 +++++++++--------
- gi/pygi-argument.h           |  60 ++++++++---------
- gi/pygi-cache.h              |   6 +-
- gi/pygi-invoke-state-struct.h |  26 ++++++++
- gi/pygi-invoke.c             | 149
- ++++++++++++++++++++++++++++++++----------
- gi/pygi-invoke.h             |   2 +-
- gi/pygi-private.h            |   1 +
+ gi/Makefile.am                       |    1 +
+ gi/pygi-argument.c           |   60 +++++++++--------
+ gi/pygi-argument.h           |   60 ++++++++---------
+ gi/pygi-cache.h              |    6 +-
+ gi/pygi-invoke-state-struct.h |   26 +++++++
+ gi/pygi-invoke.c             |  149
+ +++++++++++++++++++++++++++++++----------
+ gi/pygi-invoke.h             |    2 +-
+ gi/pygi-private.h            |    1 +
  8 files changed, 208 insertions(+), 97 deletions(-)
 
 commit f32b1f494aa5d09b9b198f607722c819c6bbd808
@@ -12591,11 +12498,11 @@ Date: Sun Jan 9 19:37:55 2011 -0500
     * caching stage is hooked up but not used yet
     * throws exceptions for everything that can not be cached yet
 
- gi/pygi-cache.c  | 59
- +++++++++++++++++++++++++++++++++++++++++++-------------
- gi/pygi-info.c   |  3 +++
- gi/pygi-invoke.c |  5 +++++
- gi/pygi.h       |  2 ++
+ gi/pygi-cache.c  |   59
+ ++++++++++++++++++++++++++++++++++++++++++------------
+ gi/pygi-info.c   |    3 +++
+ gi/pygi-invoke.c |    5 +++++
+ gi/pygi.h       |    2 ++
  4 files changed, 56 insertions(+), 13 deletions(-)
 
 commit c2bf1d4d9cf2e9f8e313528fe717f6279dad5da1
@@ -12604,7 +12511,7 @@ Date:   Sun Jan 9 18:05:31 2011 -0500
 
     [gi] fix some function names
 
- gi/pygi-cache.c | 5 ++---
+ gi/pygi-cache.c |    5 ++---
  1 file changed, 2 insertions(+), 3 deletions(-)
 
 commit 2ec4230a5180f048c26c2e4234b2a098d42f030b
@@ -12613,10 +12520,10 @@ Date: Sun Jan 9 15:58:06 2011 -0500
 
     [gi] refactor cache structs so they inherit from ArgCache
 
- gi/pygi-argument.c | 122 +++++++++----------
- gi/pygi-cache.c    | 344
- +++++++++++++++++++++++++++++------------------------
- gi/pygi-cache.h    |  50 ++++----
+ gi/pygi-argument.c |  122 ++++++++++---------
+ gi/pygi-cache.c    |  344
+ ++++++++++++++++++++++++++++------------------------
+ gi/pygi-cache.h    |  50 ++++----
  3 files changed, 273 insertions(+), 243 deletions(-)
 
 commit f4cdf0c0321285da015686fcb7115bd91bfd5c7c
@@ -12626,13 +12533,13 @@ Date: Sat Jan 8 20:45:11 2011 -0500
     [gi]fix cache compile error - now compiles but cache still not
     hooked up
 
- gi/Makefile.am     |  2 +
- gi/pygi-argument.c | 100 +++++++++++++++---------------
- gi/pygi-argument.h | 174
- ++++++++++++++++++++++++++++++++++++++++++++---------
- gi/pygi-cache.c    | 169
- +++++++++++++++++++++++++--------------------------
- gi/pygi-cache.h    |  25 ++++----
+ gi/Makefile.am     |   2 +
+ gi/pygi-argument.c |  100 +++++++++++++++---------------
+ gi/pygi-argument.h |  174
+ +++++++++++++++++++++++++++++++++++++++++++---------
+ gi/pygi-cache.c    |  169
+ +++++++++++++++++++++++++-------------------------
+ gi/pygi-cache.h    |  25 ++++----
  5 files changed, 293 insertions(+), 177 deletions(-)
 
 commit 5f8f3044dd8085b2e8ce0bf70e9d52f05abf909d
@@ -12646,10 +12553,10 @@ Date: Sat Jan 8 19:10:29 2011 -0500
       for geneating marshalling caches for container items, not just
       arguments
 
- gi/pygi-argument.c |  76 ++++++++++++++++-
- gi/pygi-cache.c    | 242
- ++++++++++++++++++++++-------------------------------
- gi/pygi-cache.h    |  4 +-
+ gi/pygi-argument.c |  76 ++++++++++++++++-
+ gi/pygi-cache.c    |  242
+ ++++++++++++++++++++++------------------------------
+ gi/pygi-cache.h    |   4 +-
  3 files changed, 175 insertions(+), 147 deletions(-)
 
 commit 202a268db7f98f5a3c525c6e65ec4bff1917257e
@@ -12660,7 +12567,7 @@ Date:   Sat Jan 8 02:19:52 2011 +0000
 
     Needed for G_TYPE_CONVERTER_FLAGS and others.
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit c3aa36151fdef9ed9884d93114786bbe86387983
@@ -12669,7 +12576,7 @@ Date:   Fri Jan 7 12:58:11 2011 +0100
 
     Add test for incorrect attributes in Gdk.Event
 
- tests/test_overrides.py | 4 ++++
+ tests/test_overrides.py |    4 ++++
  1 file changed, 4 insertions(+)
 
 commit 204b45c7e95eb50d9e3843127fb10e13b1b17fee
@@ -12692,7 +12599,7 @@ Date:   Sun Jan 2 19:25:55 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=638523
 
- gi/overrides/Gdk.py | 2 +-
+ gi/overrides/Gdk.py |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 6cf298ca5565d0eb99824f050ff47407e50a5c01
@@ -12703,7 +12610,7 @@ Date:   Fri Jan 7 09:08:31 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=638847
 
- gi/pygi-closure.c | 3 +++
+ gi/pygi-closure.c |   3 +++
  1 file changed, 3 insertions(+)
 
 commit 1be76d5e006efa24598ff7bf26153660dbe0a890
@@ -12714,7 +12621,7 @@ Date:   Fri Jan 7 09:07:35 2011 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=638847
 
- gi/pygi-argument.c | 1 +
+ gi/pygi-argument.c |   1 +
  1 file changed, 1 insertion(+)
 
 commit 43849c51391fc9cd239697065c3d40fa02fb6783
@@ -12723,8 +12630,8 @@ Date:   Thu Jan 6 17:30:14 2011 -0500
 
     whitespace fixes
 
- gi/pygi-cache.c | 24 ++++++++++++------------
- gi/pygi-cache.h | 42 +++++++++++++++++++++---------------------
+ gi/pygi-cache.c |   24 ++++++++++++------------
+ gi/pygi-cache.h |   42 +++++++++++++++++++++---------------------
  2 files changed, 33 insertions(+), 33 deletions(-)
 
 commit 8b5b3d2bbbbdf5d26c83e9a6fe67121cbd77ebe1
@@ -12735,11 +12642,11 @@ Date: Thu Jan 6 17:29:00 2011 -0500
 
     * still doesn't compile
 
- gi/pygi-argument.c | 708
- +++++++++++++++++++++++++++++++++++++++++++++++++++++
- gi/pygi-argument.h |  35 ++-
- gi/pygi-cache.c    |  82 +++++--
- gi/pygi-cache.h    |  41 +++-
+ gi/pygi-argument.c |  708
+ ++++++++++++++++++++++++++++++++++++++++++++++++++++
+ gi/pygi-argument.h |  35 ++-
+ gi/pygi-cache.c    |  82 ++++--
+ gi/pygi-cache.h    |  41 ++-
  4 files changed, 832 insertions(+), 34 deletions(-)
 
 commit f554cf62848104d31518138ae85bc51acaafda67
@@ -12751,9 +12658,9 @@ Date:   Tue Jan 4 18:49:53 2011 -0500
     * this does not compile and is not hooked up to the build system
     * lays out the caching data structures and some skeleton functions
 
- gi/pygi-cache.c | 480
- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
- gi/pygi-cache.h | 104 ++++++++++++
+ gi/pygi-cache.c |  480
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ gi/pygi-cache.h |  104 ++++++++++++
  2 files changed, 584 insertions(+)
 
 commit 8d5a7857876669f56bb03bf618bcfdcc290721c0
@@ -12764,8 +12671,8 @@ Date:   Wed Dec 22 12:34:10 2010 -0800
 
     https://bugzilla.gnome.org/show_bug.cgi?id=637832
 
- gi/pygi-closure.c | 66
- ++++++++++++++++++++++++++++++++++++++++++++++---------
+ gi/pygi-closure.c |   66
+ +++++++++++++++++++++++++++++++++++++++++++++--------
  1 file changed, 56 insertions(+), 10 deletions(-)
 
 commit f14976ffabec28f6cafe1e37dc81d207a947d4ca
@@ -12774,7 +12681,7 @@ Date:   Tue Dec 28 18:34:25 2010 +0100
 
     Fix stupid name clash
 
- gi/module.py | 7 +++++--
+ gi/module.py |    7 +++++--
  1 file changed, 5 insertions(+), 2 deletions(-)
 
 commit 01b2a193d403beb861eab524300b4f1af63157ce
@@ -12783,7 +12690,7 @@ Date:   Tue Dec 28 13:49:18 2010 +0100
 
     Add /usr/share to XDG_DATA_DIRS when running the tests
 
- tests/Makefile.am | 7 ++++++-
+ tests/Makefile.am |   7 ++++++-
  1 file changed, 6 insertions(+), 1 deletion(-)
 
 commit efc186f692f9eac781cc47456be74a3da7f14dcd
@@ -12792,7 +12699,7 @@ Date:   Tue Dec 28 13:25:34 2010 +0100
 
     Comment out tests that require SRV lookups
 
- tests/test_gresolver.py | 5 ++++-
+ tests/test_gresolver.py |    5 ++++-
  1 file changed, 4 insertions(+), 1 deletion(-)
 
 commit d2462cc1ab51d76fb4625c47c3d34de1d5d0dee8
@@ -12801,9 +12708,9 @@ Date:   Tue Dec 28 13:00:16 2010 +0100
 
     Use suppresion file when running valgrind
 
- tests/Makefile.am |   2 +-
- tests/python.supp | 387
- ++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ tests/Makefile.am |   2 +-
+ tests/python.supp |  387
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++
  2 files changed, 388 insertions(+), 1 deletion(-)
 
 commit 0ee58113ecbea72784c52de928c041fc8fc88984
@@ -12812,12 +12719,12 @@ Date: Thu Dec 23 00:10:41 2010 +0100
 
     Fix warnings.
 
- gi/pygi-argument.c         | 16 +++++++---------
- gi/pygi-foreign-cairo.c     | 13 ++-----------
- gio/gfile.override         |  5 ++---
- glib/pyglib-python-compat.h | 3 +++
- glib/pyglib.c              |  2 +-
- glib/pygmainloop.c         |  3 ++-
+ gi/pygi-argument.c         |   16 +++++++---------
+ gi/pygi-foreign-cairo.c     |  13 ++-----------
+ gio/gfile.override         |    5 ++---
+ glib/pyglib-python-compat.h |   3 +++
+ glib/pyglib.c              |    2 +-
+ glib/pygmainloop.c         |    3 ++-
  6 files changed, 17 insertions(+), 25 deletions(-)
 
 commit 78ea84cd91392400ebac5a361ef8793bfe928fd0
@@ -12828,8 +12735,8 @@ Date:   Sun Dec 19 23:10:57 2010 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=637615
 
- gi/overrides/Gtk.py    | 12 ++++++------
- tests/test_overrides.py |  6 ++++++
+ gi/overrides/Gtk.py    |   12 ++++++------
+ tests/test_overrides.py |    6 ++++++
  2 files changed, 12 insertions(+), 6 deletions(-)
 
 commit 046cc5915286e042d1040271a90676b77632409e
@@ -12848,8 +12755,8 @@ Date:   Thu Dec 16 15:41:10 2010 -0500
 
     https://bugzilla.gnome.org/show_bug.cgi?id=620579
 
- gobject/pygtype.c       | 35 ++++++++++++++++++++++++++---------
- tests/test_properties.py | 16 ++++++++++++++++
+ gobject/pygtype.c       |   35 ++++++++++++++++++++++++++---------
+ tests/test_properties.py |   16 ++++++++++++++++
  2 files changed, 42 insertions(+), 9 deletions(-)
 
 commit 7aa783d5cd674f34da318f826bd5f4a0e09d24cb
@@ -12859,7 +12766,7 @@ Date:   Tue Dec 14 12:29:54 2010 +0100
     dsextras.py: check if gcc is there when platform is win32 and compiler
     is mingw32
 
- dsextras.py | 6 ++++++
+ dsextras.py |   6 ++++++
  1 file changed, 6 insertions(+)
 
 commit cebf5f09a6c5018ced64f35e7747fc81b93b823e
@@ -12868,7 +12775,7 @@ Date:   Tue Dec 14 12:29:01 2010 +0100
 
     dsextras.py: be consistent in how distutils imports are done
 
- dsextras.py | 6 +++---
+ dsextras.py |   6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)
 
 commit 35e590d48c78f2e76c47c2b4eaf0f7e8d1ed5c93
@@ -12877,7 +12784,7 @@ Date:   Tue Dec 14 12:25:07 2010 +0100
 
     dsextras.py: add have_gcc() function
 
- dsextras.py | 5 +++++
+ dsextras.py |   5 +++++
  1 file changed, 5 insertions(+)
 
 commit 637c2c287cfb0e89365026531c651111f5593ac7
@@ -12886,7 +12793,7 @@ Date:   Tue Dec 14 12:24:41 2010 +0100
 
     dsextras.py: use distutils.spawn.find_executable for have_pkgconfig()
 
- dsextras.py | 8 ++------
+ dsextras.py |   8 ++------
  1 file changed, 2 insertions(+), 6 deletions(-)
 
 commit 020d00bc0ce7b77006b4d4f42d63122d79bcbf89
@@ -12895,7 +12802,7 @@ Date:   Tue Dec 14 12:22:54 2010 +0100
 
     setup.py: fix another case of use True/False instead of 1/0
 
- setup.py | 2 +-
+ setup.py |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit b03cc9e0d66d8caea3cd6a63db198c43de9267e9
@@ -12904,7 +12811,7 @@ Date:   Mon Dec 13 10:21:52 2010 +0100
 
     pygi-convert.sh: improve GtkSourceView conversion
 
- pygi-convert.sh | 7 +++++++
+ pygi-convert.sh |    7 +++++++
  1 file changed, 7 insertions(+)
 
 commit fbc12cd7c09a67de9e28b7b0b28de9dc0e0e3418
@@ -12913,7 +12820,7 @@ Date:   Mon Dec 13 10:27:56 2010 +0100
 
     pygi-convert.sh: Gtk.DialogFlags conversion
 
- pygi-convert.sh | 1 +
+ pygi-convert.sh |    1 +
  1 file changed, 1 insertion(+)
 
 commit 73e933d2429aea4d14e15350a538da1c5c3f71eb
@@ -12930,7 +12837,7 @@ Date:   Sun Dec 12 20:38:46 2010 -0500
        Thanks to Krzesimir Nowak for suggesting this in a gtksourceviewmm
        recent commit.
 
- codegen/docextract_to_xml.py | 2 +-
+ codegen/docextract_to_xml.py |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit db7ffa75b007074cb6b33b547c6d8140da300a3e
@@ -12939,7 +12846,7 @@ Date:   Mon Dec 13 00:17:26 2010 +0100
 
     pygi-convert.sh: add more Gtk conversions and sort
 
- pygi-convert.sh | 50 ++++++++++++++++++++++++++------------------------
+ pygi-convert.sh |   50 ++++++++++++++++++++++++++------------------------
  1 file changed, 26 insertions(+), 24 deletions(-)
 
 commit f4bfe73d0ccedf7f671d3acd6d9e262d5383b733
@@ -12948,7 +12855,7 @@ Date:   Mon Dec 13 00:01:40 2010 +0100
 
     pygi-convert.sh: convert Atk
 
- pygi-convert.sh | 12 ++++++++++++
+ pygi-convert.sh |   12 ++++++++++++
  1 file changed, 12 insertions(+)
 
 commit e55ce3667eb1d352bf96f265bf018ffe8aea75f9
@@ -12957,7 +12864,7 @@ Date:   Sun Dec 12 23:48:48 2010 +0100
 
     pygi-convert.sh: convert a few more Gio types
 
- pygi-convert.sh | 9 +++++++++
+ pygi-convert.sh |    9 +++++++++
  1 file changed, 9 insertions(+)
 
 commit acc9f84bc6e13d76c6516cefe393d4a4f868aa24
@@ -12966,7 +12873,7 @@ Date:   Sun Dec 12 14:19:00 2010 +0100
 
     pygi-convert.sh: more GLib conversion
 
- pygi-convert.sh | 7 +++++++
+ pygi-convert.sh |    7 +++++++
  1 file changed, 7 insertions(+)
 
 commit c903390814bebdc62d530472f6f94feecc59b8b3
@@ -12975,7 +12882,7 @@ Date:   Sun Dec 12 14:00:34 2010 +0100
 
     pygi-convert.sh: remove two cases handled by overrides
 
- pygi-convert.sh | 2 --
+ pygi-convert.sh |    2 --
  1 file changed, 2 deletions(-)
 
 commit d33c987e505ec8ddffa2b8cb5526f05b9b5f62be
@@ -12984,8 +12891,8 @@ Date:   Sun Dec 12 13:38:56 2010 +0100
 
     Override Gtk.ScrolledWindow constructor
 
- gi/overrides/Gtk.py    | 7 +++++++
- tests/test_overrides.py | 7 +++++++
+ gi/overrides/Gtk.py    |    7 +++++++
+ tests/test_overrides.py |    7 +++++++
  2 files changed, 14 insertions(+)
 
 commit 1c24bb089fcd69e3104ae72a0e7560a8c5a3f05b
@@ -12994,7 +12901,7 @@ Date:   Sun Dec 12 12:32:39 2010 +0100
 
     pygi-convert.sh: Fix 'find' syntax
 
- pygi-convert.sh | 2 +-
+ pygi-convert.sh |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit f0a1d6b6bb53d0fa2788d8b9027d737b0aef8dfc
@@ -13003,7 +12910,7 @@ Date:   Sun Dec 12 12:29:38 2010 +0100
 
     pygi-convert.sh: start handling Gio and GLib
 
- pygi-convert.sh | 8 ++++++++
+ pygi-convert.sh |    8 ++++++++
  1 file changed, 8 insertions(+)
 
 commit 365bf3251af3498dc797a58cce071805451b49b1
@@ -13012,7 +12919,7 @@ Date:   Sat Dec 11 23:05:31 2010 +0100
 
     pygi-convert.sh: convert Gdk.ScrollDirection.
 
- pygi-convert.sh | 1 +
+ pygi-convert.sh |    1 +
  1 file changed, 1 insertion(+)
 
 commit bca603de0f217fb290189a0ea330f82961c46d5d
@@ -13025,8 +12932,8 @@ Date:   Sat Dec 11 15:03:21 2010 +0100
     not a
     gobject property so we need to jump through some oops.
 
- gi/overrides/Pango.py  | 13 +++++++++++++
- tests/test_overrides.py |  6 ++++++
+ gi/overrides/Pango.py  |   13 +++++++++++++
+ tests/test_overrides.py |    6 ++++++
  2 files changed, 19 insertions(+)
 
 commit df233301802e3f7f9ce338cde015ca2a2fc648ab
@@ -13037,7 +12944,7 @@ Date:   Sat Dec 11 14:18:53 2010 +0100
 
     It is now properly handled by an override.
 
- pygi-convert.sh | 1 -
+ pygi-convert.sh |    1 -
  1 file changed, 1 deletion(-)
 
 commit d8abcc9463542af9cd43d71849d0ad4c183b570b
@@ -13046,8 +12953,8 @@ Date:   Fri Dec 10 14:05:20 2010 +0100
 
     Override GtkAction and GtkRadioAction constructors.
 
- gi/overrides/Gtk.py    | 20 +++++++++++++++++---
- tests/test_overrides.py | 18 ++++++++++++++++++
+ gi/overrides/Gtk.py    |   20 +++++++++++++++++---
+ tests/test_overrides.py |   18 ++++++++++++++++++
  2 files changed, 35 insertions(+), 3 deletions(-)
 
 commit 7924b18a99a0680c04aca46be4b64a7aa507dfe5
@@ -13058,8 +12965,8 @@ Date:   Sat Dec 4 22:13:28 2010 +0000
 
     https://bugzilla.gnome.org/show_bug.cgi?id=636486
 
- gi/overrides/Gtk.py    | 7 +++++++
- tests/test_overrides.py | 9 +++++++++
+ gi/overrides/Gtk.py    |    7 +++++++
+ tests/test_overrides.py |    9 +++++++++
  2 files changed, 16 insertions(+)
 
 commit e76352dd83c8706e68ad57d00d185da9afea99c4
@@ -13068,8 +12975,8 @@ Date:   Thu Dec 9 13:23:10 2010 -0500
 
     add secondary_text apis to MessageDialog
 
- gi/overrides/Gtk.py    | 8 ++++++++
- tests/test_overrides.py | 8 ++++++++
+ gi/overrides/Gtk.py    |    8 ++++++++
+ tests/test_overrides.py |    8 ++++++++
  2 files changed, 16 insertions(+)
 
 commit de682b2d36c362140ab7d43c0743b01ec0865a74
@@ -13078,7 +12985,7 @@ Date:   Wed Dec 8 16:39:27 2010 -0500
 
     [gi] get rid of some debug prints and fix error messages
 
- gi/overrides/Gtk.py | 7 +++----
+ gi/overrides/Gtk.py |   7 +++----
  1 file changed, 3 insertions(+), 4 deletions(-)
 
 commit dbb16571803bf51f497768bf80944514f4290ee5
@@ -13087,7 +12994,7 @@ Date:   Wed Dec 8 18:25:15 2010 +0100
 
     Fix demo for override changes.
 
- demos/gtk-demo/gtk-demo.py | 5 +++--
+ demos/gtk-demo/gtk-demo.py |   5 +++--
  1 file changed, 3 insertions(+), 2 deletions(-)
 
 commit 2adcd95762944a4e27123093d3c8d080e49be1ea
@@ -13096,10 +13003,11 @@ Date: Wed Dec 8 18:06:01 2010 +0100
 
     Override Pango.FontDescription.
 
- demos/gtk-demo/gtk-demo.py |  2 +-
- gi/overrides/Makefile.am   |  1 +
- gi/overrides/Pango.py     | 40 ++++++++++++++++++++++++++++++++++++++++
- tests/test_overrides.py    |  7 +++++++
+ demos/gtk-demo/gtk-demo.py |   2 +-
+ gi/overrides/Makefile.am   |   1 +
+ gi/overrides/Pango.py     |   40
+ ++++++++++++++++++++++++++++++++++++++++
+ tests/test_overrides.py    |   7 +++++++
  4 files changed, 49 insertions(+), 1 deletion(-)
 
 commit 769da968c9187414d0420412d8fb8c833d12042a
@@ -13113,9 +13021,9 @@ Date:   Wed Dec 8 17:38:11 2010 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=619606
 
- gi/gimodule.c   |  4 +++-
- gi/types.py     | 12 ++----------
- tests/test_gi.py | 10 ----------
+ gi/gimodule.c   |    4 +++-
+ gi/types.py     |   12 ++----------
+ tests/test_gi.py |   10 ----------
  3 files changed, 5 insertions(+), 21 deletions(-)
 
 commit 167a01c46b3fa0b3c8339502c875d32bd2bca974
@@ -13124,7 +13032,7 @@ Date:   Wed Dec 8 17:37:00 2010 +0100
 
     Fix usage of TreeIter api that is now an override.
 
- demos/gtk-demo/gtk-demo.py | 6 +++---
+ demos/gtk-demo/gtk-demo.py |   6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)
 
 commit d2cfd6e9250d40de7c715ac74e299deddf137683
@@ -13137,7 +13045,7 @@ Date:   Wed Dec 8 17:34:54 2010 +0100
     end up up with two 'label' in the kwds dict. Besides 'str' is a
     reserved keyword.
 
- gi/overrides/Gtk.py | 4 ++--
+ gi/overrides/Gtk.py |   4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit c0c684c9bb4e2bc08d7cb6ac246705e8a3b77656
@@ -13146,7 +13054,7 @@ Date:   Wed Dec 8 14:16:39 2010 +0100
 
     Fix typo when raising an exception
 
- gi/types.py | 2 +-
+ gi/types.py |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 88c9a3ad49d9fcf779c3523672d8bf4767910301
@@ -13155,7 +13063,7 @@ Date:   Wed Dec 8 10:46:27 2010 +0100
 
     pygi-convert.sh: Added more conversions
 
- pygi-convert.sh | 14 ++++++++++++++
+ pygi-convert.sh |   14 ++++++++++++++
  1 file changed, 14 insertions(+)
 
 commit 4d8d96326b2cac91e6d75e6601b92e202d1918ff
@@ -13164,8 +13072,8 @@ Date:   Tue Dec 7 20:39:15 2010 +0100
 
     Override LinkButton constructor to make 'uri' mandatory
 
- gi/overrides/Gtk.py    | 7 +++++++
- tests/test_overrides.py | 6 ++++++
+ gi/overrides/Gtk.py    |    7 +++++++
+ tests/test_overrides.py |    6 ++++++
  2 files changed, 13 insertions(+)
 
 commit f4f7fb35af1b41598dc050f5df155a01c370a920
@@ -13174,8 +13082,8 @@ Date:   Sat Dec 4 19:19:19 2010 +0600
 
     Container should be iterable.
 
- gi/overrides/Gtk.py    | 9 +++++++++
- tests/test_overrides.py | 6 +++++-
+ gi/overrides/Gtk.py    |    9 +++++++++
+ tests/test_overrides.py |    6 +++++-
  2 files changed, 14 insertions(+), 1 deletion(-)
 
 commit d2ad05d6d8d53b941e0ad33fcb200f1245a2d308
@@ -13184,7 +13092,7 @@ Date:   Tue Dec 7 14:13:00 2010 +0100
 
     No need to import Gdk
 
- gi/overrides/Gtk.py | 1 -
+ gi/overrides/Gtk.py |   1 -
  1 file changed, 1 deletion(-)
 
 commit b6a40badf0b2b59e690ce818efb03c7c816b8a04
@@ -13193,7 +13101,7 @@ Date:   Tue Dec 7 14:07:53 2010 +0100
 
     Remove semicolumns
 
- gi/overrides/Gtk.py | 7 +++----
+ gi/overrides/Gtk.py |   7 +++----
  1 file changed, 3 insertions(+), 4 deletions(-)
 
 commit cdc9c26553bf47ea488676e7bdc5f8ab0a2c906b
@@ -13203,7 +13111,7 @@ Date:   Mon Dec 6 16:05:30 2010 -0500
     [gi] make sure Gtk.Button override passes all keywords to parent
     constructor
 
- gi/overrides/Gtk.py | 4 ++--
+ gi/overrides/Gtk.py |   4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit cede81ad65db017e95543d8d35715751aa202fed
@@ -13212,7 +13120,7 @@ Date:   Sun Dec 5 13:31:20 2010 +0100
 
     Fix cut&paste error in the Label override
 
- gi/overrides/Gtk.py | 2 +-
+ gi/overrides/Gtk.py |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 607c59b74ebbc1e39cb4121c870b689e1888c106
@@ -13221,7 +13129,7 @@ Date:   Sat Dec 4 16:03:27 2010 +0100
 
     pygi-convert.sh: handle TextWindowType
 
- pygi-convert.sh | 1 +
+ pygi-convert.sh |    1 +
  1 file changed, 1 insertion(+)
 
 commit dfeabe0b68938e27da2e65903983b5113dc422f1
@@ -13230,8 +13138,8 @@ Date:   Sat Dec 4 15:49:15 2010 +0100
 
     Override Label constructor to behave like pygtk
 
- gi/overrides/Gtk.py    | 7 +++++++
- tests/test_overrides.py | 4 ++++
+ gi/overrides/Gtk.py    |    7 +++++++
+ tests/test_overrides.py |    4 ++++
  2 files changed, 11 insertions(+)
 
 commit da4e045e5abbed2796cc4ed39df35a0dde2de31b
@@ -13240,8 +13148,8 @@ Date:   Sat Dec 4 15:40:35 2010 +0100
 
     Override GtkTable constructor to behave like pygtk
 
- gi/overrides/Gtk.py    |  7 +++++++
- tests/test_overrides.py | 12 ++++++++++++
+ gi/overrides/Gtk.py    |    7 +++++++
+ tests/test_overrides.py |   12 ++++++++++++
  2 files changed, 19 insertions(+)
 
 commit 81452c23ab1befa59ff375692e582791432796a5
@@ -13250,7 +13158,7 @@ Date:   Sat Dec 4 12:59:43 2010 +0100
 
     pygi-convert.sh: convert MovementStep
 
- pygi-convert.sh | 1 +
+ pygi-convert.sh |    1 +
  1 file changed, 1 insertion(+)
 
 commit 4d097eea94258eda0c328711491fd456cbd6741b
@@ -13263,7 +13171,7 @@ Date:   Sat Dec 4 11:57:02 2010 +0100
     point we
     shuld just clean up the old stuff.
 
- gi/overrides/Gdk.py | 22 ++++++++++++++++------
+ gi/overrides/Gdk.py |  22 ++++++++++++++++------
  1 file changed, 16 insertions(+), 6 deletions(-)
 
 commit cda317195566711d66190145b545e26ed7226172
@@ -13281,8 +13189,8 @@ Date:   Thu Dec 2 23:47:40 2010 -0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=636336
 
- gi/overrides/Gtk.py     |  5 ++++-
- gi/overrides/__init__.py | 27 +++++++++++++++++++++++++--
+ gi/overrides/Gtk.py     |    5 ++++-
+ gi/overrides/__init__.py |   27 +++++++++++++++++++++++++--
  2 files changed, 29 insertions(+), 3 deletions(-)
 
 commit 82689cbf53d92b1b951a459fe3de0e1d3a91791a
@@ -13307,8 +13215,8 @@ Date:   Thu Dec 2 16:27:04 2010 -0500
 
     https://bugzilla.gnome.org/show_bug.cgi?id=635172
 
- gi/overrides/Gtk.py    | 38 ++++++++++++++++++++++++++++++++++++--
- tests/test_overrides.py |  8 +++++++-
+ gi/overrides/Gtk.py    |   38 ++++++++++++++++++++++++++++++++++++--
+ tests/test_overrides.py |    8 +++++++-
  2 files changed, 43 insertions(+), 3 deletions(-)
 
 commit 677490e9402bad7b7c2a832345ef54f7f0c5fc7f
@@ -13319,8 +13227,8 @@ Date:   Fri Dec 3 23:39:50 2010 +0100
 
     The "path" argument may also be a string or a tuple
 
- gi/overrides/Gtk.py    | 10 ++++++++++
- tests/test_overrides.py | 29 +++++++++++++++++++++++++++++
+ gi/overrides/Gtk.py    |   10 ++++++++++
+ tests/test_overrides.py |   29 +++++++++++++++++++++++++++++
  2 files changed, 39 insertions(+)
 
 commit dacfe618fa244445c979f1a5efa80c1f9a5a4ae9
@@ -13333,8 +13241,8 @@ Date:   Fri Dec 3 23:29:00 2010 +0100
     override __new__ and it will be useful for all the api that take a
     TreePath or a string or a tuple.
 
- gi/overrides/Gtk.py    | 33 +++++++++++++++------------------
- tests/test_overrides.py | 18 ++++++++++++++++++
+ gi/overrides/Gtk.py    |   33 +++++++++++++++------------------
+ tests/test_overrides.py |   18 ++++++++++++++++++
  2 files changed, 33 insertions(+), 18 deletions(-)
 
 commit 7a8af9e220ee48aa28f6b025c5dae324b14fe128
@@ -13343,8 +13251,8 @@ Date:   Sun Nov 28 13:02:30 2010 +0100
 
     Override Container to behave like a sequence
 
- gi/overrides/Gtk.py    |  6 ++++++
- tests/test_overrides.py | 11 +++++++++++
+ gi/overrides/Gtk.py    |    6 ++++++
+ tests/test_overrides.py |   11 +++++++++++
  2 files changed, 17 insertions(+)
 
 commit 94e8befc935d4a6c7f766e34195e10fc3fb3b93a
@@ -13357,7 +13265,8 @@ Date:   Tue Nov 30 16:57:05 2010 -0500
     * this patch does the recursion using the previous patche's support
     functions
 
- gi/types.py | 55 +++++++++++++++++++++++++++++++++++++++++++++----------
+ gi/types.py |  55
+ +++++++++++++++++++++++++++++++++++++++++++++----------
  1 file changed, 45 insertions(+), 10 deletions(-)
 
 commit 9c5aee4f06f92457f9ae987656c0c469f76d0ee8
@@ -13370,9 +13279,9 @@ Date:   Thu Jul 22 23:19:51 2010 +1000
 
     https://bugzilla.gnome.org/show_bug.cgi?id=625033
 
- gi/gimodule.c   | 130
- ++++++++++++++++++++++++++++++++++++++++---------------
- tests/test_gi.py |  37 ++++++++++++++++
+ gi/gimodule.c   |  130
+ +++++++++++++++++++++++++++++++++++++++---------------
+ tests/test_gi.py |   37 ++++++++++++++++
  2 files changed, 131 insertions(+), 36 deletions(-)
 
 commit 78358e1ab54d02317f397276adee03ecb2187588
@@ -13381,8 +13290,8 @@ Date:   Mon Nov 29 18:29:57 2010 -0500
 
     add a profiling torture test for when we fix up invoke
 
- tests/test_everything.py | 67
- ++++++++++++++++++++++++++++++++++++++++++++++++
+ tests/test_everything.py |   67
+ ++++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 67 insertions(+)
 
 commit 792e679c06df4357843fd310c7953a931172fc99
@@ -13402,13 +13311,13 @@ Date: Mon Nov 29 16:41:38 2010 -0500
     out if it
       causes any issues with legacy modules and code
 
- gi/Makefile.am                   | 2 +-
- gi/overrides/Makefile.am  | 2 +-
- gi/repository/Makefile.am | 2 +-
- glib/Makefile.am         | 2 +-
- gobject/Makefile.am      | 2 +-
- tests/test_gi.py         | 2 --
- tests/test_overrides.py   | 3 ---
+ gi/Makefile.am                   |    2 +-
+ gi/overrides/Makefile.am  |   2 +-
+ gi/repository/Makefile.am |   2 +-
+ glib/Makefile.am         |    2 +-
+ gobject/Makefile.am      |    2 +-
+ tests/test_gi.py         |    2 --
+ tests/test_overrides.py   |   3 ---
  7 files changed, 5 insertions(+), 10 deletions(-)
 
 commit c587e1ace7429195ac6fd4db03d2f33e2af09838
@@ -13417,7 +13326,7 @@ Date:   Mon Nov 29 15:11:46 2010 -0500
 
     add test for inout argument count
 
- tests/test_gi.py | 1 +
+ tests/test_gi.py |    1 +
  1 file changed, 1 insertion(+)
 
 commit 5de88b4bcffdafcf8c7c20033cdf95dc690199ce
@@ -13428,8 +13337,8 @@ Date:   Mon Nov 22 19:17:23 2010 -0500
 
     https://bugzilla.gnome.org/show_bug.cgi?id=623615
 
- gi/pygi-argument.c      | 27 ++++++++++++++++++++++++++-
- tests/test_everything.py | 17 +++++++++++++++--
+ gi/pygi-argument.c      |   27 ++++++++++++++++++++++++++-
+ tests/test_everything.py |   17 +++++++++++++++--
  2 files changed, 41 insertions(+), 3 deletions(-)
 
 commit f129b3db2c78d3cce3614993fdd1619fb9eb9c79
@@ -13440,10 +13349,10 @@ Date: Sun Nov 21 12:16:53 2010 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=623615
 
- gi/pygi-argument.c      | 60
- ++++++++++++++++++++++++++++++++++++++++++++++++
- gi/pygi-info.c                  |  5 ++++
- tests/test_everything.py |  5 ++++
+ gi/pygi-argument.c      |   60
+ ++++++++++++++++++++++++++++++++++++++++++++++
+ gi/pygi-info.c                  |    5 ++++
+ tests/test_everything.py |    5 ++++
  3 files changed, 70 insertions(+)
 
 commit fd2c0288eb67823fca1265348a27a9f8f147ae50
@@ -13452,7 +13361,7 @@ Date:   Sat Nov 27 23:01:42 2010 +0100
 
     pygi-convert.sh: gtk.accel_map -> Gtk.AccelMap._
 
- pygi-convert.sh | 1 +
+ pygi-convert.sh |    1 +
  1 file changed, 1 insertion(+)
 
 commit 13d0ff1d9c129bb458e234b630ebe920b50e2e0f
@@ -13461,7 +13370,7 @@ Date:   Sat Nov 27 22:34:13 2010 +0100
 
     pygi-convert.sh: handle "from gtk import gdk"
 
- pygi-convert.sh | 2 ++
+ pygi-convert.sh |    2 ++
  1 file changed, 2 insertions(+)
 
 commit 63a97634031c3d159ad77fdaa1f6341d7656eb07
@@ -13470,7 +13379,7 @@ Date:   Sat Nov 27 22:23:24 2010 +0100
 
     pygi-convert.sh: add some Pango special cases
 
- pygi-convert.sh | 3 +++
+ pygi-convert.sh |    3 +++
  1 file changed, 3 insertions(+)
 
 commit 57e42bf4230d1aa20a47e3b0df2e509602333892
@@ -13481,8 +13390,8 @@ Date:   Sat Nov 27 19:51:38 2010 +0100
 
     Make the tag argument optional.
 
- gi/overrides/Gtk.py    |  9 +++++++++
- tests/test_overrides.py | 17 +++++++++++++++++
+ gi/overrides/Gtk.py    |    9 +++++++++
+ tests/test_overrides.py |   17 +++++++++++++++++
  2 files changed, 26 insertions(+)
 
 commit 828b698e47ee819a60d24a772a3cc51ff9cd6601
@@ -13491,8 +13400,8 @@ Date:   Sat Nov 27 19:32:48 2010 +0100
 
     Override TextBuffer.set_text() to make length optional
 
- gi/overrides/Gtk.py    |  3 +++
- tests/test_overrides.py | 11 ++++++++++-
+ gi/overrides/Gtk.py    |    3 +++
+ tests/test_overrides.py |   11 ++++++++++-
  2 files changed, 13 insertions(+), 1 deletion(-)
 
 commit bf55dc862755a57bb1b998702d284fc460e88a30
@@ -13503,8 +13412,8 @@ Date:   Sat Nov 27 16:46:40 2010 +0100
 
     Override create_mark to make the left_gravity argument optional
 
- gi/overrides/Gtk.py    | 3 +++
- tests/test_overrides.py | 3 +++
+ gi/overrides/Gtk.py    |    3 +++
+ tests/test_overrides.py |    3 +++
  2 files changed, 6 insertions(+)
 
 commit 94c0e2f71636d055bdebe3ec378f3d339eea66c9
@@ -13515,8 +13424,8 @@ Date:   Sat Nov 27 16:10:33 2010 +0100
 
     Fix the override and add unit test
 
- gi/overrides/Gtk.py    | 8 +++++---
- tests/test_overrides.py | 7 +++++++
+ gi/overrides/Gtk.py    |    8 +++++---
+ tests/test_overrides.py |    7 +++++++
  2 files changed, 12 insertions(+), 3 deletions(-)
 
 commit 0cd717e3926276540b9145e58a4a3368136b00de
@@ -13526,7 +13435,7 @@ Date:   Mon Nov 22 18:35:09 2010 -0500
     [gi] fix ActionGroup constructor to allow other keyword properties
     to be set
 
- gi/overrides/Gtk.py | 4 ++--
+ gi/overrides/Gtk.py |   4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit 226777cdb70fc72d206664ffd8b6737f7239d23f
@@ -13535,8 +13444,8 @@ Date:   Mon Nov 22 18:32:28 2010 -0500
 
     [gi] require the name parameter when creatin a Gtk.ActionGroup
 
- gi/overrides/Gtk.py    | 3 +++
- tests/test_overrides.py | 2 ++
+ gi/overrides/Gtk.py    |    3 +++
+ tests/test_overrides.py |    2 ++
  2 files changed, 5 insertions(+)
 
 commit d0049fa9982d13b3553b05569fb0a227e48b6647
@@ -13547,8 +13456,8 @@ Date:   Sun Nov 21 15:20:58 2010 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=635437
 
- gi/overrides/Gtk.py    |  3 +++
- tests/test_overrides.py | 34 +++++++++++++++++++++-------------
+ gi/overrides/Gtk.py    |    3 +++
+ tests/test_overrides.py |   34 +++++++++++++++++++++-------------
  2 files changed, 24 insertions(+), 13 deletions(-)
 
 commit e1db544e46aeed984133896af34b671a6a5547df
@@ -13559,8 +13468,8 @@ Date:   Sun Nov 21 23:03:25 2010 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=635466
 
- gi/overrides/Gtk.py    | 15 +++++++++++++++
- tests/test_overrides.py |  6 ++++++
+ gi/overrides/Gtk.py    |   15 +++++++++++++++
+ tests/test_overrides.py |    6 ++++++
  2 files changed, 21 insertions(+)
 
 commit a5e806ad8a8b279402ff7adb1c1cdc04f9f3da76
@@ -13571,7 +13480,7 @@ Date:   Sun Nov 21 21:57:40 2010 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=635464
 
- gi/overrides/Gtk.py | 6 ++++++
+ gi/overrides/Gtk.py |   6 ++++++
  1 file changed, 6 insertions(+)
 
 commit 1c537bc67107948c92b51ba6ba749747e84263e2
@@ -13587,8 +13496,8 @@ Date:   Mon Nov 22 15:04:00 2010 -0500
     which
       should be accepted by pycairo for any API that takes a rect
 
- gi/pygi-foreign-cairo.c | 85
- +++++++++++++++++++++++++++++++++++++------------
+ gi/pygi-foreign-cairo.c |   85
+ +++++++++++++++++++++++++++++++++++------------
  1 file changed, 64 insertions(+), 21 deletions(-)
 
 commit 4cede8f12321bed6c3b71813a62c01b61853ba69
@@ -13599,8 +13508,8 @@ Date:   Fri Nov 19 16:46:53 2010 -0500
 
     https://bugzilla.gnome.org/show_bug.cgi?id=627367
 
- gi/overrides/Gdk.py | 7 +++++++
- gi/overrides/Gtk.py | 25 +++++++++++++++++++++++++
+ gi/overrides/Gdk.py |   7 +++++++
+ gi/overrides/Gtk.py |  25 +++++++++++++++++++++++++
  2 files changed, 32 insertions(+)
 
 commit 3fd51bb903724b752f72f49c7cb35652b819791d
@@ -13614,9 +13523,9 @@ Date:   Fri Nov 19 16:44:32 2010 -0500
 
     https://bugzilla.gnome.org/show_bug.cgi?id=627367
 
- gi/pygi-argument.c | 65
- ++++++++++++++++++++++++++++++++++++++++++++----------
- tests/test_gi.py   |  6 +++--
+ gi/pygi-argument.c |  65
+ ++++++++++++++++++++++++++++++++++++++++++----------
+ tests/test_gi.py   |   6 +++--
  2 files changed, 57 insertions(+), 14 deletions(-)
 
 commit 7ddb0f7fd8b1b9e8f691c6d42a83cb16c6561d26
@@ -13625,7 +13534,7 @@ Date:   Fri Nov 19 18:19:38 2010 +0100
 
     pygi-convert.sh: Add pynotify -> Notify
 
- pygi-convert.sh | 3 +++
+ pygi-convert.sh |    3 +++
  1 file changed, 3 insertions(+)
 
 commit bf03d4db03a7739ac16ddc4e614441557ede554d
@@ -13645,7 +13554,7 @@ Date:   Fri Nov 19 09:08:07 2010 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=635244
 
- pygi-convert.sh | 25 +++++--------------------
+ pygi-convert.sh |   25 +++++--------------------
  1 file changed, 5 insertions(+), 20 deletions(-)
 
 commit 18f5d229d3a4b9520c1c456be2635c8e36015c12
@@ -13656,7 +13565,7 @@ Date:   Fri Nov 19 09:00:35 2010 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=635244
 
- pygi-convert.sh | 2 ++
+ pygi-convert.sh |    2 ++
  1 file changed, 2 insertions(+)
 
 commit ef74273c2043944708515e59a654ebe4944b46ff
@@ -13669,7 +13578,7 @@ Date:   Thu Nov 18 13:54:48 2010 -0500
     were entered
       since they reside in an unordered hash internally
 
- tests/test_overrides.py | 9 +++++----
+ tests/test_overrides.py |    9 +++++----
  1 file changed, 5 insertions(+), 4 deletions(-)
 
 commit 2c25886bf6710568d0646f82dce4770faa44c40d
@@ -13681,9 +13590,9 @@ Date:   Wed Nov 17 14:38:09 2010 -0500
 
     https://bugzilla.gnome.org/show_bug.cgi?id=620579
 
- gi/pygi-argument.c         | 14 ++++++++++++--
- glib/pyglib-python-compat.h | 5 +++++
- tests/test_gi.py           |  3 +++
+ gi/pygi-argument.c         |   14 ++++++++++++--
+ glib/pyglib-python-compat.h |   5 +++++
+ tests/test_gi.py           |    3 +++
  3 files changed, 20 insertions(+), 2 deletions(-)
 
 commit 8c2d32c8205b971b4353e3d5d2ed1efa6ef0e06c
@@ -13698,7 +13607,7 @@ Date:   Fri Nov 12 10:20:32 2010 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=634671
 
- gi/pygi-invoke.c | 25 ++++++++++++++-----------
+ gi/pygi-invoke.c |   25 ++++++++++++++-----------
  1 file changed, 14 insertions(+), 11 deletions(-)
 
 commit d9bab3b185bb59bd29e3c3f6225f3636f58ec45e
@@ -13707,8 +13616,8 @@ Date:   Wed Nov 10 14:11:56 2010 -0500
 
     update news for release
 
- NEWS | 73
- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ NEWS |   73
+ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 73 insertions(+)
 
 commit 1338a95339e21cc02b9df6d10166996c8b97a6bf
@@ -13719,7 +13628,7 @@ Date:   Tue Sep 28 13:44:13 2010 +1000
 
     https://bugzilla.gnome.org/show_bug.cgi?id=625033
 
- gi/pygi-info.c | 29 +++++++++++++++++++++++++++++
+ gi/pygi-info.c |   29 +++++++++++++++++++++++++++++
  1 file changed, 29 insertions(+)
 
 commit 9ce3edf69824935aeca9e676eaa9782786c22a97
@@ -13735,7 +13644,7 @@ Date:   Tue Nov 9 22:57:41 2010 -0500
     compile
       without the forign structs
 
- gi/pygi-foreign-cairo.c | 4 ++++
+ gi/pygi-foreign-cairo.c |    4 ++++
  1 file changed, 4 insertions(+)
 
 commit 68b8211d8b014cf26ca7e9ab751fb3f61f228290
@@ -13760,9 +13669,9 @@ Date:   Mon Oct 25 18:28:36 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=627545
 
- gi/pygi-foreign-cairo.c | 57
- +++++++++++++++++++++++++++++++++++++++++++++++++
- gi/pygi-invoke.c       | 15 +++++++++++--
+ gi/pygi-foreign-cairo.c |   57
+ +++++++++++++++++++++++++++++++++++++++++++++++
+ gi/pygi-invoke.c       |   15 +++++++++++--
  2 files changed, 70 insertions(+), 2 deletions(-)
 
 commit ce8b948310220288e9eef904eef4ec8f4e24a376
@@ -13771,8 +13680,8 @@ Date:   Tue Nov 9 22:11:51 2010 -0500
 
     [gi] add overrides to Gtk.Editable
 
- gi/overrides/Gtk.py    | 17 +++++++++++++++++
- tests/test_overrides.py | 12 ++++++++++++
+ gi/overrides/Gtk.py    |   17 +++++++++++++++++
+ tests/test_overrides.py |   12 ++++++++++++
  2 files changed, 29 insertions(+)
 
 commit 87dbc716f26cefc0e9427c3d6e8befe8eabd3d1e
@@ -13790,8 +13699,8 @@ Date:   Tue Nov 9 21:12:54 2010 -0500
     * this keeps the old way of checking vfuncs while adding the edge case
       where vfunc is named differently from their invoker
 
- gi/pygi-info.c | 16 ++++++++++++++++
- gi/types.py   |  2 +-
+ gi/pygi-info.c |   16 ++++++++++++++++
+ gi/types.py   |    2 +-
  2 files changed, 17 insertions(+), 1 deletion(-)
 
 commit 540e9f1f349ba3625e28b7673c92210eb8974098
@@ -13805,9 +13714,9 @@ Date:   Tue Nov 9 12:17:05 2010 -0500
 
     https://bugzilla.gnome.org/show_bug.cgi?id=634423
 
- gi/overrides/Gtk.py    | 80
- ++++++++++++++++++++++++++++++++++++++-----------
- tests/test_overrides.py | 53 +++++++++++++++++++++++++++++++-
+ gi/overrides/Gtk.py    |   80
+ ++++++++++++++++++++++++++++++++++++-----------
+ tests/test_overrides.py |   53 ++++++++++++++++++++++++++++++-
  2 files changed, 114 insertions(+), 19 deletions(-)
 
 commit 0bcb58b9541d9ae52e1d96e6239e9dbe0698872a
@@ -13817,7 +13726,7 @@ Date:   Fri Nov 5 13:56:12 2010 -0400
     fix dialogs overrides which were relying on broken inheritance
     behavior
 
- gi/overrides/Gtk.py | 14 ++++++++++++--
+ gi/overrides/Gtk.py |  14 ++++++++++++--
  1 file changed, 12 insertions(+), 2 deletions(-)
 
 commit 89c104d17d79d7b935cd76101cba19d49390f7be
@@ -13841,14 +13750,14 @@ Date: Thu Nov 4 12:00:14 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=633347
 
- gi/module.py                      | 12 ++++++++++-
- gi/overrides/GIMarshallingTests.py |  2 +-
- gi/overrides/Gdk.py               |  2 +-
- gi/overrides/Gtk.py               |  2 +-
- gi/overrides/__init__.py          | 43
- ++++++++++++++++++++++++++++++++++++++
- gi/types.py                       |  8 -------
- tests/test_overrides.py           | 27 ++++++++++++++++++++++++
+ gi/module.py                      |   12 +++++++++-
+ gi/overrides/GIMarshallingTests.py |   2 +-
+ gi/overrides/Gdk.py               |    2 +-
+ gi/overrides/Gtk.py               |    2 +-
+ gi/overrides/__init__.py          |   43
+ ++++++++++++++++++++++++++++++++++++
+ gi/types.py                       |    8 -------
+ tests/test_overrides.py           |   27 ++++++++++++++++++++++
  7 files changed, 84 insertions(+), 12 deletions(-)
 
 commit 878b8f630acd2146bee364054acd45cd33eea37a
@@ -13864,7 +13773,7 @@ Date:   Thu Nov 4 11:16:43 2010 +0100
 
     setup.py: ease maintenance burden for tests installation
 
- setup.py | 23 +++--------------------
+ setup.py |   23 +++--------------------
  1 file changed, 3 insertions(+), 20 deletions(-)
 
 commit cdacaa9572893796e0f3aa3730d0191911cb29ee
@@ -13873,8 +13782,8 @@ Date:   Wed Nov 3 09:51:09 2010 -0400
 
     fix inheritence issues in overrides
 
- gi/overrides/Gtk.py | 79
- +++++++++++++++++++++++++++--------------------------
+ gi/overrides/Gtk.py |  79
+ ++++++++++++++++++++++++++-------------------------
  1 file changed, 40 insertions(+), 39 deletions(-)
 
 commit 3d5955767d81f45e796ab2af0707533375681774
@@ -13885,8 +13794,8 @@ Date:   Wed Nov 3 09:38:56 2010 +0100
 
     Signed-off-by: Dieter Verfaillie <dieterv@optionexplicit.be>
 
- tests/runtests-windows.py | 47
- +++++++++++++++++++++++++++++++++++++++++++++++
+ tests/runtests-windows.py |   47
+ +++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 47 insertions(+)
 
 commit 8cb3f2e78161639c568110aad6a807dcf59f3ae8
@@ -13899,7 +13808,7 @@ Date:   Wed Nov 3 09:35:52 2010 +0100
 
     Signed-off-by: Dieter Verfaillie <dieterv@optionexplicit.be>
 
- pygobject_postinstall.py | 26 +++-----------------------
+ pygobject_postinstall.py |   26 +++-----------------------
  1 file changed, 3 insertions(+), 23 deletions(-)
 
 commit 63167574df53eb481cc11b6a097b2bfe7d5747f5
@@ -13910,7 +13819,7 @@ Date:   Wed Nov 3 09:34:38 2010 +0100
 
     Signed-off-by: Dieter Verfaillie <dieterv@optionexplicit.be>
 
- pygobject_postinstall.py | 35 +----------------------------------
+ pygobject_postinstall.py |   35 +----------------------------------
  1 file changed, 1 insertion(+), 34 deletions(-)
 
 commit f7b12611f94fd8c27fb67a03746c10149ce6e0ef
@@ -13921,7 +13830,7 @@ Date:   Wed Nov 3 09:31:14 2010 +0100
 
     Signed-off-by: Dieter Verfaillie <dieterv@optionexplicit.be>
 
- setup.py | 56 ++++++++++++++++++++++++++------------------------------
+ setup.py |   56 ++++++++++++++++++++++++++------------------------------
  1 file changed, 26 insertions(+), 30 deletions(-)
 
 commit a31b4196fbb4638a245430f2fdeafd7534b1d84d
@@ -13932,7 +13841,7 @@ Date:   Wed Nov 3 09:28:36 2010 +0100
 
     Signed-off-by: Dieter Verfaillie <dieterv@optionexplicit.be>
 
- setup.py | 61
+ setup.py |   61
  +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 61 insertions(+)
 
@@ -13944,7 +13853,7 @@ Date:   Wed Nov 3 09:26:59 2010 +0100
 
     Signed-off-by: Dieter Verfaillie <dieterv@optionexplicit.be>
 
- setup.py | 3 +++
+ setup.py |    3 +++
  1 file changed, 3 insertions(+)
 
 commit 78533d851ee1314686f18cfa793613a9cf7d6686
@@ -13955,7 +13864,7 @@ Date:   Wed Nov 3 09:25:56 2010 +0100
 
     Signed-off-by: Dieter Verfaillie <dieterv@optionexplicit.be>
 
- setup.py | 25 +++++++++++++++++++++++++
+ setup.py |   25 +++++++++++++++++++++++++
  1 file changed, 25 insertions(+)
 
 commit ad40688df533dda0b1f7be8ea37c542b8796a26b
@@ -13966,7 +13875,7 @@ Date:   Wed Nov 3 09:24:45 2010 +0100
 
     Signed-off-by: Dieter Verfaillie <dieterv@optionexplicit.be>
 
- setup.py | 3 +++
+ setup.py |    3 +++
  1 file changed, 3 insertions(+)
 
 commit 21ddfc66e4e18c002a33154eb4ab81170ed71ecc
@@ -13977,7 +13886,7 @@ Date:   Wed Nov 3 09:23:05 2010 +0100
 
     Signed-off-by: Dieter Verfaillie <dieterv@optionexplicit.be>
 
- setup.py | 37 ++++++++++++++++++++-----------------
+ setup.py |   37 ++++++++++++++++++++-----------------
  1 file changed, 20 insertions(+), 17 deletions(-)
 
 commit 7d353d04892de67265bf693f591f37fd393de639
@@ -13989,7 +13898,7 @@ Date:   Wed Nov 3 09:18:11 2010 +0100
 
     Signed-off-by: Dieter Verfaillie <dieterv@optionexplicit.be>
 
- setup.py | 18 ++++++++++--------
+ setup.py |   18 ++++++++++--------
  1 file changed, 10 insertions(+), 8 deletions(-)
 
 commit 286364ed39953e942e24d5911519bcac2f90975a
@@ -14001,7 +13910,7 @@ Date:   Wed Nov 3 09:05:59 2010 +0100
 
     Signed-off-by: Dieter Verfaillie <dieterv@optionexplicit.be>
 
- setup.py | 29 +++++++++--------------------
+ setup.py |   29 +++++++++--------------------
  1 file changed, 9 insertions(+), 20 deletions(-)
 
 commit 3f70f92904c123e6cc40929c0affd3f75d061828
@@ -14012,7 +13921,7 @@ Date:   Wed Nov 3 09:02:30 2010 +0100
 
     Signed-off-by: Dieter Verfaillie <dieterv@optionexplicit.be>
 
- setup.py | 31 ++++++++++++++++++++++---------
+ setup.py |   31 ++++++++++++++++++++++---------
  1 file changed, 22 insertions(+), 9 deletions(-)
 
 commit 9aa54b65f729c0f3b0e96ab7ff797f87dad6a455
@@ -14023,7 +13932,7 @@ Date:   Wed Nov 3 08:58:00 2010 +0100
 
     Signed-off-by: Dieter Verfaillie <dieterv@optionexplicit.be>
 
- README.win32 | 13 +++++--------
+ README.win32 |   13 +++++--------
  1 file changed, 5 insertions(+), 8 deletions(-)
 
 commit 5a33105f690ba84b2e4bb15d73d3467e92fa06e0
@@ -14034,8 +13943,8 @@ Date:   Wed Nov 3 07:59:18 2010 +0100
 
     Signed-off-by: Dieter Verfaillie <dieterv@optionexplicit.be>
 
- dsextras.py | 148
- ++++++++++++++++++++++++++++++++++++++----------------------
+ dsextras.py | 148
+ +++++++++++++++++++++++++++++++++++++----------------------
  1 file changed, 93 insertions(+), 55 deletions(-)
 
 commit d03503d0412d173acb383926ab3c2d640dad3e3f
@@ -14046,7 +13955,7 @@ Date:   Wed Nov 3 07:00:40 2010 +0100
 
     Signed-off-by: Dieter Verfaillie <dieterv@optionexplicit.be>
 
- dsextras.py | 4 ++--
+ dsextras.py |   4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit 8c62968e9f8467e24870b8c4f61112676eef4630
@@ -14058,7 +13967,7 @@ Date:   Wed Nov 3 06:56:32 2010 +0100
 
     Signed-off-by: Dieter Verfaillie <dieterv@optionexplicit.be>
 
- dsextras.py | 15 ++++++---------
+ dsextras.py |  15 ++++++---------
  1 file changed, 6 insertions(+), 9 deletions(-)
 
 commit b98277afc24886bbda400e0ad360992bffa77b7c
@@ -14069,7 +13978,7 @@ Date:   Wed Nov 3 06:49:48 2010 +0100
 
     Signed-off-by: Dieter Verfaillie <dieterv@optionexplicit.be>
 
- dsextras.py | 10 ++++++++++
+ dsextras.py |  10 ++++++++++
  1 file changed, 10 insertions(+)
 
 commit a565558652ebc3fa49d7aea40d399b06bbe376c4
@@ -14081,7 +13990,7 @@ Date:   Wed Nov 3 06:45:05 2010 +0100
 
     Signed-off-by: Dieter Verfaillie <dieterv@optionexplicit.be>
 
- dsextras.py | 4 ++--
+ dsextras.py |   4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit 4b1ff0c7f9953f925d2178069263cca67ca7db02
@@ -14092,7 +14001,7 @@ Date:   Wed Nov 3 06:44:21 2010 +0100
 
     Signed-off-by: Dieter Verfaillie <dieterv@optionexplicit.be>
 
- dsextras.py | 25 +++++++++++++------------
+ dsextras.py |  25 +++++++++++++------------
  1 file changed, 13 insertions(+), 12 deletions(-)
 
 commit 819a21cea831c3892040390e9446b78a91d1cbbe
@@ -14103,7 +14012,7 @@ Date:   Wed Nov 3 06:28:04 2010 +0100
 
     Signed-off-by: Dieter Verfaillie <dieterv@optionexplicit.be>
 
- dsextras.py | 58
+ dsextras.py |  58
  +++++++++++++++++++++++++++++++---------------------------
  1 file changed, 31 insertions(+), 27 deletions(-)
 
@@ -14116,7 +14025,7 @@ Date:   Wed Nov 3 06:16:21 2010 +0100
 
     Signed-off-by: Dieter Verfaillie <dieterv@optionexplicit.be>
 
- .gitignore | 7 +++++++
+ .gitignore |   7 +++++++
  1 file changed, 7 insertions(+)
 
 commit 268d6ed2b0b1d266c612da4453b6117d9e14437e
@@ -14125,7 +14034,7 @@ Date:   Thu Oct 28 15:32:28 2010 -0400
 
     [gi] add tests for calling dir on a dynamic module
 
- tests/test_gi.py | 24 ++++++++++++++++++++++++
+ tests/test_gi.py |   24 ++++++++++++++++++++++++
  1 file changed, 24 insertions(+)
 
 commit f6386a6e0d225c83cdbe1add4c4d3ea51d3ec2f0
@@ -14136,7 +14045,7 @@ Date:   Wed Oct 27 18:28:11 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=625093
 
- gi/module.py | 8 ++++++++
+ gi/module.py |    8 ++++++++
  1 file changed, 8 insertions(+)
 
 commit 28ed01c34c503cfb4f14fe7af7912060ca70aba6
@@ -14152,7 +14061,7 @@ Date:   Mon Sep 20 23:10:14 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=629552
 
- gobject/pygpointer.c | 2 +-
+ gobject/pygpointer.c |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 1731f89e4b5a20c33976963e12a1f39a21d33fde
@@ -14165,7 +14074,7 @@ Date:   Thu Oct 28 14:21:12 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=629042
 
- gi/pygi-invoke.c | 10 +++++++++-
+ gi/pygi-invoke.c |   10 +++++++++-
  1 file changed, 9 insertions(+), 1 deletion(-)
 
 commit 783e2e351ec7470bda6b441e51f387dd61543c4b
@@ -14176,9 +14085,9 @@ Date:   Fri Oct 15 14:30:10 2010 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=632185
 
- gi/pygi-info.c | 91
- +++++++++++++++++++++++++++++++++++++++++++++++++---------
- gi/pygi-info.h |  7 +++++
+ gi/pygi-info.c |   91
+ +++++++++++++++++++++++++++++++++++++++++++++++---------
+ gi/pygi-info.h |    7 +++++
  2 files changed, 84 insertions(+), 14 deletions(-)
 
 commit 2ca897273f52ae38f5e06e72c773a048e199eee5
@@ -14187,7 +14096,7 @@ Date:   Thu Oct 28 13:49:15 2010 -0400
 
     include Python.h so that PY_VERSION_HEX gets defined
 
- gi/pygi-foreign-cairo.c | 1 +
+ gi/pygi-foreign-cairo.c |    1 +
  1 file changed, 1 insertion(+)
 
 commit 8b28b1d713df33931e255600ab98feda37a8e02a
@@ -14197,7 +14106,7 @@ Date:   Thu Oct 28 13:47:34 2010 -0400
     [gi] make overrides work for python 3.x protocols and alias for
     python 2.x
 
- gi/overrides/Gtk.py | 9 +++++++--
+ gi/overrides/Gtk.py |   9 +++++++--
  1 file changed, 7 insertions(+), 2 deletions(-)
 
 commit 3c09710d2f68af9c16ce39fd25656147656a486a
@@ -14206,7 +14115,7 @@ Date:   Sat Oct 23 14:24:24 2010 +0200
 
     Override Gtk.Widget.translate_coordinates to not return success value
 
- gi/overrides/Gtk.py | 11 +++++++++++
+ gi/overrides/Gtk.py |  11 +++++++++++
  1 file changed, 11 insertions(+)
 
 commit 9d4443b3de8c327d8645ddde0a7a6dc5b977d7b4
@@ -14216,7 +14125,7 @@ Date:   Sat Oct 23 14:22:36 2010 +0200
     Override Gtk.TreeViewColumn.cell_get_position to not return success
     value
 
- gi/overrides/Gtk.py | 5 +++++
+ gi/overrides/Gtk.py |   5 +++++
  1 file changed, 5 insertions(+)
 
 commit 6679d39ace06294e98f9d6fc911ed6fb27656010
@@ -14226,7 +14135,7 @@ Date:   Sat Oct 23 14:21:36 2010 +0200
     Override get_path_at_pos and get_dest_row_at_pos of Gtk.TreeView to
     not return success value
 
- gi/overrides/Gtk.py | 15 +++++++++++++++
+ gi/overrides/Gtk.py |  15 +++++++++++++++
  1 file changed, 15 insertions(+)
 
 commit 80b1b266fa68a5c67106871502017166628f71e4
@@ -14236,7 +14145,7 @@ Date:   Sat Oct 23 14:20:38 2010 +0200
     Override Gtk.TreeSortable.get_sort_column_id to not return success
     value
 
- gi/overrides/Gtk.py | 12 ++++++++++++
+ gi/overrides/Gtk.py |  12 ++++++++++++
  1 file changed, 12 insertions(+)
 
 commit 17cd0fb3a2d2ca0c6109c41727ba0b8c42217cd5
@@ -14246,7 +14155,7 @@ Date:   Sat Oct 23 14:19:20 2010 +0200
     Override forward_search and backward_search of Gtk.TextIter to not
     return success value
 
- gi/overrides/Gtk.py | 15 +++++++++++++++
+ gi/overrides/Gtk.py |  15 +++++++++++++++
  1 file changed, 15 insertions(+)
 
 commit 95c86fa31da3d2fe84db0e2b5bc2a6dc896c9223
@@ -14256,7 +14165,7 @@ Date:   Sat Oct 23 14:18:09 2010 +0200
     Override Gtk.TextBuffer.get_selection_bounds to not return success
     value
 
- gi/overrides/Gtk.py | 5 +++++
+ gi/overrides/Gtk.py |   5 +++++
  1 file changed, 5 insertions(+)
 
 commit da6d87460b9392c29d025a7eed9249fb604204bc
@@ -14266,7 +14175,7 @@ Date:   Sat Oct 23 14:17:04 2010 +0200
     Override Gtk.RecentInfo.get_application_info to not return success
     value
 
- gi/overrides/Gtk.py | 10 ++++++++++
+ gi/overrides/Gtk.py |  10 ++++++++++
  1 file changed, 10 insertions(+)
 
 commit 0ed2e8772bdc405b0d0c7e0b2803e0e141abcb6a
@@ -14275,7 +14184,7 @@ Date:   Sat Oct 23 14:16:21 2010 +0200
 
     Override Gtk.IMContext.get_surrounding to not return success value
 
- gi/overrides/Gtk.py | 10 ++++++++++
+ gi/overrides/Gtk.py |  10 ++++++++++
  1 file changed, 10 insertions(+)
 
 commit b85b445f15421209c0b4adf676d7c8218d6437c5
@@ -14285,7 +14194,7 @@ Date:   Sat Oct 23 14:15:24 2010 +0200
     Override get_item_at_pos, get_visible_range, get_dest_item_at_pos
     of Gtk.IconView to not return success value
 
- gi/overrides/Gtk.py | 19 +++++++++++++++++++
+ gi/overrides/Gtk.py |  19 +++++++++++++++++++
  1 file changed, 19 insertions(+)
 
 commit 684d716192d58c972083e579e909bcd97f8a5025
@@ -14294,7 +14203,7 @@ Date:   Sat Oct 23 14:13:47 2010 +0200
 
     Override Gtk.Container.get_focus_chain to not return success value
 
- gi/overrides/Gtk.py | 10 ++++++++++
+ gi/overrides/Gtk.py |  10 ++++++++++
  1 file changed, 10 insertions(+)
 
 commit 8ec830c57fafbfe50d9619c6caba3cb95a00d688
@@ -14303,7 +14212,7 @@ Date:   Sat Oct 23 14:12:44 2010 +0200
 
     Override Gtk.ComboBox.get_active_iter to not return success value
 
- gi/overrides/Gtk.py | 10 ++++++++++
+ gi/overrides/Gtk.py |  10 ++++++++++
  1 file changed, 10 insertions(+)
 
 commit b483852904468722230903989e3451c7c6a24c0f
@@ -14323,14 +14232,14 @@ Date: Tue Oct 12 12:18:33 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=622987
 
- gi/pygi-argument.c         | 17 ++++++---------
- gobject/gobjectmodule.c     | 4 ++--
- gobject/pygobject-private.h | 1 +
- gobject/pygobject.h        |  2 ++
- gobject/pygtype.c          | 37 +++++++++++++++++++++++++++++----
- tests/test_gi.py           |  1 -
- tests/test_overrides.py     | 50
- +++++++++++++++++++++++++++++++++++++++++----
+ gi/pygi-argument.c         |   17 ++++++---------
+ gobject/gobjectmodule.c     |   4 ++--
+ gobject/pygobject-private.h |   1 +
+ gobject/pygobject.h        |    2 ++
+ gobject/pygtype.c          |   37 ++++++++++++++++++++++++++++----
+ tests/test_gi.py           |    1 -
+ tests/test_overrides.py     |  50
+ +++++++++++++++++++++++++++++++++++++++----
  7 files changed, 90 insertions(+), 22 deletions(-)
 
 commit 8c87d622dcc6d76a981edfc5818fe67bb2e114e2
@@ -14339,7 +14248,7 @@ Date:   Fri Oct 22 13:28:31 2010 +1300
 
     Shortcut removal is not needed on post-uninstall
 
- pygobject_postinstall.py | 14 ++------------
+ pygobject_postinstall.py |   14 ++------------
  1 file changed, 2 insertions(+), 12 deletions(-)
 
 commit a3ed97fe6f80548801739fe6b72771b9eb6d93f7
@@ -14348,7 +14257,7 @@ Date:   Thu Oct 21 13:25:35 2010 +1300
 
     Disable shortcut creation in windows installer
 
- pygobject_postinstall.py | 2 +-
+ pygobject_postinstall.py |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit a3d6212b0abccef58f05d454c091936776413d98
@@ -14359,9 +14268,9 @@ Date:   Thu Oct 7 11:43:27 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=631634
 
- gi/overrides/Gtk.py    | 94
- +++++++++++++++++++++++++++++++++++++++++++++----
- tests/test_overrides.py | 64 ++++++++++++++++++++++++++++++++-
+ gi/overrides/Gtk.py    |   94
+ ++++++++++++++++++++++++++++++++++++++++++++---
+ tests/test_overrides.py |   64 +++++++++++++++++++++++++++++++-
  2 files changed, 151 insertions(+), 7 deletions(-)
 
 commit a87e3ba64b54e6df0b5b96af47c34e3be790b58f
@@ -14389,9 +14298,9 @@ Date:   Thu Oct 7 19:37:53 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=631547
 
- gi/overrides/Gtk.py    | 195
- ++++++++++++++++++++++++++++++++++++++++++++++++
- tests/test_overrides.py | 160 +++++++++++++++++++++++++++++++++++++--
+ gi/overrides/Gtk.py    |  195
+ +++++++++++++++++++++++++++++++++++++++++++++++
+ tests/test_overrides.py |  160 ++++++++++++++++++++++++++++++++++++--
  2 files changed, 349 insertions(+), 6 deletions(-)
 
 commit acfcc29af727fb67d0dfbbcc7cc14963ef21f1ea
@@ -14400,7 +14309,7 @@ Date:   Sat Oct 16 18:59:25 2010 +1300
 
     Correctly build GIO on windows
 
- setup.py | 6 +++---
+ setup.py |    6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)
 
 commit 33b59fd7437009b6c3ed43412e171d2cc91ee317
@@ -14409,7 +14318,7 @@ Date:   Sat Oct 16 18:17:28 2010 +1300
 
     Require Python >= 2.6.0 for Windows build
 
- setup.py | 2 +-
+ setup.py |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 544e0e4de4f5f97b0584eaf72ae8a081eca28ab6
@@ -14418,7 +14327,7 @@ Date:   Sat Oct 16 17:41:01 2010 +1300
 
     Fix depreciation warning in dsextras.py
 
- dsextras.py | 2 +-
+ dsextras.py |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 239ff961778e4e1587404d8a70dfbe8630ab0623
@@ -14427,9 +14336,9 @@ Date:   Sat Oct 16 17:34:50 2010 +1300
 
     Fix build on windows
 
- gi/pygi-foreign.c | 5 ++++-
- gi/pygi.h        | 5 ++++-
- setup.py         | 4 ++--
+ gi/pygi-foreign.c |   5 ++++-
+ gi/pygi.h        |    5 ++++-
+ setup.py         |    4 ++--
  3 files changed, 10 insertions(+), 4 deletions(-)
 
 commit 9a2f81d63012fef23fdde2b4d903bd69601c07c6
@@ -14438,7 +14347,7 @@ Date:   Sat Oct 16 17:08:11 2010 +1300
 
     Support for GCC4 in Windows distutils build - bug 626548
 
- dsextras.py | 3 ++-
+ dsextras.py |   3 ++-
  1 file changed, 2 insertions(+), 1 deletion(-)
 
 commit 27367c8dc3a3a31fdd778505b319cd3f4afb9e27
@@ -14447,7 +14356,7 @@ Date:   Fri Oct 15 09:39:02 2010 +1300
 
     Remove obsolete comments in dsextras.py
 
- dsextras.py | 11 ++---------
+ dsextras.py |  11 ++---------
  1 file changed, 2 insertions(+), 9 deletions(-)
 
 commit b5f383f854fb8f72677828b029589320c59006d1
@@ -14458,7 +14367,7 @@ Date:   Fri Oct 15 09:21:03 2010 +1300
 
        * Fixes bug 631962
 
- dsextras.py | 2 +-
+ dsextras.py |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit e1981da105b574e273ae6500fc6d25caf6af6aae
@@ -14487,15 +14396,15 @@ Date: Tue Sep 28 15:31:03 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=630844
 
- gi/gimodule.c              |  2 +-
- gi/pygi.h                  |  5 ++++-
- glib/glibmodule.c          |  2 +-
- glib/pyglib-python-compat.h | 28 ++++++++++++++++++++++++++++
- glib/pyglib.c              |  6 +++---
- glib/pygoptioncontext.c     | 2 +-
- gobject/gobjectmodule.c     | 2 +-
- gobject/pygobject.h        |  6 ++++++
- gobject/pygtype.c          | 10 +++++-----
+ gi/gimodule.c              |    2 +-
+ gi/pygi.h                  |    5 ++++-
+ glib/glibmodule.c          |    2 +-
+ glib/pyglib-python-compat.h |  28 ++++++++++++++++++++++++++++
+ glib/pyglib.c              |    6 +++---
+ glib/pygoptioncontext.c     |   2 +-
+ gobject/gobjectmodule.c     |   2 +-
+ gobject/pygobject.h        |    6 ++++++
+ gobject/pygtype.c          |   10 +++++-----
  9 files changed, 50 insertions(+), 13 deletions(-)
 
 commit 03d2e2924e27a9d6cae89e5748f70e0a51be91c6
@@ -14509,7 +14418,7 @@ Date:   Tue Sep 28 12:44:42 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=630807
 
- gi/module.py | 2 ++
+ gi/module.py |    2 ++
  1 file changed, 2 insertions(+)
 
 commit 28f9366c9cb382801bad080864f667c867daa3c7
@@ -14520,7 +14429,7 @@ Date:   Sat Oct 9 17:40:40 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=631765
 
- gi/overrides/Gtk.py | 12 ++++++++++++
+ gi/overrides/Gtk.py |  12 ++++++++++++
  1 file changed, 12 insertions(+)
 
 commit f01a7d9e8222663ce52100e061033f2745a5e7af
@@ -14531,7 +14440,7 @@ Date:   Thu Oct 7 09:42:24 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=631548
 
- gi/overrides/Gtk.py | 36 ++++++++++++++++++++++--------------
+ gi/overrides/Gtk.py |  36 ++++++++++++++++++++++--------------
  1 file changed, 22 insertions(+), 14 deletions(-)
 
 commit 1e1357f5fa1a034b0b707040d664ac46be6e23f7
@@ -14544,15 +14453,15 @@ Date: Mon Oct 4 12:50:55 2010 -0400
 
     I ment to commit another patch and ended up comitting both
 
- gi/gimodule.c              |  2 +-
- gi/pygi.h                  |  5 +----
- glib/glibmodule.c          |  2 +-
- glib/pyglib-python-compat.h | 19 -------------------
- glib/pyglib.c              |  6 +++---
- glib/pygoptioncontext.c     | 2 +-
- gobject/gobjectmodule.c     | 2 +-
- gobject/pygobject.h        |  6 ------
- gobject/pygtype.c          | 10 +++++-----
+ gi/gimodule.c              |    2 +-
+ gi/pygi.h                  |    5 +----
+ glib/glibmodule.c          |    2 +-
+ glib/pyglib-python-compat.h |  19 -------------------
+ glib/pyglib.c              |    6 +++---
+ glib/pygoptioncontext.c     |   2 +-
+ gobject/gobjectmodule.c     |   2 +-
+ gobject/pygobject.h        |    6 ------
+ gobject/pygtype.c          |   10 +++++-----
  9 files changed, 13 insertions(+), 41 deletions(-)
 
 commit 97774cb149c5b03d5ef82a5af3f19e2ce4d79d0b
@@ -14564,7 +14473,7 @@ Date:   Mon Oct 4 12:43:31 2010 -0400
 
     * see https://bugzilla.gnome.org/show_bug.cgi?id=631158
 
- gi/pygi.h | 2 +-
+ gi/pygi.h |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit f25e763d53e5cdd4de08e90b04aea4b4c4720ac0
@@ -14577,15 +14486,15 @@ Date: Tue Sep 28 15:31:03 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=630844
 
- gi/gimodule.c              |  2 +-
- gi/pygi.h                  |  5 ++++-
- glib/glibmodule.c          |  2 +-
- glib/pyglib-python-compat.h | 19 +++++++++++++++++++
- glib/pyglib.c              |  6 +++---
- glib/pygoptioncontext.c     | 2 +-
- gobject/gobjectmodule.c     | 2 +-
- gobject/pygobject.h        |  6 ++++++
- gobject/pygtype.c          | 10 +++++-----
+ gi/gimodule.c              |    2 +-
+ gi/pygi.h                  |    5 ++++-
+ glib/glibmodule.c          |    2 +-
+ glib/pyglib-python-compat.h |  19 +++++++++++++++++++
+ glib/pyglib.c              |    6 +++---
+ glib/pygoptioncontext.c     |   2 +-
+ gobject/gobjectmodule.c     |   2 +-
+ gobject/pygobject.h        |    6 ++++++
+ gobject/pygtype.c          |   10 +++++-----
  9 files changed, 41 insertions(+), 13 deletions(-)
 
 commit 80b8ccd450fe4e3ea77b27e58bb63cabc2a2bb2b
@@ -14595,7 +14504,7 @@ Date:   Tue Sep 28 15:28:16 2010 -0400
     fix commit 7fe83108 which didn't use the compat functions for
     string handling
 
- glib/glibmodule.c | 2 +-
+ glib/glibmodule.c |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 9562842907a9d94f6adae2c1bb20d6b1f189abda
@@ -14604,8 +14513,8 @@ Date:   Tue Sep 28 13:15:57 2010 -0400
 
     Python 3 fixes for dsextras and the python.m4 distribution files
 
- dsextras.py  | 13 +++++++------
- m4/python.m4 |  4 ++--
+ dsextras.py  |   13 +++++++------
+ m4/python.m4 |    4 ++--
  2 files changed, 9 insertions(+), 8 deletions(-)
 
 commit 98f69957ee9e3037b0a05a037098e4d2133ca256
@@ -14616,8 +14525,8 @@ Date:   Mon Sep 27 14:01:31 2010 -0400
 
     * update hacking to fill in some holes in the release instructions
 
- HACKING      | 6 ++++--
- configure.ac | 2 +-
+ HACKING      |    6 ++++--
+ configure.ac |    2 +-
  2 files changed, 5 insertions(+), 3 deletions(-)
 
 commit fd38010101411e6bc1ca9314657f418de660fa13
@@ -14626,8 +14535,8 @@ Date:   Mon Sep 27 12:03:10 2010 -0400
 
     update NEWS for release
 
- NEWS | 93
- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ NEWS |   93
+ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 93 insertions(+)
 
 commit 7072d56b6cba13da97a052c75d1ae0c2cc417fd1
@@ -14636,7 +14545,7 @@ Date:   Sun Sep 26 08:37:31 2010 +0200
 
     Pre-release version bump 2.26.0
 
- configure.ac | 4 ++--
+ configure.ac |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit a549f429d2ced7a78d5baa5e2f28f6750b4788f2
@@ -14648,8 +14557,8 @@ Date:   Fri Sep 24 22:44:03 2010 +1200
        * Also tidy up g_get_{cache,config,data}_dir
          to share common code
 
- glib/glibmodule.c | 68
- ++++++++++++++++++++++++++++++++++++++++---------------
+ glib/glibmodule.c |   68
+ +++++++++++++++++++++++++++++++++++++++--------------
  1 file changed, 50 insertions(+), 18 deletions(-)
 
 commit 328aca600714bdca89dfdb531c222ee561ede27e
@@ -14658,7 +14567,7 @@ Date:   Fri Sep 24 12:16:22 2010 -0400
 
     fixed make check and make dist
 
- tests/Makefile.am | 31 ++++++++++++++++++-------------
+ tests/Makefile.am |   31 ++++++++++++++++++-------------
  1 file changed, 18 insertions(+), 13 deletions(-)
 
 commit 27023fd56148dd17b5576c1e81e0fe851d9b8727
@@ -14667,7 +14576,7 @@ Date:   Fri Sep 24 21:20:53 2010 +1200
 
     Disable GI tests when introspection disabled
 
- tests/Makefile.am | 2 ++
+ tests/Makefile.am |   2 ++
  1 file changed, 2 insertions(+)
 
 commit 7fe831081cdd2e26f5d948326b9f89ea0694e752
@@ -14676,10 +14585,10 @@ Date: Sat Jul 18 19:35:08 2009 +0200
 
     Wrap g_uri_list_extract_uris. Fixes bug #584431
 
- glib/glibmodule.c   | 38 ++++++++++++++++++++++++++++++++++++++
- gobject/__init__.py | 2 +-
- tests/Makefile.am   | 3 ++-
- tests/test_uris.py  | 15 +++++++++++++++
+ glib/glibmodule.c   |  38 ++++++++++++++++++++++++++++++++++++++
+ gobject/__init__.py |   2 +-
+ tests/Makefile.am   |   3 ++-
+ tests/test_uris.py  |  15 +++++++++++++++
  4 files changed, 56 insertions(+), 2 deletions(-)
 
 commit d6721a59c294f2471142b8c32de2f647b7084bca
@@ -14688,12 +14597,12 @@ Date: Thu Sep 23 15:38:40 2010 -0400
 
     Fix a few uses of TRUE and FALSE in the docs
 
- docs/reference/pygio-mount.xml                |  5 +++--
- docs/reference/pyglib-functions.xml   | 18 +++++++++---------
- docs/reference/pyglib-maincontext.xml | 12 ++++++------
- docs/reference/pyglib-mainloop.xml    |  6 +++---
- docs/reference/pygobject-functions.xml |  6 +++---
- docs/reference/pygobject.xml          |  4 ++--
+ docs/reference/pygio-mount.xml                |    5 +++--
+ docs/reference/pyglib-functions.xml   |   18 +++++++++---------
+ docs/reference/pyglib-maincontext.xml |   12 ++++++------
+ docs/reference/pyglib-mainloop.xml    |    6 +++---
+ docs/reference/pygobject-functions.xml |    6 +++---
+ docs/reference/pygobject.xml          |    4 ++--
  6 files changed, 26 insertions(+), 25 deletions(-)
 
 commit a08c9fffb4262ae678e17f90bbfb2d5f880cfad0
@@ -14718,9 +14627,9 @@ Date:   Tue Sep 21 17:52:14 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=630271
 
- gi/pygi-invoke.c        | 83
- +++++++++++++++++++++---------------------------
- tests/test_everything.py |  4 ++-
+ gi/pygi-invoke.c        |   83
+ +++++++++++++++++++++-------------------------
+ tests/test_everything.py |    4 ++-
  2 files changed, 40 insertions(+), 47 deletions(-)
 
 commit 9714d765a34e246899f11b6792eea3aecce0b7ec
@@ -14731,12 +14640,12 @@ Date: Mon Sep 13 16:36:47 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=629367
 
- gi/gimodule.c             |  20 +++++++
- gi/overrides/GLib.py      | 131
- ++++++++++++++++++++++++++++++++++++++++++---
- gi/pygi-foreign-gvariant.c |  2 +-
- tests/test_everything.py   |  16 ------
- tests/test_overrides.py    |  25 +++++++++
+ gi/gimodule.c             |   20 +++++++
+ gi/overrides/GLib.py      |  131
+ +++++++++++++++++++++++++++++++++++++++++---
+ gi/pygi-foreign-gvariant.c |   2 +-
+ tests/test_everything.py   |  16 ------
+ tests/test_overrides.py    |  25 +++++++++
  5 files changed, 170 insertions(+), 24 deletions(-)
 
 commit fc45abdd9b55ab63556798ab0f04715be79dba08
@@ -14747,7 +14656,7 @@ Date:   Thu Sep 23 10:49:36 2010 -0400
 
     * https://bugzilla.gnome.org/show_bug.cgi?id=627449
 
- glib/option.py | 2 +-
+ glib/option.py |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 4ed100f3183c6325dd04461484e877bb7d4131b1
@@ -14762,9 +14671,9 @@ Date:   Fri Sep 17 12:08:09 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=615872
 
- configure.ac     | 32 +++++++++++++++++++++++++++++---
- tests/Makefile.am | 35 ++++++++++++++++++++---------------
- tests/runtests.py |  4 ++++
+ configure.ac     |   32 +++++++++++++++++++++++++++++---
+ tests/Makefile.am |   35 ++++++++++++++++++++---------------
+ tests/runtests.py |   4 ++++
  3 files changed, 53 insertions(+), 18 deletions(-)
 
 commit 269ff8564eeb597dc06c27e293354b7ff7a71a82
@@ -14778,7 +14687,7 @@ Date:   Fri Sep 17 15:50:47 2010 +0200
     releases it's planned to become static methods again but for now
     let's fix the tests.
 
- tests/test_gi.py | 14 +++++++-------
+ tests/test_gi.py |   14 +++++++-------
  1 file changed, 7 insertions(+), 7 deletions(-)
 
 commit 2da8da589644d6125101210712defb1272a8abb1
@@ -14789,9 +14698,9 @@ Date:   Thu Sep 9 13:52:14 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=629199
 
- gi/pygi-argument.c     | 4 ++--
- gi/pygi-struct.c       | 2 +-
- gobject/gobjectmodule.c | 2 +-
+ gi/pygi-argument.c     |    4 ++--
+ gi/pygi-struct.c       |    2 +-
+ gobject/gobjectmodule.c |    2 +-
  3 files changed, 4 insertions(+), 4 deletions(-)
 
 commit 6769a4704f0876ac3baacd4da03ff16d9f0906be
@@ -14804,7 +14713,7 @@ Date:   Thu Sep 9 13:55:17 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=629198
 
- gobject/pygtype.c | 9 ---------
+ gobject/pygtype.c |   9 ---------
  1 file changed, 9 deletions(-)
 
 commit 98f54f9d33996baeaa8c8c1240310f5396d03a1d
@@ -14833,10 +14742,10 @@ Date: Tue Sep 14 14:10:49 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=615872
 
- gi/pygi-argument.c | 182
- ++++++++++++++++++++++++++++-------------------------
- gi/pygi-argument.h |  2 +
- gi/pygi-invoke.c   |  14 +++++
+ gi/pygi-argument.c |  182
+ +++++++++++++++++++++++++++-------------------------
+ gi/pygi-argument.h |   2 +
+ gi/pygi-invoke.c   |  14 ++++
  3 files changed, 112 insertions(+), 86 deletions(-)
 
 commit 5d79498d38b147b66ae72c1481e397160491e8d6
@@ -14847,7 +14756,7 @@ Date:   Wed Sep 15 10:26:20 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=615872
 
- gi/pygi-foreign-cairo.c | 6 ++++++
+ gi/pygi-foreign-cairo.c |    6 ++++++
  1 file changed, 6 insertions(+)
 
 commit b855562e5c0019cd7e4982fe00c467ede9e3926d
@@ -14863,7 +14772,7 @@ Date:   Thu Sep 9 22:16:58 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=615872
 
- gi/pygi-argument.c | 10 +++-------
+ gi/pygi-argument.c |  10 +++-------
  1 file changed, 3 insertions(+), 7 deletions(-)
 
 commit 0e72e28c6c5502c7db5103cf1299c9f0e6689fdd
@@ -14876,7 +14785,7 @@ Date:   Thu Sep 9 18:44:11 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=615872
 
- gi/pygi-argument.c | 20 ++++++++++++--------
+ gi/pygi-argument.c |  20 ++++++++++++--------
  1 file changed, 12 insertions(+), 8 deletions(-)
 
 commit d5666d99a1c0396b7da0cb14f9f4ff8892da7e2e
@@ -14889,7 +14798,7 @@ Date:   Thu Sep 9 17:35:10 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=615872
 
- gobject/pygtype.c | 29 ++++++++++++++++-------------
+ gobject/pygtype.c |   29 ++++++++++++++++-------------
  1 file changed, 16 insertions(+), 13 deletions(-)
 
 commit 3d431c7dd0de97db10cb0c00c39d9c1837bed2f2
@@ -14898,7 +14807,7 @@ Date:   Fri Sep 17 12:14:56 2010 +0200
 
     Specify encoding of tests/test_gi.py
 
- tests/test_gi.py | 3 ++-
+ tests/test_gi.py |    3 ++-
  1 file changed, 2 insertions(+), 1 deletion(-)
 
 commit a808bdabb9fa6f4a9b9ce42e1cce05fb37403f0f
@@ -14909,7 +14818,7 @@ Date:   Thu Sep 9 13:24:30 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=615872
 
- tests/test_gi.py | 6 +++++-
+ tests/test_gi.py |    6 +++++-
  1 file changed, 5 insertions(+), 1 deletion(-)
 
 commit 928f4485041d80d0c36ff2daeae4bcd09bd0bde4
@@ -14925,9 +14834,9 @@ Date:   Thu Sep 9 12:45:21 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=615872
 
- glib/pygiochannel.c | 30 +++++++++++++++---------------
- glib/pygsource.c    | 4 ++--
- gobject/pygobject.c | 2 +-
+ glib/pygiochannel.c |  30 +++++++++++++++---------------
+ glib/pygsource.c    |   4 ++--
+ gobject/pygobject.c |   2 +-
  3 files changed, 18 insertions(+), 18 deletions(-)
 
 commit b5ee20afa4399c7689fbec8939fa20b927eeb782
@@ -14938,7 +14847,7 @@ Date:   Thu Sep 9 08:04:40 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=615872
 
- glib/pygspawn.c | 4 ++--
+ glib/pygspawn.c |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit a499b2f0d622b671bd154544f66b73f1278e66ed
@@ -14954,8 +14863,8 @@ Date:   Thu Sep 9 07:56:44 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=615872
 
- gi/overrides/Gtk.py | 24 ++++++++++++++++--------
- glib/option.py      | 16 ++++++++++++----
+ gi/overrides/Gtk.py |  24 ++++++++++++++++--------
+ glib/option.py      |  16 ++++++++++++----
  2 files changed, 28 insertions(+), 12 deletions(-)
 
 commit dec9001d26c97949e7b3578086cb35e98075c047
@@ -14978,12 +14887,12 @@ Date: Thu Sep 9 07:36:04 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=615872
 
- tests/compathelper.py   | 18 ++++++++++++++++++
- tests/test_everything.py |  5 +++--
- tests/test_mainloop.py   |  3 ++-
- tests/test_option.py    |  6 ++++--
- tests/test_overrides.py  |  4 ++--
- tests/test_properties.py |  6 +++---
+ tests/compathelper.py   |   18 ++++++++++++++++++
+ tests/test_everything.py |    5 +++--
+ tests/test_mainloop.py   |    3 ++-
+ tests/test_option.py    |    6 ++++--
+ tests/test_overrides.py  |    4 ++--
+ tests/test_properties.py |    6 +++---
  6 files changed, 32 insertions(+), 10 deletions(-)
 
 commit 09a0daeedf49eaf376c1288be5743b57fbc76d51
@@ -14992,7 +14901,7 @@ Date:   Thu Sep 9 16:25:51 2010 -0400
 
     compilation: Fix syntax error
 
- gi/pygi-info.c | 2 +-
+ gi/pygi-info.c |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 9f7afd6d5afd8c1a5f36bf1295814757b71c8cbc
@@ -15001,7 +14910,7 @@ Date:   Thu Sep 9 22:17:00 2010 +0200
 
     Add missing file
 
- gi/overrides/GLib.py | 48
+ gi/overrides/GLib.py |   48
  ++++++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 48 insertions(+)
 
@@ -15021,12 +14930,12 @@ Date: Thu Jul 22 13:48:51 2010 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=625050
 
- gi/gimodule.c           | 38 ++++++++++++++++++++++++++++++++++++++
- gi/overrides/Makefile.am |  1 +
- gi/pygi-type.c                  | 15 +++++++++------
- gi/pygi-type.h                  |  2 ++
- gi/types.py             |  1 +
- tests/test_everything.py |  9 +++++++++
+ gi/gimodule.c           |   38 ++++++++++++++++++++++++++++++++++++++
+ gi/overrides/Makefile.am |    1 +
+ gi/pygi-type.c                  |   15 +++++++++------
+ gi/pygi-type.h                  |    2 ++
+ gi/types.py             |    1 +
+ tests/test_everything.py |    9 +++++++++
  6 files changed, 60 insertions(+), 6 deletions(-)
 
 commit 22e53aa2ed9cf6173a877b0af6928d5ab8da2f4f
@@ -15035,7 +14944,7 @@ Date:   Wed Sep 8 13:08:48 2010 -0400
 
     fix for changes in the gi test libraries
 
- tests/test_everything.py | 2 +-
+ tests/test_everything.py |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 246877074617b0e9c3b2ba2a5395a73e0ed9cd5d
@@ -15044,7 +14953,7 @@ Date:   Wed Sep 8 13:08:07 2010 -0400
 
     Gtk.DialogFlags.NO_SEPARATOR has been removed in Gtk 3.0
 
- gi/overrides/Gtk.py | 10 ++++++++--
+ gi/overrides/Gtk.py |  10 ++++++++--
  1 file changed, 8 insertions(+), 2 deletions(-)
 
 commit f92fc48e7e2ec50996e994ccb7d08a61e7374f22
@@ -15061,7 +14970,7 @@ Date:   Wed Sep 8 12:35:09 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=629087
 
- gi/pygi-callbacks.c | 5 +----
+ gi/pygi-callbacks.c |   5 +----
  1 file changed, 1 insertion(+), 4 deletions(-)
 
 commit 8c517de2d278bdef641c72b8f2919a3924290ec1
@@ -15072,9 +14981,9 @@ Date:   Fri Aug 20 14:54:35 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=627494
 
- gi/pygi-property.c      | 156
- ++++++++++++++++++++++++++++++++++++-----------
- tests/test_everything.py |  34 +++++++++++
+ gi/pygi-property.c      |  156
+ +++++++++++++++++++++++++++++++++++-----------
+ tests/test_everything.py |   34 ++++++++++
  2 files changed, 154 insertions(+), 36 deletions(-)
 
 commit 6d183d1fff55d54569ba3e1f90a10284df74fd40
@@ -15105,7 +15014,7 @@ Date:   Fri Sep 3 12:04:16 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=615872
 
- gobject/gobjectmodule.c | 2 +-
+ gobject/gobjectmodule.c |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit b7bf4269682a3335f5e0a52b46fa721af134d09a
@@ -15114,19 +15023,19 @@ Date: Wed Sep 1 11:03:40 2010 +0200
 
     Rename GArgument to GIArgument
 
- gi/pygi-argument.c        | 52
- +++++++++++++++++++++++-----------------------
- gi/pygi-argument.h        | 10 ++++-----
- gi/pygi-closure.c         | 34 +++++++++++++++---------------
- gi/pygi-foreign-cairo.c    |  8 +++----
- gi/pygi-foreign-gvariant.c |  4 ++--
- gi/pygi-foreign-gvariant.h |  4 ++--
- gi/pygi-foreign.c         | 12 +++++------
- gi/pygi-foreign.h         |  8 +++----
- gi/pygi-info.c                    |  8 +++----
- gi/pygi-invoke.c          | 28 ++++++++++++-------------
- gi/pygi-property.c        |  4 ++--
- gi/pygi.h                 | 16 +++++++-------
+ gi/pygi-argument.c        |   52
+ ++++++++++++++++++++++----------------------
+ gi/pygi-argument.h        |   10 ++++-----
+ gi/pygi-closure.c         |   34 ++++++++++++++---------------
+ gi/pygi-foreign-cairo.c    |   8 +++----
+ gi/pygi-foreign-gvariant.c |   4 ++--
+ gi/pygi-foreign-gvariant.h |   4 ++--
+ gi/pygi-foreign.c         |   12 +++++-----
+ gi/pygi-foreign.h         |    8 +++----
+ gi/pygi-info.c                    |    8 +++----
+ gi/pygi-invoke.c          |   28 ++++++++++++------------
+ gi/pygi-property.c        |    4 ++--
+ gi/pygi.h                 |   16 +++++++-------
  12 files changed, 94 insertions(+), 94 deletions(-)
 
 commit 7197f85c9be2b03636639ac909ca2c3170653509
@@ -15142,12 +15051,12 @@ Date: Wed Aug 18 10:29:19 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=615872
 
- gobject/propertyhelper.py | 16 +++++++++++-----
- tests/compathelper.py    | 32 ++++++++++++++++++++++++++++++++
- tests/test_option.py     |  7 ++++++-
- tests/test_properties.py  | 24 ++++++++++++++----------
- tests/test_signal.py     | 14 +++++++-------
- tests/test_source.py     |  4 ++--
+ gobject/propertyhelper.py |   16 +++++++++++-----
+ tests/compathelper.py    |   32 ++++++++++++++++++++++++++++++++
+ tests/test_option.py     |    7 ++++++-
+ tests/test_properties.py  |   24 ++++++++++++++----------
+ tests/test_signal.py     |   14 +++++++-------
+ tests/test_source.py     |    4 ++--
  6 files changed, 72 insertions(+), 25 deletions(-)
 
 commit 720e614acdbcf734d4bcccc403e639b5a5bcae24
@@ -15171,14 +15080,14 @@ Date: Fri Aug 20 10:58:48 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=627878
 
- configure.ac            |   5 +-
- gi/pygi-argument.c      |   9 +--
- gi/pygi-invoke.c        | 147
- +++++----------------------------------------
- tests/Makefile.am       |  42 ++++++++++++-
- tests/test_everything.py |   6 +-
- tests/test_gi.py        | 151
- +++++++++--------------------------------------
+ configure.ac            |    5 +-
+ gi/pygi-argument.c      |    9 +--
+ gi/pygi-invoke.c        |  147
+ +++++---------------------------------------
+ tests/Makefile.am       |   42 ++++++++++++-
+ tests/test_everything.py |    6 +-
+ tests/test_gi.py        |  151
+ +++++++++-------------------------------------
  6 files changed, 93 insertions(+), 267 deletions(-)
 
 commit f6c4d9e58c8f05cb2d82e158c9eb8480308565bd
@@ -15189,8 +15098,8 @@ Date:   Fri Aug 20 10:43:58 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=615872
 
- gobject/pygenum.c  | 1 +
- gobject/pygflags.c | 1 +
+ gobject/pygenum.c  |   1 +
+ gobject/pygflags.c |   1 +
  2 files changed, 2 insertions(+)
 
 commit c03e6b482548aee99362356807c804f8834fad2b
@@ -15201,10 +15110,10 @@ Date: Thu Apr 15 17:11:30 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=615872
 
- glib/pygspawn.c    |  7 ++---
- gobject/pygenum.c  | 61 ++++++++++++++++++++++++-------------------
- gobject/pygflags.c | 76
- +++++++++++++++++++++++-------------------------------
+ glib/pygspawn.c    |   7 ++---
+ gobject/pygenum.c  |  61 +++++++++++++++++++++++------------------
+ gobject/pygflags.c |  76
+ ++++++++++++++++++++++------------------------------
  3 files changed, 71 insertions(+), 73 deletions(-)
 
 commit 0db676fd2296750a46ba0fb069e472da06ecc53a
@@ -15224,7 +15133,7 @@ Date:   Wed Aug 18 11:03:32 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=615872
 
- gi/types.py | 12 ++++++++----
+ gi/types.py |  12 ++++++++----
  1 file changed, 8 insertions(+), 4 deletions(-)
 
 commit 286dcd0c6455961d818ac7f05f80f82435abc1dc
@@ -15235,8 +15144,8 @@ Date:   Tue Aug 17 15:43:42 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=615872
 
- gi/Makefile.am                 |  2 +-
- gi/pygi-foreign-cairo.c | 17 +++++++----------
+ gi/Makefile.am                 |    2 +-
+ gi/pygi-foreign-cairo.c |   17 +++++++----------
  2 files changed, 8 insertions(+), 11 deletions(-)
 
 commit bda58ec34fc443fe1108afc8532bec50f6fd0b44
@@ -15247,8 +15156,8 @@ Date:   Tue Aug 17 02:33:45 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=615872
 
- gi/module.py | 2 +-
- gi/types.py  | 2 +-
+ gi/module.py |    2 +-
+ gi/types.py  |    2 +-
  2 files changed, 2 insertions(+), 2 deletions(-)
 
 commit 427a3c8053feca35ccd746575760ac8a0ed50a12
@@ -15263,8 +15172,8 @@ Date:   Tue Aug 17 02:24:44 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=615872
 
- gi/Makefile.am |  2 +-
- gi/gimodule.c | 24 +++++++++---------------
+ gi/Makefile.am |    2 +-
+ gi/gimodule.c |   24 +++++++++---------------
  2 files changed, 10 insertions(+), 16 deletions(-)
 
 commit 1dee5dcd2b1747b4a4af438c0443d7930e4802db
@@ -15280,9 +15189,9 @@ Date:   Tue Aug 17 02:14:14 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=615872
 
- tests/Makefile.am       |   2 +-
- tests/testhelpermodule.c | 221
- ++++++-----------------------------------------
+ tests/Makefile.am       |    2 +-
+ tests/testhelpermodule.c |  221
+ ++++++----------------------------------------
  2 files changed, 28 insertions(+), 195 deletions(-)
 
 commit 1ff83a2ccb7301c8f675913f1c4f6118ea50b9c7
@@ -15293,11 +15202,11 @@ Date: Mon Aug 16 21:14:27 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=615872
 
- gi/pygi-boxed.c      |  43 ++-----------
- gi/pygi-info.c       | 171
- ++++++++++++++++++++-------------------------------
- gi/pygi-repository.c |  39 +++---------
- gi/pygi-struct.c     |  45 +++-----------
+ gi/pygi-boxed.c      |   43 ++-----------
+ gi/pygi-info.c       |  171
+ ++++++++++++++++++++------------------------------
+ gi/pygi-repository.c |   39 +++---------
+ gi/pygi-struct.c     |   45 +++----------
  4 files changed, 88 insertions(+), 210 deletions(-)
 
 commit 1efa2b12913b194d433c17014bc1077271a6ca32
@@ -15314,15 +15223,15 @@ Date: Mon Aug 16 13:51:05 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=615872
 
- gi/Makefile.am                     |  2 +-
- gi/pygi-argument.c         | 96
- +++++++++++++++++++++++++++------------------
- gi/pygi-boxed.c            |  1 +
- gi/pygi-info.c                     | 13 +++---
- gi/pygi-private.h          | 23 +++++++++++
- gi/pygi-repository.c       |  8 ++--
- gi/pygi-struct.c           |  1 +
- glib/pyglib-python-compat.h | 6 +++
+ gi/Makefile.am                     |    2 +-
+ gi/pygi-argument.c         |   96
+ ++++++++++++++++++++++++++-----------------
+ gi/pygi-boxed.c            |    1 +
+ gi/pygi-info.c                     |   13 +++---
+ gi/pygi-private.h          |   23 +++++++++++
+ gi/pygi-repository.c       |    8 ++--
+ gi/pygi-struct.c           |    1 +
+ glib/pyglib-python-compat.h |   6 +++
  8 files changed, 103 insertions(+), 47 deletions(-)
 
 commit 6b902c66200c1684513a9ef31bdef3f2ff64e4fa
@@ -15333,7 +15242,7 @@ Date:   Fri Aug 20 09:28:57 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=627408
 
- glib/option.py | 4 ++--
+ glib/option.py |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit 3cefffecc1317b6ad77a5ed936bfb990d16bf9d3
@@ -15347,7 +15256,7 @@ Date:   Thu Aug 19 18:45:05 2010 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=627440
 
- glib/pyglib-python-compat.h | 2 ++
+ glib/pyglib-python-compat.h |   2 ++
  1 file changed, 2 insertions(+)
 
 commit d45c7031876f355e15409f00f3e50e77d18f8f4b
@@ -15356,7 +15265,7 @@ Date:   Thu Aug 19 17:50:35 2010 -0400
 
     pyglib: Fix a compiler warning
 
- glib/pyglib.c | 1 +
+ glib/pyglib.c |    1 +
  1 file changed, 1 insertion(+)
 
 commit 0fe6828ddce187ac1897a1f02ca1c5480796d5b9
@@ -15365,7 +15274,7 @@ Date:   Wed Aug 18 20:36:51 2010 +0200
 
     Don't force gtk 2.0
 
- pygi-convert.sh | 11 +++++++----
+ pygi-convert.sh |   11 +++++++----
  1 file changed, 7 insertions(+), 4 deletions(-)
 
 commit ac59c18a4f2bfff47c862b763aaf1d1cf136a4f5
@@ -15376,7 +15285,7 @@ Date:   Tue Aug 17 14:49:30 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=627143
 
- gi/gimodule.c | 9 +++++++--
+ gi/gimodule.c |    9 +++++++--
  1 file changed, 7 insertions(+), 2 deletions(-)
 
 commit 18ee0db673c2fa42244ab85950bbf4840edb674b
@@ -15385,8 +15294,8 @@ Date:   Thu Aug 12 12:16:31 2010 -0400
 
     handle strings correctly in gio
 
- gio/gappinfo.override |  5 +++++
- gio/pygio-utils.c     | 42 +++++++++++++++++++++++++++++++++++-------
+ gio/gappinfo.override |    5 +++++
+ gio/pygio-utils.c     |   42 +++++++++++++++++++++++++++++++++++-------
  2 files changed, 40 insertions(+), 7 deletions(-)
 
 commit 45ab0c03110c911b47519941dfd753326891b5e0
@@ -15397,8 +15306,8 @@ Date:   Wed Aug 11 16:13:59 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=615872
 
- gio/giomodule.c | 153
- +++++++++++++++++++++++++++++---------------------------
+ gio/giomodule.c |  153
+ ++++++++++++++++++++++++++++---------------------------
  1 file changed, 78 insertions(+), 75 deletions(-)
 
 commit c52f8ed3ae8cb66a03b5695e980770c3f467f755
@@ -15410,7 +15319,7 @@ Date:   Wed Aug 11 16:04:48 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=615872
 
- gi/pygi-argument.c | 31 +++++++++++++++++++++++++++----
+ gi/pygi-argument.c |  31 +++++++++++++++++++++++++++----
  1 file changed, 27 insertions(+), 4 deletions(-)
 
 commit de9eae4dfcce856a42cc5c569a5b9683c28d0eeb
@@ -15421,7 +15330,7 @@ Date:   Wed Aug 11 15:03:55 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=615872
 
- glib/pygiochannel.c | 30 ++++++++++++++++++++++++------
+ glib/pygiochannel.c |  30 ++++++++++++++++++++++++------
  1 file changed, 24 insertions(+), 6 deletions(-)
 
 commit 5824ff98175b749dbcfa72d24b994230b6e05377
@@ -15439,25 +15348,25 @@ Date: Mon Aug 9 15:16:51 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=615872
 
- glib/glibmodule.c          |  48 +++++-----
- glib/pygiochannel.c        |  46 +++++-----
- glib/pyglib-python-compat.h | 153 +++++++++++++++++++++++--------
- glib/pyglib.c              |  22 ++---
- glib/pyglib.h              |  14 ---
- glib/pygoptioncontext.c     |  4 +-
- glib/pygsource.c           |  16 ++--
- glib/pygspawn.c            |  32 +++----
- gobject/gobjectmodule.c     | 216
- ++++++++++++++++++++++----------------------
- gobject/pygboxed.c         |   2 +-
- gobject/pygenum.c          |  84 ++++++++---------
- gobject/pygflags.c         | 122 ++++++++++++-------------
- gobject/pygobject-private.h | 12 +--
- gobject/pygobject.c        |  46 +++++-----
- gobject/pygobject.h        |  23 +++++
- gobject/pygparamspec.c      | 24 ++---
- gobject/pygpointer.c       |   2 +-
- gobject/pygtype.c          | 170 +++++++++++++++++-----------------
+ glib/glibmodule.c          |   48 +++++-----
+ glib/pygiochannel.c        |   46 ++++-----
+ glib/pyglib-python-compat.h | 153 ++++++++++++++++++++++--------
+ glib/pyglib.c              |   22 ++---
+ glib/pyglib.h              |   14 ---
+ glib/pygoptioncontext.c     |   4 +-
+ glib/pygsource.c           |   16 ++--
+ glib/pygspawn.c            |   32 +++----
+ gobject/gobjectmodule.c     | 216
+ +++++++++++++++++++++----------------------
+ gobject/pygboxed.c         |    2 +-
+ gobject/pygenum.c          |   84 ++++++++---------
+ gobject/pygflags.c         |  122 ++++++++++++------------
+ gobject/pygobject-private.h |  12 +--
+ gobject/pygobject.c        |   46 ++++-----
+ gobject/pygobject.h        |   23 +++++
+ gobject/pygparamspec.c      |  24 ++---
+ gobject/pygpointer.c       |    2 +-
+ gobject/pygtype.c          |  170 +++++++++++++++++-----------------
  18 files changed, 563 insertions(+), 473 deletions(-)
 
 commit 231e934cc01d061e81bb60d35127a133cd0e1793
@@ -15468,7 +15377,7 @@ Date:   Mon Aug 16 10:14:04 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=622606
 
- tests/test_overrides.py | 10 ++++++++++
+ tests/test_overrides.py |   10 ++++++++++
  1 file changed, 10 insertions(+)
 
 commit f07cfde377e42686c6b80f56cac62338ee333e61
@@ -15479,7 +15388,7 @@ Date:   Mon Aug 16 10:08:38 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=622606
 
- gi/overrides/Gtk.py | 13 +++++++++++++
+ gi/overrides/Gtk.py |  13 +++++++++++++
  1 file changed, 13 insertions(+)
 
 commit 65a06a7216163c7e65b32c5b5f3388faa7fda5d6
@@ -15492,8 +15401,8 @@ Date:   Thu Aug 12 16:18:58 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=616732
 
- configure.ac  | 15 ++++++++++++---
- gi/Makefile.am | 20 ++++++++++++--------
+ configure.ac  |   15 ++++++++++++---
+ gi/Makefile.am |   20 ++++++++++++--------
  2 files changed, 24 insertions(+), 11 deletions(-)
 
 commit b83507263231d9bf47f6c8450583e3d03f0a3b5b
@@ -15504,7 +15413,7 @@ Date:   Mon Aug 16 09:55:35 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=626996
 
- gi/pygi.h | 1 +
+ gi/pygi.h |   1 +
  1 file changed, 1 insertion(+)
 
 commit 0dc3656070f496431829c6e8441ca17129c569f8
@@ -15515,19 +15424,19 @@ Date: Mon Aug 9 16:11:55 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=615872
 
- glib/pygiochannel.c    | 18 +++++++----
- glib/pyglib.c          | 85
- +++++++++++++++++++++++++++++++++++++++++++++++++
- glib/pyglib.h          |  3 ++
- glib/pygmaincontext.c  | 17 ++++++----
- glib/pygmainloop.c     | 17 ++++++----
- glib/pygoptioncontext.c | 18 +++++++----
- glib/pygoptiongroup.c  | 22 +++++++------
- gobject/pygboxed.c     | 18 +++++++----
- gobject/pygobject.c    | 44 ++++++++++++++++++-------
- gobject/pygparamspec.c  | 19 +++++++----
- gobject/pygpointer.c   | 17 ++++++----
- gobject/pygtype.c      | 26 +++++++++++----
+ glib/pygiochannel.c    |   18 ++++++----
+ glib/pyglib.c          |   85
+ +++++++++++++++++++++++++++++++++++++++++++++++
+ glib/pyglib.h          |    3 ++
+ glib/pygmaincontext.c  |   17 ++++++----
+ glib/pygmainloop.c     |   17 ++++++----
+ glib/pygoptioncontext.c |   18 ++++++----
+ glib/pygoptiongroup.c  |   22 ++++++------
+ gobject/pygboxed.c     |   18 ++++++----
+ gobject/pygobject.c    |   44 +++++++++++++++++-------
+ gobject/pygparamspec.c  |   19 +++++++----
+ gobject/pygpointer.c   |   17 ++++++----
+ gobject/pygtype.c      |   26 +++++++++++----
  12 files changed, 233 insertions(+), 71 deletions(-)
 
 commit b426e531dc53d4b50e572a2da19733479635e662
@@ -15541,8 +15450,8 @@ Date:   Thu Aug 12 18:09:33 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=625661
 
- autogen.sh | 506
- +++++++------------------------------------------------------
+ autogen.sh |  506
+ +++++++-----------------------------------------------------
  1 file changed, 58 insertions(+), 448 deletions(-)
 
 commit 769645e00d6d055a4cd802454dbfc1bbfcbee691
@@ -15564,8 +15473,8 @@ Date:   Thu Aug 12 14:11:55 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=625437
 
- gio/gio.override | 2 +-
- glib/pyglib.c   | 4 ++--
+ gio/gio.override |    2 +-
+ glib/pyglib.c   |    4 ++--
  2 files changed, 3 insertions(+), 3 deletions(-)
 
 commit e4c4cccb588b258dbcd21702e6cddcfe9ebe4ffc
@@ -15583,7 +15492,7 @@ Date:   Thu Aug 12 11:09:37 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=626684
 
- gi/pygi-invoke.c | 9 ++++++++-
+ gi/pygi-invoke.c |    9 ++++++++-
  1 file changed, 8 insertions(+), 1 deletion(-)
 
 commit 0ab967ca40ddcffc2834d4e656bb2010c6b9bdda
@@ -15597,7 +15506,7 @@ Date:   Thu Aug 12 10:46:17 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=626684
 
- gi/pygi-invoke.c | 14 +++-----------
+ gi/pygi-invoke.c |   14 +++-----------
  1 file changed, 3 insertions(+), 11 deletions(-)
 
 commit e17be9cd288fee5d7cb174d9d577eb9279044c67
@@ -15606,7 +15515,7 @@ Date:   Tue Aug 10 17:40:16 2010 +0200
 
     Call valgrind with G_SLICE=always-malloc G_DEBUG=gc-friendly
 
- tests/Makefile.am | 2 +-
+ tests/Makefile.am |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 8be59c37dd57acc51875c7189ca09d728b729013
@@ -15615,9 +15524,9 @@ Date:   Wed Aug 4 13:43:17 2010 +0200
 
     Fix some warnings.
 
- gi/pygi-argument.c | 2 --
- gi/pygi-invoke.c   | 2 +-
- gi/pygi-struct.c   | 1 -
+ gi/pygi-argument.c |   2 --
+ gi/pygi-invoke.c   |   2 +-
+ gi/pygi-struct.c   |   1 -
  3 files changed, 1 insertion(+), 4 deletions(-)
 
 commit 529eca6054e9a7e2267f1529e317c2373932762f
@@ -15626,7 +15535,7 @@ Date:   Fri Jul 30 22:39:40 2010 +0200
 
     Add myself as a maintainer
 
- MAINTAINERS | 4 ++++
+ MAINTAINERS |   4 ++++
  1 file changed, 4 insertions(+)
 
 commit caac75a6ed6f671b37e38a78e71b87906a00ac1b
@@ -15642,11 +15551,11 @@ Date: Fri Jul 30 14:14:16 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=625653
 
- gi/pygi-boxed.c        | 50
- ++++++++++++++++++++++++++++++++-----------------
- gi/pygi-boxed.h        | 10 ++++++----
- gi/pygi-invoke.c       | 16 ++++++----------
- tests/test_overrides.py | 39 +++++++++++++++++++-------------------
+ gi/pygi-boxed.c        |   50
+ +++++++++++++++++++++++++++++++----------------
+ gi/pygi-boxed.h        |   10 ++++++----
+ gi/pygi-invoke.c       |   16 ++++++---------
+ tests/test_overrides.py |   39 ++++++++++++++++++------------------
  4 files changed, 64 insertions(+), 51 deletions(-)
 
 commit 99c7322898c00a576c7319ea0a7c808446253133
@@ -15657,10 +15566,10 @@ Date: Fri Jul 30 15:44:21 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=620593
 
- gi/overrides/Gdk.py    | 48
- ++++++++++++++++++++++++++++++++++++++++++++++++
- gi/pygi-invoke.c       |  4 ----
- tests/test_overrides.py | 10 ++++++++++
+ gi/overrides/Gdk.py    |   48
+ +++++++++++++++++++++++++++++++++++++++++++++++
+ gi/pygi-invoke.c       |    4 ----
+ tests/test_overrides.py |   10 ++++++++++
  3 files changed, 58 insertions(+), 4 deletions(-)
 
 commit 55814e722c2ae11310f346790c9221e4fad92b50
@@ -15671,7 +15580,7 @@ Date:   Fri Jul 30 06:30:48 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=625438
 
- gio/gio.override | 5 +++++
+ gio/gio.override |    5 +++++
  1 file changed, 5 insertions(+)
 
 commit 477315465d0a6d84b51e146e86e254873bc564ff
@@ -15686,7 +15595,7 @@ Date:   Fri Jul 30 06:43:06 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=625438
 
- gio/gfile.override | 8 ++++----
+ gio/gfile.override |   8 ++++----
  1 file changed, 4 insertions(+), 4 deletions(-)
 
 commit faa7d4eece7ddb698725098970c2478a3b45c4d5
@@ -15702,8 +15611,8 @@ Date:   Fri Jul 30 10:56:01 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=625638
 
- demos/gtk-demo/gtk-demo.py | 2 ++
- examples/cairo-demo.py     | 2 ++
+ demos/gtk-demo/gtk-demo.py |   2 ++
+ examples/cairo-demo.py     |   2 ++
  2 files changed, 4 insertions(+)
 
 commit c9da5782e6c633d9af43ee85075e9ee65db09780
@@ -15725,8 +15634,8 @@ Date:   Fri Jul 9 13:14:42 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=623969
 
- gi/pygi-argument.c | 13 +++++--------
- gi/pygi-invoke.c   | 46 ++++++++++++++++++++++++++++++++++++++++------
+ gi/pygi-argument.c |  13 +++++--------
+ gi/pygi-invoke.c   |  46 ++++++++++++++++++++++++++++++++++++++++------
  2 files changed, 45 insertions(+), 14 deletions(-)
 
 commit e0a85305cd107aae5902e524afd074cd8c329927
@@ -15740,7 +15649,7 @@ Date:   Fri Jul 30 10:35:33 2010 +0200
 
     This reverts commit e7bb3954880568884ca66e7751ede689dc2f24f6.
 
- gi/overrides/Gdk.py | 44 --------------------------------------------
+ gi/overrides/Gdk.py |  44 --------------------------------------------
  1 file changed, 44 deletions(-)
 
 commit 61ffb8d6d08fcfe638f71ea97ceac3a366e5536d
@@ -15753,7 +15662,7 @@ Date:   Thu Jul 29 22:55:28 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=625619
 
- examples/cairo-demo.py | 2 +-
+ examples/cairo-demo.py |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit e7bb3954880568884ca66e7751ede689dc2f24f6
@@ -15764,7 +15673,7 @@ Date:   Tue Jul 27 21:37:16 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=620593
 
- gi/overrides/Gdk.py | 44 ++++++++++++++++++++++++++++++++++++++++++++
+ gi/overrides/Gdk.py |  44 ++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 44 insertions(+)
 
 commit 0a9f1da052fd33dcef81d0e267fc7972f02c7888
@@ -15780,25 +15689,25 @@ Date: Wed Jul 28 14:56:00 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=625488
 
- Makefile.am               |  5 ----
- tests/Makefile.am         | 65
- +++++++++++++++++++++-------------------------
- tests/common.py           | 47 ---------------------------------
- tests/runtests.py         | 43 ++++++++++++------------------
- tests/test_gcancellable.py |  4 +--
- tests/test_gi.py          |  3 ---
- tests/test_gicon.py       |  3 ++-
- tests/test_gio.py         |  3 ++-
- tests/test_gobject.py     |  3 ++-
- tests/test_gresolver.py    |  4 +--
- tests/test_gsocket.py     |  4 ++-
- tests/test_interface.py    |  6 ++++-
- tests/test_mainloop.py     | 11 +++-----
- tests/test_signal.py      |  4 ++-
- tests/test_source.py      |  4 +--
- tests/test_subprocess.py   |  5 +---
- tests/test_thread.py      |  5 +++-
- tests/test_unknown.py     |  5 +++-
+ Makefile.am               |    5 ----
+ tests/Makefile.am         |   65
+ ++++++++++++++++++++------------------------
+ tests/common.py           |   47 --------------------------------
+ tests/runtests.py         |   43 +++++++++++------------------
+ tests/test_gcancellable.py |   4 +--
+ tests/test_gi.py          |    3 --
+ tests/test_gicon.py       |    3 +-
+ tests/test_gio.py         |    3 +-
+ tests/test_gobject.py     |    3 +-
+ tests/test_gresolver.py    |   4 +--
+ tests/test_gsocket.py     |    4 ++-
+ tests/test_interface.py    |   6 +++-
+ tests/test_mainloop.py     |  11 +++-----
+ tests/test_signal.py      |    4 ++-
+ tests/test_source.py      |    4 +--
+ tests/test_subprocess.py   |   5 +---
+ tests/test_thread.py      |    5 +++-
+ tests/test_unknown.py     |    5 +++-
  18 files changed, 82 insertions(+), 142 deletions(-)
 
 commit 82f4cb5ebf5d992493b7a2f74cfd5f175e19eb76
@@ -15807,7 +15716,7 @@ Date:   Thu Jul 29 12:34:19 2010 +0200
 
     Add some more transformations to pygi-convert.sh
 
- pygi-convert.sh | 37 +++++++++++++++++++++++++++++--------
+ pygi-convert.sh |   37 +++++++++++++++++++++++++++++--------
  1 file changed, 29 insertions(+), 8 deletions(-)
 
 commit de519adcd21947a0aef7932cdecb78cef200c85e
@@ -15816,8 +15725,8 @@ Date:   Wed Jul 28 14:42:36 2010 +0200
 
     Adapt to API changes: g_irepository_enumerate_versions
 
- gi/importer.py       |  2 +-
- gi/pygi-repository.c | 12 ++++++------
+ gi/importer.py       |    2 +-
+ gi/pygi-repository.c |   12 ++++++------
  2 files changed, 7 insertions(+), 7 deletions(-)
 
 commit 01cd9abb43f93f9a57a5a05b6dc9560614e666e3
@@ -15826,7 +15735,7 @@ Date:   Wed Jul 28 12:26:48 2010 +0200
 
     Add GValue<->GArgument marshalling for some more types
 
- gi/pygi-property.c | 37 ++++++++++++++++++++++++++++++++++++-
+ gi/pygi-property.c |  37 ++++++++++++++++++++++++++++++++++++-
  1 file changed, 36 insertions(+), 1 deletion(-)
 
 commit ddffa70c3ee0e837070f390632bc692430f79171
@@ -15836,7 +15745,7 @@ Date:   Wed Jul 28 11:10:42 2010 +0200
     Chain up with the non-introspection implementation for properties
     if needed
 
- gobject/pygobject.c | 7 ++++++-
+ gobject/pygobject.c |   7 ++++++-
  1 file changed, 6 insertions(+), 1 deletion(-)
 
 commit 045433a1f8167205dc8eae613dcb8835d02c8916
@@ -15846,7 +15755,7 @@ Date:   Wed Jul 28 10:59:49 2010 +0200
     Improve error reporting for missing attributes in introspection
     modules
 
- gi/module.py | 4 ++--
+ gi/module.py |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit 6655a79b2f13fe417aefdf6aebab0f2d6162ba00
@@ -15861,16 +15770,16 @@ Date: Tue Jul 27 21:52:49 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=620808
 
- gi/Makefile.am                  |   2 +
- gi/gimodule.c           |   2 +
- gi/pygi-argument.c      |   2 +
- gi/pygi-private.h       |   1 +
- gi/pygi-property.c      | 226
- +++++++++++++++++++++++++++++++++++++++++++++++
- gi/pygi-property.h      |  39 ++++++++
- gi/pygi.h               |  41 +++++++++
- gobject/pygobject.c     |   9 ++
- tests/test_everything.py |  19 ++++
+ gi/Makefile.am                  |    2 +
+ gi/gimodule.c           |    2 +
+ gi/pygi-argument.c      |    2 +
+ gi/pygi-private.h       |    1 +
+ gi/pygi-property.c      |  226
+ ++++++++++++++++++++++++++++++++++++++++++++++
+ gi/pygi-property.h      |   39 ++++++++
+ gi/pygi.h               |   41 +++++++++
+ gobject/pygobject.c     |    9 ++
+ tests/test_everything.py |   19 ++++
  9 files changed, 341 insertions(+)
 
 commit 85f4572b3ffbfa364ebb2e470eab759edc557b36
@@ -15879,7 +15788,7 @@ Date:   Tue Jul 27 21:32:41 2010 +0200
 
     Readd Gdk.Rectangle override for Gtk-2.0
 
- gi/overrides/Gdk.py | 19 +++++++++++++++++++
+ gi/overrides/Gdk.py |  19 +++++++++++++++++++
  1 file changed, 19 insertions(+)
 
 commit 2082ee35e2a33f52bf1e8ec49cb4a43398e91989
@@ -15894,14 +15803,14 @@ Date: Tue Jul 27 18:25:27 2010 +0200
     * gi/pygi-repository.c: Add wrappers for g_irepository_enumerate and
       g_irepository_get_version.
 
- gi/importer.py                            | 26 ++++++-----------
- gi/module.py                      | 58
- +++++++++++++++++++++++++-------------
- gi/overrides/GIMarshallingTests.py |  2 +-
- gi/overrides/Gdk.py               |  2 +-
- gi/overrides/Gtk.py               |  2 +-
- gi/pygi-repository.c              | 56
- +++++++++++++++++++++++++++++++++++-
+ gi/importer.py                            |   26 ++++++----------
+ gi/module.py                      |   58
+ +++++++++++++++++++++++-------------
+ gi/overrides/GIMarshallingTests.py |   2 +-
+ gi/overrides/Gdk.py               |    2 +-
+ gi/overrides/Gtk.py               |    2 +-
+ gi/pygi-repository.c              |   56
+ +++++++++++++++++++++++++++++++++-
  6 files changed, 105 insertions(+), 41 deletions(-)
 
 commit 6d7ed6c322234c240b1063a1dfaadd17157432a9
@@ -15913,7 +15822,7 @@ Date:   Tue Jul 13 20:27:28 2010 +1000
 
     https://bugzilla.gnome.org/show_bug.cgi?id=624232
 
- gi/pygi-callbacks.c | 3 ++-
+ gi/pygi-callbacks.c |   3 ++-
  1 file changed, 2 insertions(+), 1 deletion(-)
 
 commit 7e9cbd5601ad548b78d106bac1a1576d33b91c65
@@ -15926,7 +15835,7 @@ Date:   Mon Jul 26 17:00:23 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=625326
 
- tests/testhelpermodule.c | 2 +-
+ tests/testhelpermodule.c |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 5ca2a41f16f4a5fcc3ab4d00bec46b077c7eb384
@@ -15937,8 +15846,8 @@ Date:   Thu Jul 8 11:36:12 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=622584
 
- gi/pygi-argument.c | 23 +++++++++++++++++++++--
- tests/test_gi.py   |  6 ++++--
+ gi/pygi-argument.c |  23 +++++++++++++++++++++--
+ tests/test_gi.py   |   6 ++++--
  2 files changed, 25 insertions(+), 4 deletions(-)
 
 commit 890c3233f8a9f884b045a294bf0122bb3afcd54a
@@ -15949,7 +15858,7 @@ Date:   Sun Jul 25 17:30:40 2010 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=625095
 
- gi/pygi-callbacks.c | 3 ++-
+ gi/pygi-callbacks.c |   3 ++-
  1 file changed, 2 insertions(+), 1 deletion(-)
 
 commit 1162e436273ff8e9e4e24bd8ba74615fd4624753
@@ -15965,9 +15874,9 @@ Date:   Thu Jun 24 10:07:12 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=622605
 
- gi/pygi-argument.c      |  8 +-------
- tests/test_everything.py | 27 +++++++++++++++++++++++++++
- tests/test_overrides.py  |  6 ++----
+ gi/pygi-argument.c      |    8 +-------
+ tests/test_everything.py |   27 +++++++++++++++++++++++++++
+ tests/test_overrides.py  |    6 ++----
  3 files changed, 30 insertions(+), 11 deletions(-)
 
 commit 8becd32fc042445d62b885bac12dac326b2dc1fa
@@ -15976,7 +15885,7 @@ Date:   Mon Jul 26 11:54:47 2010 +0200
 
     Increase a bit verbosity of tests so people know which test failed
 
- tests/runtests.py | 2 +-
+ tests/runtests.py |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 3b3c63514f311592e6769a373d37a2bde7ea6b38
@@ -15985,9 +15894,9 @@ Date:   Thu Jul 15 15:17:53 2010 +0200
 
     Actually add the files for GVariant foreign structs
 
- gi/pygi-foreign-gvariant.c | 63
- ++++++++++++++++++++++++++++++++++++++++++++++
- gi/pygi-foreign-gvariant.h | 41 ++++++++++++++++++++++++++++++
+ gi/pygi-foreign-gvariant.c |  63
+ ++++++++++++++++++++++++++++++++++++++++++++
+ gi/pygi-foreign-gvariant.h |  41 ++++++++++++++++++++++++++++
  2 files changed, 104 insertions(+)
 
 commit e65275bc57f345c111eb12a6b4476ff1ddc3bc24
@@ -16005,16 +15914,16 @@ Date: Thu Jul 15 13:31:33 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=619501
 
- gi/Makefile.am                  |   2 +
- gi/pygi-argument.c      |   2 +-
- gi/pygi-foreign-cairo.c  |  16 +++----
- gi/pygi-foreign.c       | 107
- +++++++++++++++++++++++++++++------------------
- gi/pygi-foreign.h       |   7 ++--
- gi/pygi-invoke.c        |  18 ++++----
- gi/pygi-struct.c        |  10 ++++-
- gi/pygi.h               |   9 ++--
- tests/test_everything.py |   8 ++++
+ gi/Makefile.am                  |    2 +
+ gi/pygi-argument.c      |    2 +-
+ gi/pygi-foreign-cairo.c  |   16 +++----
+ gi/pygi-foreign.c       |  107
+ ++++++++++++++++++++++++++++------------------
+ gi/pygi-foreign.h       |    7 ++-
+ gi/pygi-invoke.c        |   18 ++++----
+ gi/pygi-struct.c        |   10 ++++-
+ gi/pygi.h               |    9 ++--
+ tests/test_everything.py |    8 ++++
  9 files changed, 110 insertions(+), 69 deletions(-)
 
 commit 3b3bd4da3fbc993fa7f7cfb46ed4e67671c94cc0
@@ -16023,7 +15932,7 @@ Date:   Mon Jul 12 11:19:06 2010 +0200
 
     Add HACKING to MANIFEST.in
 
- MANIFEST.in | 2 +-
+ MANIFEST.in |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 40bf08ff001b119c7daf709197005ef6480216c5
@@ -16032,7 +15941,7 @@ Date:   Mon Jul 12 11:18:04 2010 +0200
 
     Add HACKING file with instructions for releasing
 
- HACKING | 14 ++++++++++++++
+ HACKING |   14 ++++++++++++++
  1 file changed, 14 insertions(+)
 
 commit 3b9dffe7cc3820dfb84fd968fc604899601c5dc4
@@ -16041,7 +15950,7 @@ Date:   Mon Jul 12 11:09:58 2010 +0200
 
     Post release version bump to 2.21.6
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 42a5a0897b38156ae010c396ea254abf502f35de
@@ -16050,7 +15959,7 @@ Date:   Mon Jul 12 11:00:29 2010 +0200
 
     Update NEWS and release PyGObject-2.21.5
 
- NEWS | 17 +++++++++++++++++
+ NEWS |   17 +++++++++++++++++
  1 file changed, 17 insertions(+)
 
 commit 5857f25c1c6e25b79e6134558bd7151bc6c30ef7
@@ -16059,7 +15968,7 @@ Date:   Mon Jul 12 11:00:20 2010 +0200
 
     Pre-release version bump to 2.21.5
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit e500adc3ac19ef6f436809e5a8828ac7e8db28f6
@@ -16072,9 +15981,9 @@ Date:   Sat Jul 10 22:35:13 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=624066
 
- gi/pygi-callbacks.c | 1 -
- gi/pygi-closure.c   | 2 +-
- gi/pygi-invoke.c    | 1 -
+ gi/pygi-callbacks.c |   1 -
+ gi/pygi-closure.c   |   2 +-
+ gi/pygi-invoke.c    |   1 -
  3 files changed, 1 insertion(+), 3 deletions(-)
 
 commit 2efa18afbcc2fac1c90958535b2f80e6e730ee56
@@ -16095,13 +16004,13 @@ Date: Mon Jul 12 10:31:42 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=624065
 
- configure.ac      |   2 +-
- gi/importer.py     |  7 +--
- gi/pygi-argument.c | 146
- -----------------------------------------------------
- gi/pygi-closure.c  |  10 ----
- gi/pygi-info.c     |  37 --------------
- tests/test_gi.py   |  21 --------
+ configure.ac      |    2 +-
+ gi/importer.py     |   7 +--
+ gi/pygi-argument.c |  146
+ ----------------------------------------------------
+ gi/pygi-closure.c  |  10 ----
+ gi/pygi-info.c     |  37 -------------
+ tests/test_gi.py   |  21 --------
  6 files changed, 5 insertions(+), 218 deletions(-)
 
 commit 27a417c71f8c122e46c7472663bb25c17413f103
@@ -16111,18 +16020,18 @@ Date: Thu Jul 8 16:01:25 2010 -0400
     pass in the demo app so demos can use utility methods like requesting
     file paths
 
- demos/gtk-demo/demos/Entry/entry_buffer.py    |  2 +-
- demos/gtk-demo/demos/Entry/entry_completion.py |  2 +-
- demos/gtk-demo/demos/appwindow.py             | 13 +++++++++++--
- demos/gtk-demo/demos/assistant.py             |  2 +-
- demos/gtk-demo/demos/builder.py               | 14 ++++++++++----
- demos/gtk-demo/demos/button_box.py            |  2 +-
- demos/gtk-demo/demos/clipboard.py             |  8 +-------
- demos/gtk-demo/demos/colorselector.py         |  2 +-
- demos/gtk-demo/demos/combobox.py              |  8 +++++---
- demos/gtk-demo/demos/drawingarea.py           |  2 +-
- demos/gtk-demo/demos/test.py                  |  2 +-
- demos/gtk-demo/gtk-demo.py                    |  6 +++---
+ demos/gtk-demo/demos/Entry/entry_buffer.py    |    2 +-
+ demos/gtk-demo/demos/Entry/entry_completion.py |    2 +-
+ demos/gtk-demo/demos/appwindow.py             |   13 +++++++++++--
+ demos/gtk-demo/demos/assistant.py             |    2 +-
+ demos/gtk-demo/demos/builder.py               |   14 ++++++++++----
+ demos/gtk-demo/demos/button_box.py            |    2 +-
+ demos/gtk-demo/demos/clipboard.py             |    8 +-------
+ demos/gtk-demo/demos/colorselector.py         |    2 +-
+ demos/gtk-demo/demos/combobox.py              |    8 +++++---
+ demos/gtk-demo/demos/drawingarea.py           |    2 +-
+ demos/gtk-demo/demos/test.py                  |    2 +-
+ demos/gtk-demo/gtk-demo.py                    |    6 +++---
  12 files changed, 37 insertions(+), 26 deletions(-)
 
 commit e7daae919c2c6ae35d3927f0006252aacd49ea86
@@ -16135,9 +16044,9 @@ Date:   Thu Jul 8 15:38:07 2010 -0400
     * fix some flag handling
     * use get_indicies_with_depth instead of get_indices for paths
 
- demos/gtk-demo/demos/appwindow.py | 10 +++++++---
- demos/gtk-demo/demos/combobox.py  | 24 ++++++++++++------------
- demos/gtk-demo/gtk-demo.py       | 13 +++++--------
+ demos/gtk-demo/demos/appwindow.py |   10 +++++++---
+ demos/gtk-demo/demos/combobox.py  |   24 ++++++++++++------------
+ demos/gtk-demo/gtk-demo.py       |   13 +++++--------
  3 files changed, 24 insertions(+), 23 deletions(-)
 
 commit 3d9fd6391710cc33058394d6821e4d4e11f09b22
@@ -16146,7 +16055,7 @@ Date:   Thu Jul 8 12:54:43 2010 -0400
 
     override test fixes for new GTK+ annotations
 
- tests/test_overrides.py | 23 +++++++++++++----------
+ tests/test_overrides.py |   23 +++++++++++++----------
  1 file changed, 13 insertions(+), 10 deletions(-)
 
 commit 7a400f8139b70ddfe7c949035e0851689951c647
@@ -16155,7 +16064,7 @@ Date:   Thu Jul 8 12:42:25 2010 +0200
 
     Fix warning.
 
- gi/pygi-argument.c | 4 ++--
+ gi/pygi-argument.c |   4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit 39fd0a85a3de06b1b877d1125f91036409886373
@@ -16169,8 +16078,8 @@ Date:   Wed Jul 7 15:48:36 2010 -0400
       handle the case where the parameter is followed by a regular
       in parameter
 
- gi/overrides/Gtk.py    |  7 +++----
- tests/test_overrides.py | 21 +++++++++++----------
+ gi/overrides/Gtk.py    |    7 +++----
+ tests/test_overrides.py |   21 +++++++++++----------
  2 files changed, 14 insertions(+), 14 deletions(-)
 
 commit 4d970b75dc5c75c1bec04cb2954c9985b476070c
@@ -16179,8 +16088,8 @@ Date:   Tue Jul 6 17:50:10 2010 -0400
 
     add entry completion demo
 
- demos/gtk-demo/demos/Entry/entry_completion.py | 87
- ++++++++++++++++++++++++++
+ demos/gtk-demo/demos/Entry/entry_completion.py |   87
+ ++++++++++++++++++++++++
  1 file changed, 87 insertions(+)
 
 commit f3531eaa1bfa4e01651d35cd587384d30a398ba8
@@ -16189,7 +16098,7 @@ Date:   Tue Jul 6 17:49:18 2010 -0400
 
     string changes
 
- demos/gtk-demo/demos/Entry/entry_buffer.py | 4 ++--
+ demos/gtk-demo/demos/Entry/entry_buffer.py |   4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit baf1e9bb550c7bf45e2ac0b70ba29c434ef1ccc6
@@ -16198,8 +16107,8 @@ Date:   Tue Jul 6 17:27:04 2010 -0400
 
     add the Entry demo directory and the entry_buffer demo
 
- demos/gtk-demo/demos/Entry/entry_buffer.py | 73
- ++++++++++++++++++++++++++++++
+ demos/gtk-demo/demos/Entry/entry_buffer.py |  73
+ ++++++++++++++++++++++++++++
  1 file changed, 73 insertions(+)
 
 commit f2b1d222120f055bec9339cca55c9cc90f538c00
@@ -16208,7 +16117,7 @@ Date:   Tue Jul 6 17:26:03 2010 -0400
 
     fix loading of demo modules to support sub modules
 
- demos/gtk-demo/gtk-demo.py | 9 +++++++--
+ demos/gtk-demo/gtk-demo.py |   9 +++++++--
  1 file changed, 7 insertions(+), 2 deletions(-)
 
 commit 4f9390fb1892b13ab2ea00ed66c5000a40f09029
@@ -16217,8 +16126,8 @@ Date:   Tue Jul 6 15:56:34 2010 -0400
 
     add the ability to have demos in sub catagories
 
- demos/gtk-demo/gtk-demo.py | 76
- ++++++++++++++++++++++++++++++++--------------
+ demos/gtk-demo/gtk-demo.py |  76
+ +++++++++++++++++++++++++++++++-------------
  1 file changed, 54 insertions(+), 22 deletions(-)
 
 commit dc2249a3ecf339008351316217191d0551ccc588
@@ -16229,7 +16138,7 @@ Date:   Mon Jul 5 14:36:59 2010 -0400
 
     Fixes bug #623486.
 
- gi/module.py | 1 +
+ gi/module.py |    1 +
  1 file changed, 1 insertion(+)
 
 commit 2357bca8d14539894b6bd0acfdc18d30b4bb4db6
@@ -16242,7 +16151,7 @@ Date:   Mon Jul 5 16:11:07 2010 +0200
     to override
     it anymore.
 
- gi/overrides/Gdk.py | 19 -------------------
+ gi/overrides/Gdk.py |  19 -------------------
  1 file changed, 19 deletions(-)
 
 commit daca09dc2c2306d4fa82a68bbdd147d4b170a1e7
@@ -16253,8 +16162,8 @@ Date:   Tue Jun 29 16:37:36 2010 +0100
 
     Closes: bgo#622882
 
- gi/overrides/Gtk.py    | 11 +++++++++--
- tests/test_overrides.py |  5 +++++
+ gi/overrides/Gtk.py    |   11 +++++++++--
+ tests/test_overrides.py |    5 +++++
  2 files changed, 14 insertions(+), 2 deletions(-)
 
 commit bb8adb7f02f0c5494df2cb6e535e44d23902e8f5
@@ -16263,7 +16172,7 @@ Date:   Tue Jun 29 11:27:13 2010 +0200
 
     Update NEWS and release PyGObject-2.21.4
 
- NEWS | 27 +++++++++++++++++++++++++--
+ NEWS |   27 +++++++++++++++++++++++++--
  1 file changed, 25 insertions(+), 2 deletions(-)
 
 commit 2d473ee17be4671244bb4a2a0953a21ccf2a0df6
@@ -16272,8 +16181,8 @@ Date:   Tue Jun 29 10:55:03 2010 +0200
 
     Remove files from the makefiles
 
- gi/Makefile.am      | 4 +---
- gobject/Makefile.am | 3 +--
+ gi/Makefile.am      |   4 +---
+ gobject/Makefile.am |   3 +--
  2 files changed, 2 insertions(+), 5 deletions(-)
 
 commit 89827314fd183eac07443c8e9d275ca9d4ce59df
@@ -16285,16 +16194,16 @@ Date: Tue Jun 29 10:27:39 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=623021
 
- configure.ac           |   2 +
- gi/Makefile.am                 |  38 ++++++++++-----
- gi/gimodule.c          |   8 +---
- gi/pygi-argument.c     |  10 +---
- gi/pygi-foreign-cairo.c |  56 ++++++++++++++++------
- gi/pygi-foreign-cairo.h |  55 ---------------------
- gi/pygi-foreign.c      | 125
- ++++++++++++++++++++++++++++--------------------
- gi/pygi-foreign.h      |  31 ++++++------
- gi/pygi.h              |  40 ++++++++++++++--
+ configure.ac           |    2 +
+ gi/Makefile.am                 |   38 +++++++++-----
+ gi/gimodule.c          |    8 +--
+ gi/pygi-argument.c     |   10 +---
+ gi/pygi-foreign-cairo.c |   56 +++++++++++++++------
+ gi/pygi-foreign-cairo.h |   55 ---------------------
+ gi/pygi-foreign.c      |  125
+ ++++++++++++++++++++++++++++-------------------
+ gi/pygi-foreign.h      |   31 ++++++------
+ gi/pygi.h              |   40 +++++++++++++--
  9 files changed, 196 insertions(+), 169 deletions(-)
 
 commit a6a90551311bc64f037cbd442e13f70c30060871
@@ -16305,18 +16214,18 @@ Date: Mon Jun 28 14:20:43 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=623021
 
- gi/gimodule.c          |  8 +++---
- gi/pygi-type.c                 |  4 +--
- gi/pygi-type.h                 |  2 +-
- gi/pygi.h              | 54 ++++++++++++++++-----------------------
- gobject/Makefile.am    |  6 +++++
- gobject/pygboxed.c     |  2 +-
- gobject/pygenum.c      |  2 +-
- gobject/pygflags.c     |  2 +-
- gobject/pygi-external.h | 67
- -------------------------------------------------
- gobject/pygobject.c    |  2 +-
- gobject/pygpointer.c   |  2 +-
+ gi/gimodule.c          |    8 +++---
+ gi/pygi-type.c                 |    4 +--
+ gi/pygi-type.h                 |    2 +-
+ gi/pygi.h              |   54 ++++++++++++++++----------------------
+ gobject/Makefile.am    |    6 +++++
+ gobject/pygboxed.c     |    2 +-
+ gobject/pygenum.c      |    2 +-
+ gobject/pygflags.c     |    2 +-
+ gobject/pygi-external.h |   67
+ -----------------------------------------------
+ gobject/pygobject.c    |    2 +-
+ gobject/pygpointer.c   |    2 +-
  11 files changed, 40 insertions(+), 111 deletions(-)
 
 commit 8b3a3baacb45cb3f9112f7597607602fa89c6634
@@ -16332,8 +16241,8 @@ Date:   Fri Jun 25 13:54:57 2010 +0200
        gi/gimodule.c
        tests/test_everything.py
 
- gi/gimodule.c           | 13 -------------
- tests/test_everything.py |  3 ++-
+ gi/gimodule.c           |   13 -------------
+ tests/test_everything.py |    3 ++-
  2 files changed, 2 insertions(+), 14 deletions(-)
 
 commit 0f2a09d7eae63abb71723b7cd8fb290dcba33426
@@ -16345,9 +16254,9 @@ Date:   Fri Jun 25 13:49:04 2010 +0200
     * gi/pygi-argument.c, gi/pygi-info.c: Zero two GArgument instances.
     * gi/pygi-invoke.c: workaround bgo#622711 and zero invocation_state.
 
- gi/pygi-argument.c | 1 +
- gi/pygi-info.c     | 2 ++
- gi/pygi-invoke.c   | 8 ++++++--
+ gi/pygi-argument.c |   1 +
+ gi/pygi-info.c     |   2 ++
+ gi/pygi-invoke.c   |   8 ++++++--
  3 files changed, 9 insertions(+), 2 deletions(-)
 
 commit 63afe55906c8637e913783e65b82b540b81bed65
@@ -16356,8 +16265,8 @@ Date:   Thu Jun 24 16:13:37 2010 -0400
 
     add drawing area demo
 
- demos/gtk-demo/demos/drawingarea.py | 249
- ++++++++++++++++++++++++++++++++++++
+ demos/gtk-demo/demos/drawingarea.py | 249
+ +++++++++++++++++++++++++++++++++++
  1 file changed, 249 insertions(+)
 
 commit 8bba5f842393a284367cdd15f3d32a8c7745516a
@@ -16366,7 +16275,7 @@ Date:   Thu Jun 24 14:11:00 2010 -0400
 
     sort the demo list
 
- demos/gtk-demo/gtk-demo.py | 2 ++
+ demos/gtk-demo/gtk-demo.py |   2 ++
  1 file changed, 2 insertions(+)
 
 commit b9da82742701ed276b01dee39626cd71cbef8556
@@ -16375,7 +16284,7 @@ Date:   Thu Jun 24 13:56:18 2010 -0400
 
     rename iter to treeiter so we aren't using a python reserved word
 
- demos/gtk-demo/gtk-demo.py | 12 ++++++------
+ demos/gtk-demo/gtk-demo.py |  12 ++++++------
  1 file changed, 6 insertions(+), 6 deletions(-)
 
 commit c93935621f2fb1ff5e8c424ae884bd684ea68e50
@@ -16387,7 +16296,7 @@ Date:   Thu Jun 24 13:47:54 2010 -0400
     * Part of buffer API dealing with TextIter now marked (out
     caller-allocates)
 
- demos/gtk-demo/gtk-demo.py | 10 ++++------
+ demos/gtk-demo/gtk-demo.py |  10 ++++------
  1 file changed, 4 insertions(+), 6 deletions(-)
 
 commit 8d9516a593a515290109401a9db7aa259b5aa35c
@@ -16411,9 +16320,9 @@ Date:   Wed Jun 23 17:04:33 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=620405
 
- gi/overrides/Gtk.py    | 59 ++++++++++++++++++++++++++++++++++++++++++
- tests/test_overrides.py | 69
- +++++++++++++++++++++++++++++++++++++++++++++++++
+ gi/overrides/Gtk.py    |   59 ++++++++++++++++++++++++++++++++++++++++
+ tests/test_overrides.py |   69
+ +++++++++++++++++++++++++++++++++++++++++++++++
  2 files changed, 128 insertions(+)
 
 commit c305fbeb7bdb44623d5198f4a8f0a374d529fdf4
@@ -16425,7 +16334,7 @@ Date:   Wed Jun 23 14:34:28 2010 -0300
     Since we're no longer pulling in pygobject cflags,
     add this to be able to include pygobject.h
 
- gi/Makefile.am | 3 +++
+ gi/Makefile.am |    3 +++
  1 file changed, 3 insertions(+)
 
 commit 53a093198851e3ba5abd1f6c3314737decd401d8
@@ -16434,7 +16343,7 @@ Date:   Wed Jun 23 18:09:19 2010 +0200
 
     Add unit test for add_actions user data.
 
- tests/test_overrides.py | 20 +++++++++++++++-----
+ tests/test_overrides.py |   20 +++++++++++++++-----
  1 file changed, 15 insertions(+), 5 deletions(-)
 
 commit 7f829af620cba768de619dd9f228d5d2ebf7fee4
@@ -16443,7 +16352,7 @@ Date:   Wed Jun 23 18:06:46 2010 +0200
 
     Pass user_data param when adding actions
 
- gi/overrides/Gtk.py | 12 ++++++------
+ gi/overrides/Gtk.py |  12 ++++++------
  1 file changed, 6 insertions(+), 6 deletions(-)
 
 commit 8f537ccd62f41ebe0db3853e2ae08080666f598f
@@ -16454,7 +16363,7 @@ Date:   Wed Jun 23 12:02:04 2010 -0400
 
     * we should always specify what exception types we are expecting
 
- gi/overrides/Gtk.py | 6 +++---
+ gi/overrides/Gtk.py |   6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)
 
 commit f140a8ebf59347162b67b550bd6f62d2eafad29a
@@ -16468,7 +16377,7 @@ Date:   Wed Jun 23 12:31:51 2010 -0300
 
     https://bugzilla.gnome.org/show_bug.cgi?id=622503
 
- configure.ac | 9 +++++----
+ configure.ac |    9 +++++----
  1 file changed, 5 insertions(+), 4 deletions(-)
 
 commit e8bd25355fbe7de38a28b7a0583167a2c0ffc31f
@@ -16483,10 +16392,10 @@ Date: Tue Jun 22 15:03:08 2010 -0400
     * test the ability to send in both None and empty list for arrays
     and lists
 
- gi/pygi-argument.c      |  7 ++--
- tests/test_everything.py |  5 ++-
- tests/test_gi.py        | 84
- ++++++++++++++++++++++++------------------------
+ gi/pygi-argument.c      |    7 ++--
+ tests/test_everything.py |    5 ++-
+ tests/test_gi.py        |   84
+ +++++++++++++++++++++++-----------------------
  3 files changed, 49 insertions(+), 47 deletions(-)
 
 commit f312e6a49505eca07815146cfbdb0e48e5b3b8a8
@@ -16502,14 +16411,14 @@ Date: Wed Jun 23 15:42:29 2010 +0200
      * tests/common.py: Don't add the src dir to the python path
      * tests/runtests.py: Don't pass the src dir to common.py
 
- Makefile.am        |  4 +++-
- gi/Makefile.am      | 1 +
- gio/Makefile.am     | 1 +
- glib/Makefile.am    | 2 +-
- gobject/Makefile.am | 1 +
- tests/Makefile.am   | 17 ++---------------
- tests/common.py     | 3 +--
- tests/runtests.py   | 12 +++++-------
+ Makefile.am        |    4 +++-
+ gi/Makefile.am      |   1 +
+ gio/Makefile.am     |   1 +
+ glib/Makefile.am    |   2 +-
+ gobject/Makefile.am |   1 +
+ tests/Makefile.am   |  17 ++---------------
+ tests/common.py     |   3 +--
+ tests/runtests.py   |  12 +++++-------
  8 files changed, 15 insertions(+), 26 deletions(-)
 
 commit 5f82e7d2909cbbbecbf5dbee2342f516c0d1f371
@@ -16519,11 +16428,11 @@ Date: Wed Jun 23 13:59:14 2010 +0200
     Allow building pygobject without introspection support by providing
     --disable-introspection to configure.
 
- Makefile.am            |  6 +++++-
- configure.ac           | 15 ++++++++-------
- gobject/pygi-external.h |  4 ++--
- tests/Makefile.am      |  8 ++++++--
- tests/runtests.py      | 21 +++++++--------------
+ Makefile.am            |    6 +++++-
+ configure.ac           |   15 ++++++++-------
+ gobject/pygi-external.h |    4 ++--
+ tests/Makefile.am      |    8 ++++++--
+ tests/runtests.py      |   21 +++++++--------------
  5 files changed, 28 insertions(+), 26 deletions(-)
 
 commit cc3ea77318ee572673d2a044deca9001366b0f08
@@ -16535,7 +16444,7 @@ Date:   Wed Jun 23 12:26:51 2010 +0200
     Because Python's optparse will try to do things on it that can
     only be done with list.
 
- gi/overrides/Gtk.py | 2 +-
+ gi/overrides/Gtk.py |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 3d72b8248cc534a689dee5679a729b2fba56c528
@@ -16545,7 +16454,7 @@ Date:   Wed Jun 23 12:26:02 2010 +0200
     Force loading the GObject typelib so we have available the wrappers
     for base classes such as GInitiallyUnowned.
 
- gi/__init__.py | 3 +++
+ gi/__init__.py |    3 +++
  1 file changed, 3 insertions(+)
 
 commit c7c94ef349c30597f2f10d90f74718d678ec7add
@@ -16556,7 +16465,7 @@ Date:   Tue Jun 22 14:45:48 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=622425
 
- gi/pygi-info.c | 5 +++--
+ gi/pygi-info.c |    5 +++--
  1 file changed, 3 insertions(+), 2 deletions(-)
 
 commit fb1ee243493616d7a7e4f6924c574db39f5a423d
@@ -16572,7 +16481,7 @@ Date:   Tue Jun 22 15:39:46 2010 -0400
 
     remove unneeded TextIter creation in the tests
 
- tests/test_overrides.py | 3 ---
+ tests/test_overrides.py |    3 ---
  1 file changed, 3 deletions(-)
 
 commit 53c355d2cc0894e7f551e9b4eb719b89188a978e
@@ -16590,9 +16499,9 @@ Date:   Mon Jun 21 11:42:12 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=620583
 
- gi/overrides/Gtk.py    | 51
- +++++++++++++++++++++++++++++++++++++++++++++++++
- tests/test_overrides.py | 25 ++++++++++++++++++++++++
+ gi/overrides/Gtk.py    |   51
+ +++++++++++++++++++++++++++++++++++++++++++++++
+ tests/test_overrides.py |   25 +++++++++++++++++++++++
  2 files changed, 76 insertions(+)
 
 commit 1d89a88b212c7411ad28e74eda80ae751de92e50
@@ -16608,8 +16517,8 @@ Date:   Tue Jun 22 12:46:39 2010 -0400
     targets like
       make check.gdb work
 
- configure.ac     | 2 +-
- tests/Makefile.am | 2 +-
+ configure.ac     |    2 +-
+ tests/Makefile.am |   2 +-
  2 files changed, 2 insertions(+), 2 deletions(-)
 
 commit 4fe0d94c219deb69a2309693202309c53a0e5e69
@@ -16632,9 +16541,9 @@ Date:   Tue Jun 22 11:50:30 2010 -0400
       after each override.  This creates distinct blocks of changed text
       which will not conflict
 
- gi/overrides/GIMarshallingTests.py | 10 ++++------
- gi/overrides/Gdk.py               |  8 ++++----
- gi/overrides/Gtk.py               |  7 +++++--
+ gi/overrides/GIMarshallingTests.py |  10 ++++------
+ gi/overrides/Gdk.py               |    8 ++++----
+ gi/overrides/Gtk.py               |    7 +++++--
  3 files changed, 13 insertions(+), 12 deletions(-)
 
 commit 49321b934603e1ec69fb04082c63902970907d2b
@@ -16643,9 +16552,9 @@ Date:   Sun Jun 20 13:27:34 2010 +0200
 
     Override Dialog constructor and add_buttons method
 
- gi/overrides/Gtk.py    | 46
+ gi/overrides/Gtk.py    |   46
  +++++++++++++++++++++++++++++++++++++++++++++-
- tests/test_overrides.py | 16 ++++++++++++++++
+ tests/test_overrides.py |   16 ++++++++++++++++
  2 files changed, 61 insertions(+), 1 deletion(-)
 
 commit acf7b43a41ce814f0c57ce609a090826f04771db
@@ -16654,7 +16563,7 @@ Date:   Mon Jun 21 18:17:38 2010 +0200
 
     Post release version bump to 2.21.4
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit a7fa8b80406227a06cf18f8675dbc1f471283829
@@ -16663,7 +16572,7 @@ Date:   Mon Jun 21 18:10:32 2010 +0200
 
     Update NEWS and release PyGObject-2.21.3
 
- NEWS | 7 +++++++
+ NEWS |    7 +++++++
  1 file changed, 7 insertions(+)
 
 commit 79acac7b86ec52cd3681d94d7f116314c3f00167
@@ -16674,8 +16583,8 @@ Date:   Tue Jul 21 16:28:34 2009 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=589253
 
- codegen/codegen.py       |  2 ++
- codegen/reversewrapper.py | 18 +++++++++++++++---
+ codegen/codegen.py       |    2 ++
+ codegen/reversewrapper.py |   18 +++++++++++++++---
  2 files changed, 17 insertions(+), 3 deletions(-)
 
 commit 259a4b08f009aa01451caed20dbb6e68b402da2a
@@ -16684,7 +16593,7 @@ Date:   Mon Jun 21 17:34:54 2010 +0200
 
     Add *~ and *.orig to .gitignore
 
- .gitignore | 5 ++++-
+ .gitignore |   5 ++++-
  1 file changed, 4 insertions(+), 1 deletion(-)
 
 commit 00a85f6a844714d1715e2f67431747d1a4cdacb1
@@ -16702,15 +16611,15 @@ Date: Mon Jun 21 17:33:56 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=583909
 
- gobject/gobjectmodule.c  |   2 -
- gobject/pygobject.c     |  50 +++++++++++++---------
- gobject/pygobject.h     |   1 +
- tests/Makefile.am       |   2 +
- tests/test-floating.c   |  95 +++++++++++++++++++++++++++++++++++++++++
- tests/test-floating.h   |  60 ++++++++++++++++++++++++++
- tests/test_gobject.py   |  19 ++++++++-
- tests/testhelpermodule.c | 109
- +++++++++++++++++++++++++++++++++++++++++++++++
+ gobject/gobjectmodule.c  |    2 -
+ gobject/pygobject.c     |   50 ++++++++++++---------
+ gobject/pygobject.h     |    1 +
+ tests/Makefile.am       |    2 +
+ tests/test-floating.c   |   95 ++++++++++++++++++++++++++++++++++++++++
+ tests/test-floating.h   |   60 +++++++++++++++++++++++++
+ tests/test_gobject.py   |   19 +++++++-
+ tests/testhelpermodule.c |  109
+ ++++++++++++++++++++++++++++++++++++++++++++++
  8 files changed, 315 insertions(+), 23 deletions(-)
 
 commit e71238a699ae783fd1a59c8a76e3555d8066cf82
@@ -16721,9 +16630,9 @@ Date:   Mon Jun 21 13:06:13 2010 +0200
 
     This reverts commit 04627488220b4f2a16e11f8982af7866fea9f7eb.
 
- gobject/gobjectmodule.c |  3 ++-
- gobject/pygobject.c    | 42 ++++++++++++++++++++++++++++++++++--------
- gobject/pygobject.h    |  1 -
+ gobject/gobjectmodule.c |    3 ++-
+ gobject/pygobject.c    |   42 ++++++++++++++++++++++++++++++++++--------
+ gobject/pygobject.h    |    1 -
  3 files changed, 36 insertions(+), 10 deletions(-)
 
 commit b2661054d6bde673484eab472e69ca021124528d
@@ -16907,7 +16816,7 @@ Date:   Sun Jun 20 10:49:55 2010 -0300
 
     [giounix] Make it possible to compile on glib 2.20
 
- gio/unix.override | 2 ++
+ gio/unix.override |   2 ++
  1 file changed, 2 insertions(+)
 
 commit 606018a2c551d890fc2bb987d99683f777598bda
@@ -16927,8 +16836,8 @@ Date:   Mon Jun 7 16:32:29 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=620898
 
- gi/pygi-argument.c |  9 ++++++++-
- gi/pygi-invoke.c   | 11 +++++++++--
+ gi/pygi-argument.c |   9 ++++++++-
+ gi/pygi-invoke.c   |  11 +++++++++--
  2 files changed, 17 insertions(+), 3 deletions(-)
 
 commit 433ee2aa029a1482961f478252a06492bd3498e6
@@ -16942,7 +16851,7 @@ Date:   Tue Jun 15 11:42:28 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=530935
 
- gobject/pygobject.c | 11 ++++++++++-
+ gobject/pygobject.c |  11 ++++++++++-
  1 file changed, 10 insertions(+), 1 deletion(-)
 
 commit aa1e82c7eb87620bd73e1edb486f5b9e0d49aa96
@@ -16951,8 +16860,8 @@ Date:   Mon Jun 14 18:36:57 2010 -0400
 
     add combobox example
 
- demos/gtk-demo/demos/combobox.py | 282
- +++++++++++++++++++++++++++++++++++++++
+ demos/gtk-demo/demos/combobox.py |  282
+ ++++++++++++++++++++++++++++++++++++++
  1 file changed, 282 insertions(+)
 
 commit a8668694da59c2dd959c875f13337e64ca22f7e9
@@ -16961,7 +16870,7 @@ Date:   Mon Jun 14 13:43:53 2010 -0400
 
     fix leak in the allow None callbacks patch
 
- gi/pygi-callbacks.c | 4 ++--
+ gi/pygi-callbacks.c |   4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit 729072e73d65e7fd5b5197ebe5a8c53a449d0ec0
@@ -16983,9 +16892,9 @@ Date:   Mon Jun 7 17:12:09 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=620906
 
- gi/pygi-callbacks.c     |  7 +++++++
- gi/pygi-invoke.c        | 14 +++++++++++---
- tests/test_everything.py |  4 ++++
+ gi/pygi-callbacks.c     |    7 +++++++
+ gi/pygi-invoke.c        |   14 +++++++++++---
+ tests/test_everything.py |    4 ++++
  3 files changed, 22 insertions(+), 3 deletions(-)
 
 commit a3eb5c7de5836c37aa7ae01dbe98996ec2632c17
@@ -16994,7 +16903,7 @@ Date:   Mon Jun 14 19:06:45 2010 +0200
 
     Fix to match latest gtk annotations
 
- demos/gtk-demo/demos/appwindow.py | 3 +--
+ demos/gtk-demo/demos/appwindow.py |   3 +--
  1 file changed, 1 insertion(+), 2 deletions(-)
 
 commit 6306dd73cc74aa9202569eac0eaaa5f825c8dc59
@@ -17009,8 +16918,8 @@ Date:   Tue Jun 8 15:03:49 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=621007
 
- gi/overrides/Gdk.py    | 10 +++++-----
- tests/test_overrides.py |  6 +++---
+ gi/overrides/Gdk.py    |   10 +++++-----
+ tests/test_overrides.py |    6 +++---
  2 files changed, 8 insertions(+), 8 deletions(-)
 
 commit d182630e1128fef6f1c2aea28ccd8da4bddd2c8f
@@ -17019,7 +16928,7 @@ Date:   Thu Jun 10 20:23:13 2010 +0200
 
     Post release version bump to 2.21.3
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit c4e64d5d264593051b9a3131e4985a58e8e76f8b
@@ -17028,7 +16937,7 @@ Date:   Thu Jun 10 20:21:13 2010 +0200
 
     Update NEWS and release PyGObject-2.21.2
 
- NEWS | 26 ++++++++++++++++++++++++++
+ NEWS |   26 ++++++++++++++++++++++++++
  1 file changed, 26 insertions(+)
 
 commit e0fe844d5fe8f7e26316f197444fd4143ed36adf
@@ -17042,7 +16951,7 @@ Date:   Thu Jun 10 20:09:07 2010 +0200
           test_gtype.py
           test_subtype.py
 
- tests/Makefile.am | 4 ----
+ tests/Makefile.am |   4 ----
  1 file changed, 4 deletions(-)
 
 commit 495a301cb81c5e914bcef905999265604faa27fc
@@ -17051,7 +16960,7 @@ Date:   Thu Jun 10 19:39:09 2010 +0200
 
     Add myself to the maintainers list in the README
 
- README | 1 +
+ README |    1 +
  1 file changed, 1 insertion(+)
 
 commit 04627488220b4f2a16e11f8982af7866fea9f7eb
@@ -17072,9 +16981,9 @@ Date:   Thu Jun 10 19:24:31 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=583909
 
- gobject/gobjectmodule.c |  3 +--
- gobject/pygobject.c    | 42 ++++++++----------------------------------
- gobject/pygobject.h    |  1 +
+ gobject/gobjectmodule.c |    3 +--
+ gobject/pygobject.c    |   42 ++++++++----------------------------------
+ gobject/pygobject.h    |    1 +
  3 files changed, 10 insertions(+), 36 deletions(-)
 
 commit 07df124dc06cf506634e95d08397f50a2d07fce2
@@ -17094,8 +17003,8 @@ Date:   Mon Jun 7 09:47:23 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=620804
 
- gi/pygi-invoke.c        | 3 ++-
- tests/test_everything.py | 6 ++++++
+ gi/pygi-invoke.c        |    3 ++-
+ tests/test_everything.py |    6 ++++++
  2 files changed, 8 insertions(+), 1 deletion(-)
 
 commit b435319fe830a909cc4d414533b3b66574931e24
@@ -17110,7 +17019,7 @@ Date:   Mon Jun 7 09:54:06 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=620805
 
- pre-commit.hook | 2 +-
+ pre-commit.hook |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit e9ee2916494eb7654004925c1ee1e94f99b14f1a
@@ -17119,8 +17028,8 @@ Date:   Tue Jun 8 16:55:26 2010 -0400
 
     colorselector demo
 
- demos/gtk-demo/demos/colorselector.py | 121
- ++++++++++++++++++++++++++++++++++
+ demos/gtk-demo/demos/colorselector.py |  121
+ +++++++++++++++++++++++++++++++++
  1 file changed, 121 insertions(+)
 
 commit ec598128de9e90dccab662ed2f5511c8d659e156
@@ -17129,7 +17038,7 @@ Date:   Tue Jun 8 15:48:33 2010 +0200
 
     Update PyGObject dependency to 2.21.1
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 87774a17bd607724a56e18c2eb1ac71b04b7079d
@@ -17138,8 +17047,8 @@ Date:   Tue Jun 8 10:40:39 2010 +0200
 
     Add myself to maintainers
 
- MAINTAINERS   | 4 ++++
- pygobject.doap | 7 +++++++
+ MAINTAINERS   |    4 ++++
+ pygobject.doap |    7 +++++++
  2 files changed, 11 insertions(+)
 
 commit 46c91a11d448e5e11d142d3362aff1483226bca4
@@ -17155,7 +17064,7 @@ Date:   Wed May 5 13:54:27 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=617796
 
- gobject/pygi-external.h | 2 ++
+ gobject/pygi-external.h |    2 ++
  1 file changed, 2 insertions(+)
 
 commit c1c41576d053cc1cdd8366d8cd1e59fff1c3a9c6
@@ -17164,7 +17073,7 @@ Date:   Mon Jun 7 17:19:30 2010 -0400
 
     fix some typos and add a link to a patch which fixes a FIXME
 
- demos/gtk-demo/demos/clipboard.py | 7 +++++--
+ demos/gtk-demo/demos/clipboard.py |   7 +++++--
  1 file changed, 5 insertions(+), 2 deletions(-)
 
 commit e7fabb5024d94a3166766e5fca740741bc50380a
@@ -17173,8 +17082,8 @@ Date:   Mon Jun 7 16:21:42 2010 -0400
 
     clipboard demo
 
- demos/gtk-demo/demos/clipboard.py | 235
- ++++++++++++++++++++++++++++++++++++++
+ demos/gtk-demo/demos/clipboard.py |  235
+ +++++++++++++++++++++++++++++++++++++
  1 file changed, 235 insertions(+)
 
 commit e0f1dce5ec58d071759f886697501da6eeea549d
@@ -17183,7 +17092,7 @@ Date:   Sun Jun 6 13:27:46 2010 -0400
 
     set is_fully_bound to false
 
- demos/gtk-demo/demos/button_box.py | 2 +-
+ demos/gtk-demo/demos/button_box.py |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 986db1c73746d3a8ad7d8d5141c7eed194e7b948
@@ -17192,8 +17101,8 @@ Date:   Sat Jun 5 23:53:36 2010 -0400
 
     new button box demo
 
- demos/gtk-demo/demos/button_box.py | 121
- +++++++++++++++++++++++++++++++++++++
+ demos/gtk-demo/demos/button_box.py |  121
+ ++++++++++++++++++++++++++++++++++++
  1 file changed, 121 insertions(+)
 
 commit e9f5f8a829121e59367bae690442150f144946ad
@@ -17202,7 +17111,7 @@ Date:   Sat Jun 5 23:26:03 2010 -0400
 
     set is_fully_bound to True fro builder example
 
- demos/gtk-demo/demos/builder.py | 2 +-
+ demos/gtk-demo/demos/builder.py |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit d9968c3a4dea1d4a73a9376009cf486c80ea3da6
@@ -17211,9 +17120,9 @@ Date:   Sat Jun 5 23:24:36 2010 -0400
 
     fix up formatting in demos
 
- demos/gtk-demo/demos/appwindow.py | 16 ++++++++--------
- demos/gtk-demo/demos/assistant.py | 24 ++++++++++++------------
- demos/gtk-demo/demos/builder.py   |  2 +-
+ demos/gtk-demo/demos/appwindow.py |   16 ++++++++--------
+ demos/gtk-demo/demos/assistant.py |   24 ++++++++++++------------
+ demos/gtk-demo/demos/builder.py   |   2 +-
  3 files changed, 21 insertions(+), 21 deletions(-)
 
 commit ffca02536bafb55e8c3bce31cd992365207429f6
@@ -17222,8 +17131,8 @@ Date:   Sat Jun 5 14:54:47 2010 -0400
 
     add the builder demo
 
- demos/gtk-demo/demos/builder.py | 57
- +++++++++++++++++++++++++++++++++++++++++
+ demos/gtk-demo/demos/builder.py |   57
+ +++++++++++++++++++++++++++++++++++++++
  1 file changed, 57 insertions(+)
 
 commit a96dbafdf562a2ac6bde4df27919d3628689dbdb
@@ -17232,8 +17141,8 @@ Date:   Fri Jun 4 17:48:24 2010 -0400
 
     add assistant demo
 
- demos/gtk-demo/demos/assistant.py | 134
- ++++++++++++++++++++++++++++++++++++++
+ demos/gtk-demo/demos/assistant.py |  134
+ +++++++++++++++++++++++++++++++++++++
  1 file changed, 134 insertions(+)
 
 commit 7e1b8cf32f33d45603aaec76afb0d14be84ffd94
@@ -17242,7 +17151,7 @@ Date:   Fri Jun 4 16:56:46 2010 -0400
 
     add formatting rules and copyright notice
 
- demos/gtk-demo/demos/appwindow.py | 19 +++++++++++++++++++
+ demos/gtk-demo/demos/appwindow.py |   19 +++++++++++++++++++
  1 file changed, 19 insertions(+)
 
 commit 03b99692b81631d397ab62dcd263341465bcee88
@@ -17257,25 +17166,25 @@ Date: Fri Jun 4 16:26:54 2010 -0400
        - http://bugzilla-attachments.gnome.org/attachment.cgi?id=162682
        - http://bugzilla-attachments.gnome.org/attachment.cgi?id=162764
 
- demos/gtk-demo/demos/appwindow.py               | 393
- +++++++++++++++++++++++
- demos/gtk-demo/demos/data/alphatest.png         | Bin 0 -> 26529 bytes
- demos/gtk-demo/demos/data/apple-red.png         | Bin 0 -> 3545 bytes
- demos/gtk-demo/demos/data/background.jpg        | Bin 0 -> 22219 bytes
- demos/gtk-demo/demos/data/demo.ui               | 258 +++++++++++++++
- demos/gtk-demo/demos/data/floppybuddy.gif       | Bin 0 -> 5216 bytes
- demos/gtk-demo/demos/data/gnome-applets.png     | Bin 0 -> 3090 bytes
- demos/gtk-demo/demos/data/gnome-calendar.png    | Bin 0 -> 2755 bytes
- demos/gtk-demo/demos/data/gnome-foot.png        | Bin 0 -> 2916 bytes
- demos/gtk-demo/demos/data/gnome-fs-directory.png | Bin 0 -> 2044 bytes
- demos/gtk-demo/demos/data/gnome-fs-regular.png   | Bin 0 -> 1795 bytes
- demos/gtk-demo/demos/data/gnome-gimp.png        | Bin 0 -> 3410 bytes
- demos/gtk-demo/demos/data/gnome-gmush.png       | Bin 0 -> 3244 bytes
- demos/gtk-demo/demos/data/gnome-gsame.png       | Bin 0 -> 4263 bytes
- demos/gtk-demo/demos/data/gnu-keys.png                  | Bin 0 -> 3852 bytes
- demos/gtk-demo/demos/data/gtk-logo-rgb.gif      | Bin 0 -> 6427 bytes
- demos/gtk-demo/demos/test.py                    |  14 +
- demos/gtk-demo/gtk-demo.py                      | 266 +++++++++++++++
+ demos/gtk-demo/demos/appwindow.py               |  393
+ ++++++++++++++++++++++
+ demos/gtk-demo/demos/data/alphatest.png         |  Bin 0 -> 26529 bytes
+ demos/gtk-demo/demos/data/apple-red.png         |  Bin 0 -> 3545 bytes
+ demos/gtk-demo/demos/data/background.jpg        |  Bin 0 -> 22219 bytes
+ demos/gtk-demo/demos/data/demo.ui               |  258 ++++++++++++++
+ demos/gtk-demo/demos/data/floppybuddy.gif       |  Bin 0 -> 5216 bytes
+ demos/gtk-demo/demos/data/gnome-applets.png     |  Bin 0 -> 3090 bytes
+ demos/gtk-demo/demos/data/gnome-calendar.png    |  Bin 0 -> 2755 bytes
+ demos/gtk-demo/demos/data/gnome-foot.png        |  Bin 0 -> 2916 bytes
+ demos/gtk-demo/demos/data/gnome-fs-directory.png |  Bin 0 -> 2044 bytes
+ demos/gtk-demo/demos/data/gnome-fs-regular.png   |  Bin 0 -> 1795 bytes
+ demos/gtk-demo/demos/data/gnome-gimp.png        |  Bin 0 -> 3410 bytes
+ demos/gtk-demo/demos/data/gnome-gmush.png       |  Bin 0 -> 3244 bytes
+ demos/gtk-demo/demos/data/gnome-gsame.png       |  Bin 0 -> 4263 bytes
+ demos/gtk-demo/demos/data/gnu-keys.png                  |  Bin 0 -> 3852 bytes
+ demos/gtk-demo/demos/data/gtk-logo-rgb.gif      |  Bin 0 -> 6427 bytes
+ demos/gtk-demo/demos/test.py                    |   14 +
+ demos/gtk-demo/gtk-demo.py                      |  266 +++++++++++++++
  18 files changed, 931 insertions(+)
 
 commit b3b1f029d8d16cf9bd74160009808147d07e3b3f
@@ -17284,7 +17193,7 @@ Date:   Fri Jun 4 11:25:08 2010 +0200
 
     Update gobject-introspection dependency to 0.6.14
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 45c4e46ae93bd83a0e3f3550df6c64ce96bbedb4
@@ -17293,7 +17202,7 @@ Date:   Fri Jun 4 11:23:41 2010 +0200
 
     Post-release version bump to 0.6.1
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 7a94270dac48b67aabc7dbad156cf1180db9cb5e
@@ -17302,7 +17211,7 @@ Date:   Fri Jun 4 08:29:42 2010 +0200
 
     Pre-release version bump 0.6.0
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 1e42ee6eb25a07a5201f24ffeac18d298a98477e
@@ -17330,9 +17239,9 @@ Date:   Fri May 28 10:03:11 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=620406
 
- gi/pygi-invoke.c        | 73
- +++++++++++++++++++++++++++++++++++++++++++++---
- tests/test_everything.py | 28 +++++++++++++++++++
+ gi/pygi-invoke.c        |   73
+ +++++++++++++++++++++++++++++++++++++++++++---
+ tests/test_everything.py |   28 ++++++++++++++++++
  2 files changed, 97 insertions(+), 4 deletions(-)
 
 commit c3f467e0ae99aa78c2fdb91b973a272d2fe970bd
@@ -17343,7 +17252,7 @@ Date:   Wed Jun 2 14:14:16 2010 -0400
 
     * use from gi.repository import GObject
 
- tests/test_overrides.py | 5 ++---
+ tests/test_overrides.py |    5 ++---
  1 file changed, 2 insertions(+), 3 deletions(-)
 
 commit 46b5133fea4cd5db57a360b3cbe9ee923e27560c
@@ -17354,8 +17263,8 @@ Date:   Tue Jun 1 14:28:57 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=620247
 
- gi/pygi-info.c   | 11 +++++++++++
- tests/test_gi.py | 17 +++++++++++++++++
+ gi/pygi-info.c   |   11 +++++++++++
+ tests/test_gi.py |   17 +++++++++++++++++
  2 files changed, 28 insertions(+)
 
 commit 5f0f9a9c9145a129a063b041424c3109a24d9ead
@@ -17365,8 +17274,8 @@ Date:   Wed May 26 13:20:27 2010 +0200
     Install pre-commit hook that checks the code changes for style
     conformance
 
- autogen.sh     |  7 +++++++
- pre-commit.hook | 39 +++++++++++++++++++++++++++++++++++++++
+ autogen.sh     |    7 +++++++
+ pre-commit.hook |   39 +++++++++++++++++++++++++++++++++++++++
  2 files changed, 46 insertions(+)
 
 commit 1319da5b7f483e48a90b0b7489f77236ba26f479
@@ -17379,25 +17288,25 @@ Date: Wed May 26 12:19:17 2010 +0200
 
     This won't affect git blame nor git diff if the switch -w is used.
 
- gi/gimodule.c          | 138 +++----
- gi/pygi-argument.c     | 960
- ++++++++++++++++++++++++------------------------
- gi/pygi-boxed.c        | 108 +++---
- gi/pygi-callbacks.c    | 154 ++++----
- gi/pygi-callbacks.h    |   8 +-
- gi/pygi-closure.c      | 270 +++++++-------
- gi/pygi-closure.h      |  18 +-
- gi/pygi-foreign-cairo.c |  36 +-
- gi/pygi-foreign-cairo.h |  36 +-
- gi/pygi-foreign.c      |  54 +--
- gi/pygi-foreign.h      |  10 +-
- gi/pygi-info.c                 | 646 ++++++++++++++++----------------
- gi/pygi-invoke.c       | 380 +++++++++----------
- gi/pygi-repository.c   | 114 +++---
- gi/pygi-struct.c       |  88 ++---
- gi/pygi-type.c                 |  32 +-
- gi/pygi.h              |  20 +-
- gi/pygobject-external.h |  14 +-
+ gi/gimodule.c          |  138 +++----
+ gi/pygi-argument.c     |  960
+ +++++++++++++++++++++++------------------------
+ gi/pygi-boxed.c        |  108 +++---
+ gi/pygi-callbacks.c    |  154 ++++----
+ gi/pygi-callbacks.h    |    8 +-
+ gi/pygi-closure.c      |  270 ++++++-------
+ gi/pygi-closure.h      |   18 +-
+ gi/pygi-foreign-cairo.c |   36 +-
+ gi/pygi-foreign-cairo.h |   36 +-
+ gi/pygi-foreign.c      |   54 +--
+ gi/pygi-foreign.h      |   10 +-
+ gi/pygi-info.c                 |  646 +++++++++++++++----------------
+ gi/pygi-invoke.c       |  380 +++++++++----------
+ gi/pygi-repository.c   |  114 +++---
+ gi/pygi-struct.c       |   88 ++---
+ gi/pygi-type.c                 |   32 +-
+ gi/pygi.h              |   20 +-
+ gi/pygobject-external.h |   14 +-
  18 files changed, 1544 insertions(+), 1542 deletions(-)
 
 commit 6156f15cb15b4c20e975527227135d49207c520a
@@ -17408,8 +17317,8 @@ Date:   Tue May 25 14:08:51 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=619597
 
- gi/module.py    | 4 ++--
- tests/test_gi.py | 4 +++-
+ gi/module.py    |    4 ++--
+ tests/test_gi.py |    4 +++-
  2 files changed, 5 insertions(+), 3 deletions(-)
 
 commit 097b92983b7a322c58fecb1e691ba6ddf5035548
@@ -17424,7 +17333,7 @@ Date:   Tue May 25 14:17:13 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=619604
 
- gi/types.py | 15 +++++++++++----
+ gi/types.py |  15 +++++++++++----
  1 file changed, 11 insertions(+), 4 deletions(-)
 
 commit 686e10fcdb108af9758eb025a3447813c3513a93
@@ -17435,7 +17344,7 @@ Date:   Thu Apr 29 10:55:13 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=617153
 
- gi/types.py | 3 ++-
+ gi/types.py |   3 ++-
  1 file changed, 2 insertions(+), 1 deletion(-)
 
 commit 9f34d120845d936b04546a5cea599ec67e9181a7
@@ -17452,9 +17361,9 @@ Date:   Mon May 24 16:16:50 2010 -0400
     * add test that loads objects from strings and connects them to
     signals
 
- gi/overrides/Gtk.py    | 19 +++++++++++--
- tests/test_overrides.py | 72
- ++++++++++++++++++++++++++++++++++++++++++++++---
+ gi/overrides/Gtk.py    |   19 +++++++++++--
+ tests/test_overrides.py |   72
+ +++++++++++++++++++++++++++++++++++++++++++++--
  2 files changed, 86 insertions(+), 5 deletions(-)
 
 commit 1561d2977691f1cb8684f183a2e274c47960d931
@@ -17467,8 +17376,8 @@ Date:   Mon May 24 18:48:10 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=616849
 
- gi/gimodule.c   |  9 +++++++++
- tests/test_gi.py | 13 ++++++++++++-
+ gi/gimodule.c   |    9 +++++++++
+ tests/test_gi.py |   13 ++++++++++++-
  2 files changed, 21 insertions(+), 1 deletion(-)
 
 commit c9d44d4d46c3da3a445000b1db592baa9c378a92
@@ -17479,8 +17388,9 @@ Date:   Fri Apr 30 18:17:50 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=617054
 
- gi/pygi-invoke.c | 11 +++++++----
- tests/test_gi.py | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
+ gi/pygi-invoke.c |   11 +++++++----
+ tests/test_gi.py |   50
+ ++++++++++++++++++++++++++++++++++++++++++++++++++
  2 files changed, 57 insertions(+), 4 deletions(-)
 
 commit c171579ee22681e1ee4ad33441c89f1053bdc3d1
@@ -17489,7 +17399,7 @@ Date:   Mon May 24 11:48:16 2010 -0400
 
     check refcounting of callback userdata in unit tests
 
- tests/test_everything.py | 18 ++++++++++++++++++
+ tests/test_everything.py |   18 ++++++++++++++++++
  1 file changed, 18 insertions(+)
 
 commit 8eb809468fe3e1f8e4f92bd7f25d96f9cf802cd4
@@ -17505,9 +17415,9 @@ Date:   Sat May 22 15:12:37 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=617780
 
- gi/pygi-closure.c | 335
- +++++++++++++++++++++++++++++++++++++++++-------------
- tests/test_gi.py  |   4 +
+ gi/pygi-closure.c |  335
+ +++++++++++++++++++++++++++++++++++++++++------------
+ tests/test_gi.py  |   4 +
  2 files changed, 263 insertions(+), 76 deletions(-)
 
 commit 0df0c956bb2476392c9d81f0a243a7e84c067166
@@ -17526,8 +17436,8 @@ Date:   Sun May 23 10:59:27 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=617880
 
- gi/pygi-argument.c      | 5 +++++
- tests/test_everything.py | 6 ++++++
+ gi/pygi-argument.c      |    5 +++++
+ tests/test_everything.py |    6 ++++++
  2 files changed, 11 insertions(+)
 
 commit 60fdf4b8f738dd0f5c190bc18ddf010032d3c5ca
@@ -17546,8 +17456,8 @@ Date:   Sat May 22 14:06:37 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=619007
 
- gi/gimodule.c           | 12 ++++++++++++
- tests/test_everything.py |  3 +++
+ gi/gimodule.c           |   12 ++++++++++++
+ tests/test_everything.py |    3 +++
  2 files changed, 15 insertions(+)
 
 commit 4b369f8aca980fc6a582094d6648f40fe4af5e9f
@@ -17572,8 +17482,8 @@ Date:   Sat May 22 13:21:30 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=619232
 
- gi/pygi-argument.c      | 6 ------
- tests/test_everything.py | 4 ++--
+ gi/pygi-argument.c      |    6 ------
+ tests/test_everything.py |    4 ++--
  2 files changed, 2 insertions(+), 8 deletions(-)
 
 commit 71a2148b00dfdda99e0d961ae39b901608724e59
@@ -17587,7 +17497,7 @@ Date:   Fri May 21 19:05:03 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=619311
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit aa0357e468eb91e0f3707346e9b32f312fbf51d3
@@ -17598,7 +17508,7 @@ Date:   Thu Apr 29 13:06:15 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=617159
 
- gi/gimodule.c | 4 +++-
+ gi/gimodule.c |    4 +++-
  1 file changed, 3 insertions(+), 1 deletion(-)
 
 commit ab1aaff108d23aabd28c3634edfb67236eb55460
@@ -17639,8 +17549,8 @@ Date:   Sat May 22 13:09:48 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=619235
 
- gi/pygi-invoke.c        | 6 +++++-
- tests/test_everything.py | 4 ++--
+ gi/pygi-invoke.c        |    6 +++++-
+ tests/test_everything.py |    4 ++--
  2 files changed, 7 insertions(+), 3 deletions(-)
 
 commit e928ea9b1df9d87314ff8e93479530e26be9bd87
@@ -17656,7 +17566,7 @@ Date:   Fri May 14 14:57:27 2010 -0400
       API such as this doesn't need to be used anymore and is a result of
       early GTK development
 
- gi/pygi-argument.c | 14 +++++++++++---
+ gi/pygi-argument.c |  14 +++++++++++---
  1 file changed, 11 insertions(+), 3 deletions(-)
 
 commit d963007aab123f4e53a944a66a935db2d22907c2
@@ -17675,7 +17585,7 @@ Date:   Mon May 17 11:54:34 2010 -0400
       new modified argument list
     * fixes https://bugzilla.gnome.org/show_bug.cgi?id=618889
 
- gi/overrides/Gtk.py | 1 +
+ gi/overrides/Gtk.py |   1 +
  1 file changed, 1 insertion(+)
 
 commit 897420ed97cc4a7b8a806894df5e76ed72617614
@@ -17686,9 +17596,9 @@ Date:   Wed May 12 14:25:32 2010 -0400
 
     * fixes bug https://bugzilla.gnome.org/show_bug.cgi?id=618476
 
- gi/overrides/Gtk.py    | 167
- +++++++++++++++++++++++++++++++++++++++++++++++-
- tests/test_overrides.py |  45 +++++++++++++
+ gi/overrides/Gtk.py    |  167
+ ++++++++++++++++++++++++++++++++++++++++++++++-
+ tests/test_overrides.py |   45 +++++++++++++
  2 files changed, 211 insertions(+), 1 deletion(-)
 
 commit 865939d29c1e9d69dbe6b9cf89477b5516dbff1f
@@ -17697,7 +17607,7 @@ Date:   Thu May 13 01:02:24 2010 -0400
 
     Bump version for development to 0.5.2 (hopefully 0.6)
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 2674a9546b0246d4a75d71cf1708df77dc0173f9
@@ -17708,9 +17618,9 @@ Date:   Wed May 5 15:54:39 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=617757
 
- gi/overrides/Gdk.py    |  2 +-
- tests/Makefile.am      |  3 ++-
- tests/test_overrides.py | 22 ++++++++++++++++++++++
+ gi/overrides/Gdk.py    |    2 +-
+ tests/Makefile.am      |    3 ++-
+ tests/test_overrides.py |   22 ++++++++++++++++++++++
  3 files changed, 25 insertions(+), 2 deletions(-)
 
 commit c20b9f632a35bada1320ccc10fb7d5b2c06b9a88
@@ -17731,11 +17641,11 @@ Date: Thu Apr 29 14:55:33 2010 -0400
     * add DynamicGObjectModule tests and make tests use the new module
       - change import gobject to from gi.repository import GObject
 
- gi/importer.py                  |  6 ++--
- gi/module.py            | 30 ++++++++++++++++
- tests/test_everything.py |  6 ++--
- tests/test_gi.py        | 93
- ++++++++++++++++++++++++++----------------------
+ gi/importer.py                  |    6 +--
+ gi/module.py            |   30 +++++++++++++++
+ tests/test_everything.py |    6 +--
+ tests/test_gi.py        |   93
+ +++++++++++++++++++++++++---------------------
  4 files changed, 87 insertions(+), 48 deletions(-)
 
 commit 64324a4c629432b2e688299b6edbfd5da4439a2a
@@ -17744,7 +17654,7 @@ Date:   Fri Apr 30 14:11:55 2010 -0400
 
     override Gdk.Drawable to add cairo_create convinience method
 
- gi/overrides/Gdk.py | 7 ++++++-
+ gi/overrides/Gdk.py |   7 ++++++-
  1 file changed, 6 insertions(+), 1 deletion(-)
 
 commit 17fa1289b1e2ed841dd5de09a2ec7c25d401886e
@@ -17755,10 +17665,10 @@ Date: Mon May 3 19:13:46 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=617551
 
- gi/pygi-callbacks.c     |  3 ++-
- gi/pygi-callbacks.h     |  1 +
- gi/pygi-invoke.c        |  7 +++++--
- tests/test_everything.py | 21 +++++++++++++++++++++
+ gi/pygi-callbacks.c     |    3 ++-
+ gi/pygi-callbacks.h     |    1 +
+ gi/pygi-invoke.c        |    7 +++++--
+ tests/test_everything.py |   21 +++++++++++++++++++++
  4 files changed, 29 insertions(+), 3 deletions(-)
 
 commit f9fff978d56ddf2c012b906169ae16abb7fdc2a5
@@ -17767,7 +17677,7 @@ Date:   Wed May 5 08:06:03 2010 +0200
 
     Avoid freeing garbage
 
- gi/pygi-invoke.c | 6 ++++--
+ gi/pygi-invoke.c |    6 ++++--
  1 file changed, 4 insertions(+), 2 deletions(-)
 
 commit 5e20c018ae09a936f5ff140df5d1c133c98e98ba
@@ -17778,8 +17688,8 @@ Date:   Thu Apr 29 13:09:03 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=617160
 
- gi/types.py     | 10 +++++++++-
- tests/test_gi.py | 10 ++++++++++
+ gi/types.py     |   10 +++++++++-
+ tests/test_gi.py |   10 ++++++++++
  2 files changed, 19 insertions(+), 1 deletion(-)
 
 commit 3e61e7d4450a2bb133c7f3862e0962a35339ce8d
@@ -17790,8 +17700,8 @@ Date:   Mon May 3 18:35:13 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=617542
 
- gi/pygi-invoke.c        |  3 ++-
- tests/test_everything.py | 10 ++++++++++
+ gi/pygi-invoke.c        |    3 ++-
+ tests/test_everything.py |   10 ++++++++++
  2 files changed, 12 insertions(+), 1 deletion(-)
 
 commit 9669acd0fad193013ef3505ae231588307f9834c
@@ -17802,13 +17712,13 @@ Date: Mon May 3 12:23:58 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=617107
 
- gi/Makefile.am    |   2 +
- gi/pygi-info.c    | 884
- ----------------------------------------------------
- gi/pygi-invoke.c  | 909
- ++++++++++++++++++++++++++++++++++++++++++++++++++++++
- gi/pygi-invoke.h  |  37 +++
- gi/pygi-private.h |   1 +
+ gi/Makefile.am    |   2 +
+ gi/pygi-info.c    |  884
+ ---------------------------------------------------
+ gi/pygi-invoke.c  |  909
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++
+ gi/pygi-invoke.h  |   37 +++
+ gi/pygi-private.h |   1 +
  5 files changed, 949 insertions(+), 884 deletions(-)
 
 commit 9b923a68dfde06fc2df6321b3f1e53f1c57b3666
@@ -17817,7 +17727,7 @@ Date:   Tue Apr 27 19:13:08 2010 -0400
 
     Add the Gtk.Builder override
 
- gi/overrides/Gtk.py | 37 ++++++++++++++++++++++++++++++++++++-
+ gi/overrides/Gtk.py |  37 ++++++++++++++++++++++++++++++++++++-
  1 file changed, 36 insertions(+), 1 deletion(-)
 
 commit 9fc6783406b8263ebd67ceae2730b4e86689b43e
@@ -17828,8 +17738,8 @@ Date:   Fri Apr 30 15:00:52 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=616236
 
- gi/pygi-closure.c       |  8 +++++++-
- tests/test_everything.py | 16 ++++++++++++++++
+ gi/pygi-closure.c       |    8 +++++++-
+ tests/test_everything.py |   16 ++++++++++++++++
  2 files changed, 23 insertions(+), 1 deletion(-)
 
 commit 5657ccaaec09e2a3194ea2e9a923724bcc66759e
@@ -17840,7 +17750,7 @@ Date:   Thu Apr 29 18:32:50 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=617162
 
- gi/overrides/Gdk.py | 20 +++++++++++++++++++-
+ gi/overrides/Gdk.py |  20 +++++++++++++++++++-
  1 file changed, 19 insertions(+), 1 deletion(-)
 
 commit 4410abd589a2f64cfbd7bbcb4013fae9e4aa734f
@@ -17857,9 +17767,9 @@ Date:   Wed Apr 28 13:19:48 2010 -0400
       against None as well as in __all__
     * went through all the overrides and made __all__ be a list of strings
 
- gi/module.py                      | 9 ++++-----
- gi/overrides/GIMarshallingTests.py | 2 +-
- gi/overrides/Gdk.py               | 2 +-
+ gi/module.py                      |    9 ++++-----
+ gi/overrides/GIMarshallingTests.py |   2 +-
+ gi/overrides/Gdk.py               |    2 +-
  3 files changed, 6 insertions(+), 7 deletions(-)
 
 commit 64fa8f936bad9a90628df446e690d67d947a0a22
@@ -17870,10 +17780,10 @@ Date: Mon Apr 26 11:41:06 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=616357
 
- gi/pygi-callbacks.c | 22 +-
- gi/pygi-callbacks.h |  4 +-
- gi/pygi-info.c      | 582
- ++++++++++++++++++++++++++++++----------------------
+ gi/pygi-callbacks.c |  22 +-
+ gi/pygi-callbacks.h |   4 +-
+ gi/pygi-info.c      | 582
+ +++++++++++++++++++++++++++++----------------------
  3 files changed, 346 insertions(+), 262 deletions(-)
 
 commit 7fc5528273edae5ecdd5d8bdf0e5b898eec7a624
@@ -17888,8 +17798,8 @@ Date:   Tue Apr 20 23:23:38 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=616357
 
- gi/pygi-info.c | 417
- +++++++++++++++++++++++++++++----------------------------
+ gi/pygi-info.c |  417
+ +++++++++++++++++++++++++++++---------------------------
  1 file changed, 214 insertions(+), 203 deletions(-)
 
 commit 1d9c6b6d76a3e27f66e6f0cfc7b16c5191e4fc22
@@ -17900,8 +17810,8 @@ Date:   Tue Apr 27 10:24:35 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=616674
 
- gi/types.py     |  4 ++--
- tests/test_gi.py | 15 +++++++++++++++
+ gi/types.py     |    4 ++--
+ tests/test_gi.py |   15 +++++++++++++++
  2 files changed, 17 insertions(+), 2 deletions(-)
 
 commit 8a0c48f4dd512797e5cf132f8ec6fb6d4d1e7aaa
@@ -17916,8 +17826,8 @@ Date:   Sun Apr 25 15:09:08 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=616786
 
- gi/pygi-closure.c       |  3 +++
- tests/test_everything.py | 13 +++++++++++++
+ gi/pygi-closure.c       |    3 +++
+ tests/test_everything.py |   13 +++++++++++++
  2 files changed, 16 insertions(+)
 
 commit 2b12049306bf57513c43d08017185468bf897a4a
@@ -17931,7 +17841,7 @@ Date:   Tue Apr 20 22:57:14 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=616356
 
- gi/pygi-closure.c | 4 ++--
+ gi/pygi-closure.c |   4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit 8240320d0b67074ce91bdf7aadcf5951c5a8c45a
@@ -17951,8 +17861,8 @@ Date:   Tue Apr 20 23:53:57 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=616043
 
- gi/pygi-info.c   | 1 +
- tests/test_gi.py | 3 +++
+ gi/pygi-info.c   |    1 +
+ tests/test_gi.py |    3 +++
  2 files changed, 4 insertions(+)
 
 commit 10e558ca283cdd06725bb0d24b5071ccbecc7d13
@@ -17969,7 +17879,7 @@ Date:   Tue Apr 20 22:57:14 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=616356
 
- gi/pygi-closure.c | 3 ++-
+ gi/pygi-closure.c |   3 ++-
  1 file changed, 2 insertions(+), 1 deletion(-)
 
 commit d3b5fae9d609dbcd83deb0fa9102b24faf76787c
@@ -17981,9 +17891,9 @@ Date:   Tue Apr 20 22:43:20 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=616343
 
- gi/pygi-closure.c       | 10 +++++-----
- gi/pygi-info.c                  |  9 +++++++--
- tests/test_everything.py |  9 +++++++++
+ gi/pygi-closure.c       |   10 +++++-----
+ gi/pygi-info.c                  |    9 +++++++--
+ tests/test_everything.py |    9 +++++++++
  3 files changed, 21 insertions(+), 7 deletions(-)
 
 commit 3ba666b7ab9c393963922c272e7d87bff50a93f9
@@ -17994,13 +17904,13 @@ Date: Sat Jan 2 16:31:55 2010 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=603598
 
- gi/module.py      |  3 +-
- gi/pygi-argument.c | 24 +++-----------
- gi/pygi-boxed.c    | 18 +++++++++--
- gi/pygi-info.c     | 94
- ++++++++++++++++++++++++++++++++++++++++++++++++------
- gi/pygi-info.h     |  1 +
- tests/test_gi.py   | 56 ++++++++++++++++++++++++++++++++
+ gi/module.py      |    3 +-
+ gi/pygi-argument.c |  24 +++-----------
+ gi/pygi-boxed.c    |  18 ++++++++--
+ gi/pygi-info.c     |  94
+ +++++++++++++++++++++++++++++++++++++++++++++++-----
+ gi/pygi-info.h     |   1 +
+ tests/test_gi.py   |  56 +++++++++++++++++++++++++++++++
  6 files changed, 165 insertions(+), 31 deletions(-)
 
 commit af9e4e086d160fe7fb24758ed81753e784b198a8
@@ -18013,8 +17923,8 @@ Date:   Fri Jan 22 22:16:32 2010 +0100
     keep PyGI
     backward-compatible.
 
- configure.ac     |  2 +-
- gi/pygi-private.h | 20 --------------------
+ configure.ac     |    2 +-
+ gi/pygi-private.h |   20 --------------------
  2 files changed, 1 insertion(+), 21 deletions(-)
 
 commit c0f40de5648e2ebc556c449342a0025ffce2e33b
@@ -18025,8 +17935,8 @@ Date:   Sun Apr 18 11:50:14 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=616108
 
- gi/pygi-info.c | 360
- +++++++++++++++++++++++++++------------------------------
+ gi/pygi-info.c |  360
+ ++++++++++++++++++++++++++------------------------------
  1 file changed, 168 insertions(+), 192 deletions(-)
 
 commit 24bb89f1310dc2fc8ee6ddaf945342ebf80055cd
@@ -18037,7 +17947,7 @@ Date:   Tue Apr 20 15:12:47 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=616279
 
- gi/pygi-closure.c | 9 +++++----
+ gi/pygi-closure.c |   9 +++++----
  1 file changed, 5 insertions(+), 4 deletions(-)
 
 commit d1ba23cdd05686ea721425f233371d573a2e9cce
@@ -18046,7 +17956,7 @@ Date:   Thu Apr 22 19:57:17 2010 +0200
 
     Rename variable with a very generic name
 
- gi/module.py | 28 ++++++++++++++--------------
+ gi/module.py |   28 ++++++++++++++--------------
  1 file changed, 14 insertions(+), 14 deletions(-)
 
 commit 391640b30ede50af3667b1019edb72bd79f2c68c
@@ -18057,10 +17967,10 @@ Date: Thu Apr 22 19:53:06 2010 +0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=616520
 
- gi/module.py      |  6 +++++-
- gi/pygi-argument.c | 22 +++++++++++++++++++++-
- gi/types.py       | 14 ++++++++++++++
- tests/test_gi.py   | 30 ++++++++++++++++++++++++++++--
+ gi/module.py      |    6 +++++-
+ gi/pygi-argument.c |  22 +++++++++++++++++++++-
+ gi/types.py       |   14 ++++++++++++++
+ tests/test_gi.py   |  30 ++++++++++++++++++++++++++++--
  4 files changed, 68 insertions(+), 4 deletions(-)
 
 commit 89704f60ddae0c81f1383d86491ef2785590a353
@@ -18075,7 +17985,7 @@ Date:   Tue Apr 20 22:20:42 2010 -0400
     not the version after.  Thus after a release you make a new commit
     bumping to the next development version.
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit e203dc7c8f524c16aa52e15758dc3a2b09fbac75
@@ -18084,7 +17994,7 @@ Date:   Tue Apr 20 20:40:02 2010 -0400
 
     Added missing , to keyword list of gio.GFile.set_attribute
 
- gio/gresolver.override | 2 +-
+ gio/gresolver.override |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 0b222f01ac9ceea1d127083623ad532ecc75bf7e
@@ -18093,8 +18003,8 @@ Date:   Tue Apr 20 20:37:12 2010 -0400
 
     Fix arg conversion in gio.GFile.set_attribute
 
- gio/gfile.override | 232
- +++++++++++++++++++++++++++++++++++++++++++++++++++--
+ gio/gfile.override |  232
+ ++++++++++++++++++++++++++++++++++++++++++++++++++--
  1 file changed, 227 insertions(+), 5 deletions(-)
 
 commit a579ccc8bea90937bf970be3d461e2b650b0c7d6
@@ -18103,7 +18013,7 @@ Date:   Tue Apr 20 20:01:53 2010 -0400
 
     Set constants under python 2.5 or before
 
- gobject/gobjectmodule.c | 8 ++++++++
+ gobject/gobjectmodule.c |    8 ++++++++
  1 file changed, 8 insertions(+)
 
 commit 11fa39a861abf679e01b5f0da97be93ae0adf0f0
@@ -18119,7 +18029,7 @@ Date:   Sun Apr 18 20:22:21 2010 -0400
        and will
        not make the parsing crash.
 
- codegen/docextract_to_xml.py | 4 ++--
+ codegen/docextract_to_xml.py |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit 8dbc2cb016acef7b364804cd9bc8f0b1da37e84b
@@ -18128,8 +18038,8 @@ Date:   Sun Apr 18 14:32:06 2010 -0400
 
     Bump version for release 0.5.0
 
- HACKING      | 7 +++++++
- configure.ac | 4 ++--
+ HACKING      |    7 +++++++
+ configure.ac |    4 ++--
  2 files changed, 9 insertions(+), 2 deletions(-)
 
 commit 3293c91d90c5c497b45e42a527d7f79f7435823e
@@ -18138,7 +18048,7 @@ Date:   Sun Apr 18 14:28:13 2010 -0400
 
     One more missing file...
 
- examples/Makefile.am | 2 ++
+ examples/Makefile.am |    2 ++
  1 file changed, 2 insertions(+)
 
 commit 1dc575af19fe985cc3fa3ec0cf18aeab1f43c16d
@@ -18147,8 +18057,8 @@ Date:   Sun Apr 18 14:18:44 2010 -0400
 
     Add more stuff to the tarballs
 
- Makefile.am  | 8 +++++++-
- configure.ac | 1 +
+ Makefile.am  |    8 +++++++-
+ configure.ac |    1 +
  2 files changed, 8 insertions(+), 1 deletion(-)
 
 commit 8a9bb04755057e934b7f46c917af6ef281a2fedd
@@ -18157,7 +18067,7 @@ Date:   Sun Apr 18 13:48:45 2010 -0400
 
     Add one more missing file to tarballs
 
- gi/overrides/Makefile.am | 1 +
+ gi/overrides/Makefile.am |    1 +
  1 file changed, 1 insertion(+)
 
 commit 979e01852fc7f830ee91093accdc387fa535075f
@@ -18166,7 +18076,7 @@ Date:   Sun Apr 18 13:45:29 2010 -0400
 
     Add missing file to tarballs
 
- tests/Makefile.am | 1 +
+ tests/Makefile.am |   1 +
  1 file changed, 1 insertion(+)
 
 commit 8b70faa7a9a32b9ea8862f28a503e38f496cfd89
@@ -18177,17 +18087,17 @@ Date: Sun Apr 18 13:11:11 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=602736
 
- gi/gimodule.c      | 89
- +++++++++++++++++++++++++++++++++++++++++++++++++++++
- gi/pygi-argument.c  | 1 +
- gi/pygi-callbacks.c | 3 +-
- gi/pygi-closure.c   | 4 +--
- gi/pygi-closure.h   | 2 +-
- gi/pygi-info.c      | 86
- +++++++++++++++++++++++++++++++++++++++++++++++++--
- gi/pygi-info.h      | 1 +
- gi/types.py        | 44 +++++++++++++++++---------
- tests/test_gi.py    | 18 +++++++++++
+ gi/gimodule.c      |   89
+ +++++++++++++++++++++++++++++++++++++++++++++++++++
+ gi/pygi-argument.c  |   1 +
+ gi/pygi-callbacks.c |   3 +-
+ gi/pygi-closure.c   |   4 +--
+ gi/pygi-closure.h   |   2 +-
+ gi/pygi-info.c      |  86
+ +++++++++++++++++++++++++++++++++++++++++++++++--
+ gi/pygi-info.h      |   1 +
+ gi/types.py        |   44 +++++++++++++++++--------
+ tests/test_gi.py    |  18 +++++++++++
  9 files changed, 227 insertions(+), 21 deletions(-)
 
 commit e239faacb4798fe2d166233ca1a19a843a6225e3
@@ -18196,7 +18106,7 @@ Date:   Sun Apr 18 11:59:06 2010 -0400
 
     Fix a typo in pygi-callbacks.c header
 
- gi/pygi-callbacks.c | 2 +-
+ gi/pygi-callbacks.c |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 79aa416ae8632b123da61d79fb820d9e2704209c
@@ -18207,10 +18117,11 @@ Date: Sat Apr 17 12:00:05 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=616035
 
- gi/pygi-argument.c      | 43 +++++++++++++++++++++++++++++++++++++------
- gi/pygi-argument.h      |  3 ++-
- gi/pygi-info.c                  | 19 +++++++++++++------
- tests/test_everything.py | 28 ++++++++++++++++++++++++++++
+ gi/pygi-argument.c      |   43
+ +++++++++++++++++++++++++++++++++++++------
+ gi/pygi-argument.h      |    3 ++-
+ gi/pygi-info.c                  |   19 +++++++++++++------
+ tests/test_everything.py |   28 ++++++++++++++++++++++++++++
  4 files changed, 80 insertions(+), 13 deletions(-)
 
 commit 7d533b8893bc4a8a82fd9708278fa1dce5d3551e
@@ -18219,10 +18130,10 @@ Date: Sat Apr 17 12:56:19 2010 -0400
 
     Move some tests from test_gi to test_everything
 
- tests/test_everything.py | 60
- ++++++++++++++++++++++++++++++++++++++++++++++
- tests/test_gi.py        | 62
- +-----------------------------------------------
+ tests/test_everything.py |   60
+ ++++++++++++++++++++++++++++++++++++++++++++
+ tests/test_gi.py        |   62
+ +---------------------------------------------
  2 files changed, 61 insertions(+), 61 deletions(-)
 
 commit a90298cc9e6c0f336f887a71d80b1efd07ec2811
@@ -18231,8 +18142,8 @@ Date:   Sun Apr 18 10:44:35 2010 -0400
 
     Update to latest version of the pygi-convert.sh script
 
- pygi-convert.sh | 193
- ++++++++++++++++++++++++++++++++++++++++----------------
+ pygi-convert.sh |  193
+ +++++++++++++++++++++++++++++++++++++++----------------
  1 file changed, 137 insertions(+), 56 deletions(-)
 
 commit 34a39318c674737c6d64f2430456daef86ba1626
@@ -18241,8 +18152,8 @@ Date:   Sun Apr 18 10:40:44 2010 -0400
 
     Add Tomeu's prototype script for converting pygtk to pygi
 
- pygi-convert.sh | 71
- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ pygi-convert.sh |   71
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 71 insertions(+)
 
 commit a3afdb5fd33de0bf11d63857a245a8f5edec242c
@@ -18251,7 +18162,7 @@ Date:   Sun Apr 18 13:01:58 2010 +0200
 
     Fix doap file
 
- pygi.doap | 4 ++++
+ pygi.doap |   4 ++++
  1 file changed, 4 insertions(+)
 
 commit 0de73d0bba79f92af22f43693f3575c596712416
@@ -18260,7 +18171,7 @@ Date:   Sat Apr 17 16:01:31 2010 -0400
 
     Add Zach Goldberg as a pygi maintainer
 
- pygi.doap | 5 +++++
+ pygi.doap |   5 +++++
  1 file changed, 5 insertions(+)
 
 commit a0e22e36e8cf0c1e0da3c0ec48c821fdb5a07ccd
@@ -18269,7 +18180,7 @@ Date:   Sat Apr 17 11:47:54 2010 -0400
 
     Require PyCairo
 
- configure.ac | 7 +------
+ configure.ac |    7 +------
  1 file changed, 1 insertion(+), 6 deletions(-)
 
 commit 2778f8a1bf6379a46beec6546c8efcb0fec2d7ad
@@ -18278,8 +18189,8 @@ Date:   Sat Apr 17 11:40:14 2010 -0400
 
     Add examples/cairo-demo.py
 
- examples/cairo-demo.py | 121
- +++++++++++++++++++++++++++++++++++++++++++++++++
+ examples/cairo-demo.py |  121
+ ++++++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 121 insertions(+)
 
 commit 610dd1eec87fab5c8c3badb4d104cba74477c745
@@ -18302,18 +18213,18 @@ Date: Sat Apr 17 09:17:14 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=603095
 
- configure.ac       |   2 +
- gi/Makefile.am      |  4 +
- gi/pygi-argument.c  | 12 ++-
- gi/pygi-callbacks.c | 216
- ++++++++++++++++++++++++++++++++++++++++++++++++++++
- gi/pygi-callbacks.h | 47 ++++++++++++
- gi/pygi-closure.c   | 205
- +++++++++++++++++++++++++++++++++++++++++++++++++
- gi/pygi-closure.h   | 57 ++++++++++++++
- gi/pygi-info.c      | 49 ++++++++++--
- gi/pygi-private.h   |  2 +
- tests/test_gi.py    | 64 +++++++++++++++-
+ configure.ac       |    2 +
+ gi/Makefile.am      |   4 +
+ gi/pygi-argument.c  |  12 ++-
+ gi/pygi-callbacks.c | 216
+ +++++++++++++++++++++++++++++++++++++++++++++++++++
+ gi/pygi-callbacks.h |  47 +++++++++++
+ gi/pygi-closure.c   | 205
+ ++++++++++++++++++++++++++++++++++++++++++++++++
+ gi/pygi-closure.h   |  57 ++++++++++++++
+ gi/pygi-info.c      |  49 ++++++++++--
+ gi/pygi-private.h   |   2 +
+ tests/test_gi.py    |  64 ++++++++++++++-
  10 files changed, 648 insertions(+), 10 deletions(-)
 
 commit a34cb9f0038a6c89e5e6c5f7761d48a5a833044f
@@ -18324,17 +18235,17 @@ Date: Sat Apr 17 10:54:45 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=603712
 
- configure.ac            |   6 +++
- gi/Makefile.am                  |  10 +++-
- gi/gimodule.c           |   7 +++
- gi/pygi-argument.c      |  27 ++++++++++-
- gi/pygi-foreign-cairo.c  | 103 +++++++++++++++++++++++++++++++++++++++
- gi/pygi-foreign-cairo.h  |  55 +++++++++++++++++++++
- gi/pygi-foreign.c       | 123
- +++++++++++++++++++++++++++++++++++++++++++++++
- gi/pygi-foreign.h       |  52 ++++++++++++++++++++
- gi/pygi-private.h       |   1 +
- tests/test_everything.py |  48 ++++++++++++++++++
+ configure.ac            |    6 +++
+ gi/Makefile.am                  |   10 +++-
+ gi/gimodule.c           |    7 +++
+ gi/pygi-argument.c      |   27 +++++++++-
+ gi/pygi-foreign-cairo.c  |  103 ++++++++++++++++++++++++++++++++++++++
+ gi/pygi-foreign-cairo.h  |   55 +++++++++++++++++++++
+ gi/pygi-foreign.c       |  123
+ ++++++++++++++++++++++++++++++++++++++++++++++
+ gi/pygi-foreign.h       |   52 ++++++++++++++++++++
+ gi/pygi-private.h       |    1 +
+ tests/test_everything.py |   48 ++++++++++++++++++
  10 files changed, 428 insertions(+), 4 deletions(-)
 
 commit e73b6f6fe8b5f23a2a390ae0a6bbced593ded155
@@ -18345,8 +18256,8 @@ Date:   Fri Apr 16 14:35:13 2010 -0400
 
     https://bugzilla.gnome.org/show_bug.cgi?id=603537
 
- gi/pygi-struct.c | 6 ------
- tests/test_gi.py | 3 ++-
+ gi/pygi-struct.c |    6 ------
+ tests/test_gi.py |    3 ++-
  2 files changed, 2 insertions(+), 7 deletions(-)
 
 commit fc9ff02e53aacf9e77625c70985e99813544912a
@@ -18355,9 +18266,9 @@ Date:   Fri Apr 16 10:40:40 2010 -0400
 
     Add gdb and valgrind variants for the tests
 
- HACKING          | 19 +++++++++++++++++++
- Makefile.am      | 12 ++++++++++++
- tests/Makefile.am | 14 +++++++++++++-
+ HACKING          |   19 +++++++++++++++++++
+ Makefile.am      |   12 ++++++++++++
+ tests/Makefile.am |   14 +++++++++++++-
  3 files changed, 44 insertions(+), 1 deletion(-)
 
 commit 695ac7bc5c60371a32538d690c7a15509f3c9637
@@ -18366,8 +18277,8 @@ Date:   Fri Apr 16 14:36:11 2010 +1200
 
     Add build docs for windows
 
- Makefile.am  |  1 +
- README.win32 | 24 ++++++++++++++++++++++++
+ Makefile.am  |    1 +
+ README.win32 |   24 ++++++++++++++++++++++++
  2 files changed, 25 insertions(+)
 
 commit e580da87f0b2fd36cb5d8008fb2fb0c3b01f456a
@@ -18379,8 +18290,9 @@ Date:   Thu Apr 15 13:40:39 2010 +1200
      * Remove local doc install, point to website instead
      * link to versioned docs
 
- pygobject_postinstall.py | 43 ++++++++++++++++++++++++++-----------------
- setup.py                | 39 ++++++++++++++-------------------------
+ pygobject_postinstall.py |   43
+ ++++++++++++++++++++++++++-----------------
+ setup.py                |   39 ++++++++++++++-------------------------
  2 files changed, 40 insertions(+), 42 deletions(-)
 
 commit 69ecd506c83ddf180c6cc9a2a8dc753a02543959
@@ -18393,7 +18305,7 @@ Date:   Sat Jul 25 14:12:30 2009 +1200
     no harm on linux as multiple calls to init
     are OK
 
- gio/giomodule.c | 3 +++
+ gio/giomodule.c |    3 +++
  1 file changed, 3 insertions(+)
 
 commit 5d159a13d89587cba189a0ca3203ac003e2f1f2b
@@ -18406,14 +18318,14 @@ Date: Thu Apr 15 22:52:48 2010 +1200
     largely unneeded. Just add the G_XXX constants
     to the module directly
 
- gobject/Makefile.am         | 16 +--------
- gobject/constants.py        | 83
- ++++++++++++++++++++++++++++++++++++++++++++
- gobject/constants.py.in      | 50 --------------------------
- gobject/generate-constants.c | 44 -----------------------
- gobject/gobjectmodule.c      | 35 +++++++++++++++++++
- setup.py                    |  2 +-
- tests/runtests.py           |  3 +-
+ gobject/Makefile.am         |   16 +-------
+ gobject/constants.py        |   83
+ ++++++++++++++++++++++++++++++++++++++++++
+ gobject/constants.py.in      |   50 -------------------------
+ gobject/generate-constants.c |   44 ----------------------
+ gobject/gobjectmodule.c      |   35 ++++++++++++++++++
+ setup.py                    |    2 +-
+ tests/runtests.py           |    3 +-
  7 files changed, 121 insertions(+), 112 deletions(-)
 
 commit 6d7a3ab9ce352692d0faccbf106974d264fa953d
@@ -18427,9 +18339,9 @@ Date:   Thu Apr 15 22:49:17 2010 +1200
     * Modernise setup.py and add more util functions
       to dsextras
 
- dsextras.py | 32 ++++++++++++++++---
- setup.py    | 102
- +++++++++++++++++++++++++++++++++++++++++++++++++++---------
+ dsextras.py |  32 ++++++++++++++++---
+ setup.py    | 102
+ +++++++++++++++++++++++++++++++++++++++++++++++++++--------
  2 files changed, 116 insertions(+), 18 deletions(-)
 
 commit d11ef47072acae5801ce25c68d1289e425eb9fc2
@@ -18438,7 +18350,7 @@ Date:   Thu Apr 15 22:48:28 2010 +1200
 
     Include pygsource.h
 
- glib/pygiochannel.c | 1 +
+ glib/pygiochannel.c |   1 +
  1 file changed, 1 insertion(+)
 
 commit c5f6af4844c74354abc508d17969d9d45153acf2
@@ -18447,7 +18359,7 @@ Date:   Thu Apr 15 14:25:59 2010 -0400
 
     Add metadata to the .doap file
 
- pygi.doap | 3 +++
+ pygi.doap |   3 +++
  1 file changed, 3 insertions(+)
 
 commit 81796cb77cbe6b9598a652bd63c047af93e747ee
@@ -18456,8 +18368,8 @@ Date:   Wed Apr 14 12:01:43 2010 -0400
 
     override that wasn't checked in - fixes some test cases
 
- gi/overrides/GIMarshallingTests.py | 69
- ++++++++++++++++++++++++++++++++++++++
+ gi/overrides/GIMarshallingTests.py |  69
+ ++++++++++++++++++++++++++++++++++++
  1 file changed, 69 insertions(+)
 
 commit de5d2ea1584b01af809346316c7fbd4955a9db1d
@@ -18474,7 +18386,7 @@ Date:   Wed Apr 14 10:06:07 2010 -0400
     owned by Automake. Use all-local instead to append things to
     the end of the normal build.
 
- gi/Makefile.am | 15 +++++++++------
+ gi/Makefile.am |   15 +++++++++------
  1 file changed, 9 insertions(+), 6 deletions(-)
 
 commit 5a47e96e3f580c973e6880dafa747f54c144c760
@@ -18500,7 +18412,7 @@ Date:   Tue Apr 13 13:33:12 2010 -0400
        * codegen/docextract_to_xml.py: Replace &nbsp; which also causes
        errors with a regular space.
 
- codegen/docextract_to_xml.py | 1 +
+ codegen/docextract_to_xml.py |    1 +
  1 file changed, 1 insertion(+)
 
 commit bd4e7f2459e34957aaae59b9be807d6dff5ec1eb
@@ -18512,7 +18424,7 @@ Date:   Tue Apr 13 12:28:10 2010 -0400
        * codegen/docextract_to_xml.py (escape_text): Replace some &..;
        expressions that cause errors with more appropriate output.
 
- codegen/docextract_to_xml.py | 4 ++++
+ codegen/docextract_to_xml.py |    4 ++++
  1 file changed, 4 insertions(+)
 
 commit f00b9ce91fc9c3aabd4af4132fc112d9e415e12e
@@ -18528,7 +18440,7 @@ Date:   Sun Apr 11 17:46:40 2010 -0400
        show up when the descriptions that include C++ code with C++
        multi-line comments are used in Doxygen blocks.
 
- codegen/docextract_to_xml.py | 9 +++++++++
+ codegen/docextract_to_xml.py |    9 +++++++++
  1 file changed, 9 insertions(+)
 
 commit a2fcdecbb5e109da5568084d7acb2332af83b6f5
@@ -18545,7 +18457,7 @@ Date:   Sun Apr 11 16:15:01 2010 -0400
        return ('Returns ...') which leads to annotation extraction
        errors.
 
- codegen/docextract.py | 4 ++++
+ codegen/docextract.py |    4 ++++
  1 file changed, 4 insertions(+)
 
 commit 825fd305f03b726665edca34963978ce27448182
@@ -18639,9 +18551,9 @@ Date:   Sun Apr 11 15:45:09 2010 -0400
        annotations but this would only be exhibited if annotation xml is
        requested.
 
- codegen/docextract.py       | 439
- ++++++++++++++++++++++++++++++++++---------
- codegen/docextract_to_xml.py |  87 ++++++---
+ codegen/docextract.py       |  439
+ +++++++++++++++++++++++++++++++++---------
+ codegen/docextract_to_xml.py |   87 ++++++---
  2 files changed, 414 insertions(+), 112 deletions(-)
 
 commit 9fef1acb42cd900d4a814a7378f60bc189121785
@@ -18650,7 +18562,7 @@ Date:   Fri Apr 9 13:47:03 2010 +0200
 
     Always create the .so link
 
- gi/Makefile.am | 2 +-
+ gi/Makefile.am |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit e9f7fd414e94595e40eb1ba0fc471ca69136d82f
@@ -18661,10 +18573,10 @@ Date: Thu Apr 8 11:52:25 2010 +0200
 
     Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
 
- docs/reference/pygio-file.xml       | 58
- ++++++++++++++++++------------------
- docs/reference/pygio-inputstream.xml | 22 +++++++-------
- docs/reference/pygio-mount.xml       | 10 +++----
+ docs/reference/pygio-file.xml       |   58
+ +++++++++++++++++-----------------
+ docs/reference/pygio-inputstream.xml |   22 ++++++-------
+ docs/reference/pygio-mount.xml       |   10 +++---
  3 files changed, 45 insertions(+), 45 deletions(-)
 
 commit 4cbd9941c5705970a9f7a429e236e1203d3155a1
@@ -18676,11 +18588,11 @@ Date: Mon Apr 5 18:10:42 2010 +0200
 
     move tests that require pygtk to pygtk itself
 
- tests/test_conversion.py |  83 --------------
- tests/test_enum.py      | 234 --------------------------------------
- tests/test_gtype.py     | 112 ------------------
- tests/test_subtype.py   | 289
- -----------------------------------------------
+ tests/test_conversion.py |   83 -------------
+ tests/test_enum.py      |  234 -------------------------------------
+ tests/test_gtype.py     |  112 ------------------
+ tests/test_subtype.py   |  289
+ ----------------------------------------------
  4 files changed, 718 deletions(-)
 
 commit ef0ceb266a45715ece58642fb0042e3376416755
@@ -18689,9 +18601,9 @@ Date:   Wed Feb 3 20:33:03 2010 +0100
 
     Add modelines and copyright information to overrides modules
 
- gi/overrides/Gdk.py   | 21 +++++++++++++++++++++
- gi/overrides/Gtk.py   | 21 +++++++++++++++++++++
- gi/overrides/TestGI.py | 20 ++++++++++++++++++++
+ gi/overrides/Gdk.py   |   21 +++++++++++++++++++++
+ gi/overrides/Gtk.py   |   21 +++++++++++++++++++++
+ gi/overrides/TestGI.py |   20 ++++++++++++++++++++
  3 files changed, 62 insertions(+)
 
 commit 5106523a4b8378997a1e6cb0488398aa73e7d9d5
@@ -18704,9 +18616,9 @@ Date:   Wed Feb 3 20:29:55 2010 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=602830
 
- gi/overrides/TestGI.py | 49
- +++++++++++++++++++++++++++++++++++++++++++++++++
- tests/test_gi.py      |  8 +++++++-
+ gi/overrides/TestGI.py |   49
+ ++++++++++++++++++++++++++++++++++++++++++++++++
+ tests/test_gi.py      |    8 +++++++-
  2 files changed, 56 insertions(+), 1 deletion(-)
 
 commit 23fc0f615d87994acafd9d39e92dd92b587fc2eb
@@ -18717,10 +18629,10 @@ Date: Thu Jan 21 17:30:51 2010 +0100
 
     http://bugzilla.gnome.org/show_bug.cgi?id=607674
 
- gobject/pygboxed.c     | 6 +-----
- gobject/pygi-external.h | 1 -
- gobject/pygobject.c    | 6 +-----
- gobject/pygpointer.c   | 6 +-----
+ gobject/pygboxed.c     |    6 +-----
+ gobject/pygi-external.h |    1 -
+ gobject/pygobject.c    |    6 +-----
+ gobject/pygpointer.c   |    6 +-----
  4 files changed, 3 insertions(+), 16 deletions(-)
 
 commit aefac8c5f64bf059dd6652f8a843d17b34fa0854
@@ -18736,13 +18648,13 @@ Date: Fri Jan 22 22:22:37 2010 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=607759
 
- gi/pygi-argument.c | 586 ++++-------------------------------------------
- gi/pygi-argument.h |  1 -
- gi/pygi-info.c     |  8 +-
- tests/libtestgi.c  | 660
- -----------------------------------------------------
- tests/libtestgi.h  |  86 -------
- tests/test_gi.py   | 144 ------------
+ gi/pygi-argument.c |  586 ++++------------------------------------------
+ gi/pygi-argument.h |   1 -
+ gi/pygi-info.c     |   8 +-
+ tests/libtestgi.c  |  660
+ ----------------------------------------------------
+ tests/libtestgi.h  |  86 -------
+ tests/test_gi.py   |  144 ------------
  6 files changed, 47 insertions(+), 1438 deletions(-)
 
 commit eaf7cb8ebb7e34f9493ac83b2f04af4dcf45f40f
@@ -18765,15 +18677,15 @@ Date: Fri Jan 22 13:41:21 2010 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=602830
 
- gi/importer.py      | 40 +++++++-------------
- gi/module.py       |  43 ++++++++++++++-------
- gi/overrides/Gdk.py | 42 +++++++++++++--------
- gi/overrides/Gtk.py | 16 ++++----
- gi/types.py        |   6 +++
- tests/libtestgi.c   | 105
- ++++++++++++++++++++++++++++++++++++++++++++++++++++
- tests/libtestgi.h   | 49 ++++++++++++++++++++++++
- tests/test_gi.py    | 36 ++++++++++++++++++
+ gi/importer.py      |  40 +++++++-------------
+ gi/module.py       |   43 ++++++++++++++-------
+ gi/overrides/Gdk.py |  42 +++++++++++++--------
+ gi/overrides/Gtk.py |  16 ++++----
+ gi/types.py        |    6 +++
+ tests/libtestgi.c   | 105
+ +++++++++++++++++++++++++++++++++++++++++++++++++++
+ tests/libtestgi.h   |  49 ++++++++++++++++++++++++
+ tests/test_gi.py    |  36 ++++++++++++++++++
  8 files changed, 273 insertions(+), 64 deletions(-)
 
 commit 289d641775d1ea52d2a5379126b70b7fcee46683
@@ -18784,7 +18696,7 @@ Date:   Sun Jan 10 21:01:59 2010 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=606582
 
- gio/gcancellable.override | 1 +
+ gio/gcancellable.override |   1 +
  1 file changed, 1 insertion(+)
 
 commit b11cf2595987c1f0fc4ffd834f07c98b92aa2355
@@ -18793,8 +18705,8 @@ Date:   Fri Jan 8 21:10:28 2010 +0100
 
     Initialize struct fields to 0 when allocating
 
- gi/pygi-struct.c | 2 +-
- tests/test_gi.py | 5 +++++
+ gi/pygi-struct.c |    2 +-
+ tests/test_gi.py |    5 +++++
  2 files changed, 6 insertions(+), 1 deletion(-)
 
 commit b4189be2b2d3c350fdf33e27309bee5a72e4f72a
@@ -18813,10 +18725,10 @@ Date: Fri Jan 8 20:33:44 2010 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=603536
 
- gi/types.py      | 35 +++++++----------------------------
- tests/libtestgi.c | 33 ---------------------------------
- tests/libtestgi.h |  7 -------
- tests/test_gi.py  | 21 ++++++++++-----------
+ gi/types.py      |   35 +++++++----------------------------
+ tests/libtestgi.c |   33 ---------------------------------
+ tests/libtestgi.h |   7 -------
+ tests/test_gi.py  |   21 ++++++++++-----------
  4 files changed, 17 insertions(+), 79 deletions(-)
 
 commit 4db68b958ea11bd2c3a88067cae03fd6bdd1d24b
@@ -18825,9 +18737,9 @@ Date:   Tue Jan 5 13:36:44 2010 +0100
 
     Suppress compilation warnings
 
- gi/pygi-argument.c     | 3 ++-
- gi/pygi-boxed.c        | 2 --
- gi/pygobject-external.h | 2 +-
+ gi/pygi-argument.c     |    3 ++-
+ gi/pygi-boxed.c        |    2 --
+ gi/pygobject-external.h |    2 +-
  3 files changed, 3 insertions(+), 4 deletions(-)
 
 commit 4e2efa91d101bf755739e1cca8eee41eb0ad20fd
@@ -18838,7 +18750,7 @@ Date:   Mon Jan 4 08:35:14 2010 +0100
 
     Committed a patch from Kevin Pyle
 
- Makefile.am | 27 +++++++++++++--------------
+ Makefile.am |  27 +++++++++++++--------------
  1 file changed, 13 insertions(+), 14 deletions(-)
 
 commit 8ddcbca0e98e0b0c082170a2b2b6cfcbd7864b40
@@ -18851,8 +18763,8 @@ Date:   Fri Dec 11 22:24:30 2009 +0100
     loaded from the
     system's default site-package directory.
 
- tests/runtests.py | 1 -
- tests/test_gi.py  | 3 +++
+ tests/runtests.py |   1 -
+ tests/test_gi.py  |   3 +++
  2 files changed, 3 insertions(+), 1 deletion(-)
 
 commit 284a1e1c0143c95d3007cf58e6c248b5d11fb4d1
@@ -18861,10 +18773,10 @@ Date: Sun Jan 3 11:02:57 2010 +0100
 
     Wrap gio.Cancellable.make_pollfd() and add a test
 
- gio/Makefile.am           |  1 +
- gio/gcancellable.override  | 37 +++++++++++++++++++++++++++++++++++++
- gio/gio.override          |  3 +++
- tests/test_gcancellable.py | 15 +++++++++++++++
+ gio/Makefile.am           |    1 +
+ gio/gcancellable.override  |  37 +++++++++++++++++++++++++++++++++++++
+ gio/gio.override          |    3 +++
+ tests/test_gcancellable.py |  15 +++++++++++++++
  4 files changed, 56 insertions(+)
 
 commit 82d7bcbf37200ee2ef5892dd12bebd2f39965c56
@@ -18873,8 +18785,8 @@ Date:   Sat Jan 2 23:15:56 2010 +0100
 
     Make cancellable an optional parameter in many methods
 
- gio/gio.defs | 102
- +++++++++++++++++++++++++++++------------------------------
+ gio/gio.defs |  102
+ +++++++++++++++++++++++++++++-----------------------------
  1 file changed, 51 insertions(+), 51 deletions(-)
 
 commit 49a078cd22d55dc33a03ecfda235d63955edc741
@@ -18883,7 +18795,7 @@ Date:   Sat Jan 2 23:15:21 2010 +0100
 
     Post release version bump to 2.21.2
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 4f9f1f43ab4e2cfb204ffa0e257a34cfd95d84e2
@@ -18892,7 +18804,7 @@ Date:   Sat Jan 2 22:58:36 2010 +0100
 
     Update NEWS and release PyGObject-2.21.1
 
- NEWS | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ NEWS |   55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 55 insertions(+)
 
 commit c1f34be73bd186d7b4682dfef133da2c4229d213
@@ -18901,8 +18813,8 @@ Date:   Fri Jan 1 20:25:35 2010 +0100
 
     Wrap gio.Volume.eject_with_operation()
 
- gio/gvolume.override | 54
- ++++++++++++++++++++++++++++++++++++++++++++++++++++
+ gio/gvolume.override |   54
+ ++++++++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 54 insertions(+)
 
 commit 9b76fbff6f6897aaf26ed4644c1f19efc2826917
@@ -18911,7 +18823,7 @@ Date:   Fri Jan 1 20:22:21 2010 +0100
 
     gio.Mount.unmount_with_operation() fix a copy/paste leftover
 
- gio/gmount.override | 4 ++--
+ gio/gmount.override |   4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit 6f459786dd641cd49d81eba403d940620f961cab
@@ -18920,8 +18832,8 @@ Date:   Fri Jan 1 20:21:05 2010 +0100
 
     Wrap gio.Mount.eject_with_operation()
 
- gio/gmount.override | 54
- +++++++++++++++++++++++++++++++++++++++++++++++++++++
+ gio/gmount.override |  54
+ +++++++++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 54 insertions(+)
 
 commit d4b5d1b4839364e5676eb2da28f1d21db7e2552d
@@ -18930,8 +18842,8 @@ Date:   Fri Jan 1 20:15:38 2010 +0100
 
     Wrap gio.Mount.unmount_mountable_with_operation()
 
- gio/gmount.override | 54
- +++++++++++++++++++++++++++++++++++++++++++++++++++++
+ gio/gmount.override |  54
+ +++++++++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 54 insertions(+)
 
 commit e919d47c2430451b436cec955e9b99237f97028c
@@ -18940,8 +18852,8 @@ Date:   Fri Jan 1 18:22:46 2010 +0100
 
     Wrap File.unmount_mountable_with_operation()
 
- gio/gfile.override | 54
- ++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ gio/gfile.override |  54
+ ++++++++++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 54 insertions(+)
 
 commit 5a614df9c5507d67f240462f7bf71b4cd411addf
@@ -18950,7 +18862,7 @@ Date:   Fri Jan 1 18:14:11 2010 +0100
 
     Wrap gio.File.stop_mountable()
 
- gio/gfile.override | 52
+ gio/gfile.override |  52
  ++++++++++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 52 insertions(+)
 
@@ -18960,7 +18872,7 @@ Date:   Fri Jan 1 18:10:49 2010 +0100
 
     Wrap gio.File.start_mountable()
 
- gio/gfile.override | 52
+ gio/gfile.override |  52
  ++++++++++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 52 insertions(+)
 
@@ -18970,8 +18882,8 @@ Date:   Fri Jan 1 18:02:46 2010 +0100
 
     Wrap gio.File.replace_readwrite_async()
 
- gio/gfile.override | 55
- ++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ gio/gfile.override |  55
+ ++++++++++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 55 insertions(+)
 
 commit 92662f129fc728258fd5e34f53dcb081e3715017
@@ -18980,7 +18892,7 @@ Date:   Fri Jan 1 17:00:26 2010 +0100
 
     Wrap gio.File.poll_mountable()
 
- gio/gfile.override | 41 +++++++++++++++++++++++++++++++++++++++++
+ gio/gfile.override |  41 +++++++++++++++++++++++++++++++++++++++++
  1 file changed, 41 insertions(+)
 
 commit 99902b786500948c3278779841e4db54223b9256
@@ -18989,7 +18901,7 @@ Date:   Fri Jan 1 16:56:26 2010 +0100
 
     Wrap gio.File.open_readwrite_async()
 
- gio/gfile.override | 44 ++++++++++++++++++++++++++++++++++++++++++++
+ gio/gfile.override |  44 ++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 44 insertions(+)
 
 commit 8cff5d53183ae81364ac74a34a1d52e55e082eb4
@@ -18998,8 +18910,8 @@ Date:   Fri Jan 1 16:50:15 2010 +0100
 
     Wrap gio.File.eject_mountable_with_operation()
 
- gio/gfile.override | 54
- ++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ gio/gfile.override |  54
+ ++++++++++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 54 insertions(+)
 
 commit ca436fe7785fd24b0f0e65f2f8c9fa6478277682
@@ -19008,9 +18920,9 @@ Date:   Fri Jan 1 13:30:24 2010 +0100
 
     Wrap gio.File.create_readwrite_async() and add a test
 
- gio/gfile.override | 51
+ gio/gfile.override |  51
  +++++++++++++++++++++++++++++++++++++++++++++++++++
- tests/test_gio.py  | 24 ++++++++++++++++++++++++
+ tests/test_gio.py  |  24 ++++++++++++++++++++++++
  2 files changed, 75 insertions(+)
 
 commit f72c5e451dfaeb01b3c3d9243fed2732d3620462
@@ -19019,8 +18931,8 @@ Date:   Fri Jan 1 13:20:11 2010 +0100
 
     Wrap gio.Drive.stop()
 
- gio/gdrive.override | 52
- ++++++++++++++++++++++++++++++++++++++++++++++++++++
+ gio/gdrive.override |  52
+ +++++++++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 52 insertions(+)
 
 commit 29043bade408338cefa13fb4b0c875aabd3ef05e
@@ -19029,8 +18941,8 @@ Date:   Fri Jan 1 13:00:42 2010 +0100
 
     Wrap gio.Drive.start()
 
- gio/gdrive.override | 52
- ++++++++++++++++++++++++++++++++++++++++++++++++++++
+ gio/gdrive.override |  52
+ +++++++++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 52 insertions(+)
 
 commit dff374287bbecc8af782bbc726fad86c6c867754
@@ -19039,7 +18951,7 @@ Date:   Fri Jan 1 12:45:29 2010 +0100
 
     Add more remainders on missing methods of gio.Socket and related types
 
- gio/gsocket.override | 3 +++
+ gio/gsocket.override |    3 +++
  1 file changed, 3 insertions(+)
 
 commit b8c7e996498bd72df551011af85ff05ef7335b4f
@@ -19048,9 +18960,9 @@ Date:   Fri Jan 1 12:41:08 2010 +0100
 
     Wrap gio.SocketListener.accept_socket_async|finish() and add a test
 
- gio/gsocket.override  | 86
- +++++++++++++++++++++++++++++++++++++++++++++++++--
- tests/test_gsocket.py | 24 ++++++++++++++
+ gio/gsocket.override  |   86
+ +++++++++++++++++++++++++++++++++++++++++++++++--
+ tests/test_gsocket.py |   24 ++++++++++++++
  2 files changed, 108 insertions(+), 2 deletions(-)
 
 commit a5ae2d5ba3db34967fe07a3cc97b75df2793988c
@@ -19059,8 +18971,8 @@ Date:   Fri Jan 1 12:28:53 2010 +0100
 
     Wrap gio.SocketListener.accept_finish() and add a test
 
- gio/gsocket.override  | 44 ++++++++++++++++++++++++++++++++++++++++++--
- tests/test_gsocket.py | 24 ++++++++++++++++++++++++
+ gio/gsocket.override  |   44 ++++++++++++++++++++++++++++++++++++++++++--
+ tests/test_gsocket.py |   24 ++++++++++++++++++++++++
  2 files changed, 66 insertions(+), 2 deletions(-)
 
 commit a5ab26cc1bb3e9dd57e2fdb26ef5c02e8066d097
@@ -19069,7 +18981,7 @@ Date:   Fri Jan 1 11:19:34 2010 +0100
 
     Wrap gio.SocketListener.accept_async()
 
- gio/gsocket.override | 42 ++++++++++++++++++++++++++++++++++++++++++
+ gio/gsocket.override |   42 ++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 42 insertions(+)
 
 commit c9496b29ef9ef232020a4044577d2947353953a5
@@ -19078,9 +18990,9 @@ Date:   Fri Jan 1 11:14:35 2010 +0100
 
     Wrap gio.SocketListener.accept_socket() and add a test
 
- gio/gsocket.override  | 48
+ gio/gsocket.override  |   48
  +++++++++++++++++++++++++++++++++++++++++++++++-
- tests/test_gsocket.py | 13 +++++++++++++
+ tests/test_gsocket.py |   13 +++++++++++++
  2 files changed, 60 insertions(+), 1 deletion(-)
 
 commit 1aa5e301c49f11e1c5ef58de44b4b03f714d1a70
@@ -19089,8 +19001,9 @@ Date:   Thu Dec 31 16:35:18 2009 +0100
 
     Wrap gio.SocketListener.accept() and add a test
 
- gio/gsocket.override  | 46 +++++++++++++++++++++++++++++++++++++++++++++-
- tests/test_gsocket.py | 13 +++++++++++++
+ gio/gsocket.override  |   46
+ +++++++++++++++++++++++++++++++++++++++++++++-
+ tests/test_gsocket.py |   13 +++++++++++++
  2 files changed, 58 insertions(+), 1 deletion(-)
 
 commit aaedcf166c78baf5449ef59d0ade4a29077fedc7
@@ -19099,7 +19012,7 @@ Date:   Thu Dec 31 16:25:33 2009 +0100
 
     Make cancellable optional in gio.SocketClient.connect_to_host()
 
- gio/gio.defs | 2 +-
+ gio/gio.defs |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 3829d7667b19126fb74562b28d271e616b154c99
@@ -19108,9 +19021,9 @@ Date:   Thu Dec 31 15:25:10 2009 +0100
 
     Wrap gio.SocketListener.add_address() and add a test
 
- gio/gsocket.override  | 57
- ++++++++++++++++++++++++++++++++++++++++++++++++++-
- tests/test_gsocket.py |  9 ++++++++
+ gio/gsocket.override  |   57
+ ++++++++++++++++++++++++++++++++++++++++++++++++-
+ tests/test_gsocket.py |    9 ++++++++
  2 files changed, 65 insertions(+), 1 deletion(-)
 
 commit 5bec72f34ea75bc56158cae5c39d61a2a4e7e601
@@ -19119,7 +19032,7 @@ Date:   Thu Dec 31 10:19:47 2009 +0100
 
     Add more remainders on missing methods of gio.Socket and related types
 
- gio/gsocket.override | 8 ++++++++
+ gio/gsocket.override |    8 ++++++++
  1 file changed, 8 insertions(+)
 
 commit b08b20f2b1a57bcbf400d6fe8e87cf052bdb719d
@@ -19128,7 +19041,8 @@ Date:   Thu Dec 31 10:16:18 2009 +0100
 
     Wrap gio.SocketClient.connect_to_service_async()
 
- gio/gsocket.override | 47 +++++++++++++++++++++++++++++++++++++++++++++++
+ gio/gsocket.override |   47
+ +++++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 47 insertions(+)
 
 commit 116ea1bfe32946e67aa54eb8dc7b977e57f254c2
@@ -19137,7 +19051,7 @@ Date:   Thu Dec 31 10:10:43 2009 +0100
 
     Wrap gio.SocketClient.connect_to_host_async()
 
- gio/gsocket.override | 48
+ gio/gsocket.override |   48
  ++++++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 48 insertions(+)
 
@@ -19147,7 +19061,7 @@ Date:   Thu Dec 31 09:59:46 2009 +0100
 
     Wrap gio.SocketClient.connect_async()
 
- gio/gsocket.override | 45 +++++++++++++++++++++++++++++++++++++++++++++
+ gio/gsocket.override |   45 +++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 45 insertions(+)
 
 commit dff024256295c15e49888ad9d5fef74a7746edd7
@@ -19156,8 +19070,8 @@ Date:   Wed Dec 30 23:44:25 2009 +0100
 
     Wrap gio.SocketAddressEnumerator.next_async() and add a test
 
- gio/gsocket.override  | 42 ++++++++++++++++++++++++++++++++++++++++++
- tests/test_gsocket.py | 16 ++++++++++++++++
+ gio/gsocket.override  |   42 ++++++++++++++++++++++++++++++++++++++++++
+ tests/test_gsocket.py |   16 ++++++++++++++++
  2 files changed, 58 insertions(+)
 
 commit e2330bd0d6cbc49b0ecb27b30e3b0593935ce229
@@ -19166,8 +19080,8 @@ Date:   Wed Dec 30 23:43:14 2009 +0100
 
     Add a missing object gio.InetSocketAddress new in GIO 2.22
 
- gio/gio-types.defs |  7 +++++++
- gio/gio.defs      | 31 +++++++++++++++++++++++++++++++
+ gio/gio-types.defs |   7 +++++++
+ gio/gio.defs      |   31 +++++++++++++++++++++++++++++++
  2 files changed, 38 insertions(+)
 
 commit 6040b33467ea381c6cb02f6a5efc0745fa8fa47b
@@ -19176,7 +19090,7 @@ Date:   Wed Dec 30 22:54:47 2009 +0100
 
     Make cancellable optional for gio.SocketAddressEnumerator.next()
 
- gio/gio.defs | 2 +-
+ gio/gio.defs |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit b19f59790b9de943d69b6c5e483928e0443c3d20
@@ -19185,7 +19099,7 @@ Date:   Wed Dec 30 22:17:44 2009 +0100
 
     Add a remainder of the Socket methods that needs manual wrapping still
 
- gio/gsocket.override | 5 +++++
+ gio/gsocket.override |    5 +++++
  1 file changed, 5 insertions(+)
 
 commit 771a7c3fdef7b2e98e509293a8376a81c1282286
@@ -19194,8 +19108,8 @@ Date:   Wed Dec 30 17:20:35 2009 +0100
 
     Wrap gio.Socket.condition_wait() and add a test
 
- gio/gsocket.override  | 27 +++++++++++++++++++++++++++
- tests/test_gsocket.py |  6 +++++-
+ gio/gsocket.override  |   27 +++++++++++++++++++++++++++
+ tests/test_gsocket.py |    6 +++++-
  2 files changed, 32 insertions(+), 1 deletion(-)
 
 commit 50960656815b0897a5ebe5f011537b8dcbdc857e
@@ -19204,10 +19118,10 @@ Date: Wed Dec 30 16:21:49 2009 +0100
 
     Wrap gio.Socket.condition_check() and add a test
 
- gio/Makefile.am       |  1 +
- gio/gio.override      |  1 +
- gio/gsocket.override  | 41 +++++++++++++++++++++++++++++++++++++++++
- tests/test_gsocket.py | 21 +++++++++++++++++++++
+ gio/Makefile.am       |    1 +
+ gio/gio.override      |    1 +
+ gio/gsocket.override  |   41 +++++++++++++++++++++++++++++++++++++++++
+ tests/test_gsocket.py |   21 +++++++++++++++++++++
  4 files changed, 64 insertions(+)
 
 commit de7a359e81792ae8573ac944455ea289985449ed
@@ -19216,8 +19130,8 @@ Date:   Wed Dec 30 14:07:52 2009 +0100
 
     Wrap gio.Resolver.lookup_service_finish() and add a test
 
- gio/gresolver.override  | 37 +++++++++++++++++++++++++++++++++++++
- tests/test_gresolver.py | 13 +++++++++++++
+ gio/gresolver.override  |   37 +++++++++++++++++++++++++++++++++++++
+ tests/test_gresolver.py |   13 +++++++++++++
  2 files changed, 50 insertions(+)
 
 commit 308421789ce849040d645077c41c80b6e2e65e83
@@ -19226,7 +19140,7 @@ Date:   Wed Dec 30 14:00:22 2009 +0100
 
     Wrap gio.Resolver.lookup_service_async()
 
- gio/gresolver.override | 48
+ gio/gresolver.override |   48
  ++++++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 48 insertions(+)
 
@@ -19236,8 +19150,8 @@ Date:   Wed Dec 30 11:11:32 2009 +0100
 
     Wrap gio.Resolver.lookup_service() and add a test
 
- gio/gresolver.override  | 42 ++++++++++++++++++++++++++++++++++++++++++
- tests/test_gresolver.py |  5 +++++
+ gio/gresolver.override  |   42 ++++++++++++++++++++++++++++++++++++++++++
+ tests/test_gresolver.py |    5 +++++
  2 files changed, 47 insertions(+)
 
 commit 7fc71f490494dae73a5264869a97a9d30814930e
@@ -19246,9 +19160,9 @@ Date:   Tue Dec 29 22:12:50 2009 +0100
 
     Wrap gio.Resolver.lookup_by_address_async() and add a test
 
- gio/gresolver.override  | 46
+ gio/gresolver.override  |   46
  ++++++++++++++++++++++++++++++++++++++++++++++
- tests/test_gresolver.py | 14 ++++++++++++++
+ tests/test_gresolver.py |   14 ++++++++++++++
  2 files changed, 60 insertions(+)
 
 commit c91656dbe56f07d3ebbad5113467c22427cf212a
@@ -19257,9 +19171,9 @@ Date:   Tue Dec 29 21:41:30 2009 +0100
 
     Wrap gio.Resolver.lookup_by_name_finish() and add a test
 
- gio/gresolver.override  | 82
- +++++++++++++++++++++++++++++++++++++++++++++++++
- tests/test_gresolver.py | 16 ++++++++--
+ gio/gresolver.override  |   82
+ +++++++++++++++++++++++++++++++++++++++++++++++
+ tests/test_gresolver.py |   16 +++++++--
  2 files changed, 96 insertions(+), 2 deletions(-)
 
 commit 45b477342fa1c2435917c6d97745ad57665c4734
@@ -19268,8 +19182,8 @@ Date:   Tue Dec 29 17:15:44 2009 +0100
 
     Wrap gio.Drive.eject_with_data()
 
- gio/gdrive.override | 54
- +++++++++++++++++++++++++++++++++++++++++++++++++++++
+ gio/gdrive.override |  54
+ +++++++++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 54 insertions(+)
 
 commit 635227480f9659a1f91ab1ec12536d3ed012a976
@@ -19278,8 +19192,8 @@ Date:   Tue Dec 29 17:06:52 2009 +0100
 
     Deprecate old gio.Drive methods
 
- gio/gdrive.override | 7 ++++++-
- gio/gio.defs       | 1 +
+ gio/gdrive.override |   7 ++++++-
+ gio/gio.defs       |    1 +
  2 files changed, 7 insertions(+), 1 deletion(-)
 
 commit 3c0cbc95af29b1e192ed4b5963e96e39c70b349c
@@ -19288,7 +19202,7 @@ Date:   Tue Dec 29 13:51:54 2009 +0100
 
     Small fix in the header
 
- gio/gdrive.override | 2 +-
+ gio/gdrive.override |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 7589128515b79d836365247dc876538c6352da23
@@ -19297,11 +19211,11 @@ Date: Tue Dec 29 12:40:50 2009 +0100
 
     Wrap gio.Resolver.lookup_by_name() and add a couple of tests
 
- gio/Makefile.am        |  1 +
- gio/gio.override       |  1 +
- gio/gresolver.override  | 57
- +++++++++++++++++++++++++++++++++++++++++++++++++
- tests/test_gresolver.py | 21 ++++++++++++++++++
+ gio/Makefile.am        |    1 +
+ gio/gio.override       |    1 +
+ gio/gresolver.override  |   57
+ +++++++++++++++++++++++++++++++++++++++++++++++
+ tests/test_gresolver.py |   21 +++++++++++++++++
  4 files changed, 80 insertions(+)
 
 commit 604d2bf220b1fefa415baaedbdb2882dbaf9e07e
@@ -19311,7 +19225,7 @@ Date:   Tue Dec 29 12:39:13 2009 +0100
     Make cancellable an optional parameter in
     gio.Resolver.lookup_by_address()
 
- gio/gio.defs | 2 +-
+ gio/gio.defs |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 00029145f4cd10759b37b38fb9f72435bf26b28b
@@ -19320,8 +19234,8 @@ Date:   Tue Dec 29 10:15:14 2009 +0100
 
     Strip g_ prefix for many other functions
 
- gio/gio.defs | 94
- ++++++++++++++++++++++++++++++------------------------------
+ gio/gio.defs |   94
+ +++++++++++++++++++++++++++++-----------------------------
  1 file changed, 47 insertions(+), 47 deletions(-)
 
 commit 56d5dfc4fd862e32c19f944a0feb7a00a9154f06
@@ -19330,7 +19244,7 @@ Date:   Tue Dec 29 10:12:53 2009 +0100
 
     Strip g_prefix from InetAddress functions
 
- gio/gio.defs | 8 ++++----
+ gio/gio.defs |    8 ++++----
  1 file changed, 4 insertions(+), 4 deletions(-)
 
 commit 1d360301d51a587a36a59f5d62e354484bbd2b31
@@ -19341,7 +19255,7 @@ Date:   Tue Dec 29 10:03:59 2009 +0100
 
     Strip the g_ prefix from function name
 
- gio/gio.defs | 2 +-
+ gio/gio.defs |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 0fe00109c4f6fc27cbaae9b0a24ecfac71355d2f
@@ -19350,11 +19264,11 @@ Date: Tue Dec 29 09:54:05 2009 +0100
 
     Wrap gio.FileIOStream.query_info_async() and add a test
 
- gio/Makefile.am           |  1 +
- gio/gfileiostream.override | 68
- ++++++++++++++++++++++++++++++++++++++++++++++
- gio/gio.override          |  1 +
- tests/test_gio.py         | 18 ++++++++++++
+ gio/Makefile.am           |    1 +
+ gio/gfileiostream.override |  68
+ ++++++++++++++++++++++++++++++++++++++++++++
+ gio/gio.override          |    1 +
+ tests/test_gio.py         |   18 ++++++++++++
  4 files changed, 88 insertions(+)
 
 commit 86783c695f3641b9491962e8f95a4dcb91f4017c
@@ -19365,8 +19279,8 @@ Date:   Tue Dec 29 13:08:29 2009 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=603534
 
- gobject/pygenum.c  | 20 ++++++++++++++------
- gobject/pygflags.c | 19 +++++++++++++------
+ gobject/pygenum.c  |  20 ++++++++++++++------
+ gobject/pygflags.c |  19 +++++++++++++------
  2 files changed, 27 insertions(+), 12 deletions(-)
 
 commit b90c01cff5ff5cb2796182f2ffd7b5248eaeed6a
@@ -19375,11 +19289,11 @@ Date: Mon Dec 28 22:41:54 2009 +0100
 
     Wrap GIOStream.close_async() and add a test
 
- gio/Makefile.am       |  1 +
- gio/gio.override      |  1 +
- gio/giostream.override | 68
- ++++++++++++++++++++++++++++++++++++++++++++++++++
- tests/test_gio.py     | 21 ++++++++++++++++
+ gio/Makefile.am       |    1 +
+ gio/gio.override      |    1 +
+ gio/giostream.override |   68
+ ++++++++++++++++++++++++++++++++++++++++++++++++
+ tests/test_gio.py     |   21 +++++++++++++++
  4 files changed, 91 insertions(+)
 
 commit 0bff01bcee73a0e0d18342331136119c4e8bf151
@@ -19388,7 +19302,7 @@ Date:   Mon Dec 28 22:39:09 2009 +0100
 
     Make cancellable an optional parameter in GFile.create_readwrite()
 
- gio/gio.defs | 2 +-
+ gio/gio.defs |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 1cabd733cde269ce3164834933f4a226673ecb0b
@@ -19397,7 +19311,7 @@ Date:   Mon Dec 28 21:39:50 2009 +0100
 
     Remove a duplicate entry in gio.defs
 
- gio/gio.defs | 9 ---------
+ gio/gio.defs |    9 ---------
  1 file changed, 9 deletions(-)
 
 commit 9ac372ad0bcfdec4bb1c96bc152246542a59a9b1
@@ -19406,8 +19320,8 @@ Date:   Mon Dec 28 21:37:49 2009 +0100
 
     Wrap gio.FileInfo.set_modification_time and add a test
 
- gio/gfileinfo.override | 33 ++++++++++++++++++++++++++++++++-
- tests/test_gio.py     |  7 ++++++-
+ gio/gfileinfo.override |   33 ++++++++++++++++++++++++++++++++-
+ tests/test_gio.py     |    7 ++++++-
  2 files changed, 38 insertions(+), 2 deletions(-)
 
 commit 7bc2673f92138b1804d8eba091942d14d8884f90
@@ -19416,8 +19330,8 @@ Date:   Mon Dec 28 18:28:03 2009 +0100
 
     Wrap gio.EmblemedIcon.get_emblems() and add a test
 
- gio/gicon.override  | 14 ++++++++++++++
- tests/test_gicon.py | 7 +++++++
+ gio/gicon.override  |  14 ++++++++++++++
+ tests/test_gicon.py |   7 +++++++
  2 files changed, 21 insertions(+)
 
 commit 3d5056ad766d6856d8d6459fe9b377de2f0fd172
@@ -19426,8 +19340,8 @@ Date:   Sat Dec 26 22:27:48 2009 +0100
 
     Update Enums and Flags with new API
 
- gio/gio-types.defs | 153
- +++++++++++++++++++++++++++++++++++++++++++++++++++--
+ gio/gio-types.defs |  153
+ ++++++++++++++++++++++++++++++++++++++++++++++++++--
  1 file changed, 149 insertions(+), 4 deletions(-)
 
 commit 62a9d660a4a2d5fab1d57c6c96c984ff02d25ccd
@@ -19436,7 +19350,7 @@ Date:   Fri Dec 25 18:06:39 2009 +0100
 
     Post release version bump to 2.21.1
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 2bd92cba5b028f0f78c35ecb34e648e95248f9d3
@@ -19448,7 +19362,7 @@ Date:   Fri Aug 14 15:10:26 2009 +0200
     Set the value by g_value_set_uchar and allow to use integer types
     from python.
 
- gobject/pygtype.c | 15 +++++++++++----
+ gobject/pygtype.c |   15 +++++++++++----
  1 file changed, 11 insertions(+), 4 deletions(-)
 
 commit 828d0f042b59ea0319f33a23803c179af34ef2f1
@@ -19472,13 +19386,13 @@ Date: Wed Nov 25 10:33:56 2009 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=602640
 
- gi/pygi-argument.c | 11 +++++++++-
- gi/pygi-argument.h |  3 ++-
- gi/pygi-info.c     | 14 +++++++++++--
- tests/libtestgi.c  | 60
- ++++++++++++++++++++++++++++++++++++++++++++++++++++++
- tests/libtestgi.h  |  4 ++++
- tests/test_gi.py   | 15 ++++++++++++++
+ gi/pygi-argument.c |  11 +++++++++-
+ gi/pygi-argument.h |   3 ++-
+ gi/pygi-info.c     |  14 ++++++++++--
+ tests/libtestgi.c  |  60
+ ++++++++++++++++++++++++++++++++++++++++++++++++++++
+ tests/libtestgi.h  |   4 ++++
+ tests/test_gi.py   |  15 +++++++++++++
  6 files changed, 103 insertions(+), 4 deletions(-)
 
 commit 867536c6734e606d045760837ed22583da06566e
@@ -19487,8 +19401,8 @@ Date:   Fri Dec 18 10:50:09 2009 +0100
 
     Update NEWS and README, release pygobject 2.21.0
 
- NEWS  | 18 ++++++++++++++++++
- README |  6 +++---
+ NEWS  |   18 ++++++++++++++++++
+ README |    6 +++---
  2 files changed, 21 insertions(+), 3 deletions(-)
 
 commit f50fbd24fa61863aaefa4ae1e12e0b314ecd43ae
@@ -19497,7 +19411,7 @@ Date:   Fri Dec 18 10:31:48 2009 +0100
 
     Add pygi-external.h into Makefile SOURCES
 
- gobject/Makefile.am | 3 ++-
+ gobject/Makefile.am |   3 ++-
  1 file changed, 2 insertions(+), 1 deletion(-)
 
 commit 108c03b78f04b4bcfe066a6cb4d941e172bd32fe
@@ -19506,7 +19420,7 @@ Date:   Fri Dec 18 01:20:34 2009 +0100
 
     Bug 598435 - No wrapping for g_find_program_in_path ()
 
- glib/glibmodule.c | 20 ++++++++++++++++++++
+ glib/glibmodule.c |   20 ++++++++++++++++++++
  1 file changed, 20 insertions(+)
 
 commit d3d5cb3a4a2c2cb2bd0c2571304d59e19bc08452
@@ -19515,10 +19429,10 @@ Date: Thu Dec 17 21:54:36 2009 +0100
 
     Wrap new API added in GIO-UNIX 2.22
 
- gio/unix-types.defs | 22 ++++++++++
- gio/unix.defs      | 115
- +++++++++++++++++++++++++++++++++++++++++++++++++++-
- gio/unix.override   |  8 ++++
+ gio/unix-types.defs |  22 ++++++++++
+ gio/unix.defs      |  115
+ ++++++++++++++++++++++++++++++++++++++++++++++++++-
+ gio/unix.override   |   8 ++++
  3 files changed, 144 insertions(+), 1 deletion(-)
 
 commit c87c8a81947a68507e8f3bcaf8e0e969b3e5331b
@@ -19531,7 +19445,7 @@ Date:   Thu Dec 17 21:52:11 2009 +0100
     branch.
     Without the patch the unix module will fail, so I'm forced to bump.
 
- configure.ac | 6 +++---
+ configure.ac |    6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)
 
 commit b630c8d4b1e55938dac89729768c4a877b305215
@@ -19540,7 +19454,7 @@ Date:   Thu Dec 17 02:24:45 2009 +0100
 
     Properly define Connectable as interface type and not object type
 
- gio/gio-types.defs | 12 ++++++------
+ gio/gio-types.defs |  12 ++++++------
  1 file changed, 6 insertions(+), 6 deletions(-)
 
 commit e955b931b07113c7432f7a85f882f69f12d263ad
@@ -19553,8 +19467,8 @@ Date:   Mon Nov 30 22:01:25 2009 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=603411
 
- configure.ac     |  2 +-
- gi/pygi-private.h | 19 +++++++++++++++++++
+ configure.ac     |    2 +-
+ gi/pygi-private.h |   19 +++++++++++++++++++
  2 files changed, 20 insertions(+), 1 deletion(-)
 
 commit 542fdf6da4ad8f2d28d0d50152bd93cb4d8ee39a
@@ -19566,8 +19480,8 @@ Date:   Sat Nov 28 18:48:19 2009 +0000
 
     https://bugzilla.gnome.org/show_bug.cgi?id=602384
 
- gi/pygi-argument.c | 14 +++++++-------
- tests/test_gi.py   | 18 +++++++++---------
+ gi/pygi-argument.c |  14 +++++++-------
+ tests/test_gi.py   |  18 +++++++++---------
  2 files changed, 16 insertions(+), 16 deletions(-)
 
 commit 38e89942d29f2a1dba47ab4a8d5edc84322707cd
@@ -19578,7 +19492,7 @@ Date:   Mon Nov 30 00:10:56 2009 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=603355
 
- gobject/generate-constants.c | 32 ++++++++++++++++----------------
+ gobject/generate-constants.c |   32 ++++++++++++++++----------------
  1 file changed, 16 insertions(+), 16 deletions(-)
 
 commit cfa7d005487e17e8f7c1ceb14282d3a5baadb736
@@ -19588,9 +19502,9 @@ Date:   Sat Nov 28 00:22:21 2009 +0100
     Remove global checks for pointers and move them in type cases that
     need them
 
- gi/pygi-argument.c | 516
- +++++++++++++++++++++++++++++++++++++++++++----------
- gi/pygi-info.c     | 333 +++++++++++++++++-----------------
+ gi/pygi-argument.c |  516
+ ++++++++++++++++++++++++++++++++++++++++++----------
+ gi/pygi-info.c     |  333 +++++++++++++++++----------------
  2 files changed, 596 insertions(+), 253 deletions(-)
 
 commit d1ae73f3cf7cebdb74c9ec56b08928a2a53b9de6
@@ -19601,7 +19515,7 @@ Date:   Mon Nov 23 15:58:17 2009 -0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=602830
 
- gi/types.py | 8 ++++----
+ gi/types.py |   8 ++++----
  1 file changed, 4 insertions(+), 4 deletions(-)
 
 commit a8660621679c629fc81320a8ddf5bf2c7ee1f177
@@ -19612,7 +19526,7 @@ Date:   Tue Nov 24 10:36:18 2009 -0200
 
     https://bugzilla.gnome.org/show_bug.cgi?id=602830
 
- gi/module.py | 4 ++--
+ gi/module.py |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit 66c34805223af9e63c7d61f21a3dbd7505a8f256
@@ -19623,20 +19537,20 @@ Date: Mon Nov 30 10:03:34 2009 +0000
 
     https://bugzilla.gnome.org/show_bug.cgi?id=602735
 
- gi/Makefile.am     |  2 +
- gi/gimodule.c     |   1 +
- gi/module.py      |   2 +-
- gi/pygi-argument.c |  14 +++-
- gi/pygi-boxed.c    | 184
- +++++++++++++++++++++++++++++++++++++++++++++++++++++
- gi/pygi-boxed.h    |  40 ++++++++++++
- gi/pygi-info.c     |  2 +-
- gi/pygi-private.h  |  1 +
- gi/pygi.h         |   6 ++
- gi/types.py       |  18 ------
- tests/libtestgi.c  |  72 ++++++++++-----------
- tests/libtestgi.h  |  18 +++---
- tests/test_gi.py   |  47 ++++++++------
+ gi/Makefile.am     |   2 +
+ gi/gimodule.c     |    1 +
+ gi/module.py      |    2 +-
+ gi/pygi-argument.c |  14 +++-
+ gi/pygi-boxed.c    |  184
+ ++++++++++++++++++++++++++++++++++++++++++++++++++++
+ gi/pygi-boxed.h    |  40 ++++++++++++
+ gi/pygi-info.c     |   2 +-
+ gi/pygi-private.h  |   1 +
+ gi/pygi.h         |    6 ++
+ gi/types.py       |   18 -----
+ tests/libtestgi.c  |  72 ++++++++++----------
+ tests/libtestgi.h  |  18 ++---
+ tests/test_gi.py   |  47 ++++++++------
  13 files changed, 321 insertions(+), 86 deletions(-)
 
 commit e7e2fccae36c28c7e9f288fcd4c90a001140e307
@@ -19648,8 +19562,8 @@ Date:   Mon Nov 30 10:53:57 2009 +0000
 
     This reverts commit 05a2ed55f3e5d2620de8b3b6b0d99e928ef3b041.
 
- gi/pygi-argument.c | 14 +++++++-------
- tests/test_gi.py   | 18 +++++++++---------
+ gi/pygi-argument.c |  14 +++++++-------
+ tests/test_gi.py   |  18 +++++++++---------
  2 files changed, 16 insertions(+), 16 deletions(-)
 
 commit 05a2ed55f3e5d2620de8b3b6b0d99e928ef3b041
@@ -19661,8 +19575,8 @@ Date:   Sat Nov 28 18:48:19 2009 +0000
 
     https://bugzilla.gnome.org/show_bug.cgi?id=602384
 
- gi/pygi-argument.c | 14 +++++++-------
- tests/test_gi.py   | 18 +++++++++---------
+ gi/pygi-argument.c |  14 +++++++-------
+ tests/test_gi.py   |  18 +++++++++---------
  2 files changed, 16 insertions(+), 16 deletions(-)
 
 commit e24d155dd7b4a5b9c25c054137d1370c369d3192
@@ -19673,7 +19587,7 @@ Date:   Sat Nov 28 18:45:54 2009 +0000
 
     https://bugzilla.gnome.org/show_bug.cgi?id=603244
 
- gobject/generate-constants.c | 17 ++++++++++++++++-
+ gobject/generate-constants.c |   17 ++++++++++++++++-
  1 file changed, 16 insertions(+), 1 deletion(-)
 
 commit 3a295cb7ffaaaf29c71b8833cf0ee5ec7ceaa909
@@ -19682,7 +19596,7 @@ Date:   Sat Nov 28 18:48:49 2009 +0100
 
     Fix bad name when rebuilding the unix source module
 
- gio/Makefile.am | 2 +-
+ gio/Makefile.am |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit a8cbb6fb72dbe6630d1265b18095c9a96f496b86
@@ -19704,9 +19618,9 @@ Date:   Sat Nov 28 11:03:51 2009 +0000
 
     https://bugzilla.gnome.org/show_bug.cgi?id=601181
 
- tests/libtestgi.c | 23 +++++++++++++++++++++++
- tests/libtestgi.h | 16 ++++++++++++++++
- tests/test_gi.py  | 21 +++++++++++++++++++++
+ tests/libtestgi.c |   23 +++++++++++++++++++++++
+ tests/libtestgi.h |   16 ++++++++++++++++
+ tests/test_gi.py  |   21 +++++++++++++++++++++
  3 files changed, 60 insertions(+)
 
 commit 076ba3156c13375a75983cef7a409c8c8afea119
@@ -19730,8 +19644,8 @@ Date:   Thu Nov 26 23:50:54 2009 +0100
     notably tests
     that methods don't get overridden by the metaclass.
 
- gi/types.py     |  5 +++--
- tests/test_gi.py | 19 +++++++++++++++++++
+ gi/types.py     |    5 +++--
+ tests/test_gi.py |   19 +++++++++++++++++++
  2 files changed, 22 insertions(+), 2 deletions(-)
 
 commit ac80e64c9f7d257865aa820753e52d56cf2871c8
@@ -19742,10 +19656,10 @@ Date: Fri Nov 27 12:06:59 2009 +0000
 
     https://bugzilla.gnome.org/show_bug.cgi?id=602709
 
- gi/pygi-argument.c | 29 ++++++++++++++++++++++++-----
- tests/libtestgi.c  | 23 ++++++++++++++++++++++-
- tests/libtestgi.h  |  7 +++++--
- tests/test_gi.py   |  8 ++++++++
+ gi/pygi-argument.c |  29 ++++++++++++++++++++++++-----
+ tests/libtestgi.c  |  23 ++++++++++++++++++++++-
+ tests/libtestgi.h  |   7 +++++--
+ tests/test_gi.py   |   8 ++++++++
  4 files changed, 59 insertions(+), 8 deletions(-)
 
 commit 4a373b8ad6ec137e911b92a3e745e0fd76541292
@@ -19754,7 +19668,7 @@ Date:   Wed Nov 25 16:53:55 2009 +0100
 
     Use the right variable when looking up in sys.modules
 
- gi/importer.py | 2 +-
+ gi/importer.py |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit fc3dca018e85aee34ade79d104ebd8cdd1dd5968
@@ -19765,10 +19679,10 @@ Date: Tue Nov 24 15:52:47 2009 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=602638
 
- gi/pygi-argument.c | 19 ++++++++++++++++++-
- tests/libtestgi.c  |  6 ++++++
- tests/libtestgi.h  |  1 +
- tests/test_gi.py   |  1 +
+ gi/pygi-argument.c |  19 ++++++++++++++++++-
+ tests/libtestgi.c  |   6 ++++++
+ tests/libtestgi.h  |   1 +
+ tests/test_gi.py   |   1 +
  4 files changed, 26 insertions(+), 1 deletion(-)
 
 commit 33081c29a1c2fdec2b8bfe17ae0a72b8db7a8d84
@@ -19777,7 +19691,7 @@ Date:   Tue Nov 24 13:10:11 2009 +0100
 
     Add stuff to .gitignore
 
- .gitignore | 7 +++++++
+ .gitignore |   7 +++++++
  1 file changed, 7 insertions(+)
 
 commit 5c010fe673d9bd01c27c8d7d312064665275888c
@@ -19822,7 +19736,7 @@ Date:   Mon Nov 23 15:32:16 2009 -0200
     for the overridden modules to be able to access the auto-generated
     ones.
 
- gi/importer.py | 34 +++++++++++++++++++++-------------
+ gi/importer.py |   34 +++++++++++++++++++++-------------
  1 file changed, 21 insertions(+), 13 deletions(-)
 
 commit fad89e12a744b57e6348968f351d25d167de8248
@@ -19833,10 +19747,10 @@ Date: Sun Nov 22 17:56:20 2009 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=601253
 
- gi/pygi-argument.c | 20 ++++++++++++--------
- tests/libtestgi.c  |  5 +++++
- tests/libtestgi.h  |  5 +++++
- tests/test_gi.py   |  5 +++++
+ gi/pygi-argument.c |  20 ++++++++++++--------
+ tests/libtestgi.c  |   5 +++++
+ tests/libtestgi.h  |   5 +++++
+ tests/test_gi.py   |   5 +++++
  4 files changed, 27 insertions(+), 8 deletions(-)
 
 commit 1dc62a998dd8d2a0a397f8309011a8d79cb56034
@@ -19847,8 +19761,8 @@ Date:   Sun Nov 22 17:25:04 2009 +0100
 
     https://bugzilla.gnome.org/show_bug.cgi?id=601181
 
- gi/gimodule.c | 33 +++++++++++++++++++++++++++++++++
- gi/types.py   |  5 ++++-
+ gi/gimodule.c |   33 +++++++++++++++++++++++++++++++++
+ gi/types.py   |    5 ++++-
  2 files changed, 37 insertions(+), 1 deletion(-)
 
 commit d67d5afb5115c1d8294415b2e1a82af2c737ba17
@@ -19857,7 +19771,7 @@ Date:   Sun Nov 22 18:23:02 2009 +0200
 
     Ignore one more file.
 
- .gitignore | 1 +
+ .gitignore |   1 +
  1 file changed, 1 insertion(+)
 
 commit 408b2186aea58a41ec26b9d0ca29ecd42df5ef7e
@@ -19868,8 +19782,8 @@ Date:   Sun Nov 22 18:22:23 2009 +0200
 
     Bug #587637.  Test the fix.
 
- gobject/propertyhelper.py | 5 +++--
- tests/test_properties.py  | 6 ++++++
+ gobject/propertyhelper.py |   5 +++--
+ tests/test_properties.py  |   6 ++++++
  2 files changed, 9 insertions(+), 2 deletions(-)
 
 commit 6ccf58afcf58e118903ced0135f0fe69b00e09ad
@@ -19878,7 +19792,7 @@ Date:   Mon Oct 26 18:06:06 2009 +0000
 
     Treat GI_INFO_TYPE_INTERFACE same as GI_INFO_TYPE_OBJECT
 
- gi/pygi-argument.c | 3 +++
+ gi/pygi-argument.c |   3 +++
  1 file changed, 3 insertions(+)
 
 commit e6f730d6e1431e36bd5f6b503a1038617f8d1e7d
@@ -19887,7 +19801,7 @@ Date:   Sat Nov 14 21:42:43 2009 +0100
 
     Import pygtk properly to avoid failure on some setups
 
- tests/test_gi.py | 3 +++
+ tests/test_gi.py |    3 +++
  1 file changed, 3 insertions(+)
 
 commit e604a89e9dc1a79687ef5fb94af7a2182be07dfb
@@ -19903,7 +19817,7 @@ Date:   Sat Nov 14 21:39:15 2009 +0100
 
     Signed-off-by: Simon van der Linden <svdlinden@src.gnome.org>
 
- configure.ac | 7 +++++--
+ configure.ac |    7 +++++--
  1 file changed, 5 insertions(+), 2 deletions(-)
 
 commit 4a887cfabb326cb99dc65073d592c03f59e2f141
@@ -19912,7 +19826,7 @@ Date:   Sat Nov 14 21:36:19 2009 +0100
 
     Fix silent rules setup
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 602afea88c338a38327cd84e08703c5daa384ec6
@@ -19924,9 +19838,9 @@ Date:   Tue Nov 10 22:32:33 2009 +0200
     Retain in original place for backward compatibility, but remove it
     from the docs.
 
- docs/reference/pygobject-functions.xml | 36
- +++++++---------------------------
- glib/glibmodule.c                     | 16 +++++++++++++++
+ docs/reference/pygobject-functions.xml |   36
+ +++++++-------------------------
+ glib/glibmodule.c                     |   16 ++++++++++++++
  2 files changed, 23 insertions(+), 29 deletions(-)
 
 commit 734755912fff11332dc0e96317b7d6b7c4014e6a
@@ -19935,12 +19849,12 @@ Date: Mon Nov 9 22:44:12 2009 +0100
 
     Remove PyGObject patches since they've been merged to master
 
- ...pytype-aware-of-the-interface-enum-flags-.patch |  78 --------
- patches/0002-Fix-girpository-build-setup.patch     | 186
- -------------------
- ...capabilities-to-import-wrappers-from-pygi.patch | 200
- ---------------------
- ...ances-by-calling-tp_alloc-rather-than-PyO.patch |  29 ---
+ ...pytype-aware-of-the-interface-enum-flags-.patch |  78 --------
+ patches/0002-Fix-girpository-build-setup.patch     |  186
+ ------------------
+ ...capabilities-to-import-wrappers-from-pygi.patch |  200
+ --------------------
+ ...ances-by-calling-tp_alloc-rather-than-PyO.patch |  29 ---
  4 files changed, 493 deletions(-)
 
 commit 6a69288941e65312fe82649ec72d2f21b2dc618f
@@ -19956,7 +19870,7 @@ Date:   Sat Nov 7 23:42:07 2009 +0100
     PyGBoxed subtypes, so the subtype's allocation function must be
     called instead.
 
- gobject/pygboxed.c | 3 ++-
+ gobject/pygboxed.c |   3 ++-
  1 file changed, 2 insertions(+), 1 deletion(-)
 
 commit 000f7c36e667c6e078e3370769ea868e56a1b4ee
@@ -19975,12 +19889,12 @@ Date: Sat Nov 7 16:43:35 2009 +0100
     function and
     API definition had to be copied in this tree.
 
- configure.ac           |  8 ++++++
- gobject/pygboxed.c     | 10 ++++++++
- gobject/pygi-external.h | 66
- +++++++++++++++++++++++++++++++++++++++++++++++++
- gobject/pygobject.c    | 10 ++++++++
- gobject/pygpointer.c   | 11 +++++++++
+ configure.ac           |    8 ++++++
+ gobject/pygboxed.c     |   10 +++++++
+ gobject/pygi-external.h |   66
+ +++++++++++++++++++++++++++++++++++++++++++++++
+ gobject/pygobject.c    |   10 +++++++
+ gobject/pygpointer.c   |   11 ++++++++
  5 files changed, 105 insertions(+)
 
 commit fdfbc90dbc9e305646b62d73de506b5e0e99cc91
@@ -19991,9 +19905,9 @@ Date:   Sun Nov 8 20:03:58 2009 +0100
 
     A file, pygi-external.h, was missing in patch #3.
 
- ...capabilities-to-import-wrappers-from-pygi.patch | 74
- ++++++++++++++++++++--
- ...ances-by-calling-tp_alloc-rather-than-PyO.patch |  2 +-
+ ...capabilities-to-import-wrappers-from-pygi.patch |  74
+ ++++++++++++++++++--
+ ...ances-by-calling-tp_alloc-rather-than-PyO.patch |   2 +-
  2 files changed, 69 insertions(+), 7 deletions(-)
 
 commit 8f53ca8a72f9958711765281dd5c5bdfb7042d7d
@@ -20002,7 +19916,7 @@ Date:   Sun Nov 8 16:52:18 2009 +0100
 
     Add myself to pygi.doap
 
- pygi.doap | 5 +++++
+ pygi.doap |   5 +++++
  1 file changed, 5 insertions(+)
 
 commit 6f50d5102aec9288e1851f12e9d232b9c141d524
@@ -20011,7 +19925,7 @@ Date:   Sun Nov 8 15:40:51 2009 +0100
 
     Add a doap file
 
- pygi.doap | 17 +++++++++++++++++
+ pygi.doap |   17 +++++++++++++++++
  1 file changed, 17 insertions(+)
 
 commit ce673b9027868e6add4eeb438bc707eb40bfd046
@@ -20020,11 +19934,11 @@ Date: Sun Nov 8 13:06:54 2009 +0100
 
     Add PyGObject patches
 
- ...pytype-aware-of-the-interface-enum-flags-.patch |  78 +++++++++
- patches/0002-Fix-girpository-build-setup.patch     | 186
- +++++++++++++++++++++
- ...capabilities-to-import-wrappers-from-pygi.patch | 138 +++++++++++++++
- ...ances-by-calling-tp_alloc-rather-than-PyO.patch |  29 ++++
+ ...pytype-aware-of-the-interface-enum-flags-.patch |  78 ++++++++
+ patches/0002-Fix-girpository-build-setup.patch     |  186
+ ++++++++++++++++++++
+ ...capabilities-to-import-wrappers-from-pygi.patch |  138 +++++++++++++++
+ ...ances-by-calling-tp_alloc-rather-than-PyO.patch |  29 +++
  4 files changed, 431 insertions(+)
 
 commit b24fd9633cabe1d95cde173a04e9a49833b06a26
@@ -20075,10 +19989,10 @@ Date: Sat Nov 7 13:23:53 2009 +0100
 
     Fix girpository build setup
 
- configure.ac            | 21 ++++++-----
- girepository/Makefile.am | 13 ++++---
- m4/introspection.m4     | 92
- ++++++++++++++++++++++++++++++++++++++++++++++++
+ configure.ac            |   21 +++++++----
+ girepository/Makefile.am |   13 +++----
+ m4/introspection.m4     |   92
+ ++++++++++++++++++++++++++++++++++++++++++++++
  3 files changed, 111 insertions(+), 15 deletions(-)
 
 commit 421c03b1c5b69f90c778663df901b45ca3ee8ba5
@@ -20088,7 +20002,7 @@ Date:   Fri Nov 6 19:17:36 2009 +0100
     Make GType.pytype aware of the interface, enum, flags, pointer and
     boxed wrappers
 
- gobject/pygtype.c | 39 +++++++++++++++++++++++++++++++++------
+ gobject/pygtype.c |   39 +++++++++++++++++++++++++++++++++------
  1 file changed, 33 insertions(+), 6 deletions(-)
 
 commit a9c168c58cc6a449b51653417bf3f58bdd41457c
@@ -20099,8 +20013,8 @@ Date:   Wed Oct 21 18:01:16 2009 +0200
 
     Fixes bug #481569
 
- glib/pygmainloop.c | 95
- ++++++++++++++++++++++++++++--------------------------
+ glib/pygmainloop.c |  95
+ +++++++++++++++++++++++++++-------------------------
  1 file changed, 50 insertions(+), 45 deletions(-)
 
 commit c6a5750379354c12e2599b3c73b4f9a23fd39114
@@ -20109,7 +20023,7 @@ Date:   Fri Sep 25 20:12:21 2009 +0200
 
     Post release version bump to 2.21.0
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 33920eb013628a5e22b7b32403fb965ae3210f47
@@ -20118,7 +20032,7 @@ Date:   Wed Sep 23 21:52:04 2009 +0200
 
     Update NEWS and release 2.20.0
 
- NEWS | 6 ++++++
+ NEWS |    6 ++++++
  1 file changed, 6 insertions(+)
 
 commit 66b12f7d2f54143ea80b4f8aec863b26800363d6
@@ -20127,7 +20041,7 @@ Date:   Wed Sep 23 21:51:43 2009 +0200
 
     Bump version to 2.20.0
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 7bf87338a026ac82f908aa5fddf2bfea2daf6617
@@ -20137,7 +20051,7 @@ Date:   Wed Sep 23 12:11:50 2009 -0500
     Updated uninstalled.pc file so that it contains the right paths for
     defsdir files and codegen files.  See bug #596023.
 
- pygobject-2.0-uninstalled.pc.in | 4 ++--
+ pygobject-2.0-uninstalled.pc.in |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit d042402b7c649b2bed7f20038eb82518ec7cc9b3
@@ -20148,7 +20062,7 @@ Date:   Tue Sep 22 22:02:27 2009 +0300
 
     Bug #579406, second change.
 
- glib/pygmainloop.c | 1 +
+ glib/pygmainloop.c |   1 +
  1 file changed, 1 insertion(+)
 
 commit 640be8109d066e85ed77c810830a5f73c750415b
@@ -20161,7 +20075,7 @@ Date:   Sun Aug 30 16:46:02 2009 +0200
     .devhelp
     file that is produced when using ref-html-style.xsl.
 
- docs/xsl/devhelp.xsl | 2 +-
+ docs/xsl/devhelp.xsl |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit c888b5ca722fcad6a03de585606c677c2969ebd6
@@ -20170,7 +20084,7 @@ Date:   Thu Aug 13 21:32:07 2009 +0200
 
     Allow to use automake 1.11
 
- autogen.sh | 13 +++++++------
+ autogen.sh |  13 +++++++------
  1 file changed, 7 insertions(+), 6 deletions(-)
 
 commit 30deaba4bd1e199aab75cb346ee9237237807fbd
@@ -20179,7 +20093,7 @@ Date:   Tue Aug 11 22:19:50 2009 +0200
 
     Update README
 
- README | 10 ++++++++--
+ README |   10 ++++++++--
  1 file changed, 8 insertions(+), 2 deletions(-)
 
 commit af165d350d0d1bb493be5140bf84376d3da1e4d8
@@ -20188,7 +20102,7 @@ Date:   Tue Aug 11 22:16:52 2009 +0200
 
     Update AUTHORS
 
- AUTHORS | 8 +++++---
+ AUTHORS |    8 +++++---
  1 file changed, 5 insertions(+), 3 deletions(-)
 
 commit 5f9f87f276b97964b525a501d8584ea8b4d8bfd2
@@ -20197,8 +20111,8 @@ Date:   Tue Aug 11 22:11:43 2009 +0200
 
     Add myself and Paul as maintainers
 
- MAINTAINERS   |  8 ++++++++
- pygobject.doap | 14 ++++++++++++++
+ MAINTAINERS   |    8 ++++++++
+ pygobject.doap |   14 ++++++++++++++
  2 files changed, 22 insertions(+)
 
 commit 3bfae47fbcb5523d91fb2d1ed7ea347eeddd1775
@@ -20207,7 +20121,7 @@ Date:   Tue Aug 11 20:52:44 2009 +0200
 
     Update NEWS release 2.19.0
 
- NEWS | 29 +++++++++++++++++++++++++++++
+ NEWS |   29 +++++++++++++++++++++++++++++
  1 file changed, 29 insertions(+)
 
 commit e82a1841f31ad54dd50569d0d45290713409e0bf
@@ -20216,8 +20130,8 @@ Date:   Tue Aug 11 00:04:31 2009 -0700
 
     Add macros to help with Python list to/from GList/GSList conversions.
 
- gobject/pygobject.h | 242
- +++++++++++++++++++++++++++++++++++++++++++++++++++-
+ gobject/pygobject.h | 242
+ ++++++++++++++++++++++++++++++++++++++++++++++++++-
  1 file changed, 241 insertions(+), 1 deletion(-)
 
 commit f1fad96da2c531fbd3218923baa4fe806a2942d4
@@ -20226,7 +20140,7 @@ Date:   Sat Aug 8 21:37:54 2009 +0200
 
     Bug 590063 – GFileInfo.list_attributes should accept None/NULL
 
- gio/gfileinfo.override | 4 ++--
+ gio/gfileinfo.override |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 commit b7907cf6ff6ccf8d38b5206f09f5c864c205e5de
@@ -20235,8 +20149,8 @@ Date:   Fri Jul 24 14:30:37 2009 -0300
 
     Remove myself as a maintainer
 
- MAINTAINERS   | 4 ----
- pygobject.doap | 7 -------
+ MAINTAINERS   |    4 ----
+ pygobject.doap |    7 -------
  2 files changed, 11 deletions(-)
 
 commit be6eb21320b4688bcfcd8cbea33f7be29a76f2a2
@@ -20246,7 +20160,7 @@ Date:   Wed Jul 8 15:47:44 2009 -0700
            * codegen/defsgen.py (clean_patterns): Strip out Windows
            DLL API macros.
 
- codegen/defsgen.py | 6 +++---
+ codegen/defsgen.py |   6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)
 
 commit 2214cad3529979e29342a7e1fdc2915b90ce9c10
@@ -20255,12 +20169,14 @@ Date: Tue Jun 23 21:18:23 2009 +0200
 
     Fix the gio.unix namespace in docs
 
- docs/Makefile.am                         |  2 ++
- docs/reference/pygio-classes.xml         |  2 --
- docs/reference/pygio-unixinputstream.xml  | 26 +++++++++++++-------------
- docs/reference/pygio-unixoutputstream.xml | 26 +++++++++++++-------------
- docs/reference/pygiounix-classes.xml     | 13 +++++++++++++
- docs/reference/pygobject-ref.xml         |  1 +
+ docs/Makefile.am                         |    2 ++
+ docs/reference/pygio-classes.xml         |    2 --
+ docs/reference/pygio-unixinputstream.xml  |   26
+ +++++++++++++-------------
+ docs/reference/pygio-unixoutputstream.xml |   26
+ +++++++++++++-------------
+ docs/reference/pygiounix-classes.xml     |   13 +++++++++++++
+ docs/reference/pygobject-ref.xml         |    1 +
  6 files changed, 42 insertions(+), 28 deletions(-)
 
 commit c0acaedfe7f4e488a490e07e3184f0709e1fadc2
@@ -20269,10 +20185,10 @@ Date: Mon Jun 22 23:13:36 2009 +0200
 
     Add docs for gio functions (mostly for content types)
 
- docs/Makefile.am                  |   2 +
- docs/reference/pygio-classes.xml   |  1 +
- docs/reference/pygio-functions.xml | 395
- +++++++++++++++++++++++++++++++++++++
+ docs/Makefile.am                  |    2 +
+ docs/reference/pygio-classes.xml   |   1 +
+ docs/reference/pygio-functions.xml |  395
+ ++++++++++++++++++++++++++++++++++++
  3 files changed, 398 insertions(+)
 
 commit ebddee47fb7f3e06f9e0a7a14b9532d5cf8a3881
@@ -20281,12 +20197,12 @@ Date: Sun Jun 21 18:35:56 2009 +0200
 
     Add docs for gio.Unix[In|Out]putStream classes
 
- docs/Makefile.am                         |   4 +
- docs/reference/pygio-classes.xml         |   2 +
- docs/reference/pygio-unixinputstream.xml  | 202
- ++++++++++++++++++++++++++++++
- docs/reference/pygio-unixoutputstream.xml | 202
- ++++++++++++++++++++++++++++++
+ docs/Makefile.am                         |    4 +
+ docs/reference/pygio-classes.xml         |    2 +
+ docs/reference/pygio-unixinputstream.xml  |  202
+ +++++++++++++++++++++++++++++
+ docs/reference/pygio-unixoutputstream.xml |  202
+ +++++++++++++++++++++++++++++
  4 files changed, 410 insertions(+)
 
 commit 5b71e58117c85634d95d08449eb54079b246e5be
@@ -20295,7 +20211,7 @@ Date:   Sun Jun 21 16:50:03 2009 +0300
 
     Document that many functions got moved gobject -> glib
 
- docs/reference/pygobject-functions.xml | 7 +++++++
+ docs/reference/pygobject-functions.xml |    7 +++++++
  1 file changed, 7 insertions(+)
 
 commit b270dc43f2cef5260b0bbc71356fd8e6a2b7f754
@@ -20304,10 +20220,10 @@ Date: Sat Jun 20 19:23:25 2009 +0200
 
     Add docs for class gio.DataOutputStream
 
- docs/Makefile.am                         |   2 +
- docs/reference/pygio-classes.xml         |   1 +
- docs/reference/pygio-dataoutputstream.xml | 504
- ++++++++++++++++++++++++++++++
+ docs/Makefile.am                         |    2 +
+ docs/reference/pygio-classes.xml         |    1 +
+ docs/reference/pygio-dataoutputstream.xml |  504
+ +++++++++++++++++++++++++++++
  3 files changed, 507 insertions(+)
 
 commit 549313fc4886fa3deb31761de6f5400708165d86
@@ -20317,7 +20233,7 @@ Date:   Thu Jun 18 18:48:37 2009 +0200
     Allow h2def.py to work when there are tabs or multiple spaces after
     the struct keyword.
 
- codegen/h2def.py | 8 ++++----
+ codegen/h2def.py |    8 ++++----
  1 file changed, 4 insertions(+), 4 deletions(-)
 
 commit 5c36ef20dca8cd1793f2d3e88949675299097f40
@@ -20326,11 +20242,11 @@ Date: Mon Jun 15 23:02:34 2009 +0200
 
     Add dpcs for class gio.DataInputStream
 
- docs/Makefile.am                        |   2 +
- docs/reference/pygio-classes.xml        |   1 +
- docs/reference/pygio-constants.xml      |  66 +++
- docs/reference/pygio-datainputstream.xml | 799
- +++++++++++++++++++++++++++++++
+ docs/Makefile.am                        |    2 +
+ docs/reference/pygio-classes.xml        |    1 +
+ docs/reference/pygio-constants.xml      |   66 +++
+ docs/reference/pygio-datainputstream.xml |  799
+ ++++++++++++++++++++++++++++++
  4 files changed, 868 insertions(+)
 
 commit a8b36c343c6850af929c1d5a930f923831b4e637
@@ -20341,7 +20257,7 @@ Date:   Mon Jun 15 23:25:01 2009 +0300
 
     Bug #585817.
 
- girepository/Makefile.am | 2 +-
+ girepository/Makefile.am |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 9d9ae97b8a49836ec1f3b8d6529bafe1cc06d4d7
@@ -20353,9 +20269,9 @@ Date:   Mon Jun 15 23:19:47 2009 +0300
     Add optional 'origin' parameter.  Expand gio.Emblem documentation and
     mark gio.emblem_new_with_origin as sort-of-deprecated.
 
- docs/reference/pygio-emblem.xml | 51
- +++++++++++++++++++++++++++++++++++++++--
- gio/gio.defs                   |  5 ++--
+ docs/reference/pygio-emblem.xml |   51
+ +++++++++++++++++++++++++++++++++++++--
+ gio/gio.defs                   |    5 ++--
  2 files changed, 52 insertions(+), 4 deletions(-)
 
 commit 268e1681fd5b46e6412d3a8db84f3f1cb02fdbde
@@ -20364,10 +20280,10 @@ Date: Sat Jun 13 14:44:47 2009 +0200
 
     Add docs for gio.BufferedOutputStream class
 
- docs/Makefile.am                             |  96 ++++-----
- docs/reference/pygio-bufferedoutputstream.xml | 275
- ++++++++++++++++++++++++++
- docs/reference/pygio-classes.xml             |   1 +
+ docs/Makefile.am                             |   96 ++++-----
+ docs/reference/pygio-bufferedoutputstream.xml |  275
+ +++++++++++++++++++++++++
+ docs/reference/pygio-classes.xml             |    1 +
  3 files changed, 325 insertions(+), 47 deletions(-)
 
 commit a6e25aaa7c8f27d62f2917b06728d7ccfcd46416
@@ -20378,8 +20294,8 @@ Date:   Sat Jun 13 14:38:34 2009 +0200
 
     Added the constructor reference and fixed a typo in properties header
 
- docs/reference/pygio-bufferedinputstream.xml | 34
- ++++++++++++++++++++++++++--
+ docs/reference/pygio-bufferedinputstream.xml |   34
+ ++++++++++++++++++++++++--
  1 file changed, 32 insertions(+), 2 deletions(-)
 
 commit a9b13b60a5aad726d7d7dd7fdc5153b1561fb591
@@ -20388,10 +20304,10 @@ Date: Sat Jun 13 01:25:06 2009 +0200
 
     Add docs for gio.BufferedInputStream
 
- docs/Makefile.am                            |   2 +
- docs/reference/pygio-bufferedinputstream.xml | 431
- +++++++++++++++++++++++++++
- docs/reference/pygio-classes.xml            |   1 +
+ docs/Makefile.am                            |    2 +
+ docs/reference/pygio-bufferedinputstream.xml |  431
+ ++++++++++++++++++++++++++
+ docs/reference/pygio-classes.xml            |    1 +
  3 files changed, 434 insertions(+)
 
 commit 7766daa59b0e2b85413cee368bf2ebd2afe198e1
@@ -20403,13 +20319,13 @@ Date: Sun May 31 18:25:47 2009 +0300
     Also move several gio.Mount overrides over from 'gio.override' to
     existing 'gmount.override'.  Part of bug #584289.
 
- gio/gfile.override          |  20 ++---
- gio/gfileenumerator.override |   6 +-
- gio/ginputstream.override    |   2 +-
- gio/gio.override            | 204
- -------------------------------------------
- gio/gmount.override         | 204
- +++++++++++++++++++++++++++++++++++++++++++
+ gio/gfile.override          |   20 ++---
+ gio/gfileenumerator.override |    6 +-
+ gio/ginputstream.override    |    2 +-
+ gio/gio.override            |  204
+ ------------------------------------------
+ gio/gmount.override         |  204
+ ++++++++++++++++++++++++++++++++++++++++++
  5 files changed, 218 insertions(+), 218 deletions(-)
 
 commit 07e9c18dc092f6546230168b6b69c1b3454e120a
@@ -20420,8 +20336,8 @@ Date:   Sun May 31 18:56:55 2009 +0300
 
     Part of bug #584289.
 
- codegen/codegen.py    |  9 +++++----
- codegen/definitions.py | 10 +++++++++-
+ codegen/codegen.py    |    9 +++++----
+ codegen/definitions.py |   10 +++++++++-
  2 files changed, 14 insertions(+), 5 deletions(-)
 
 commit 235fde85d015382f2ba38b21968e82b3ac0b6612
@@ -20430,7 +20346,7 @@ Date:   Fri Jun 12 00:12:17 2009 +0200
 
     Fix object type in gio.BufferedInputStream_fill_async
 
- gio/gbufferedinputstream.override | 2 +-
+ gio/gbufferedinputstream.override |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 407b0e909056f15960e6a4e549896d786ce0a0b2
@@ -20441,11 +20357,11 @@ Date: Tue Jun 9 00:08:21 2009 +0200
 
     Wrap the method gio.BufferedInputStream.fill_async and add a test
 
- gio/Makefile.am                  |  1 +
- gio/gbufferedinputstream.override | 70
- +++++++++++++++++++++++++++++++++++++++
- gio/gio.override                 |  1 +
- tests/test_gio.py                | 25 ++++++++++++++
+ gio/Makefile.am                  |    1 +
+ gio/gbufferedinputstream.override |   70
+ +++++++++++++++++++++++++++++++++++++
+ gio/gio.override                 |    1 +
+ tests/test_gio.py                |   25 +++++++++++++
  4 files changed, 97 insertions(+)
 
 commit b7c96b41b287685fe57504e0add3a6f16e649975
@@ -20455,7 +20371,7 @@ Date:   Mon Jun 8 15:42:40 2009 +0200
     Add gio.BufferedOutputStream which was forgotten in the types
     definition
 
- gio/gio-types.defs | 7 +++++++
+ gio/gio-types.defs |   7 +++++++
  1 file changed, 7 insertions(+)
 
 commit 3666f75af4ef2c8e038116aee5afada59d59f689
@@ -20464,10 +20380,10 @@ Date: Mon Jun 8 14:20:02 2009 +0200
 
     Add docs for gio.MemoryOutputStream
 
- docs/Makefile.am                           |   2 +
- docs/reference/pygio-classes.xml           |   1 +
- docs/reference/pygio-memoryoutputstream.xml | 175
- ++++++++++++++++++++++++++++
+ docs/Makefile.am                           |    2 +
+ docs/reference/pygio-classes.xml           |    1 +
+ docs/reference/pygio-memoryoutputstream.xml | 175
+ +++++++++++++++++++++++++++
  3 files changed, 178 insertions(+)
 
 commit 6eb5e3988cbddb4afb3d5747364d6eb80370bb78
@@ -20476,11 +20392,11 @@ Date: Mon Jun 8 13:30:15 2009 +0200
 
     Split overrides for gio.MemoryOutputStream
 
- gio/Makefile.am                 |  1 +
- gio/gio.override                |  1 +
- gio/gmemoryoutputstream.override | 45
- ++++++++++++++++++++++++++++++++++++++++
- gio/goutputstream.override      | 24 ---------------------
+ gio/Makefile.am                 |    1 +
+ gio/gio.override                |    1 +
+ gio/gmemoryoutputstream.override |   45
+ ++++++++++++++++++++++++++++++++++++++
+ gio/goutputstream.override      |   24 --------------------
  4 files changed, 47 insertions(+), 24 deletions(-)
 
 commit dfbdf23633a772e78b47b0e7b0c3e3b87855d9ff
@@ -20492,15 +20408,15 @@ Date: Mon Jun 8 11:45:11 2009 +0200
     Add the wrapper for gio.memory_input_stream_new_from_data including
     docs and a test.
 
- docs/Makefile.am                          |   4 +-
- docs/reference/pygio-classes.xml          |   1 +
- docs/reference/pygio-memoryinputstream.xml | 151
- +++++++++++++++++++++++++++++
- gio/Makefile.am                           |   1 +
- gio/ginputstream.override                 |  34 -------
- gio/gio.override                          |   1 +
- gio/gmemoryinputstream.override           |  91 +++++++++++++++++
- tests/test_gio.py                         |   4 +
+ docs/Makefile.am                          |    4 +-
+ docs/reference/pygio-classes.xml          |    1 +
+ docs/reference/pygio-memoryinputstream.xml |  151
+ ++++++++++++++++++++++++++++
+ gio/Makefile.am                           |    1 +
+ gio/ginputstream.override                 |   34 -------
+ gio/gio.override                          |    1 +
+ gio/gmemoryinputstream.override           |   91 +++++++++++++++++
+ tests/test_gio.py                         |    4 +
  8 files changed, 252 insertions(+), 35 deletions(-)
 
 commit fcc3cb0e167789746a1a9db0cba54ea7a97c7259
@@ -20509,12 +20425,12 @@ Date: Mon Jun 8 19:15:24 2009 +0200
 
     Fixes whitespaces style issues with girepository.
 
- girepository/Makefile.am      |  2 +-
- girepository/bank-repository.c | 67
- +++++++++++++++++++++---------------------
- girepository/bank.h           |  2 +-
- girepository/btypes.py                |  6 ++--
- girepository/module.py                |  2 +-
+ girepository/Makefile.am      |    2 +-
+ girepository/bank-repository.c |   67
+ ++++++++++++++++++++--------------------
+ girepository/bank.h           |    2 +-
+ girepository/btypes.py                |    6 ++--
+ girepository/module.py                |    2 +-
  5 files changed, 39 insertions(+), 40 deletions(-)
 
 commit fb4b2c8cdad2853e6bfe9526529e3a3ab052c5e0
@@ -20523,7 +20439,7 @@ Date:   Fri Jun 5 19:03:59 2009 +0200
 
     Removes the header but the modeline in test_girepository.py.
 
- tests/test_girepository.py | 26 +-------------------------
+ tests/test_girepository.py |  26 +-------------------------
  1 file changed, 1 insertion(+), 25 deletions(-)
 
 commit abe4828f52c7eb3a08f5b592e7ced1e97a58ef5c
@@ -20532,10 +20448,10 @@ Date: Wed Jun 3 10:47:58 2009 +0200
 
     Adds overrides modules from PyBank.
 
- girepository/Makefile.am      |  3 +++
- girepository/importer.py      |  3 +--
- girepository/overrides/Gdk.py | 14 ++++++++++++++
- girepository/overrides/Gtk.py |  8 ++++++++
+ girepository/Makefile.am      |    3 +++
+ girepository/importer.py      |    3 +--
+ girepository/overrides/Gdk.py |   14 ++++++++++++++
+ girepository/overrides/Gtk.py |    8 ++++++++
  4 files changed, 26 insertions(+), 2 deletions(-)
 
 commit c12964e6a3354d8063355225c94e6d21d621e08b
@@ -20544,8 +20460,8 @@ Date:   Tue Jun 2 23:40:41 2009 +0200
 
     Disables the tests that fail in tests/test_girepository.py.
 
- tests/test_girepository.py | 242
- ++++++++++++++++++++++++++++++++++-----------
+ tests/test_girepository.py |  242
+ +++++++++++++++++++++++++++++++++-----------
  1 file changed, 182 insertions(+), 60 deletions(-)
 
 commit a4469a3f7d32a25156bae5e7aef9ec4ae5f6e140
@@ -20555,8 +20471,8 @@ Date:   Tue Jun 2 23:03:26 2009 +0200
     Imports test_girepository.py from former PyBank's
     everything_unittest.py.
 
- tests/test_girepository.py | 288
- +++++++++++++++++++++++++++++++++++++++++++++
+ tests/test_girepository.py |  288
+ ++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 288 insertions(+)
 
 commit e4f2a5ef8734cf40cf8345d442612db1f6c62d5a
@@ -20588,7 +20504,7 @@ Date:   Tue Jun 2 18:28:22 2009 +0200
 
     Fix the docs for gio.FilterOutputStream
 
- docs/reference/pygio-filteroutputstream.xml | 6 +++---
+ docs/reference/pygio-filteroutputstream.xml |   6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)
 
 commit fded60d8376fc45d19bf6cd8be6b927cc3f2e8c6
@@ -20597,10 +20513,10 @@ Date: Tue Jun 2 18:27:00 2009 +0200
 
     Add gio.FilterOutputStream docs
 
- docs/Makefile.am                           |   2 +
- docs/reference/pygio-classes.xml           |   1 +
- docs/reference/pygio-filteroutputstream.xml | 152
- ++++++++++++++++++++++++++++
+ docs/Makefile.am                           |    2 +
+ docs/reference/pygio-classes.xml           |    1 +
+ docs/reference/pygio-filteroutputstream.xml | 152
+ +++++++++++++++++++++++++++
  3 files changed, 155 insertions(+)
 
 commit e2c31f916967229b6547e68013628ce0082cf875
@@ -20609,10 +20525,10 @@ Date: Tue Jun 2 13:29:59 2009 +0200
 
     Add gio.FilterInputStream docs
 
- docs/Makefile.am                          |   2 +
- docs/reference/pygio-classes.xml          |   1 +
- docs/reference/pygio-filterinputstream.xml | 152
- +++++++++++++++++++++++++++++
+ docs/Makefile.am                          |    2 +
+ docs/reference/pygio-classes.xml          |    1 +
+ docs/reference/pygio-filterinputstream.xml |  152
+ ++++++++++++++++++++++++++++
  3 files changed, 155 insertions(+)
 
 commit 49a467eee445bc75554db0374006722ac075194b
@@ -20621,7 +20537,7 @@ Date:   Tue Jun 2 11:33:20 2009 +0200
 
     Add API appeared in 2.20 but not marked as such in gio docs
 
- gio/gio.defs | 30 ++++++++++++++++++++++++++++++
+ gio/gio.defs |   30 ++++++++++++++++++++++++++++++
  1 file changed, 30 insertions(+)
 
 commit 180c157f2a20b7d2dd9af05bfb5f515fd23870a0
@@ -20633,14 +20549,14 @@ Date: Tue Jun 2 10:41:26 2009 +0200
     Add the wrapper for gio.FileOutputStream.query_info_async
     including docs and a test.
 
- docs/Makefile.am                         |   2 +
- docs/reference/pygio-classes.xml         |   1 +
- docs/reference/pygio-fileoutputstream.xml | 257
- ++++++++++++++++++++++++++++++
- gio/Makefile.am                          |   3 +-
- gio/gfileoutputstream.override                   |  68 ++++++++
- gio/gio.override                         |   1 +
- tests/test_gio.py                        |  27 ++++
+ docs/Makefile.am                         |    2 +
+ docs/reference/pygio-classes.xml         |    1 +
+ docs/reference/pygio-fileoutputstream.xml |  257
+ +++++++++++++++++++++++++++++
+ gio/Makefile.am                          |    3 +-
+ gio/gfileoutputstream.override                   |   68 ++++++++
+ gio/gio.override                         |    1 +
+ tests/test_gio.py                        |   27 +++
  7 files changed, 358 insertions(+), 1 deletion(-)
 
 commit 4673577d1f6c3d54423808dd575987092fb05ad2
@@ -20651,7 +20567,7 @@ Date:   Tue Jun 2 10:17:41 2009 +0200
 
     Add implemented interface section and remove a method description
 
- docs/reference/pygio-fileinputstream.xml | 25 +++++++++----------------
+ docs/reference/pygio-fileinputstream.xml |   25 +++++++++----------------
  1 file changed, 9 insertions(+), 16 deletions(-)
 
 commit 1e1cad02879d514745b5233658654cbe944530a5
@@ -20660,7 +20576,7 @@ Date:   Mon Jun 1 22:54:26 2009 +0200
 
     Fix the method name
 
- gio/gfileinputstream.override | 14 +++++++-------
+ gio/gfileinputstream.override |   14 +++++++-------
  1 file changed, 7 insertions(+), 7 deletions(-)
 
 commit f605811afe8c91f121e89b6f9ec28c70b62f4110
@@ -20672,14 +20588,14 @@ Date: Mon Jun 1 22:40:56 2009 +0200
     Add the wrapper for gio.FileInputStream.query_async including docs and
     a test.
 
- docs/Makefile.am                        |   2 +
- docs/reference/pygio-classes.xml        |   1 +
- docs/reference/pygio-fileinputstream.xml | 221
- +++++++++++++++++++++++++++++++
- gio/Makefile.am                         |   1 +
- gio/gfileinputstream.override           |  68 ++++++++++
- gio/gio.override                        |   1 +
- tests/test_gio.py                       |  27 ++++
+ docs/Makefile.am                        |    2 +
+ docs/reference/pygio-classes.xml        |    1 +
+ docs/reference/pygio-fileinputstream.xml |  221
+ ++++++++++++++++++++++++++++++
+ gio/Makefile.am                         |    1 +
+ gio/gfileinputstream.override           |   68 +++++++++
+ gio/gio.override                        |    1 +
+ tests/test_gio.py                       |   27 ++++
  7 files changed, 321 insertions(+)
 
 commit 08623e54a426377c1504b5c364aabae5a17f8ad8
@@ -20690,10 +20606,10 @@ Date: Sun May 31 17:43:16 2009 +0300
 
     Also add shebang where it was missing.  Bug #583979.
 
- codegen/Makefile.am     | 23 ++++++++++++-----------
- codegen/code-coverage.py |  2 ++
- codegen/codegen.py      |  2 ++
- codegen/defsconvert.py   |  2 ++
+ codegen/Makefile.am     |   23 ++++++++++++-----------
+ codegen/code-coverage.py |    2 ++
+ codegen/codegen.py      |    2 ++
+ codegen/defsconvert.py   |    2 ++
  4 files changed, 18 insertions(+), 11 deletions(-)
 
 commit 833d4da202bcfcb01a414f8aec4b751ec8e1ccb2
@@ -20707,13 +20623,13 @@ Date: Sat May 30 16:57:49 2009 +0300
     functions there.  Add unit tests.  Re-enable synchronous read_line
     unit test and adjust it for new official GIO behavior.  Bug #584285.
 
- gio/Makefile.am              |   1 +
- gio/gdatainputstream.override | 250
- ++++++++++++++++++++++++++++++++++++++++++
- gio/ginputstream.override     |  65 -----------
- gio/gio.defs                 |   4 +-
- gio/gio.override             |   1 +
- tests/test_gio.py            |  51 ++++++++-
+ gio/Makefile.am              |    1 +
+ gio/gdatainputstream.override |  250
+ +++++++++++++++++++++++++++++++++++++++++
+ gio/ginputstream.override     |   65 -----------
+ gio/gio.defs                 |    4 +-
+ gio/gio.override             |    1 +
+ tests/test_gio.py            |   51 ++++++++-
  6 files changed, 300 insertions(+), 72 deletions(-)
 
 commit 2cb569c0ced49f9ed5ca83292d5f15c837066688
@@ -20724,7 +20640,7 @@ Date:   Sat May 30 17:24:15 2009 +0300
 
     Bug #584290.
 
- gio/goutputstream.override | 8 ++++----
+ gio/goutputstream.override |   8 ++++----
  1 file changed, 4 insertions(+), 4 deletions(-)
 
 commit e43fa429f6b4019a432acb481bbc07c8201cc46d
@@ -20733,7 +20649,7 @@ Date:   Wed May 27 21:19:27 2009 +0300
 
     Code maintenance: ignore one more file created by unit tests
 
- tests/.gitignore | 1 +
+ tests/.gitignore |    1 +
  1 file changed, 1 insertion(+)
 
 commit 76e9dc74ac706a9207f9d31f887d6e38df2a678f
@@ -20742,10 +20658,10 @@ Date: Mon May 25 20:20:38 2009 +0200
 
     Update the docs with new 2.20 API
 
- docs/reference/pygio-appinfo.xml | 115 +++++++++++++++++++++++++++++
- docs/reference/pygio-icon.xml   |  99 ++++++++++++++++++++++++-
- docs/reference/pygio-mount.xml   | 156
- +++++++++++++++++++++++++++++++++++++++
+ docs/reference/pygio-appinfo.xml |  115 ++++++++++++++++++++++++++++
+ docs/reference/pygio-icon.xml   |   99 +++++++++++++++++++++++-
+ docs/reference/pygio-mount.xml   |  156
+ ++++++++++++++++++++++++++++++++++++++
  3 files changed, 367 insertions(+), 3 deletions(-)
 
 commit 8e40d71ac23deb7d91789486ee8cad440a6be1dd
@@ -20756,9 +20672,9 @@ Date:   Mon May 25 01:33:08 2009 +0200
 
     add the new API added in gio 2.20, some needs to be wrapped manually
 
- gio/gio.defs  | 106
- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
- gio/unix.defs |  48 +++++++++++++++++++++-----
+ gio/gio.defs  |  106
+ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ gio/unix.defs |   48 +++++++++++++++++++++-----
  2 files changed, 146 insertions(+), 8 deletions(-)
 
 commit 0d08df42514fba6abc896814abfee0d2d083c29e
@@ -20767,7 +20683,7 @@ Date:   Mon May 25 00:14:21 2009 +0200
 
     Post release version bump 2.19.0
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit edfb09e3de7baf294b3beba84b4ecb94e1f16764
@@ -20776,8 +20692,8 @@ Date:   Sun May 24 23:56:29 2009 +0200
 
     Update NEWS, release 2.18.0
 
- NEWS        | 14 ++++++++++++++
- configure.ac |  4 ++--
+ NEWS        |   14 ++++++++++++++
+ configure.ac |    4 ++--
  2 files changed, 16 insertions(+), 2 deletions(-)
 
 commit e0648ea435e0b309cdd5bb0ebe56d4534efd26e4
@@ -20792,10 +20708,10 @@ Date: Sun May 24 22:18:40 2009 +0200
     classes
     are in place so we can ship a (almost) complete reference.
 
- docs/Makefile.am                     |   2 +
- docs/reference/pygio-classes.xml      |   3 +-
- docs/reference/pygio-outputstream.xml | 140
- ++++++++++++++++++++++++++++++++++
+ docs/Makefile.am                     |    2 +
+ docs/reference/pygio-classes.xml      |    3 +-
+ docs/reference/pygio-outputstream.xml |  140
+ +++++++++++++++++++++++++++++++++
  3 files changed, 144 insertions(+), 1 deletion(-)
 
 commit 11524cdf6472d9115a812ce431f6767aec5627bc
@@ -20806,9 +20722,9 @@ Date:   Sun May 24 22:12:04 2009 +0200
 
     wrap gio.OutputStream.splice_async() and add a test.
 
- gio/goutputstream.override | 58
- +++++++++++++++++++++++++++++++++++++++++++++-
- tests/test_gio.py         | 20 ++++++++++++++++
+ gio/goutputstream.override |  58
+ +++++++++++++++++++++++++++++++++++++++++++-
+ tests/test_gio.py         |   20 +++++++++++++++
  2 files changed, 77 insertions(+), 1 deletion(-)
 
 commit 82ad6b8c8ea4d6694126f5e0e67b826717e38f19
@@ -20820,10 +20736,10 @@ Date: Sun May 24 22:55:16 2009 +0300
     Do this now, while no-one (as far as we know) links to the library
     besides PyGObject itself.  Bug #550235.
 
- configure.ac       |  2 ++
- gio/Makefile.am     | 2 +-
- glib/Makefile.am    | 10 +++++-----
- gobject/Makefile.am | 2 +-
+ configure.ac       |    2 ++
+ gio/Makefile.am     |   2 +-
+ glib/Makefile.am    |  10 +++++-----
+ gobject/Makefile.am |   2 +-
  4 files changed, 9 insertions(+), 7 deletions(-)
 
 commit 59da8cd24ea390b6c983995833ec6b0e5d028b35
@@ -20834,9 +20750,9 @@ Date:   Sun May 24 11:44:24 2009 +0200
 
     wrap gio.OutputStream.flush_async() and add a test.
 
- gio/goutputstream.override | 47
- +++++++++++++++++++++++++++++++++++++++++++++-
- tests/test_gio.py         | 11 +++++++++++
+ gio/goutputstream.override |  47
+ +++++++++++++++++++++++++++++++++++++++++++-
+ tests/test_gio.py         |   11 +++++++++++
  2 files changed, 57 insertions(+), 1 deletion(-)
 
 commit 84ab6178ed0033f69932df5bc73c86bdff80c953
@@ -20851,10 +20767,10 @@ Date: Sun May 17 17:29:37 2009 +0200
     classes
     are in place so we can ship a (almost) complete reference.
 
- docs/Makefile.am                    |   2 +
- docs/reference/pygio-classes.xml     |   1 +
- docs/reference/pygio-filemonitor.xml | 128
- +++++++++++++++++++++++++++++++++++
+ docs/Makefile.am                    |    2 +
+ docs/reference/pygio-classes.xml     |    1 +
+ docs/reference/pygio-filemonitor.xml |  128
+ ++++++++++++++++++++++++++++++++++
  3 files changed, 131 insertions(+)
 
 commit 629496a5617d30e4dfa494b05a62c85a6af77b9a
@@ -20865,8 +20781,8 @@ Date:   Sun May 17 18:03:44 2009 +0300
 
     Correction for patch in bug #550231.
 
- pygobject-2.0-uninstalled.pc.in | 3 ++-
- pygobject-2.0.pc.in            | 3 ++-
+ pygobject-2.0-uninstalled.pc.in |    3 ++-
+ pygobject-2.0.pc.in            |    3 ++-
  2 files changed, 4 insertions(+), 2 deletions(-)
 
 commit 90cd8b7c4a25cd2ecb751f8337b401c98538272b
@@ -20879,9 +20795,9 @@ Date:   Wed May 13 21:54:39 2009 +0200
     forgotten while
     wrapping the gio API. This should probably be done in gio itself.
 
- gio/gfileinfo.override | 24 ++++++++++++++++++++++--
- gio/gio-types.defs    |  7 +++++++
- gio/gio.override      |  2 ++
+ gio/gfileinfo.override |   24 ++++++++++++++++++++++--
+ gio/gio-types.defs    |    7 +++++++
+ gio/gio.override      |    2 ++
  3 files changed, 31 insertions(+), 2 deletions(-)
 
 commit e707447d9313f2f2ecba395cfe3682d5a5e859f4
@@ -20893,8 +20809,8 @@ Date:   Wed May 13 22:06:25 2009 +0300
     Additionally fix glib.IOChannel.set_close_on_unref: was marked
     METH_NOARGS but actually accepted arguments.  Fixes bug #582427.
 
- glib/pygiochannel.c | 83
- +++++++++++++----------------------------------------
+ glib/pygiochannel.c |  83
+ +++++++++++++--------------------------------------
  1 file changed, 20 insertions(+), 63 deletions(-)
 
 commit 002915e5f458fec5a89766a54e8119a70a80caa7
@@ -20909,10 +20825,10 @@ Date: Tue May 12 20:37:24 2009 +0200
     classes
     are in place so we can ship a (almost) complete reference.
 
- docs/Makefile.am                 |   2 +
- docs/reference/pygio-classes.xml  |   1 +
- docs/reference/pygio-fileinfo.xml | 346
- ++++++++++++++++++++++++++++++++++++++
+ docs/Makefile.am                 |    2 +
+ docs/reference/pygio-classes.xml  |   1 +
+ docs/reference/pygio-fileinfo.xml |  346
+ +++++++++++++++++++++++++++++++++++++
  3 files changed, 349 insertions(+)
 
 commit 8cd25c871609580425c6c4c9e5bc6ec8d40862a1
@@ -20938,7 +20854,7 @@ Date:   Sat May 9 00:03:05 2009 +0200
 
     use the count argument instead of buffer_size which is always zero
 
- gio/ginputstream.override | 3 ++-
+ gio/ginputstream.override |   3 ++-
  1 file changed, 2 insertions(+), 1 deletion(-)
 
 commit ed6b06315c17441b41c001d38537c904b8fe18de
@@ -20947,10 +20863,10 @@ Date: Sat May 9 00:02:33 2009 +0200
 
     Add docs for the gio.InputStream class
 
- docs/Makefile.am                    |   2 +
- docs/reference/pygio-classes.xml     |   1 +
- docs/reference/pygio-inputstream.xml | 730
- +++++++++++++++++++++++++++++++++++
+ docs/Makefile.am                    |    2 +
+ docs/reference/pygio-classes.xml     |    1 +
+ docs/reference/pygio-inputstream.xml |  730
+ ++++++++++++++++++++++++++++++++++
  3 files changed, 733 insertions(+)
 
 commit d58322b84d47da7905f95b43e9e0daf9f7c4b507
@@ -20961,9 +20877,9 @@ Date:   Mon May 4 23:40:28 2009 +0200
 
     wrap gio.InputStream.skip_async() and add a test.
 
- gio/ginputstream.override | 50
- ++++++++++++++++++++++++++++++++++++++++++++++-
- tests/test_gio.py        | 20 +++++++++++++++++++
+ gio/ginputstream.override |   50
+ ++++++++++++++++++++++++++++++++++++++++++++-
+ tests/test_gio.py        |   20 ++++++++++++++++++
  2 files changed, 69 insertions(+), 1 deletion(-)
 
 commit 2311187824d1b48a996ee2620fd3c9a63e3edd66
@@ -20975,9 +20891,9 @@ Date:   Mon May 4 15:46:49 2009 +0430
 
     Patch from bug #579275
 
- ChangeLog       |   8 ++++
- codegen/h2def.py | 133
- +++++++++++++++++++++++++++++++++++++++++++++----------
+ ChangeLog       |    8 ++++
+ codegen/h2def.py |  133
+ ++++++++++++++++++++++++++++++++++++++++++++----------
  2 files changed, 117 insertions(+), 24 deletions(-)
 
 commit 442ec5bb997bb7dab55baeea6e54e79d3ce0d3c1
@@ -20988,7 +20904,7 @@ Date:   Sat May 2 23:54:52 2009 +0300
 
     Fixes bug #581082.
 
- glib/glibmodule.c | 2 +-
+ glib/glibmodule.c |   2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit f466dca880cc6ea68b9fe236943eea7a07d33520
@@ -20997,10 +20913,10 @@ Date: Sun May 3 11:03:25 2009 +0200
 
     Add docs for the gio.LoadableIcon class
 
- docs/Makefile.am                     |   2 +
- docs/reference/pygio-classes.xml      |   1 +
- docs/reference/pygio-loadableicon.xml | 198
- ++++++++++++++++++++++++++++++++++
+ docs/Makefile.am                     |    2 +
+ docs/reference/pygio-classes.xml      |    1 +
+ docs/reference/pygio-loadableicon.xml |  198
+ +++++++++++++++++++++++++++++++++
  3 files changed, 201 insertions(+)
 
 commit eab4ebf7f6c82580b61205f34e1cfe535aeada60
@@ -21009,10 +20925,10 @@ Date: Sun May 3 01:21:55 2009 +0200
 
     Add docs for the gio.ThemedIcon class
 
- docs/Makefile.am                   |   2 +
- docs/reference/pygio-classes.xml    |  1 +
- docs/reference/pygio-themedicon.xml | 204
- ++++++++++++++++++++++++++++++++++++
+ docs/Makefile.am                   |    2 +
+ docs/reference/pygio-classes.xml    |   1 +
+ docs/reference/pygio-themedicon.xml | 204
+ +++++++++++++++++++++++++++++++++++
  3 files changed, 207 insertions(+)
 
 commit 22d7de8b620055f14b30f9c3c99160c8b4ebe672
@@ -21021,7 +20937,7 @@ Date:   Sat May 2 12:25:19 2009 +0200
 
     post release version bump to 2.17.1
 
- configure.ac | 2 +-
+ configure.ac |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit 282ac3c76e1e3513bd76f819f320ec56aba15d9e
@@ -21030,7 +20946,7 @@ Date:   Fri May 1 23:40:31 2009 +0200
 
     Fix the class title
 
- docs/reference/pygio-mountoperation.xml | 2 +-
+ docs/reference/pygio-mountoperation.xml |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 commit d8b70dec1e5c09b73ae277f4f5b246315841fb8e
@@ -21039,11 +20955,11 @@ Date: Fri May 1 22:24:33 2009 +0200
 
     Add docs for the gio.MountOperation class
 
- docs/Makefile.am                       |   2 +
- docs/reference/pygio-classes.xml       |   1 +
- docs/reference/pygio-constants.xml     | 107 +++++
- docs/reference/pygio-mountoperation.xml | 726
- ++++++++++++++++++++++++++++++++
+ docs/Makefile.am                       |    2 +
+ docs/reference/pygio-classes.xml       |    1 +
+ docs/reference/pygio-constants.xml     |  107 +++++
+ docs/reference/pygio-mountoperation.xml |  726
+ +++++++++++++++++++++++++++++++
  4 files changed, 836 insertions(+)
 
 commit fceea8e843e880f0469e454df23141e7dd2bc0cf
@@ -21052,8 +20968,8 @@ Date:   Thu Apr 30 22:13:06 2009 +0200
 
     Update NEWS, release 2.17.0
 
- NEWS | 93
- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ NEWS |   93
+ ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  1 file changed, 93 insertions(+)
 
 commit 47389217d1a65a8e3f404d486c508cf5d3164756
@@ -21065,5 +20981,5 @@ Date:   Thu Apr 30 22:47:19 2009 +0300
     After the recent patch it would leak exception data if old argument
     order was used.  Properly decref the objects.
 
- gio/gfile.override | 4 ++++
+ gio/gfile.override |   4 ++++
  1 file changed, 4 insertions(+)
index e6c70f6..9b644c7 100644 (file)
@@ -62,10 +62,8 @@ DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
        depcomp install-sh ltmain.sh missing py-compile
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/as-ac-expand.m4 \
-       $(top_srcdir)/m4/jhflags.m4 $(top_srcdir)/m4/libtool.m4 \
-       $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
-       $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
-       $(top_srcdir)/m4/python.m4 $(top_srcdir)/configure.ac
+       $(top_srcdir)/m4/jhflags.m4 $(top_srcdir)/m4/python.m4 \
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
diff --git a/NEWS b/NEWS
index 853adf7..cdfc07c 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,36 +1,44 @@
-3.4.2   12-Nov-2012
-        - Fix marshalling of GByteArrays (Martin Pitt)
-        - Fix marshalling of ssize_t to smaller ints (Martin Pitt)
-        - Fix crash with GLib.child_watch_add (Daniel Narvaez) (#688067)
-        - Fix various bugs in GLib.IOChannel (Martin Pitt)
-        - Work around wrong 64 bit constants in GLib Gir (Martin Pitt)
-          (#685022)
-        - Fix OverflowError in source_remove() (Martin Pitt) (#684526)
+3.7.1   22-Oct-2012
+        - Bump version to 3.7.1; let's follow the real GNOME versioning from
+          now on (Martin Pitt)
+        - Change install_properties to not use getattr on classes
+          (Simon Feltman) (#686559)
+        - Move property install function into propertyhelper.py (Simon Feltman)
+          (#686559)
         - Fix Signal decorator to not use base class gsignals dict
           (Simon Feltman) (#686496)
-
-3.4.1.1 17-Oct-2012
-        - Bump g-i dependency to >= 1.34.1.1 (Paolo Borelli)
+        - tests: Consistently use GLib.MainLoop (Martin Pitt)
+        - Install the .egg-info files into correct multilib directory
+          (Kalev Lember) (#686315)
         - Fix leaked vfunc return values (Simon Feltman) (#686140)
-        - Install egg-info files in the right dir  Kalev Lember) (#686315)
-
-3.4.1   15-Oct-2012
         - Skip Regress tests with --disable-cairo (Martin Pitt) (#685094)
-        - Fix leak with python callables as closure argument. (Simon Feltman) (#685598)
-        - Gio overrides: Handle setting GSettings enum keys (Martin Pitt) (#685947)
-        - Fix unsigned values in GArray/GList/GSList/GHash (Martin Pitt) (#685860)
-        - _pygi_marshal_from_py_uint64(): Use correct data type in py2.7 check (Alban Browaeys) (#685000)
+        - Fix leak with python callables as closure argument. (Simon Feltman)
+          (#685598)
+        - Gio overrides: Handle setting GSettings enum keys (Martin Pitt)
+          (#685947)
+        - tests: Check reading GSettings enums in Gio overrides (Martin Pitt)
+        - Fix unsigned values in GArray/GList/GSList/GHash (Martin Pitt)
+          (#685860)
+        - _pygi_marshal_from_py_uint64(): Use correct data type in py2.7 check
+          (Alban Browaeys) (#685000)
         - Install an .egg-info file (Johan Dahlin) (#680138)
         - PyGProps_getattro(): Fix GObjectClass leak (Johan Dahlin) (#685218)
-        - pygobject.c: Don't leak GObjectClass reference (Olivier Crête) (#684062)
-        - Fix memory leak in _pygi_argument_to_array() (Alban Browaeys) (#685082)
+        - pygobject.c: Don't leak GObjectClass reference (Olivier Crête)
+          (#684062)
+        - Fix memory leak in _pygi_argument_to_array() (Alban Browaeys)
+          (#685082)
         - Fix error messages for out of range numbers (Martin Pitt) (#684314)
         - Kill dbus-daemon after running tests (Martin Pitt) (#685009)
-        - GVariant overrides: Support empty tuple arrays (Martin Pitt) (#684928)
-        - tests: Fix wrong return type in test_int64_callback() (Martin Pitt) (#684700)
-        - Fix GValue marshalling of long and unsigned long (Giovanni Campagna) (#684331)
-        - Clean up deprecation message for assigning gpointers to objects. (Simon Feltman) (#683599)
-        - pygi-property: Lookup property in base classes of non-introspected types (Olivier Crête) (#684058)
+        - GVariant overrides: Support empty tuple arrays (Martin Pitt)
+          (#684928)
+        - tests: Fix wrong return type in test_int64_callback() (Martin Pitt)
+          (#684700)
+        - Fix GValue marshalling of long and unsigned long (Giovanni Campagna)
+          (#684331)
+        - Clean up deprecation message for assigning gpointers to objects.
+          (Simon Feltman) (#683599)
+        - pygi-property: Lookup property in base classes of non-introspected
+          types (Olivier Crête) (#684058)
 
 3.4.0   24-Sep-2012
         - Bump g-i dependency to 1.33.14 (Martin Pitt)
index 5606a3d..4efa081 100644 (file)
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.0
 Name: PyGObject
-Version: 3.4.2
+Version: 3.7.1
 Summary: Python bindings for GObject
 Home-page: http://www.pygtk.org/
 Author: James Henstridge
@@ -8,7 +8,7 @@ Author-email: james@daa.com.au
 Maintainer: Johan Dahlin
 Maintainer-email: johan@gnome.org
 License: GNU LGPL
-Download-url: ftp://ftp.gnome.org/pub/GNOME/sources/pygobject/3.4/pygobject-3.4.2.tar.gz
+Download-url: ftp://ftp.gnome.org/pub/GNOME/sources/pygobject/3.7/pygobject-3.7.1.tar.gz
 Description: Python bindings for GLib and GObject
 Platform: POSIX, Windows
 Classifier: Development Status :: 5 - Production/Stable
index 67039d3..bc0e79b 100644 (file)
@@ -20,1231 +20,1250 @@ You have another version of autoconf.  It may work, but is not guaranteed to.
 If you have problems, you may need to regenerate the build system entirely.
 To do so, use the procedure documented by the package, typically `autoreconf'.])])
 
-# Configure paths for GLIB
-# Owen Taylor     1997-2001
+# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008, 2011 Free Software
+# Foundation, Inc.
+#
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
 
-dnl AM_PATH_GLIB_2_0([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, MODULES]]]])
-dnl Test for GLIB, and define GLIB_CFLAGS and GLIB_LIBS, if gmodule, gobject,
-dnl gthread, or gio is specified in MODULES, pass to pkg-config
-dnl
-AC_DEFUN([AM_PATH_GLIB_2_0],
-[dnl 
-dnl Get the cflags and libraries from pkg-config
-dnl
-AC_ARG_ENABLE(glibtest, [  --disable-glibtest      do not try to compile and run a test GLIB program],
-                   , enable_glibtest=yes)
+# serial 1
 
-  pkg_config_args=glib-2.0
-  for module in . $4
-  do
-      case "$module" in
-         gmodule) 
-             pkg_config_args="$pkg_config_args gmodule-2.0"
-         ;;
-         gmodule-no-export) 
-             pkg_config_args="$pkg_config_args gmodule-no-export-2.0"
-         ;;
-         gobject) 
-             pkg_config_args="$pkg_config_args gobject-2.0"
-         ;;
-         gthread) 
-             pkg_config_args="$pkg_config_args gthread-2.0"
-         ;;
-         gio*) 
-             pkg_config_args="$pkg_config_args $module-2.0"
-         ;;
-      esac
-  done
+# AM_AUTOMAKE_VERSION(VERSION)
+# ----------------------------
+# Automake X.Y traces this macro to ensure aclocal.m4 has been
+# generated from the m4 files accompanying Automake X.Y.
+# (This private macro should not be called outside this file.)
+AC_DEFUN([AM_AUTOMAKE_VERSION],
+[am__api_version='1.11'
+dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
+dnl require some minimum version.  Point them to the right macro.
+m4_if([$1], [1.11.6], [],
+      [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
+])
 
-  PKG_PROG_PKG_CONFIG([0.16])
+# _AM_AUTOCONF_VERSION(VERSION)
+# -----------------------------
+# aclocal traces this macro to find the Autoconf version.
+# This is a private macro too.  Using m4_define simplifies
+# the logic in aclocal, which can simply ignore this definition.
+m4_define([_AM_AUTOCONF_VERSION], [])
 
-  no_glib=""
+# AM_SET_CURRENT_AUTOMAKE_VERSION
+# -------------------------------
+# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
+# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
+AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
+[AM_AUTOMAKE_VERSION([1.11.6])dnl
+m4_ifndef([AC_AUTOCONF_VERSION],
+  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
+_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
 
-  if test "x$PKG_CONFIG" = x ; then
-    no_glib=yes
-    PKG_CONFIG=no
-  fi
+# AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
 
-  min_glib_version=ifelse([$1], ,2.0.0,$1)
-  AC_MSG_CHECKING(for GLIB - version >= $min_glib_version)
+# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc.
+#
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
 
-  if test x$PKG_CONFIG != xno ; then
-    ## don't try to run the test against uninstalled libtool libs
-    if $PKG_CONFIG --uninstalled $pkg_config_args; then
-         echo "Will use uninstalled version of GLib found in PKG_CONFIG_PATH"
-         enable_glibtest=no
-    fi
+# serial 1
 
-    if $PKG_CONFIG --atleast-version $min_glib_version $pkg_config_args; then
-         :
-    else
-         no_glib=yes
-    fi
-  fi
+# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
+# $ac_aux_dir to `$srcdir/foo'.  In other projects, it is set to
+# `$srcdir', `$srcdir/..', or `$srcdir/../..'.
+#
+# Of course, Automake must honor this variable whenever it calls a
+# tool from the auxiliary directory.  The problem is that $srcdir (and
+# therefore $ac_aux_dir as well) can be either absolute or relative,
+# depending on how configure is run.  This is pretty annoying, since
+# it makes $ac_aux_dir quite unusable in subdirectories: in the top
+# source directory, any form will work fine, but in subdirectories a
+# relative path needs to be adjusted first.
+#
+# $ac_aux_dir/missing
+#    fails when called from a subdirectory if $ac_aux_dir is relative
+# $top_srcdir/$ac_aux_dir/missing
+#    fails if $ac_aux_dir is absolute,
+#    fails when called from a subdirectory in a VPATH build with
+#          a relative $ac_aux_dir
+#
+# The reason of the latter failure is that $top_srcdir and $ac_aux_dir
+# are both prefixed by $srcdir.  In an in-source build this is usually
+# harmless because $srcdir is `.', but things will broke when you
+# start a VPATH build or use an absolute $srcdir.
+#
+# So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
+# iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
+#   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
+# and then we would define $MISSING as
+#   MISSING="\${SHELL} $am_aux_dir/missing"
+# This will work as long as MISSING is not called from configure, because
+# unfortunately $(top_srcdir) has no meaning in configure.
+# However there are other variables, like CC, which are often used in
+# configure, and could therefore not use this "fixed" $ac_aux_dir.
+#
+# Another solution, used here, is to always expand $ac_aux_dir to an
+# absolute PATH.  The drawback is that using absolute paths prevent a
+# configured tree to be moved without reconfiguration.
 
-  if test x"$no_glib" = x ; then
-    GLIB_GENMARSHAL=`$PKG_CONFIG --variable=glib_genmarshal glib-2.0`
-    GOBJECT_QUERY=`$PKG_CONFIG --variable=gobject_query glib-2.0`
-    GLIB_MKENUMS=`$PKG_CONFIG --variable=glib_mkenums glib-2.0`
-    GLIB_COMPILE_RESOURCES=`$PKG_CONFIG --variable=glib_compile_resources gio-2.0`
+AC_DEFUN([AM_AUX_DIR_EXPAND],
+[dnl Rely on autoconf to set up CDPATH properly.
+AC_PREREQ([2.50])dnl
+# expand $ac_aux_dir to an absolute path
+am_aux_dir=`cd $ac_aux_dir && pwd`
+])
 
-    GLIB_CFLAGS=`$PKG_CONFIG --cflags $pkg_config_args`
-    GLIB_LIBS=`$PKG_CONFIG --libs $pkg_config_args`
-    glib_config_major_version=`$PKG_CONFIG --modversion glib-2.0 | \
-           sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
-    glib_config_minor_version=`$PKG_CONFIG --modversion glib-2.0 | \
-           sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
-    glib_config_micro_version=`$PKG_CONFIG --modversion glib-2.0 | \
-           sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
-    if test "x$enable_glibtest" = "xyes" ; then
-      ac_save_CFLAGS="$CFLAGS"
-      ac_save_LIBS="$LIBS"
-      CFLAGS="$CFLAGS $GLIB_CFLAGS"
-      LIBS="$GLIB_LIBS $LIBS"
-dnl
-dnl Now check if the installed GLIB is sufficiently new. (Also sanity
-dnl checks the results of pkg-config to some extent)
-dnl
-      rm -f conf.glibtest
-      AC_TRY_RUN([
-#include <glib.h>
-#include <stdio.h>
-#include <stdlib.h>
 
-int 
-main ()
-{
-  unsigned int major, minor, micro;
-  char *tmp_version;
+# Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2005
+# Free Software Foundation, Inc.
+#
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
 
-  fclose (fopen ("conf.glibtest", "w"));
+# serial 4
 
-  /* HP/UX 9 (%@#!) writes to sscanf strings */
-  tmp_version = g_strdup("$min_glib_version");
-  if (sscanf(tmp_version, "%u.%u.%u", &major, &minor, &micro) != 3) {
-     printf("%s, bad version string\n", "$min_glib_version");
-     exit(1);
-   }
+# This was merged into AC_PROG_CC in Autoconf.
 
-  if ((glib_major_version != $glib_config_major_version) ||
-      (glib_minor_version != $glib_config_minor_version) ||
-      (glib_micro_version != $glib_config_micro_version))
-    {
-      printf("\n*** 'pkg-config --modversion glib-2.0' returned %d.%d.%d, but GLIB (%d.%d.%d)\n", 
-             $glib_config_major_version, $glib_config_minor_version, $glib_config_micro_version,
-             glib_major_version, glib_minor_version, glib_micro_version);
-      printf ("*** was found! If pkg-config was correct, then it is best\n");
-      printf ("*** to remove the old version of GLib. You may also be able to fix the error\n");
-      printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n");
-      printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n");
-      printf("*** required on your system.\n");
-      printf("*** If pkg-config was wrong, set the environment variable PKG_CONFIG_PATH\n");
-      printf("*** to point to the correct configuration files\n");
-    } 
-  else if ((glib_major_version != GLIB_MAJOR_VERSION) ||
-          (glib_minor_version != GLIB_MINOR_VERSION) ||
-           (glib_micro_version != GLIB_MICRO_VERSION))
-    {
-      printf("*** GLIB header files (version %d.%d.%d) do not match\n",
-            GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION);
-      printf("*** library (version %d.%d.%d)\n",
-            glib_major_version, glib_minor_version, glib_micro_version);
-    }
-  else
-    {
-      if ((glib_major_version > major) ||
-        ((glib_major_version == major) && (glib_minor_version > minor)) ||
-        ((glib_major_version == major) && (glib_minor_version == minor) && (glib_micro_version >= micro)))
-      {
-        return 0;
-       }
-     else
-      {
-        printf("\n*** An old version of GLIB (%u.%u.%u) was found.\n",
-               glib_major_version, glib_minor_version, glib_micro_version);
-        printf("*** You need a version of GLIB newer than %u.%u.%u. The latest version of\n",
-              major, minor, micro);
-        printf("*** GLIB is always available from ftp://ftp.gtk.org.\n");
-        printf("***\n");
-        printf("*** If you have already installed a sufficiently new version, this error\n");
-        printf("*** probably means that the wrong copy of the pkg-config shell script is\n");
-        printf("*** being found. The easiest way to fix this is to remove the old version\n");
-        printf("*** of GLIB, but you can also set the PKG_CONFIG environment to point to the\n");
-        printf("*** correct copy of pkg-config. (In this case, you will have to\n");
-        printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n");
-        printf("*** so that the correct libraries are found at run-time))\n");
-      }
-    }
-  return 1;
-}
-],, no_glib=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
-       CFLAGS="$ac_save_CFLAGS"
-       LIBS="$ac_save_LIBS"
-     fi
-  fi
-  if test "x$no_glib" = x ; then
-     AC_MSG_RESULT(yes (version $glib_config_major_version.$glib_config_minor_version.$glib_config_micro_version))
-     ifelse([$2], , :, [$2])     
-  else
-     AC_MSG_RESULT(no)
-     if test "$PKG_CONFIG" = "no" ; then
-       echo "*** A new enough version of pkg-config was not found."
-       echo "*** See http://www.freedesktop.org/software/pkgconfig/"
-     else
-       if test -f conf.glibtest ; then
-        :
-       else
-          echo "*** Could not run GLIB test program, checking why..."
-          ac_save_CFLAGS="$CFLAGS"
-          ac_save_LIBS="$LIBS"
-          CFLAGS="$CFLAGS $GLIB_CFLAGS"
-          LIBS="$LIBS $GLIB_LIBS"
-          AC_TRY_LINK([
-#include <glib.h>
-#include <stdio.h>
-],      [ return ((glib_major_version) || (glib_minor_version) || (glib_micro_version)); ],
-        [ echo "*** The test program compiled, but did not run. This usually means"
-          echo "*** that the run-time linker is not finding GLIB or finding the wrong"
-          echo "*** version of GLIB. If it is not finding GLIB, you'll need to set your"
-          echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
-          echo "*** to the installed location  Also, make sure you have run ldconfig if that"
-          echo "*** is required on your system"
-         echo "***"
-          echo "*** If you have an old version installed, it is best to remove it, although"
-          echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" ],
-        [ echo "*** The test program failed to compile or link. See the file config.log for the"
-          echo "*** exact error that occured. This usually means GLIB is incorrectly installed."])
-          CFLAGS="$ac_save_CFLAGS"
-          LIBS="$ac_save_LIBS"
-       fi
-     fi
-     GLIB_CFLAGS=""
-     GLIB_LIBS=""
-     GLIB_GENMARSHAL=""
-     GOBJECT_QUERY=""
-     GLIB_MKENUMS=""
-     GLIB_COMPILE_RESOURCES=""
-     ifelse([$3], , :, [$3])
-  fi
-  AC_SUBST(GLIB_CFLAGS)
-  AC_SUBST(GLIB_LIBS)
-  AC_SUBST(GLIB_GENMARSHAL)
-  AC_SUBST(GOBJECT_QUERY)
-  AC_SUBST(GLIB_MKENUMS)
-  AC_SUBST(GLIB_COMPILE_RESOURCES)
-  rm -f conf.glibtest
+AU_DEFUN([AM_PROG_CC_STDC],
+[AC_PROG_CC
+AC_DIAGNOSE([obsolete], [$0:
+       your code should no longer depend upon `am_cv_prog_cc_stdc', but upon
+       `ac_cv_prog_cc_stdc'.  Remove this warning and the assignment when
+       you adjust the code.  You can also remove the above call to
+       AC_PROG_CC if you already called it elsewhere.])
+am_cv_prog_cc_stdc=$ac_cv_prog_cc_stdc
 ])
+AU_DEFUN([fp_PROG_CC_STDC])
 
-# pkg.m4 - Macros to locate and utilise pkg-config.            -*- Autoconf -*-
-# serial 1 (pkg-config-0.24)
-# 
-# Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# AM_CONDITIONAL                                            -*- Autoconf -*-
+
+# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008
+# Free Software Foundation, Inc.
 #
-# As a special exception to the GNU General Public License, if you
-# distribute this file as part of a program that contains a
-# configuration script generated by Autoconf, you may include it under
-# the same distribution terms that you use for the rest of that program.
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
 
-# PKG_PROG_PKG_CONFIG([MIN-VERSION])
-# ----------------------------------
-AC_DEFUN([PKG_PROG_PKG_CONFIG],
-[m4_pattern_forbid([^_?PKG_[A-Z_]+$])
-m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
-m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
-AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
-AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
-AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
+# serial 9
 
-if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
-       AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
+# AM_CONDITIONAL(NAME, SHELL-CONDITION)
+# -------------------------------------
+# Define a conditional.
+AC_DEFUN([AM_CONDITIONAL],
+[AC_PREREQ(2.52)dnl
+ ifelse([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
+       [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
+AC_SUBST([$1_TRUE])dnl
+AC_SUBST([$1_FALSE])dnl
+_AM_SUBST_NOTMAKE([$1_TRUE])dnl
+_AM_SUBST_NOTMAKE([$1_FALSE])dnl
+m4_define([_AM_COND_VALUE_$1], [$2])dnl
+if $2; then
+  $1_TRUE=
+  $1_FALSE='#'
+else
+  $1_TRUE='#'
+  $1_FALSE=
 fi
-if test -n "$PKG_CONFIG"; then
-       _pkg_min_version=m4_default([$1], [0.9.0])
-       AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
-       if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
-               AC_MSG_RESULT([yes])
-       else
-               AC_MSG_RESULT([no])
-               PKG_CONFIG=""
-       fi
-fi[]dnl
-])# PKG_PROG_PKG_CONFIG
+AC_CONFIG_COMMANDS_PRE(
+[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
+  AC_MSG_ERROR([[conditional "$1" was never defined.
+Usually this means the macro was only invoked conditionally.]])
+fi])])
 
-# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
-#
-# Check to see whether a particular set of modules exists.  Similar
-# to PKG_CHECK_MODULES(), but does not set variables or print errors.
+# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009,
+# 2010, 2011 Free Software Foundation, Inc.
 #
-# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
-# only at the first occurence in configure.ac, so if the first place
-# it's called might be skipped (such as if it is within an "if", you
-# have to call PKG_CHECK_EXISTS manually
-# --------------------------------------------------------------
-AC_DEFUN([PKG_CHECK_EXISTS],
-[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
-if test -n "$PKG_CONFIG" && \
-    AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
-  m4_default([$2], [:])
-m4_ifvaln([$3], [else
-  $3])dnl
-fi])
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
 
-# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
-# ---------------------------------------------
-m4_define([_PKG_CONFIG],
-[if test -n "$$1"; then
-    pkg_cv_[]$1="$$1"
- elif test -n "$PKG_CONFIG"; then
-    PKG_CHECK_EXISTS([$3],
-                     [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`
-                     test "x$?" != "x0" && pkg_failed=yes ],
-                    [pkg_failed=yes])
- else
-    pkg_failed=untried
-fi[]dnl
-])# _PKG_CONFIG
+# serial 12
 
-# _PKG_SHORT_ERRORS_SUPPORTED
-# -----------------------------
-AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
-[AC_REQUIRE([PKG_PROG_PKG_CONFIG])
-if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
-        _pkg_short_errors_supported=yes
-else
-        _pkg_short_errors_supported=no
-fi[]dnl
-])# _PKG_SHORT_ERRORS_SUPPORTED
+# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
+# written in clear, in which case automake, when reading aclocal.m4,
+# will think it sees a *use*, and therefore will trigger all it's
+# C support machinery.  Also note that it means that autoscan, seeing
+# CC etc. in the Makefile, will ask for an AC_PROG_CC use...
 
 
-# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
-# [ACTION-IF-NOT-FOUND])
-#
-#
-# Note that if there is a possibility the first call to
-# PKG_CHECK_MODULES might not happen, you should be sure to include an
-# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
-#
+# _AM_DEPENDENCIES(NAME)
+# ----------------------
+# See how the compiler implements dependency checking.
+# NAME is "CC", "CXX", "GCJ", or "OBJC".
+# We try a few techniques and use that to set a single cache variable.
 #
-# --------------------------------------------------------------
-AC_DEFUN([PKG_CHECK_MODULES],
-[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
-AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
-AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
-
-pkg_failed=no
-AC_MSG_CHECKING([for $1])
+# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
+# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular
+# dependency, and given that the user is not expected to run this macro,
+# just rely on AC_PROG_CC.
+AC_DEFUN([_AM_DEPENDENCIES],
+[AC_REQUIRE([AM_SET_DEPDIR])dnl
+AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
+AC_REQUIRE([AM_MAKE_INCLUDE])dnl
+AC_REQUIRE([AM_DEP_TRACK])dnl
 
-_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
-_PKG_CONFIG([$1][_LIBS], [libs], [$2])
+ifelse([$1], CC,   [depcc="$CC"   am_compiler_list=],
+       [$1], CXX,  [depcc="$CXX"  am_compiler_list=],
+       [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
+       [$1], UPC,  [depcc="$UPC"  am_compiler_list=],
+       [$1], GCJ,  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],
+                   [depcc="$$1"   am_compiler_list=])
 
-m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
-and $1[]_LIBS to avoid the need to call pkg-config.
-See the pkg-config man page for more details.])
+AC_CACHE_CHECK([dependency style of $depcc],
+               [am_cv_$1_dependencies_compiler_type],
+[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
+  # We make a subdir and do the tests there.  Otherwise we can end up
+  # making bogus files that we don't know about and never remove.  For
+  # instance it was reported that on HP-UX the gcc test will end up
+  # making a dummy file named `D' -- because `-MD' means `put the output
+  # in D'.
+  rm -rf conftest.dir
+  mkdir conftest.dir
+  # Copy depcomp to subdir because otherwise we won't find it if we're
+  # using a relative directory.
+  cp "$am_depcomp" conftest.dir
+  cd conftest.dir
+  # We will build objects and dependencies in a subdirectory because
+  # it helps to detect inapplicable dependency modes.  For instance
+  # both Tru64's cc and ICC support -MD to output dependencies as a
+  # side effect of compilation, but ICC will put the dependencies in
+  # the current directory while Tru64 will put them in the object
+  # directory.
+  mkdir sub
 
-if test $pkg_failed = yes; then
-       AC_MSG_RESULT([no])
-        _PKG_SHORT_ERRORS_SUPPORTED
-        if test $_pkg_short_errors_supported = yes; then
-               $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
-        else 
-               $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
-        fi
-       # Put the nasty error message in config.log where it belongs
-       echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
+  am_cv_$1_dependencies_compiler_type=none
+  if test "$am_compiler_list" = ""; then
+     am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
+  fi
+  am__universal=false
+  m4_case([$1], [CC],
+    [case " $depcc " in #(
+     *\ -arch\ *\ -arch\ *) am__universal=true ;;
+     esac],
+    [CXX],
+    [case " $depcc " in #(
+     *\ -arch\ *\ -arch\ *) am__universal=true ;;
+     esac])
 
-       m4_default([$4], [AC_MSG_ERROR(
-[Package requirements ($2) were not met:
+  for depmode in $am_compiler_list; do
+    # Setup a source with many dependencies, because some compilers
+    # like to wrap large dependency lists on column 80 (with \), and
+    # we should not choose a depcomp mode which is confused by this.
+    #
+    # We need to recreate these files for each test, as the compiler may
+    # overwrite some of them when testing with obscure command lines.
+    # This happens at least with the AIX C compiler.
+    : > sub/conftest.c
+    for i in 1 2 3 4 5 6; do
+      echo '#include "conftst'$i'.h"' >> sub/conftest.c
+      # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
+      # Solaris 8's {/usr,}/bin/sh.
+      touch sub/conftst$i.h
+    done
+    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
 
-$$1_PKG_ERRORS
+    # We check with `-c' and `-o' for the sake of the "dashmstdout"
+    # mode.  It turns out that the SunPro C++ compiler does not properly
+    # handle `-M -o', and we need to detect this.  Also, some Intel
+    # versions had trouble with output in subdirs
+    am__obj=sub/conftest.${OBJEXT-o}
+    am__minus_obj="-o $am__obj"
+    case $depmode in
+    gcc)
+      # This depmode causes a compiler race in universal mode.
+      test "$am__universal" = false || continue
+      ;;
+    nosideeffect)
+      # after this tag, mechanisms are not by side-effect, so they'll
+      # only be used when explicitly requested
+      if test "x$enable_dependency_tracking" = xyes; then
+       continue
+      else
+       break
+      fi
+      ;;
+    msvc7 | msvc7msys | msvisualcpp | msvcmsys)
+      # This compiler won't grok `-c -o', but also, the minuso test has
+      # not run yet.  These depmodes are late enough in the game, and
+      # so weak that their functioning should not be impacted.
+      am__obj=conftest.${OBJEXT-o}
+      am__minus_obj=
+      ;;
+    none) break ;;
+    esac
+    if depmode=$depmode \
+       source=sub/conftest.c object=$am__obj \
+       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
+       $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
+         >/dev/null 2>conftest.err &&
+       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
+       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
+       grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
+       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
+      # icc doesn't choke on unknown options, it will just issue warnings
+      # or remarks (even with -Werror).  So we grep stderr for any message
+      # that says an option was ignored or not supported.
+      # When given -MP, icc 7.0 and 7.1 complain thusly:
+      #   icc: Command line warning: ignoring option '-M'; no argument required
+      # The diagnosis changed in icc 8.0:
+      #   icc: Command line remark: option '-MP' not supported
+      if (grep 'ignoring option' conftest.err ||
+          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
+        am_cv_$1_dependencies_compiler_type=$depmode
+        break
+      fi
+    fi
+  done
 
-Consider adjusting the PKG_CONFIG_PATH environment variable if you
-installed software in a non-standard prefix.
+  cd ..
+  rm -rf conftest.dir
+else
+  am_cv_$1_dependencies_compiler_type=none
+fi
+])
+AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
+AM_CONDITIONAL([am__fastdep$1], [
+  test "x$enable_dependency_tracking" != xno \
+  && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
+])
 
-_PKG_TEXT])[]dnl
-        ])
-elif test $pkg_failed = untried; then
-       AC_MSG_RESULT([no])
-       m4_default([$4], [AC_MSG_FAILURE(
-[The pkg-config script could not be found or is too old.  Make sure it
-is in your PATH or set the PKG_CONFIG environment variable to the full
-path to pkg-config.
 
-_PKG_TEXT
+# AM_SET_DEPDIR
+# -------------
+# Choose a directory name for dependency files.
+# This macro is AC_REQUIREd in _AM_DEPENDENCIES
+AC_DEFUN([AM_SET_DEPDIR],
+[AC_REQUIRE([AM_SET_LEADING_DOT])dnl
+AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
+])
 
-To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl
-        ])
-else
-       $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
-       $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
-        AC_MSG_RESULT([yes])
-       $3
-fi[]dnl
-])# PKG_CHECK_MODULES
 
-# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008, 2011 Free Software
-# Foundation, Inc.
+# AM_DEP_TRACK
+# ------------
+AC_DEFUN([AM_DEP_TRACK],
+[AC_ARG_ENABLE(dependency-tracking,
+[  --disable-dependency-tracking  speeds up one-time build
+  --enable-dependency-tracking   do not reject slow dependency extractors])
+if test "x$enable_dependency_tracking" != xno; then
+  am_depcomp="$ac_aux_dir/depcomp"
+  AMDEPBACKSLASH='\'
+  am__nodep='_no'
+fi
+AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
+AC_SUBST([AMDEPBACKSLASH])dnl
+_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
+AC_SUBST([am__nodep])dnl
+_AM_SUBST_NOTMAKE([am__nodep])dnl
+])
+
+# Generate code to set up dependency tracking.              -*- Autoconf -*-
+
+# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008
+# Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
 
-# serial 1
+#serial 5
 
-# AM_AUTOMAKE_VERSION(VERSION)
-# ----------------------------
-# Automake X.Y traces this macro to ensure aclocal.m4 has been
-# generated from the m4 files accompanying Automake X.Y.
-# (This private macro should not be called outside this file.)
-AC_DEFUN([AM_AUTOMAKE_VERSION],
-[am__api_version='1.11'
-dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
-dnl require some minimum version.  Point them to the right macro.
-m4_if([$1], [1.11.6], [],
-      [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
-])
+# _AM_OUTPUT_DEPENDENCY_COMMANDS
+# ------------------------------
+AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
+[{
+  # Autoconf 2.62 quotes --file arguments for eval, but not when files
+  # are listed without --file.  Let's play safe and only enable the eval
+  # if we detect the quoting.
+  case $CONFIG_FILES in
+  *\'*) eval set x "$CONFIG_FILES" ;;
+  *)   set x $CONFIG_FILES ;;
+  esac
+  shift
+  for mf
+  do
+    # Strip MF so we end up with the name of the file.
+    mf=`echo "$mf" | sed -e 's/:.*$//'`
+    # Check whether this is an Automake generated Makefile or not.
+    # We used to match only the files named `Makefile.in', but
+    # some people rename them; so instead we look at the file content.
+    # Grep'ing the first line is not enough: some people post-process
+    # each Makefile.in and add a new line on top of each file to say so.
+    # Grep'ing the whole file is not good either: AIX grep has a line
+    # limit of 2048, but all sed's we know have understand at least 4000.
+    if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
+      dirpart=`AS_DIRNAME("$mf")`
+    else
+      continue
+    fi
+    # Extract the definition of DEPDIR, am__include, and am__quote
+    # from the Makefile without running `make'.
+    DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
+    test -z "$DEPDIR" && continue
+    am__include=`sed -n 's/^am__include = //p' < "$mf"`
+    test -z "am__include" && continue
+    am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
+    # When using ansi2knr, U may be empty or an underscore; expand it
+    U=`sed -n 's/^U = //p' < "$mf"`
+    # Find all dependency output files, they are included files with
+    # $(DEPDIR) in their names.  We invoke sed twice because it is the
+    # simplest approach to changing $(DEPDIR) to its actual value in the
+    # expansion.
+    for file in `sed -n "
+      s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
+        sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
+      # Make sure the directory exists.
+      test -f "$dirpart/$file" && continue
+      fdir=`AS_DIRNAME(["$file"])`
+      AS_MKDIR_P([$dirpart/$fdir])
+      # echo "creating $dirpart/$file"
+      echo '# dummy' > "$dirpart/$file"
+    done
+  done
+}
+])# _AM_OUTPUT_DEPENDENCY_COMMANDS
 
-# _AM_AUTOCONF_VERSION(VERSION)
+
+# AM_OUTPUT_DEPENDENCY_COMMANDS
 # -----------------------------
-# aclocal traces this macro to find the Autoconf version.
-# This is a private macro too.  Using m4_define simplifies
-# the logic in aclocal, which can simply ignore this definition.
-m4_define([_AM_AUTOCONF_VERSION], [])
+# This macro should only be invoked once -- use via AC_REQUIRE.
+#
+# This code is only required when automatic dependency tracking
+# is enabled.  FIXME.  This creates each `.P' file that we will
+# need in order to bootstrap the dependency handling code.
+AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
+[AC_CONFIG_COMMANDS([depfiles],
+     [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
+     [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
+])
 
-# AM_SET_CURRENT_AUTOMAKE_VERSION
-# -------------------------------
-# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
-# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
-AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
-[AM_AUTOMAKE_VERSION([1.11.6])dnl
-m4_ifndef([AC_AUTOCONF_VERSION],
-  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
-_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
+# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005
+# Free Software Foundation, Inc.
+#
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
 
-# AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
+# serial 8
 
-# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc.
+# AM_CONFIG_HEADER is obsolete.  It has been replaced by AC_CONFIG_HEADERS.
+AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)])
+
+# Do all the work for Automake.                             -*- Autoconf -*-
+
+# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
+# 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
 
-# serial 1
+# serial 16
 
-# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
-# $ac_aux_dir to `$srcdir/foo'.  In other projects, it is set to
-# `$srcdir', `$srcdir/..', or `$srcdir/../..'.
-#
-# Of course, Automake must honor this variable whenever it calls a
-# tool from the auxiliary directory.  The problem is that $srcdir (and
-# therefore $ac_aux_dir as well) can be either absolute or relative,
-# depending on how configure is run.  This is pretty annoying, since
-# it makes $ac_aux_dir quite unusable in subdirectories: in the top
-# source directory, any form will work fine, but in subdirectories a
-# relative path needs to be adjusted first.
-#
-# $ac_aux_dir/missing
-#    fails when called from a subdirectory if $ac_aux_dir is relative
-# $top_srcdir/$ac_aux_dir/missing
-#    fails if $ac_aux_dir is absolute,
-#    fails when called from a subdirectory in a VPATH build with
-#          a relative $ac_aux_dir
-#
-# The reason of the latter failure is that $top_srcdir and $ac_aux_dir
-# are both prefixed by $srcdir.  In an in-source build this is usually
-# harmless because $srcdir is `.', but things will broke when you
-# start a VPATH build or use an absolute $srcdir.
-#
-# So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
-# iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
-#   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
-# and then we would define $MISSING as
-#   MISSING="\${SHELL} $am_aux_dir/missing"
-# This will work as long as MISSING is not called from configure, because
-# unfortunately $(top_srcdir) has no meaning in configure.
-# However there are other variables, like CC, which are often used in
-# configure, and could therefore not use this "fixed" $ac_aux_dir.
-#
-# Another solution, used here, is to always expand $ac_aux_dir to an
-# absolute PATH.  The drawback is that using absolute paths prevent a
-# configured tree to be moved without reconfiguration.
+# This macro actually does too much.  Some checks are only needed if
+# your package does certain things.  But this isn't really a big deal.
 
-AC_DEFUN([AM_AUX_DIR_EXPAND],
-[dnl Rely on autoconf to set up CDPATH properly.
-AC_PREREQ([2.50])dnl
-# expand $ac_aux_dir to an absolute path
-am_aux_dir=`cd $ac_aux_dir && pwd`
+# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
+# AM_INIT_AUTOMAKE([OPTIONS])
+# -----------------------------------------------
+# The call with PACKAGE and VERSION arguments is the old style
+# call (pre autoconf-2.50), which is being phased out.  PACKAGE
+# and VERSION should now be passed to AC_INIT and removed from
+# the call to AM_INIT_AUTOMAKE.
+# We support both call styles for the transition.  After
+# the next Automake release, Autoconf can make the AC_INIT
+# arguments mandatory, and then we can depend on a new Autoconf
+# release and drop the old call support.
+AC_DEFUN([AM_INIT_AUTOMAKE],
+[AC_PREREQ([2.62])dnl
+dnl Autoconf wants to disallow AM_ names.  We explicitly allow
+dnl the ones we care about.
+m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
+AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
+AC_REQUIRE([AC_PROG_INSTALL])dnl
+if test "`cd $srcdir && pwd`" != "`pwd`"; then
+  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
+  # is not polluted with repeated "-I."
+  AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
+  # test to see if srcdir already configured
+  if test -f $srcdir/config.status; then
+    AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
+  fi
+fi
+
+# test whether we have cygpath
+if test -z "$CYGPATH_W"; then
+  if (cygpath --version) >/dev/null 2>/dev/null; then
+    CYGPATH_W='cygpath -w'
+  else
+    CYGPATH_W=echo
+  fi
+fi
+AC_SUBST([CYGPATH_W])
+
+# Define the identity of the package.
+dnl Distinguish between old-style and new-style calls.
+m4_ifval([$2],
+[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
+ AC_SUBST([PACKAGE], [$1])dnl
+ AC_SUBST([VERSION], [$2])],
+[_AM_SET_OPTIONS([$1])dnl
+dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
+m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,,
+  [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
+ AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
+ AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
+
+_AM_IF_OPTION([no-define],,
+[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
+ AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
+
+# Some tools Automake needs.
+AC_REQUIRE([AM_SANITY_CHECK])dnl
+AC_REQUIRE([AC_ARG_PROGRAM])dnl
+AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
+AM_MISSING_PROG(AUTOCONF, autoconf)
+AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
+AM_MISSING_PROG(AUTOHEADER, autoheader)
+AM_MISSING_PROG(MAKEINFO, makeinfo)
+AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
+AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
+AC_REQUIRE([AM_PROG_MKDIR_P])dnl
+# We need awk for the "check" target.  The system "awk" is bad on
+# some platforms.
+AC_REQUIRE([AC_PROG_AWK])dnl
+AC_REQUIRE([AC_PROG_MAKE_SET])dnl
+AC_REQUIRE([AM_SET_LEADING_DOT])dnl
+_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
+             [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
+                            [_AM_PROG_TAR([v7])])])
+_AM_IF_OPTION([no-dependencies],,
+[AC_PROVIDE_IFELSE([AC_PROG_CC],
+                 [_AM_DEPENDENCIES(CC)],
+                 [define([AC_PROG_CC],
+                         defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
+AC_PROVIDE_IFELSE([AC_PROG_CXX],
+                 [_AM_DEPENDENCIES(CXX)],
+                 [define([AC_PROG_CXX],
+                         defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
+AC_PROVIDE_IFELSE([AC_PROG_OBJC],
+                 [_AM_DEPENDENCIES(OBJC)],
+                 [define([AC_PROG_OBJC],
+                         defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
+])
+_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl
+dnl The `parallel-tests' driver may need to know about EXEEXT, so add the
+dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen.  This macro
+dnl is hooked onto _AC_COMPILER_EXEEXT early, see below.
+AC_CONFIG_COMMANDS_PRE(dnl
+[m4_provide_if([_AM_COMPILER_EXEEXT],
+  [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
 ])
 
+dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion.  Do not
+dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
+dnl mangled by Autoconf and run in a shell conditional statement.
+m4_define([_AC_COMPILER_EXEEXT],
+m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
 
-# Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2005
-# Free Software Foundation, Inc.
+
+# When config.status generates a header, we must update the stamp-h file.
+# This file resides in the same directory as the config header
+# that is generated.  The stamp files are numbered to have different names.
+
+# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
+# loop where config.status creates the headers, so we can generate
+# our stamp files there.
+AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
+[# Compute $1's index in $config_headers.
+_am_arg=$1
+_am_stamp_count=1
+for _am_header in $config_headers :; do
+  case $_am_header in
+    $_am_arg | $_am_arg:* )
+      break ;;
+    * )
+      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
+  esac
+done
+echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
+
+# Copyright (C) 2001, 2003, 2005, 2008, 2011 Free Software Foundation,
+# Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
 
-# serial 4
-
-# This was merged into AC_PROG_CC in Autoconf.
-
-AU_DEFUN([AM_PROG_CC_STDC],
-[AC_PROG_CC
-AC_DIAGNOSE([obsolete], [$0:
-       your code should no longer depend upon `am_cv_prog_cc_stdc', but upon
-       `ac_cv_prog_cc_stdc'.  Remove this warning and the assignment when
-       you adjust the code.  You can also remove the above call to
-       AC_PROG_CC if you already called it elsewhere.])
-am_cv_prog_cc_stdc=$ac_cv_prog_cc_stdc
-])
-AU_DEFUN([fp_PROG_CC_STDC])
+# serial 1
 
-# AM_CONDITIONAL                                            -*- Autoconf -*-
+# AM_PROG_INSTALL_SH
+# ------------------
+# Define $install_sh.
+AC_DEFUN([AM_PROG_INSTALL_SH],
+[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
+if test x"${install_sh}" != xset; then
+  case $am_aux_dir in
+  *\ * | *\    *)
+    install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
+  *)
+    install_sh="\${SHELL} $am_aux_dir/install-sh"
+  esac
+fi
+AC_SUBST(install_sh)])
 
-# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008
-# Free Software Foundation, Inc.
+# Copyright (C) 2003, 2005  Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
 
-# serial 9
+# serial 2
 
-# AM_CONDITIONAL(NAME, SHELL-CONDITION)
-# -------------------------------------
-# Define a conditional.
-AC_DEFUN([AM_CONDITIONAL],
-[AC_PREREQ(2.52)dnl
- ifelse([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
-       [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
-AC_SUBST([$1_TRUE])dnl
-AC_SUBST([$1_FALSE])dnl
-_AM_SUBST_NOTMAKE([$1_TRUE])dnl
-_AM_SUBST_NOTMAKE([$1_FALSE])dnl
-m4_define([_AM_COND_VALUE_$1], [$2])dnl
-if $2; then
-  $1_TRUE=
-  $1_FALSE='#'
+# Check whether the underlying file-system supports filenames
+# with a leading dot.  For instance MS-DOS doesn't.
+AC_DEFUN([AM_SET_LEADING_DOT],
+[rm -rf .tst 2>/dev/null
+mkdir .tst 2>/dev/null
+if test -d .tst; then
+  am__leading_dot=.
 else
-  $1_TRUE='#'
-  $1_FALSE=
+  am__leading_dot=_
 fi
-AC_CONFIG_COMMANDS_PRE(
-[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
-  AC_MSG_ERROR([[conditional "$1" was never defined.
-Usually this means the macro was only invoked conditionally.]])
-fi])])
+rmdir .tst 2>/dev/null
+AC_SUBST([am__leading_dot])])
 
-# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009,
-# 2010, 2011 Free Software Foundation, Inc.
+# Add --enable-maintainer-mode option to configure.         -*- Autoconf -*-
+# From Jim Meyering
+
+# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2008,
+# 2011 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
 
-# serial 12
-
-# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
-# written in clear, in which case automake, when reading aclocal.m4,
-# will think it sees a *use*, and therefore will trigger all it's
-# C support machinery.  Also note that it means that autoscan, seeing
-# CC etc. in the Makefile, will ask for an AC_PROG_CC use...
-
+# serial 5
 
-# _AM_DEPENDENCIES(NAME)
-# ----------------------
-# See how the compiler implements dependency checking.
-# NAME is "CC", "CXX", "GCJ", or "OBJC".
-# We try a few techniques and use that to set a single cache variable.
-#
-# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
-# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular
-# dependency, and given that the user is not expected to run this macro,
-# just rely on AC_PROG_CC.
-AC_DEFUN([_AM_DEPENDENCIES],
-[AC_REQUIRE([AM_SET_DEPDIR])dnl
-AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
-AC_REQUIRE([AM_MAKE_INCLUDE])dnl
-AC_REQUIRE([AM_DEP_TRACK])dnl
-
-ifelse([$1], CC,   [depcc="$CC"   am_compiler_list=],
-       [$1], CXX,  [depcc="$CXX"  am_compiler_list=],
-       [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
-       [$1], UPC,  [depcc="$UPC"  am_compiler_list=],
-       [$1], GCJ,  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],
-                   [depcc="$$1"   am_compiler_list=])
+# AM_MAINTAINER_MODE([DEFAULT-MODE])
+# ----------------------------------
+# Control maintainer-specific portions of Makefiles.
+# Default is to disable them, unless `enable' is passed literally.
+# For symmetry, `disable' may be passed as well.  Anyway, the user
+# can override the default with the --enable/--disable switch.
+AC_DEFUN([AM_MAINTAINER_MODE],
+[m4_case(m4_default([$1], [disable]),
+       [enable], [m4_define([am_maintainer_other], [disable])],
+       [disable], [m4_define([am_maintainer_other], [enable])],
+       [m4_define([am_maintainer_other], [enable])
+        m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])])
+AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
+  dnl maintainer-mode's default is 'disable' unless 'enable' is passed
+  AC_ARG_ENABLE([maintainer-mode],
+[  --][am_maintainer_other][-maintainer-mode  am_maintainer_other make rules and dependencies not useful
+                         (and sometimes confusing) to the casual installer],
+      [USE_MAINTAINER_MODE=$enableval],
+      [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes]))
+  AC_MSG_RESULT([$USE_MAINTAINER_MODE])
+  AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes])
+  MAINT=$MAINTAINER_MODE_TRUE
+  AC_SUBST([MAINT])dnl
+]
+)
 
-AC_CACHE_CHECK([dependency style of $depcc],
-               [am_cv_$1_dependencies_compiler_type],
-[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
-  # We make a subdir and do the tests there.  Otherwise we can end up
-  # making bogus files that we don't know about and never remove.  For
-  # instance it was reported that on HP-UX the gcc test will end up
-  # making a dummy file named `D' -- because `-MD' means `put the output
-  # in D'.
-  rm -rf conftest.dir
-  mkdir conftest.dir
-  # Copy depcomp to subdir because otherwise we won't find it if we're
-  # using a relative directory.
-  cp "$am_depcomp" conftest.dir
-  cd conftest.dir
-  # We will build objects and dependencies in a subdirectory because
-  # it helps to detect inapplicable dependency modes.  For instance
-  # both Tru64's cc and ICC support -MD to output dependencies as a
-  # side effect of compilation, but ICC will put the dependencies in
-  # the current directory while Tru64 will put them in the object
-  # directory.
-  mkdir sub
+AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
 
-  am_cv_$1_dependencies_compiler_type=none
-  if test "$am_compiler_list" = ""; then
-     am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
-  fi
-  am__universal=false
-  m4_case([$1], [CC],
-    [case " $depcc " in #(
-     *\ -arch\ *\ -arch\ *) am__universal=true ;;
-     esac],
-    [CXX],
-    [case " $depcc " in #(
-     *\ -arch\ *\ -arch\ *) am__universal=true ;;
-     esac])
+# Check to see how 'make' treats includes.                 -*- Autoconf -*-
 
-  for depmode in $am_compiler_list; do
-    # Setup a source with many dependencies, because some compilers
-    # like to wrap large dependency lists on column 80 (with \), and
-    # we should not choose a depcomp mode which is confused by this.
-    #
-    # We need to recreate these files for each test, as the compiler may
-    # overwrite some of them when testing with obscure command lines.
-    # This happens at least with the AIX C compiler.
-    : > sub/conftest.c
-    for i in 1 2 3 4 5 6; do
-      echo '#include "conftst'$i'.h"' >> sub/conftest.c
-      # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
-      # Solaris 8's {/usr,}/bin/sh.
-      touch sub/conftst$i.h
-    done
-    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
+# Copyright (C) 2001, 2002, 2003, 2005, 2009  Free Software Foundation, Inc.
+#
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
 
-    # We check with `-c' and `-o' for the sake of the "dashmstdout"
-    # mode.  It turns out that the SunPro C++ compiler does not properly
-    # handle `-M -o', and we need to detect this.  Also, some Intel
-    # versions had trouble with output in subdirs
-    am__obj=sub/conftest.${OBJEXT-o}
-    am__minus_obj="-o $am__obj"
-    case $depmode in
-    gcc)
-      # This depmode causes a compiler race in universal mode.
-      test "$am__universal" = false || continue
-      ;;
-    nosideeffect)
-      # after this tag, mechanisms are not by side-effect, so they'll
-      # only be used when explicitly requested
-      if test "x$enable_dependency_tracking" = xyes; then
-       continue
-      else
-       break
-      fi
-      ;;
-    msvc7 | msvc7msys | msvisualcpp | msvcmsys)
-      # This compiler won't grok `-c -o', but also, the minuso test has
-      # not run yet.  These depmodes are late enough in the game, and
-      # so weak that their functioning should not be impacted.
-      am__obj=conftest.${OBJEXT-o}
-      am__minus_obj=
-      ;;
-    none) break ;;
-    esac
-    if depmode=$depmode \
-       source=sub/conftest.c object=$am__obj \
-       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
-       $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
-         >/dev/null 2>conftest.err &&
-       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
-       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
-       grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
-       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
-      # icc doesn't choke on unknown options, it will just issue warnings
-      # or remarks (even with -Werror).  So we grep stderr for any message
-      # that says an option was ignored or not supported.
-      # When given -MP, icc 7.0 and 7.1 complain thusly:
-      #   icc: Command line warning: ignoring option '-M'; no argument required
-      # The diagnosis changed in icc 8.0:
-      #   icc: Command line remark: option '-MP' not supported
-      if (grep 'ignoring option' conftest.err ||
-          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
-        am_cv_$1_dependencies_compiler_type=$depmode
-        break
-      fi
-    fi
-  done
+# serial 4
 
-  cd ..
-  rm -rf conftest.dir
-else
-  am_cv_$1_dependencies_compiler_type=none
+# AM_MAKE_INCLUDE()
+# -----------------
+# Check to see how make treats includes.
+AC_DEFUN([AM_MAKE_INCLUDE],
+[am_make=${MAKE-make}
+cat > confinc << 'END'
+am__doit:
+       @echo this is the am__doit target
+.PHONY: am__doit
+END
+# If we don't find an include directive, just comment out the code.
+AC_MSG_CHECKING([for style of include used by $am_make])
+am__include="#"
+am__quote=
+_am_result=none
+# First try GNU make style include.
+echo "include confinc" > confmf
+# Ignore all kinds of additional output from `make'.
+case `$am_make -s -f confmf 2> /dev/null` in #(
+*the\ am__doit\ target*)
+  am__include=include
+  am__quote=
+  _am_result=GNU
+  ;;
+esac
+# Now try BSD make style include.
+if test "$am__include" = "#"; then
+   echo '.include "confinc"' > confmf
+   case `$am_make -s -f confmf 2> /dev/null` in #(
+   *the\ am__doit\ target*)
+     am__include=.include
+     am__quote="\""
+     _am_result=BSD
+     ;;
+   esac
 fi
-])
-AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
-AM_CONDITIONAL([am__fastdep$1], [
-  test "x$enable_dependency_tracking" != xno \
-  && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
+AC_SUBST([am__include])
+AC_SUBST([am__quote])
+AC_MSG_RESULT([$_am_result])
+rm -f confinc confmf
 ])
 
+# Copyright (C) 1999, 2000, 2001, 2003, 2004, 2005, 2008
+# Free Software Foundation, Inc.
+#
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
 
-# AM_SET_DEPDIR
-# -------------
-# Choose a directory name for dependency files.
-# This macro is AC_REQUIREd in _AM_DEPENDENCIES
-AC_DEFUN([AM_SET_DEPDIR],
-[AC_REQUIRE([AM_SET_LEADING_DOT])dnl
-AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
-])
-
+# serial 6
 
-# AM_DEP_TRACK
-# ------------
-AC_DEFUN([AM_DEP_TRACK],
-[AC_ARG_ENABLE(dependency-tracking,
-[  --disable-dependency-tracking  speeds up one-time build
-  --enable-dependency-tracking   do not reject slow dependency extractors])
-if test "x$enable_dependency_tracking" != xno; then
-  am_depcomp="$ac_aux_dir/depcomp"
-  AMDEPBACKSLASH='\'
-  am__nodep='_no'
+# AM_PROG_CC_C_O
+# --------------
+# Like AC_PROG_CC_C_O, but changed for automake.
+AC_DEFUN([AM_PROG_CC_C_O],
+[AC_REQUIRE([AC_PROG_CC_C_O])dnl
+AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
+AC_REQUIRE_AUX_FILE([compile])dnl
+# FIXME: we rely on the cache variable name because
+# there is no other way.
+set dummy $CC
+am_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']`
+eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o
+if test "$am_t" != yes; then
+   # Losing compiler, so override with the script.
+   # FIXME: It is wrong to rewrite CC.
+   # But if we don't then we get into trouble of one sort or another.
+   # A longer-term fix would be to have automake use am__CC in this case,
+   # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
+   CC="$am_aux_dir/compile $CC"
 fi
-AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
-AC_SUBST([AMDEPBACKSLASH])dnl
-_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
-AC_SUBST([am__nodep])dnl
-_AM_SUBST_NOTMAKE([am__nodep])dnl
+dnl Make sure AC_PROG_CC is never called again, or it will override our
+dnl setting of CC.
+m4_define([AC_PROG_CC],
+          [m4_fatal([AC_PROG_CC cannot be called after AM_PROG_CC_C_O])])
 ])
 
-# Generate code to set up dependency tracking.              -*- Autoconf -*-
+# Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*-
 
-# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008
+# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008
 # Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
 
-#serial 5
+# serial 6
 
-# _AM_OUTPUT_DEPENDENCY_COMMANDS
+# AM_MISSING_PROG(NAME, PROGRAM)
 # ------------------------------
-AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
-[{
-  # Autoconf 2.62 quotes --file arguments for eval, but not when files
-  # are listed without --file.  Let's play safe and only enable the eval
-  # if we detect the quoting.
-  case $CONFIG_FILES in
-  *\'*) eval set x "$CONFIG_FILES" ;;
-  *)   set x $CONFIG_FILES ;;
-  esac
-  shift
-  for mf
-  do
-    # Strip MF so we end up with the name of the file.
-    mf=`echo "$mf" | sed -e 's/:.*$//'`
-    # Check whether this is an Automake generated Makefile or not.
-    # We used to match only the files named `Makefile.in', but
-    # some people rename them; so instead we look at the file content.
-    # Grep'ing the first line is not enough: some people post-process
-    # each Makefile.in and add a new line on top of each file to say so.
-    # Grep'ing the whole file is not good either: AIX grep has a line
-    # limit of 2048, but all sed's we know have understand at least 4000.
-    if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
-      dirpart=`AS_DIRNAME("$mf")`
-    else
-      continue
-    fi
-    # Extract the definition of DEPDIR, am__include, and am__quote
-    # from the Makefile without running `make'.
-    DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
-    test -z "$DEPDIR" && continue
-    am__include=`sed -n 's/^am__include = //p' < "$mf"`
-    test -z "am__include" && continue
-    am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
-    # When using ansi2knr, U may be empty or an underscore; expand it
-    U=`sed -n 's/^U = //p' < "$mf"`
-    # Find all dependency output files, they are included files with
-    # $(DEPDIR) in their names.  We invoke sed twice because it is the
-    # simplest approach to changing $(DEPDIR) to its actual value in the
-    # expansion.
-    for file in `sed -n "
-      s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
-        sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
-      # Make sure the directory exists.
-      test -f "$dirpart/$file" && continue
-      fdir=`AS_DIRNAME(["$file"])`
-      AS_MKDIR_P([$dirpart/$fdir])
-      # echo "creating $dirpart/$file"
-      echo '# dummy' > "$dirpart/$file"
-    done
-  done
-}
-])# _AM_OUTPUT_DEPENDENCY_COMMANDS
+AC_DEFUN([AM_MISSING_PROG],
+[AC_REQUIRE([AM_MISSING_HAS_RUN])
+$1=${$1-"${am_missing_run}$2"}
+AC_SUBST($1)])
 
 
-# AM_OUTPUT_DEPENDENCY_COMMANDS
-# -----------------------------
-# This macro should only be invoked once -- use via AC_REQUIRE.
-#
-# This code is only required when automatic dependency tracking
-# is enabled.  FIXME.  This creates each `.P' file that we will
-# need in order to bootstrap the dependency handling code.
-AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
-[AC_CONFIG_COMMANDS([depfiles],
-     [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
-     [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
+# AM_MISSING_HAS_RUN
+# ------------------
+# Define MISSING if not defined so far and test if it supports --run.
+# If it does, set am_missing_run to use it, otherwise, to nothing.
+AC_DEFUN([AM_MISSING_HAS_RUN],
+[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
+AC_REQUIRE_AUX_FILE([missing])dnl
+if test x"${MISSING+set}" != xset; then
+  case $am_aux_dir in
+  *\ * | *\    *)
+    MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
+  *)
+    MISSING="\${SHELL} $am_aux_dir/missing" ;;
+  esac
+fi
+# Use eval to expand $SHELL
+if eval "$MISSING --run true"; then
+  am_missing_run="$MISSING --run "
+else
+  am_missing_run=
+  AC_MSG_WARN([`missing' script is too old or missing])
+fi
 ])
 
-# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005
-# Free Software Foundation, Inc.
+# Copyright (C) 2003, 2004, 2005, 2006, 2011 Free Software Foundation,
+# Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
 
-# serial 8
+# serial 1
 
-# AM_CONFIG_HEADER is obsolete.  It has been replaced by AC_CONFIG_HEADERS.
-AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)])
+# AM_PROG_MKDIR_P
+# ---------------
+# Check for `mkdir -p'.
+AC_DEFUN([AM_PROG_MKDIR_P],
+[AC_PREREQ([2.60])dnl
+AC_REQUIRE([AC_PROG_MKDIR_P])dnl
+dnl Automake 1.8 to 1.9.6 used to define mkdir_p.  We now use MKDIR_P,
+dnl while keeping a definition of mkdir_p for backward compatibility.
+dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
+dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of
+dnl Makefile.ins that do not define MKDIR_P, so we do our own
+dnl adjustment using top_builddir (which is defined more often than
+dnl MKDIR_P).
+AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
+case $mkdir_p in
+  [[\\/$]]* | ?:[[\\/]]*) ;;
+  */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
+esac
+])
 
-# Do all the work for Automake.                             -*- Autoconf -*-
+# Helper functions for option handling.                     -*- Autoconf -*-
 
-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
-# 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+# Copyright (C) 2001, 2002, 2003, 2005, 2008, 2010 Free Software
+# Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
 
-# serial 16
-
-# This macro actually does too much.  Some checks are only needed if
-# your package does certain things.  But this isn't really a big deal.
-
-# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
-# AM_INIT_AUTOMAKE([OPTIONS])
-# -----------------------------------------------
-# The call with PACKAGE and VERSION arguments is the old style
-# call (pre autoconf-2.50), which is being phased out.  PACKAGE
-# and VERSION should now be passed to AC_INIT and removed from
-# the call to AM_INIT_AUTOMAKE.
-# We support both call styles for the transition.  After
-# the next Automake release, Autoconf can make the AC_INIT
-# arguments mandatory, and then we can depend on a new Autoconf
-# release and drop the old call support.
-AC_DEFUN([AM_INIT_AUTOMAKE],
-[AC_PREREQ([2.62])dnl
-dnl Autoconf wants to disallow AM_ names.  We explicitly allow
-dnl the ones we care about.
-m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
-AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
-AC_REQUIRE([AC_PROG_INSTALL])dnl
-if test "`cd $srcdir && pwd`" != "`pwd`"; then
-  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
-  # is not polluted with repeated "-I."
-  AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
-  # test to see if srcdir already configured
-  if test -f $srcdir/config.status; then
-    AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
-  fi
-fi
-
-# test whether we have cygpath
-if test -z "$CYGPATH_W"; then
-  if (cygpath --version) >/dev/null 2>/dev/null; then
-    CYGPATH_W='cygpath -w'
-  else
-    CYGPATH_W=echo
-  fi
-fi
-AC_SUBST([CYGPATH_W])
+# serial 5
 
-# Define the identity of the package.
-dnl Distinguish between old-style and new-style calls.
-m4_ifval([$2],
-[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
- AC_SUBST([PACKAGE], [$1])dnl
- AC_SUBST([VERSION], [$2])],
-[_AM_SET_OPTIONS([$1])dnl
-dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
-m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,,
-  [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
- AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
- AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
+# _AM_MANGLE_OPTION(NAME)
+# -----------------------
+AC_DEFUN([_AM_MANGLE_OPTION],
+[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
 
-_AM_IF_OPTION([no-define],,
-[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
- AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
+# _AM_SET_OPTION(NAME)
+# --------------------
+# Set option NAME.  Presently that only means defining a flag for this option.
+AC_DEFUN([_AM_SET_OPTION],
+[m4_define(_AM_MANGLE_OPTION([$1]), 1)])
 
-# Some tools Automake needs.
-AC_REQUIRE([AM_SANITY_CHECK])dnl
-AC_REQUIRE([AC_ARG_PROGRAM])dnl
-AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
-AM_MISSING_PROG(AUTOCONF, autoconf)
-AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
-AM_MISSING_PROG(AUTOHEADER, autoheader)
-AM_MISSING_PROG(MAKEINFO, makeinfo)
-AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
-AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
-AC_REQUIRE([AM_PROG_MKDIR_P])dnl
-# We need awk for the "check" target.  The system "awk" is bad on
-# some platforms.
-AC_REQUIRE([AC_PROG_AWK])dnl
-AC_REQUIRE([AC_PROG_MAKE_SET])dnl
-AC_REQUIRE([AM_SET_LEADING_DOT])dnl
-_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
-             [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
-                            [_AM_PROG_TAR([v7])])])
-_AM_IF_OPTION([no-dependencies],,
-[AC_PROVIDE_IFELSE([AC_PROG_CC],
-                 [_AM_DEPENDENCIES(CC)],
-                 [define([AC_PROG_CC],
-                         defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
-AC_PROVIDE_IFELSE([AC_PROG_CXX],
-                 [_AM_DEPENDENCIES(CXX)],
-                 [define([AC_PROG_CXX],
-                         defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
-AC_PROVIDE_IFELSE([AC_PROG_OBJC],
-                 [_AM_DEPENDENCIES(OBJC)],
-                 [define([AC_PROG_OBJC],
-                         defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
-])
-_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl
-dnl The `parallel-tests' driver may need to know about EXEEXT, so add the
-dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen.  This macro
-dnl is hooked onto _AC_COMPILER_EXEEXT early, see below.
-AC_CONFIG_COMMANDS_PRE(dnl
-[m4_provide_if([_AM_COMPILER_EXEEXT],
-  [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
-])
+# _AM_SET_OPTIONS(OPTIONS)
+# ------------------------
+# OPTIONS is a space-separated list of Automake options.
+AC_DEFUN([_AM_SET_OPTIONS],
+[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
 
-dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion.  Do not
-dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
-dnl mangled by Autoconf and run in a shell conditional statement.
-m4_define([_AC_COMPILER_EXEEXT],
-m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
+# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
+# -------------------------------------------
+# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
+AC_DEFUN([_AM_IF_OPTION],
+[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
 
+# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008, 2009,
+# 2011 Free Software Foundation, Inc.
+#
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
 
-# When config.status generates a header, we must update the stamp-h file.
-# This file resides in the same directory as the config header
-# that is generated.  The stamp files are numbered to have different names.
+# serial 2
 
-# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
-# loop where config.status creates the headers, so we can generate
-# our stamp files there.
-AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
-[# Compute $1's index in $config_headers.
-_am_arg=$1
-_am_stamp_count=1
-for _am_header in $config_headers :; do
-  case $_am_header in
-    $_am_arg | $_am_arg:* )
-      break ;;
-    * )
-      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
-  esac
-done
-echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
-
-# Copyright (C) 2001, 2003, 2005, 2008, 2011 Free Software Foundation,
-# Inc.
+# AM_PATH_PYTHON([MINIMUM-VERSION], [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
+# ---------------------------------------------------------------------------
+# Adds support for distributing Python modules and packages.  To
+# install modules, copy them to $(pythondir), using the python_PYTHON
+# automake variable.  To install a package with the same name as the
+# automake package, install to $(pkgpythondir), or use the
+# pkgpython_PYTHON automake variable.
 #
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
+# The variables $(pyexecdir) and $(pkgpyexecdir) are provided as
+# locations to install python extension modules (shared libraries).
+# Another macro is required to find the appropriate flags to compile
+# extension modules.
+#
+# If your package is configured with a different prefix to python,
+# users will have to add the install directory to the PYTHONPATH
+# environment variable, or create a .pth file (see the python
+# documentation for details).
+#
+# If the MINIMUM-VERSION argument is passed, AM_PATH_PYTHON will
+# cause an error if the version of python installed on the system
+# doesn't meet the requirement.  MINIMUM-VERSION should consist of
+# numbers and dots only.
+AC_DEFUN([AM_PATH_PYTHON],
+ [
+  dnl Find a Python interpreter.  Python versions prior to 2.0 are not
+  dnl supported. (2.0 was released on October 16, 2000).
+  m4_define_default([_AM_PYTHON_INTERPRETER_LIST],
+[python python2 python3 python3.2 python3.1 python3.0 python2.7 dnl
+ python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0])
 
-# serial 1
+  AC_ARG_VAR([PYTHON], [the Python interpreter])
 
-# AM_PROG_INSTALL_SH
-# ------------------
-# Define $install_sh.
-AC_DEFUN([AM_PROG_INSTALL_SH],
-[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
-if test x"${install_sh}" != xset; then
-  case $am_aux_dir in
-  *\ * | *\    *)
-    install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
-  *)
-    install_sh="\${SHELL} $am_aux_dir/install-sh"
-  esac
-fi
-AC_SUBST(install_sh)])
+  m4_if([$1],[],[
+    dnl No version check is needed.
+    # Find any Python interpreter.
+    if test -z "$PYTHON"; then
+      AC_PATH_PROGS([PYTHON], _AM_PYTHON_INTERPRETER_LIST, :)
+    fi
+    am_display_PYTHON=python
+  ], [
+    dnl A version check is needed.
+    if test -n "$PYTHON"; then
+      # If the user set $PYTHON, use it and don't search something else.
+      AC_MSG_CHECKING([whether $PYTHON version >= $1])
+      AM_PYTHON_CHECK_VERSION([$PYTHON], [$1],
+                             [AC_MSG_RESULT(yes)],
+                             [AC_MSG_ERROR(too old)])
+      am_display_PYTHON=$PYTHON
+    else
+      # Otherwise, try each interpreter until we find one that satisfies
+      # VERSION.
+      AC_CACHE_CHECK([for a Python interpreter with version >= $1],
+       [am_cv_pathless_PYTHON],[
+       for am_cv_pathless_PYTHON in _AM_PYTHON_INTERPRETER_LIST none; do
+         test "$am_cv_pathless_PYTHON" = none && break
+         AM_PYTHON_CHECK_VERSION([$am_cv_pathless_PYTHON], [$1], [break])
+       done])
+      # Set $PYTHON to the absolute path of $am_cv_pathless_PYTHON.
+      if test "$am_cv_pathless_PYTHON" = none; then
+       PYTHON=:
+      else
+        AC_PATH_PROG([PYTHON], [$am_cv_pathless_PYTHON])
+      fi
+      am_display_PYTHON=$am_cv_pathless_PYTHON
+    fi
+  ])
 
-# Copyright (C) 2003, 2005  Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
+  if test "$PYTHON" = :; then
+  dnl Run any user-specified action, or abort.
+    m4_default([$3], [AC_MSG_ERROR([no suitable Python interpreter found])])
+  else
 
-# serial 2
+  dnl Query Python for its version number.  Getting [:3] seems to be
+  dnl the best way to do this; it's what "site.py" does in the standard
+  dnl library.
 
-# Check whether the underlying file-system supports filenames
-# with a leading dot.  For instance MS-DOS doesn't.
-AC_DEFUN([AM_SET_LEADING_DOT],
-[rm -rf .tst 2>/dev/null
-mkdir .tst 2>/dev/null
-if test -d .tst; then
-  am__leading_dot=.
-else
-  am__leading_dot=_
-fi
-rmdir .tst 2>/dev/null
-AC_SUBST([am__leading_dot])])
+  AC_CACHE_CHECK([for $am_display_PYTHON version], [am_cv_python_version],
+    [am_cv_python_version=`$PYTHON -c "import sys; sys.stdout.write(sys.version[[:3]])"`])
+  AC_SUBST([PYTHON_VERSION], [$am_cv_python_version])
 
-# Add --enable-maintainer-mode option to configure.         -*- Autoconf -*-
-# From Jim Meyering
+  dnl Use the values of $prefix and $exec_prefix for the corresponding
+  dnl values of PYTHON_PREFIX and PYTHON_EXEC_PREFIX.  These are made
+  dnl distinct variables so they can be overridden if need be.  However,
+  dnl general consensus is that you shouldn't need this ability.
 
-# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2008,
-# 2011 Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
+  AC_SUBST([PYTHON_PREFIX], ['${prefix}'])
+  AC_SUBST([PYTHON_EXEC_PREFIX], ['${exec_prefix}'])
 
-# serial 5
+  dnl At times (like when building shared libraries) you may want
+  dnl to know which OS platform Python thinks this is.
 
-# AM_MAINTAINER_MODE([DEFAULT-MODE])
-# ----------------------------------
-# Control maintainer-specific portions of Makefiles.
-# Default is to disable them, unless `enable' is passed literally.
-# For symmetry, `disable' may be passed as well.  Anyway, the user
-# can override the default with the --enable/--disable switch.
-AC_DEFUN([AM_MAINTAINER_MODE],
-[m4_case(m4_default([$1], [disable]),
-       [enable], [m4_define([am_maintainer_other], [disable])],
-       [disable], [m4_define([am_maintainer_other], [enable])],
-       [m4_define([am_maintainer_other], [enable])
-        m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])])
-AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
-  dnl maintainer-mode's default is 'disable' unless 'enable' is passed
-  AC_ARG_ENABLE([maintainer-mode],
-[  --][am_maintainer_other][-maintainer-mode  am_maintainer_other make rules and dependencies not useful
-                         (and sometimes confusing) to the casual installer],
-      [USE_MAINTAINER_MODE=$enableval],
-      [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes]))
-  AC_MSG_RESULT([$USE_MAINTAINER_MODE])
-  AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes])
-  MAINT=$MAINTAINER_MODE_TRUE
-  AC_SUBST([MAINT])dnl
-]
-)
+  AC_CACHE_CHECK([for $am_display_PYTHON platform], [am_cv_python_platform],
+    [am_cv_python_platform=`$PYTHON -c "import sys; sys.stdout.write(sys.platform)"`])
+  AC_SUBST([PYTHON_PLATFORM], [$am_cv_python_platform])
 
-AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
 
-# Check to see how 'make' treats includes.                 -*- Autoconf -*-
+  dnl Set up 4 directories:
 
-# Copyright (C) 2001, 2002, 2003, 2005, 2009  Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
+  dnl pythondir -- where to install python scripts.  This is the
+  dnl   site-packages directory, not the python standard library
+  dnl   directory like in previous automake betas.  This behavior
+  dnl   is more consistent with lispdir.m4 for example.
+  dnl Query distutils for this directory.
+  AC_CACHE_CHECK([for $am_display_PYTHON script directory],
+    [am_cv_python_pythondir],
+    [if test "x$prefix" = xNONE
+     then
+       am_py_prefix=$ac_default_prefix
+     else
+       am_py_prefix=$prefix
+     fi
+     am_cv_python_pythondir=`$PYTHON -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(0,0,prefix='$am_py_prefix'))" 2>/dev/null`
+     case $am_cv_python_pythondir in
+     $am_py_prefix*)
+       am__strip_prefix=`echo "$am_py_prefix" | sed 's|.|.|g'`
+       am_cv_python_pythondir=`echo "$am_cv_python_pythondir" | sed "s,^$am__strip_prefix,$PYTHON_PREFIX,"`
+       ;;
+     *)
+       case $am_py_prefix in
+         /usr|/System*) ;;
+         *)
+         am_cv_python_pythondir=$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages
+         ;;
+       esac
+       ;;
+     esac
+    ])
+  AC_SUBST([pythondir], [$am_cv_python_pythondir])
 
-# serial 4
+  dnl pkgpythondir -- $PACKAGE directory under pythondir.  Was
+  dnl   PYTHON_SITE_PACKAGE in previous betas, but this naming is
+  dnl   more consistent with the rest of automake.
 
-# AM_MAKE_INCLUDE()
-# -----------------
-# Check to see how make treats includes.
-AC_DEFUN([AM_MAKE_INCLUDE],
-[am_make=${MAKE-make}
-cat > confinc << 'END'
-am__doit:
-       @echo this is the am__doit target
-.PHONY: am__doit
-END
-# If we don't find an include directive, just comment out the code.
-AC_MSG_CHECKING([for style of include used by $am_make])
-am__include="#"
-am__quote=
-_am_result=none
-# First try GNU make style include.
-echo "include confinc" > confmf
-# Ignore all kinds of additional output from `make'.
-case `$am_make -s -f confmf 2> /dev/null` in #(
-*the\ am__doit\ target*)
-  am__include=include
-  am__quote=
-  _am_result=GNU
-  ;;
-esac
-# Now try BSD make style include.
-if test "$am__include" = "#"; then
-   echo '.include "confinc"' > confmf
-   case `$am_make -s -f confmf 2> /dev/null` in #(
-   *the\ am__doit\ target*)
-     am__include=.include
-     am__quote="\""
-     _am_result=BSD
-     ;;
-   esac
-fi
-AC_SUBST([am__include])
-AC_SUBST([am__quote])
-AC_MSG_RESULT([$_am_result])
-rm -f confinc confmf
-])
+  AC_SUBST([pkgpythondir], [\${pythondir}/$PACKAGE])
 
-# Copyright (C) 1999, 2000, 2001, 2003, 2004, 2005, 2008
-# Free Software Foundation, Inc.
+  dnl pyexecdir -- directory for installing python extension modules
+  dnl   (shared libraries)
+  dnl Query distutils for this directory.
+  AC_CACHE_CHECK([for $am_display_PYTHON extension module directory],
+    [am_cv_python_pyexecdir],
+    [if test "x$exec_prefix" = xNONE
+     then
+       am_py_exec_prefix=$am_py_prefix
+     else
+       am_py_exec_prefix=$exec_prefix
+     fi
+     am_cv_python_pyexecdir=`$PYTHON -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(1,0,prefix='$am_py_exec_prefix'))" 2>/dev/null`
+     case $am_cv_python_pyexecdir in
+     $am_py_exec_prefix*)
+       am__strip_prefix=`echo "$am_py_exec_prefix" | sed 's|.|.|g'`
+       am_cv_python_pyexecdir=`echo "$am_cv_python_pyexecdir" | sed "s,^$am__strip_prefix,$PYTHON_EXEC_PREFIX,"`
+       ;;
+     *)
+       case $am_py_exec_prefix in
+         /usr|/System*) ;;
+         *)
+          am_cv_python_pyexecdir=$PYTHON_EXEC_PREFIX/lib/python$PYTHON_VERSION/site-packages
+          ;;
+       esac
+       ;;
+     esac
+    ])
+  AC_SUBST([pyexecdir], [$am_cv_python_pyexecdir])
+
+  dnl pkgpyexecdir -- $(pyexecdir)/$(PACKAGE)
+
+  AC_SUBST([pkgpyexecdir], [\${pyexecdir}/$PACKAGE])
+
+  dnl Run any user-specified action.
+  $2
+  fi
+
+])
+
+
+# AM_PYTHON_CHECK_VERSION(PROG, VERSION, [ACTION-IF-TRUE], [ACTION-IF-FALSE])
+# ---------------------------------------------------------------------------
+# Run ACTION-IF-TRUE if the Python interpreter PROG has version >= VERSION.
+# Run ACTION-IF-FALSE otherwise.
+# This test uses sys.hexversion instead of the string equivalent (first
+# word of sys.version), in order to cope with versions such as 2.2c1.
+# This supports Python 2.0 or higher. (2.0 was released on October 16, 2000).
+AC_DEFUN([AM_PYTHON_CHECK_VERSION],
+ [prog="import sys
+# split strings by '.' and convert to numeric.  Append some zeros
+# because we need at least 4 digits for the hex conversion.
+# map returns an iterator in Python 3.0 and a list in 2.x
+minver = list(map(int, '$2'.split('.'))) + [[0, 0, 0]]
+minverhex = 0
+# xrange is not present in Python 3.0 and range returns an iterator
+for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[[i]]
+sys.exit(sys.hexversion < minverhex)"
+  AS_IF([AM_RUN_LOG([$1 -c "$prog"])], [$3], [$4])])
+
+# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
 
-# serial 6
+# serial 1
 
-# AM_PROG_CC_C_O
-# --------------
-# Like AC_PROG_CC_C_O, but changed for automake.
-AC_DEFUN([AM_PROG_CC_C_O],
-[AC_REQUIRE([AC_PROG_CC_C_O])dnl
-AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
-AC_REQUIRE_AUX_FILE([compile])dnl
-# FIXME: we rely on the cache variable name because
-# there is no other way.
-set dummy $CC
-am_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']`
-eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o
-if test "$am_t" != yes; then
-   # Losing compiler, so override with the script.
-   # FIXME: It is wrong to rewrite CC.
-   # But if we don't then we get into trouble of one sort or another.
-   # A longer-term fix would be to have automake use am__CC in this case,
-   # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
-   CC="$am_aux_dir/compile $CC"
-fi
-dnl Make sure AC_PROG_CC is never called again, or it will override our
-dnl setting of CC.
-m4_define([AC_PROG_CC],
-          [m4_fatal([AC_PROG_CC cannot be called after AM_PROG_CC_C_O])])
-])
+# AM_RUN_LOG(COMMAND)
+# -------------------
+# Run COMMAND, save the exit status in ac_status, and log it.
+# (This has been adapted from Autoconf's _AC_RUN_LOG macro.)
+AC_DEFUN([AM_RUN_LOG],
+[{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
+   ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
+   ac_status=$?
+   echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
+   (exit $ac_status); }])
 
-# Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*-
+# Check to make sure that the build environment is sane.    -*- Autoconf -*-
 
-# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008
+# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008
 # Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
 
-# serial 6
+# serial 5
 
-# AM_MISSING_PROG(NAME, PROGRAM)
-# ------------------------------
-AC_DEFUN([AM_MISSING_PROG],
-[AC_REQUIRE([AM_MISSING_HAS_RUN])
-$1=${$1-"${am_missing_run}$2"}
-AC_SUBST($1)])
+# AM_SANITY_CHECK
+# ---------------
+AC_DEFUN([AM_SANITY_CHECK],
+[AC_MSG_CHECKING([whether build environment is sane])
+# Just in case
+sleep 1
+echo timestamp > conftest.file
+# Reject unsafe characters in $srcdir or the absolute working directory
+# name.  Accept space and tab only in the latter.
+am_lf='
+'
+case `pwd` in
+  *[[\\\"\#\$\&\'\`$am_lf]]*)
+    AC_MSG_ERROR([unsafe absolute working directory name]);;
+esac
+case $srcdir in
+  *[[\\\"\#\$\&\'\`$am_lf\ \   ]]*)
+    AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);;
+esac
 
+# Do `set' in a subshell so we don't clobber the current shell's
+# arguments.  Must try -L first in case configure is actually a
+# symlink; some systems play weird games with the mod time of symlinks
+# (eg FreeBSD returns the mod time of the symlink's containing
+# directory).
+if (
+   set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
+   if test "$[*]" = "X"; then
+      # -L didn't work.
+      set X `ls -t "$srcdir/configure" conftest.file`
+   fi
+   rm -f conftest.file
+   if test "$[*]" != "X $srcdir/configure conftest.file" \
+      && test "$[*]" != "X conftest.file $srcdir/configure"; then
 
-# AM_MISSING_HAS_RUN
-# ------------------
-# Define MISSING if not defined so far and test if it supports --run.
-# If it does, set am_missing_run to use it, otherwise, to nothing.
-AC_DEFUN([AM_MISSING_HAS_RUN],
-[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
-AC_REQUIRE_AUX_FILE([missing])dnl
-if test x"${MISSING+set}" != xset; then
-  case $am_aux_dir in
-  *\ * | *\    *)
-    MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
-  *)
-    MISSING="\${SHELL} $am_aux_dir/missing" ;;
-  esac
-fi
-# Use eval to expand $SHELL
-if eval "$MISSING --run true"; then
-  am_missing_run="$MISSING --run "
+      # If neither matched, then we have a broken ls.  This can happen
+      # if, for instance, CONFIG_SHELL is bash and it inherits a
+      # broken ls alias from the environment.  This has actually
+      # happened.  Such a system could not be considered "sane".
+      AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
+alias in your environment])
+   fi
+
+   test "$[2]" = conftest.file
+   )
+then
+   # Ok.
+   :
 else
-  am_missing_run=
-  AC_MSG_WARN([`missing' script is too old or missing])
+   AC_MSG_ERROR([newly created file is older than distributed files!
+Check your system clock])
 fi
-])
+AC_MSG_RESULT(yes)])
 
-# Copyright (C) 2003, 2004, 2005, 2006, 2011 Free Software Foundation,
-# Inc.
+# Copyright (C) 2009, 2011  Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
 
-# serial 1
+# serial 2
 
-# AM_PROG_MKDIR_P
-# ---------------
-# Check for `mkdir -p'.
-AC_DEFUN([AM_PROG_MKDIR_P],
-[AC_PREREQ([2.60])dnl
-AC_REQUIRE([AC_PROG_MKDIR_P])dnl
-dnl Automake 1.8 to 1.9.6 used to define mkdir_p.  We now use MKDIR_P,
-dnl while keeping a definition of mkdir_p for backward compatibility.
-dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
-dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of
-dnl Makefile.ins that do not define MKDIR_P, so we do our own
-dnl adjustment using top_builddir (which is defined more often than
-dnl MKDIR_P).
-AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
-case $mkdir_p in
-  [[\\/$]]* | ?:[[\\/]]*) ;;
-  */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
+# AM_SILENT_RULES([DEFAULT])
+# --------------------------
+# Enable less verbose build rules; with the default set to DEFAULT
+# (`yes' being less verbose, `no' or empty being verbose).
+AC_DEFUN([AM_SILENT_RULES],
+[AC_ARG_ENABLE([silent-rules],
+[  --enable-silent-rules          less verbose build output (undo: `make V=1')
+  --disable-silent-rules         verbose build output (undo: `make V=0')])
+case $enable_silent_rules in
+yes) AM_DEFAULT_VERBOSITY=0;;
+no)  AM_DEFAULT_VERBOSITY=1;;
+*)   AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
 esac
+dnl
+dnl A few `make' implementations (e.g., NonStop OS and NextStep)
+dnl do not support nested variable expansions.
+dnl See automake bug#9928 and bug#10237.
+am_make=${MAKE-make}
+AC_CACHE_CHECK([whether $am_make supports nested variables],
+   [am_cv_make_support_nested_variables],
+   [if AS_ECHO([['TRUE=$(BAR$(V))
+BAR0=false
+BAR1=true
+V=1
+am__doit:
+       @$(TRUE)
+.PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then
+  am_cv_make_support_nested_variables=yes
+else
+  am_cv_make_support_nested_variables=no
+fi])
+if test $am_cv_make_support_nested_variables = yes; then
+  dnl Using `$V' instead of `$(V)' breaks IRIX make.
+  AM_V='$(V)'
+  AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
+else
+  AM_V=$AM_DEFAULT_VERBOSITY
+  AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
+fi
+AC_SUBST([AM_V])dnl
+AM_SUBST_NOTMAKE([AM_V])dnl
+AC_SUBST([AM_DEFAULT_V])dnl
+AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl
+AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
+AM_BACKSLASH='\'
+AC_SUBST([AM_BACKSLASH])dnl
+_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
 ])
 
-# Helper functions for option handling.                     -*- Autoconf -*-
-
-# Copyright (C) 2001, 2002, 2003, 2005, 2008, 2010 Free Software
-# Foundation, Inc.
+# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
 
-# serial 5
+# serial 1
 
-# _AM_MANGLE_OPTION(NAME)
-# -----------------------
-AC_DEFUN([_AM_MANGLE_OPTION],
-[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
+# AM_PROG_INSTALL_STRIP
+# ---------------------
+# One issue with vendor `install' (even GNU) is that you can't
+# specify the program used to strip binaries.  This is especially
+# annoying in cross-compiling environments, where the build's strip
+# is unlikely to handle the host's binaries.
+# Fortunately install-sh will honor a STRIPPROG variable, so we
+# always use install-sh in `make install-strip', and initialize
+# STRIPPROG with the value of the STRIP variable (set by the user).
+AC_DEFUN([AM_PROG_INSTALL_STRIP],
+[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
+# Installed binaries are usually stripped using `strip' when the user
+# run `make install-strip'.  However `strip' might not be the right
+# tool to use in cross-compilation environments, therefore Automake
+# will honor the `STRIP' environment variable to overrule this program.
+dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
+if test "$cross_compiling" != no; then
+  AC_CHECK_TOOL([STRIP], [strip], :)
+fi
+INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
+AC_SUBST([INSTALL_STRIP_PROGRAM])])
 
-# _AM_SET_OPTION(NAME)
-# --------------------
-# Set option NAME.  Presently that only means defining a flag for this option.
-AC_DEFUN([_AM_SET_OPTION],
-[m4_define(_AM_MANGLE_OPTION([$1]), 1)])
+# Copyright (C) 2006, 2008, 2010 Free Software Foundation, Inc.
+#
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
 
-# _AM_SET_OPTIONS(OPTIONS)
-# ------------------------
-# OPTIONS is a space-separated list of Automake options.
-AC_DEFUN([_AM_SET_OPTIONS],
-[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
+# serial 3
 
-# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
-# -------------------------------------------
-# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
-AC_DEFUN([_AM_IF_OPTION],
-[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
+# _AM_SUBST_NOTMAKE(VARIABLE)
+# ---------------------------
+# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
+# This macro is traced by Automake.
+AC_DEFUN([_AM_SUBST_NOTMAKE])
 
-# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008, 2009,
-# 2011 Free Software Foundation, Inc.
+# AM_SUBST_NOTMAKE(VARIABLE)
+# --------------------------
+# Public sister of _AM_SUBST_NOTMAKE.
+AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
+
+# Check how to create a tarball.                            -*- Autoconf -*-
+
+# Copyright (C) 2004, 2005, 2012 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -1252,492 +1271,9074 @@ AC_DEFUN([_AM_IF_OPTION],
 
 # serial 2
 
-# AM_PATH_PYTHON([MINIMUM-VERSION], [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
-# ---------------------------------------------------------------------------
-# Adds support for distributing Python modules and packages.  To
-# install modules, copy them to $(pythondir), using the python_PYTHON
-# automake variable.  To install a package with the same name as the
-# automake package, install to $(pkgpythondir), or use the
-# pkgpython_PYTHON automake variable.
-#
-# The variables $(pyexecdir) and $(pkgpyexecdir) are provided as
-# locations to install python extension modules (shared libraries).
-# Another macro is required to find the appropriate flags to compile
-# extension modules.
+# _AM_PROG_TAR(FORMAT)
+# --------------------
+# Check how to create a tarball in format FORMAT.
+# FORMAT should be one of `v7', `ustar', or `pax'.
 #
-# If your package is configured with a different prefix to python,
-# users will have to add the install directory to the PYTHONPATH
-# environment variable, or create a .pth file (see the python
-# documentation for details).
+# Substitute a variable $(am__tar) that is a command
+# writing to stdout a FORMAT-tarball containing the directory
+# $tardir.
+#     tardir=directory && $(am__tar) > result.tar
 #
-# If the MINIMUM-VERSION argument is passed, AM_PATH_PYTHON will
-# cause an error if the version of python installed on the system
-# doesn't meet the requirement.  MINIMUM-VERSION should consist of
-# numbers and dots only.
-AC_DEFUN([AM_PATH_PYTHON],
- [
-  dnl Find a Python interpreter.  Python versions prior to 2.0 are not
-  dnl supported. (2.0 was released on October 16, 2000).
-  m4_define_default([_AM_PYTHON_INTERPRETER_LIST],
-[python python2 python3 python3.2 python3.1 python3.0 python2.7 dnl
- python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0])
+# Substitute a variable $(am__untar) that extract such
+# a tarball read from stdin.
+#     $(am__untar) < result.tar
+AC_DEFUN([_AM_PROG_TAR],
+[# Always define AMTAR for backward compatibility.  Yes, it's still used
+# in the wild :-(  We should find a proper way to deprecate it ...
+AC_SUBST([AMTAR], ['$${TAR-tar}'])
+m4_if([$1], [v7],
+     [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
+     [m4_case([$1], [ustar],, [pax],,
+              [m4_fatal([Unknown tar format])])
+AC_MSG_CHECKING([how to create a $1 tar archive])
+# Loop over all known methods to create a tar archive until one works.
+_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
+_am_tools=${am_cv_prog_tar_$1-$_am_tools}
+# Do not fold the above two line into one, because Tru64 sh and
+# Solaris sh will not grok spaces in the rhs of `-'.
+for _am_tool in $_am_tools
+do
+  case $_am_tool in
+  gnutar)
+    for _am_tar in tar gnutar gtar;
+    do
+      AM_RUN_LOG([$_am_tar --version]) && break
+    done
+    am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
+    am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
+    am__untar="$_am_tar -xf -"
+    ;;
+  plaintar)
+    # Must skip GNU tar: if it does not support --format= it doesn't create
+    # ustar tarball either.
+    (tar --version) >/dev/null 2>&1 && continue
+    am__tar='tar chf - "$$tardir"'
+    am__tar_='tar chf - "$tardir"'
+    am__untar='tar xf -'
+    ;;
+  pax)
+    am__tar='pax -L -x $1 -w "$$tardir"'
+    am__tar_='pax -L -x $1 -w "$tardir"'
+    am__untar='pax -r'
+    ;;
+  cpio)
+    am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
+    am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
+    am__untar='cpio -i -H $1 -d'
+    ;;
+  none)
+    am__tar=false
+    am__tar_=false
+    am__untar=false
+    ;;
+  esac
 
-  AC_ARG_VAR([PYTHON], [the Python interpreter])
+  # If the value was cached, stop now.  We just wanted to have am__tar
+  # and am__untar set.
+  test -n "${am_cv_prog_tar_$1}" && break
 
-  m4_if([$1],[],[
-    dnl No version check is needed.
-    # Find any Python interpreter.
-    if test -z "$PYTHON"; then
-      AC_PATH_PROGS([PYTHON], _AM_PYTHON_INTERPRETER_LIST, :)
-    fi
-    am_display_PYTHON=python
-  ], [
-    dnl A version check is needed.
-    if test -n "$PYTHON"; then
-      # If the user set $PYTHON, use it and don't search something else.
-      AC_MSG_CHECKING([whether $PYTHON version >= $1])
-      AM_PYTHON_CHECK_VERSION([$PYTHON], [$1],
-                             [AC_MSG_RESULT(yes)],
-                             [AC_MSG_ERROR(too old)])
-      am_display_PYTHON=$PYTHON
-    else
-      # Otherwise, try each interpreter until we find one that satisfies
-      # VERSION.
-      AC_CACHE_CHECK([for a Python interpreter with version >= $1],
-       [am_cv_pathless_PYTHON],[
-       for am_cv_pathless_PYTHON in _AM_PYTHON_INTERPRETER_LIST none; do
-         test "$am_cv_pathless_PYTHON" = none && break
-         AM_PYTHON_CHECK_VERSION([$am_cv_pathless_PYTHON], [$1], [break])
-       done])
-      # Set $PYTHON to the absolute path of $am_cv_pathless_PYTHON.
-      if test "$am_cv_pathless_PYTHON" = none; then
-       PYTHON=:
-      else
-        AC_PATH_PROG([PYTHON], [$am_cv_pathless_PYTHON])
-      fi
-      am_display_PYTHON=$am_cv_pathless_PYTHON
-    fi
-  ])
+  # tar/untar a dummy directory, and stop if the command works
+  rm -rf conftest.dir
+  mkdir conftest.dir
+  echo GrepMe > conftest.dir/file
+  AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
+  rm -rf conftest.dir
+  if test -s conftest.tar; then
+    AM_RUN_LOG([$am__untar <conftest.tar])
+    grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
+  fi
+done
+rm -rf conftest.dir
 
-  if test "$PYTHON" = :; then
-  dnl Run any user-specified action, or abort.
-    m4_default([$3], [AC_MSG_ERROR([no suitable Python interpreter found])])
-  else
+AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
+AC_MSG_RESULT([$am_cv_prog_tar_$1])])
+AC_SUBST([am__tar])
+AC_SUBST([am__untar])
+]) # _AM_PROG_TAR
 
-  dnl Query Python for its version number.  Getting [:3] seems to be
-  dnl the best way to do this; it's what "site.py" does in the standard
-  dnl library.
+m4_include([m4/as-ac-expand.m4])
+m4_include([m4/jhflags.m4])
+m4_include([m4/python.m4])
+# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-
+#
+#   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
+#                 2006, 2007, 2008, 2009, 2010, 2011 Free Software
+#                 Foundation, Inc.
+#   Written by Gordon Matzigkeit, 1996
+#
+# This file is free software; the Free Software Foundation gives
+# unlimited permission to copy and/or distribute it, with or without
+# modifications, as long as this notice is preserved.
+
+m4_define([_LT_COPYING], [dnl
+#   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
+#                 2006, 2007, 2008, 2009, 2010, 2011 Free Software
+#                 Foundation, Inc.
+#   Written by Gordon Matzigkeit, 1996
+#
+#   This file is part of GNU Libtool.
+#
+# GNU Libtool is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2 of
+# the License, or (at your option) any later version.
+#
+# As a special exception to the GNU General Public License,
+# if you distribute this file as part of a program or library that
+# is built using GNU Libtool, you may include this file under the
+# same distribution terms that you use for the rest of that program.
+#
+# GNU Libtool is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GNU Libtool; see the file COPYING.  If not, a copy
+# can be downloaded from http://www.gnu.org/licenses/gpl.html, or
+# obtained by writing to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+])
 
-  AC_CACHE_CHECK([for $am_display_PYTHON version], [am_cv_python_version],
-    [am_cv_python_version=`$PYTHON -c "import sys; sys.stdout.write(sys.version[[:3]])"`])
-  AC_SUBST([PYTHON_VERSION], [$am_cv_python_version])
+# serial 57 LT_INIT
 
-  dnl Use the values of $prefix and $exec_prefix for the corresponding
-  dnl values of PYTHON_PREFIX and PYTHON_EXEC_PREFIX.  These are made
-  dnl distinct variables so they can be overridden if need be.  However,
-  dnl general consensus is that you shouldn't need this ability.
 
-  AC_SUBST([PYTHON_PREFIX], ['${prefix}'])
-  AC_SUBST([PYTHON_EXEC_PREFIX], ['${exec_prefix}'])
+# LT_PREREQ(VERSION)
+# ------------------
+# Complain and exit if this libtool version is less that VERSION.
+m4_defun([LT_PREREQ],
+[m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1,
+       [m4_default([$3],
+                  [m4_fatal([Libtool version $1 or higher is required],
+                            63)])],
+       [$2])])
 
-  dnl At times (like when building shared libraries) you may want
-  dnl to know which OS platform Python thinks this is.
 
-  AC_CACHE_CHECK([for $am_display_PYTHON platform], [am_cv_python_platform],
-    [am_cv_python_platform=`$PYTHON -c "import sys; sys.stdout.write(sys.platform)"`])
-  AC_SUBST([PYTHON_PLATFORM], [$am_cv_python_platform])
+# _LT_CHECK_BUILDDIR
+# ------------------
+# Complain if the absolute build directory name contains unusual characters
+m4_defun([_LT_CHECK_BUILDDIR],
+[case `pwd` in
+  *\ * | *\    *)
+    AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;;
+esac
+])
 
 
-  dnl Set up 4 directories:
+# LT_INIT([OPTIONS])
+# ------------------
+AC_DEFUN([LT_INIT],
+[AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT
+AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
+AC_BEFORE([$0], [LT_LANG])dnl
+AC_BEFORE([$0], [LT_OUTPUT])dnl
+AC_BEFORE([$0], [LTDL_INIT])dnl
+m4_require([_LT_CHECK_BUILDDIR])dnl
+
+dnl Autoconf doesn't catch unexpanded LT_ macros by default:
+m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl
+m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl
+dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4
+dnl unless we require an AC_DEFUNed macro:
+AC_REQUIRE([LTOPTIONS_VERSION])dnl
+AC_REQUIRE([LTSUGAR_VERSION])dnl
+AC_REQUIRE([LTVERSION_VERSION])dnl
+AC_REQUIRE([LTOBSOLETE_VERSION])dnl
+m4_require([_LT_PROG_LTMAIN])dnl
+
+_LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}])
+
+dnl Parse OPTIONS
+_LT_SET_OPTIONS([$0], [$1])
+
+# This can be used to rebuild libtool when needed
+LIBTOOL_DEPS="$ltmain"
+
+# Always use our own libtool.
+LIBTOOL='$(SHELL) $(top_builddir)/libtool'
+AC_SUBST(LIBTOOL)dnl
+
+_LT_SETUP
+
+# Only expand once:
+m4_define([LT_INIT])
+])# LT_INIT
+
+# Old names:
+AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT])
+AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT])
+dnl aclocal-1.4 backwards compatibility:
+dnl AC_DEFUN([AC_PROG_LIBTOOL], [])
+dnl AC_DEFUN([AM_PROG_LIBTOOL], [])
+
+
+# _LT_CC_BASENAME(CC)
+# -------------------
+# Calculate cc_basename.  Skip known compiler wrappers and cross-prefix.
+m4_defun([_LT_CC_BASENAME],
+[for cc_temp in $1""; do
+  case $cc_temp in
+    compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;;
+    distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;;
+    \-*) ;;
+    *) break;;
+  esac
+done
+cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"`
+])
 
-  dnl pythondir -- where to install python scripts.  This is the
-  dnl   site-packages directory, not the python standard library
-  dnl   directory like in previous automake betas.  This behavior
-  dnl   is more consistent with lispdir.m4 for example.
-  dnl Query distutils for this directory.
-  AC_CACHE_CHECK([for $am_display_PYTHON script directory],
-    [am_cv_python_pythondir],
-    [if test "x$prefix" = xNONE
-     then
-       am_py_prefix=$ac_default_prefix
-     else
-       am_py_prefix=$prefix
-     fi
-     am_cv_python_pythondir=`$PYTHON -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(0,0,prefix='$am_py_prefix'))" 2>/dev/null`
-     case $am_cv_python_pythondir in
-     $am_py_prefix*)
-       am__strip_prefix=`echo "$am_py_prefix" | sed 's|.|.|g'`
-       am_cv_python_pythondir=`echo "$am_cv_python_pythondir" | sed "s,^$am__strip_prefix,$PYTHON_PREFIX,"`
-       ;;
-     *)
-       case $am_py_prefix in
-         /usr|/System*) ;;
-         *)
-         am_cv_python_pythondir=$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages
-         ;;
-       esac
-       ;;
-     esac
-    ])
-  AC_SUBST([pythondir], [$am_cv_python_pythondir])
 
-  dnl pkgpythondir -- $PACKAGE directory under pythondir.  Was
-  dnl   PYTHON_SITE_PACKAGE in previous betas, but this naming is
-  dnl   more consistent with the rest of automake.
+# _LT_FILEUTILS_DEFAULTS
+# ----------------------
+# It is okay to use these file commands and assume they have been set
+# sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'.
+m4_defun([_LT_FILEUTILS_DEFAULTS],
+[: ${CP="cp -f"}
+: ${MV="mv -f"}
+: ${RM="rm -f"}
+])# _LT_FILEUTILS_DEFAULTS
+
+
+# _LT_SETUP
+# ---------
+m4_defun([_LT_SETUP],
+[AC_REQUIRE([AC_CANONICAL_HOST])dnl
+AC_REQUIRE([AC_CANONICAL_BUILD])dnl
+AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl
+AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl
+
+_LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl
+dnl
+_LT_DECL([], [host_alias], [0], [The host system])dnl
+_LT_DECL([], [host], [0])dnl
+_LT_DECL([], [host_os], [0])dnl
+dnl
+_LT_DECL([], [build_alias], [0], [The build system])dnl
+_LT_DECL([], [build], [0])dnl
+_LT_DECL([], [build_os], [0])dnl
+dnl
+AC_REQUIRE([AC_PROG_CC])dnl
+AC_REQUIRE([LT_PATH_LD])dnl
+AC_REQUIRE([LT_PATH_NM])dnl
+dnl
+AC_REQUIRE([AC_PROG_LN_S])dnl
+test -z "$LN_S" && LN_S="ln -s"
+_LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl
+dnl
+AC_REQUIRE([LT_CMD_MAX_LEN])dnl
+_LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl
+_LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl
+dnl
+m4_require([_LT_FILEUTILS_DEFAULTS])dnl
+m4_require([_LT_CHECK_SHELL_FEATURES])dnl
+m4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl
+m4_require([_LT_CMD_RELOAD])dnl
+m4_require([_LT_CHECK_MAGIC_METHOD])dnl
+m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl
+m4_require([_LT_CMD_OLD_ARCHIVE])dnl
+m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl
+m4_require([_LT_WITH_SYSROOT])dnl
+
+_LT_CONFIG_LIBTOOL_INIT([
+# See if we are running on zsh, and set the options which allow our
+# commands through without removal of \ escapes INIT.
+if test -n "\${ZSH_VERSION+set}" ; then
+   setopt NO_GLOB_SUBST
+fi
+])
+if test -n "${ZSH_VERSION+set}" ; then
+   setopt NO_GLOB_SUBST
+fi
 
-  AC_SUBST([pkgpythondir], [\${pythondir}/$PACKAGE])
+_LT_CHECK_OBJDIR
 
-  dnl pyexecdir -- directory for installing python extension modules
-  dnl   (shared libraries)
-  dnl Query distutils for this directory.
-  AC_CACHE_CHECK([for $am_display_PYTHON extension module directory],
-    [am_cv_python_pyexecdir],
-    [if test "x$exec_prefix" = xNONE
-     then
-       am_py_exec_prefix=$am_py_prefix
-     else
-       am_py_exec_prefix=$exec_prefix
-     fi
-     am_cv_python_pyexecdir=`$PYTHON -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(1,0,prefix='$am_py_exec_prefix'))" 2>/dev/null`
-     case $am_cv_python_pyexecdir in
-     $am_py_exec_prefix*)
-       am__strip_prefix=`echo "$am_py_exec_prefix" | sed 's|.|.|g'`
-       am_cv_python_pyexecdir=`echo "$am_cv_python_pyexecdir" | sed "s,^$am__strip_prefix,$PYTHON_EXEC_PREFIX,"`
-       ;;
-     *)
-       case $am_py_exec_prefix in
-         /usr|/System*) ;;
-         *)
-          am_cv_python_pyexecdir=$PYTHON_EXEC_PREFIX/lib/python$PYTHON_VERSION/site-packages
-          ;;
-       esac
-       ;;
-     esac
-    ])
-  AC_SUBST([pyexecdir], [$am_cv_python_pyexecdir])
+m4_require([_LT_TAG_COMPILER])dnl
 
-  dnl pkgpyexecdir -- $(pyexecdir)/$(PACKAGE)
+case $host_os in
+aix3*)
+  # AIX sometimes has problems with the GCC collect2 program.  For some
+  # reason, if we set the COLLECT_NAMES environment variable, the problems
+  # vanish in a puff of smoke.
+  if test "X${COLLECT_NAMES+set}" != Xset; then
+    COLLECT_NAMES=
+    export COLLECT_NAMES
+  fi
+  ;;
+esac
 
-  AC_SUBST([pkgpyexecdir], [\${pyexecdir}/$PACKAGE])
+# Global variables:
+ofile=libtool
+can_build_shared=yes
 
-  dnl Run any user-specified action.
-  $2
+# All known linkers require a `.a' archive for static linking (except MSVC,
+# which needs '.lib').
+libext=a
+
+with_gnu_ld="$lt_cv_prog_gnu_ld"
+
+old_CC="$CC"
+old_CFLAGS="$CFLAGS"
+
+# Set sane defaults for various variables
+test -z "$CC" && CC=cc
+test -z "$LTCC" && LTCC=$CC
+test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS
+test -z "$LD" && LD=ld
+test -z "$ac_objext" && ac_objext=o
+
+_LT_CC_BASENAME([$compiler])
+
+# Only perform the check for file, if the check method requires it
+test -z "$MAGIC_CMD" && MAGIC_CMD=file
+case $deplibs_check_method in
+file_magic*)
+  if test "$file_magic_cmd" = '$MAGIC_CMD'; then
+    _LT_PATH_MAGIC
   fi
+  ;;
+esac
+
+# Use C for the default configuration in the libtool script
+LT_SUPPORTED_TAG([CC])
+_LT_LANG_C_CONFIG
+_LT_LANG_DEFAULT_CONFIG
+_LT_CONFIG_COMMANDS
+])# _LT_SETUP
+
+
+# _LT_PREPARE_SED_QUOTE_VARS
+# --------------------------
+# Define a few sed substitution that help us do robust quoting.
+m4_defun([_LT_PREPARE_SED_QUOTE_VARS],
+[# Backslashify metacharacters that are still active within
+# double-quoted strings.
+sed_quote_subst='s/\([["`$\\]]\)/\\\1/g'
 
+# Same as above, but do not quote variable references.
+double_quote_subst='s/\([["`\\]]\)/\\\1/g'
+
+# Sed substitution to delay expansion of an escaped shell variable in a
+# double_quote_subst'ed string.
+delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g'
+
+# Sed substitution to delay expansion of an escaped single quote.
+delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g'
+
+# Sed substitution to avoid accidental globbing in evaled expressions
+no_glob_subst='s/\*/\\\*/g'
 ])
 
+# _LT_PROG_LTMAIN
+# ---------------
+# Note that this code is called both from `configure', and `config.status'
+# now that we use AC_CONFIG_COMMANDS to generate libtool.  Notably,
+# `config.status' has no value for ac_aux_dir unless we are using Automake,
+# so we pass a copy along to make sure it has a sensible value anyway.
+m4_defun([_LT_PROG_LTMAIN],
+[m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl
+_LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir'])
+ltmain="$ac_aux_dir/ltmain.sh"
+])# _LT_PROG_LTMAIN
 
-# AM_PYTHON_CHECK_VERSION(PROG, VERSION, [ACTION-IF-TRUE], [ACTION-IF-FALSE])
-# ---------------------------------------------------------------------------
-# Run ACTION-IF-TRUE if the Python interpreter PROG has version >= VERSION.
-# Run ACTION-IF-FALSE otherwise.
-# This test uses sys.hexversion instead of the string equivalent (first
-# word of sys.version), in order to cope with versions such as 2.2c1.
-# This supports Python 2.0 or higher. (2.0 was released on October 16, 2000).
-AC_DEFUN([AM_PYTHON_CHECK_VERSION],
- [prog="import sys
-# split strings by '.' and convert to numeric.  Append some zeros
-# because we need at least 4 digits for the hex conversion.
-# map returns an iterator in Python 3.0 and a list in 2.x
-minver = list(map(int, '$2'.split('.'))) + [[0, 0, 0]]
-minverhex = 0
-# xrange is not present in Python 3.0 and range returns an iterator
-for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[[i]]
-sys.exit(sys.hexversion < minverhex)"
-  AS_IF([AM_RUN_LOG([$1 -c "$prog"])], [$3], [$4])])
 
-# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
 
-# serial 1
+# So that we can recreate a full libtool script including additional
+# tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS
+# in macros and then make a single call at the end using the `libtool'
+# label.
 
-# AM_RUN_LOG(COMMAND)
-# -------------------
-# Run COMMAND, save the exit status in ac_status, and log it.
-# (This has been adapted from Autoconf's _AC_RUN_LOG macro.)
-AC_DEFUN([AM_RUN_LOG],
-[{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
-   ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
-   ac_status=$?
-   echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
-   (exit $ac_status); }])
 
-# Check to make sure that the build environment is sane.    -*- Autoconf -*-
+# _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS])
+# ----------------------------------------
+# Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later.
+m4_define([_LT_CONFIG_LIBTOOL_INIT],
+[m4_ifval([$1],
+          [m4_append([_LT_OUTPUT_LIBTOOL_INIT],
+                     [$1
+])])])
 
-# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008
-# Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
+# Initialize.
+m4_define([_LT_OUTPUT_LIBTOOL_INIT])
 
-# serial 5
 
-# AM_SANITY_CHECK
-# ---------------
-AC_DEFUN([AM_SANITY_CHECK],
-[AC_MSG_CHECKING([whether build environment is sane])
-# Just in case
-sleep 1
-echo timestamp > conftest.file
-# Reject unsafe characters in $srcdir or the absolute working directory
-# name.  Accept space and tab only in the latter.
-am_lf='
-'
-case `pwd` in
-  *[[\\\"\#\$\&\'\`$am_lf]]*)
-    AC_MSG_ERROR([unsafe absolute working directory name]);;
-esac
-case $srcdir in
-  *[[\\\"\#\$\&\'\`$am_lf\ \   ]]*)
-    AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);;
-esac
+# _LT_CONFIG_LIBTOOL([COMMANDS])
+# ------------------------------
+# Register COMMANDS to be passed to AC_CONFIG_COMMANDS later.
+m4_define([_LT_CONFIG_LIBTOOL],
+[m4_ifval([$1],
+          [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS],
+                     [$1
+])])])
+
+# Initialize.
+m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS])
+
+
+# _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS])
+# -----------------------------------------------------
+m4_defun([_LT_CONFIG_SAVE_COMMANDS],
+[_LT_CONFIG_LIBTOOL([$1])
+_LT_CONFIG_LIBTOOL_INIT([$2])
+])
 
-# Do `set' in a subshell so we don't clobber the current shell's
-# arguments.  Must try -L first in case configure is actually a
-# symlink; some systems play weird games with the mod time of symlinks
-# (eg FreeBSD returns the mod time of the symlink's containing
-# directory).
-if (
-   set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
-   if test "$[*]" = "X"; then
-      # -L didn't work.
-      set X `ls -t "$srcdir/configure" conftest.file`
-   fi
-   rm -f conftest.file
-   if test "$[*]" != "X $srcdir/configure conftest.file" \
-      && test "$[*]" != "X conftest.file $srcdir/configure"; then
 
-      # If neither matched, then we have a broken ls.  This can happen
-      # if, for instance, CONFIG_SHELL is bash and it inherits a
-      # broken ls alias from the environment.  This has actually
-      # happened.  Such a system could not be considered "sane".
-      AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
-alias in your environment])
-   fi
+# _LT_FORMAT_COMMENT([COMMENT])
+# -----------------------------
+# Add leading comment marks to the start of each line, and a trailing
+# full-stop to the whole comment if one is not present already.
+m4_define([_LT_FORMAT_COMMENT],
+[m4_ifval([$1], [
+m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])],
+              [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.])
+)])
+
+
+
+
+
+# _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?])
+# -------------------------------------------------------------------
+# CONFIGNAME is the name given to the value in the libtool script.
+# VARNAME is the (base) name used in the configure script.
+# VALUE may be 0, 1 or 2 for a computed quote escaped value based on
+# VARNAME.  Any other value will be used directly.
+m4_define([_LT_DECL],
+[lt_if_append_uniq([lt_decl_varnames], [$2], [, ],
+    [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name],
+       [m4_ifval([$1], [$1], [$2])])
+    lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3])
+    m4_ifval([$4],
+       [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])])
+    lt_dict_add_subkey([lt_decl_dict], [$2],
+       [tagged?], [m4_ifval([$5], [yes], [no])])])
+])
 
-   test "$[2]" = conftest.file
-   )
-then
-   # Ok.
-   :
-else
-   AC_MSG_ERROR([newly created file is older than distributed files!
-Check your system clock])
-fi
-AC_MSG_RESULT(yes)])
 
-# Copyright (C) 2009, 2011  Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
+# _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION])
+# --------------------------------------------------------
+m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])])
 
-# serial 2
 
-# AM_SILENT_RULES([DEFAULT])
-# --------------------------
-# Enable less verbose build rules; with the default set to DEFAULT
-# (`yes' being less verbose, `no' or empty being verbose).
-AC_DEFUN([AM_SILENT_RULES],
-[AC_ARG_ENABLE([silent-rules],
-[  --enable-silent-rules          less verbose build output (undo: `make V=1')
-  --disable-silent-rules         verbose build output (undo: `make V=0')])
-case $enable_silent_rules in
-yes) AM_DEFAULT_VERBOSITY=0;;
-no)  AM_DEFAULT_VERBOSITY=1;;
-*)   AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
-esac
-dnl
-dnl A few `make' implementations (e.g., NonStop OS and NextStep)
-dnl do not support nested variable expansions.
-dnl See automake bug#9928 and bug#10237.
-am_make=${MAKE-make}
-AC_CACHE_CHECK([whether $am_make supports nested variables],
-   [am_cv_make_support_nested_variables],
-   [if AS_ECHO([['TRUE=$(BAR$(V))
-BAR0=false
-BAR1=true
-V=1
-am__doit:
-       @$(TRUE)
-.PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then
-  am_cv_make_support_nested_variables=yes
-else
-  am_cv_make_support_nested_variables=no
-fi])
-if test $am_cv_make_support_nested_variables = yes; then
-  dnl Using `$V' instead of `$(V)' breaks IRIX make.
-  AM_V='$(V)'
-  AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
-else
-  AM_V=$AM_DEFAULT_VERBOSITY
-  AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
-fi
-AC_SUBST([AM_V])dnl
-AM_SUBST_NOTMAKE([AM_V])dnl
-AC_SUBST([AM_DEFAULT_V])dnl
-AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl
-AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
-AM_BACKSLASH='\'
-AC_SUBST([AM_BACKSLASH])dnl
-_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
+# lt_decl_tag_varnames([SEPARATOR], [VARNAME1...])
+# ------------------------------------------------
+m4_define([lt_decl_tag_varnames],
+[_lt_decl_filter([tagged?], [yes], $@)])
+
+
+# _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..])
+# ---------------------------------------------------------
+m4_define([_lt_decl_filter],
+[m4_case([$#],
+  [0], [m4_fatal([$0: too few arguments: $#])],
+  [1], [m4_fatal([$0: too few arguments: $#: $1])],
+  [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)],
+  [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)],
+  [lt_dict_filter([lt_decl_dict], $@)])[]dnl
 ])
 
-# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc.
+
+# lt_decl_quote_varnames([SEPARATOR], [VARNAME1...])
+# --------------------------------------------------
+m4_define([lt_decl_quote_varnames],
+[_lt_decl_filter([value], [1], $@)])
+
+
+# lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...])
+# ---------------------------------------------------
+m4_define([lt_decl_dquote_varnames],
+[_lt_decl_filter([value], [2], $@)])
+
+
+# lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...])
+# ---------------------------------------------------
+m4_define([lt_decl_varnames_tagged],
+[m4_assert([$# <= 2])dnl
+_$0(m4_quote(m4_default([$1], [[, ]])),
+    m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]),
+    m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))])
+m4_define([_lt_decl_varnames_tagged],
+[m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])])
+
+
+# lt_decl_all_varnames([SEPARATOR], [VARNAME1...])
+# ------------------------------------------------
+m4_define([lt_decl_all_varnames],
+[_$0(m4_quote(m4_default([$1], [[, ]])),
+     m4_if([$2], [],
+          m4_quote(lt_decl_varnames),
+       m4_quote(m4_shift($@))))[]dnl
+])
+m4_define([_lt_decl_all_varnames],
+[lt_join($@, lt_decl_varnames_tagged([$1],
+                       lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl
+])
+
+
+# _LT_CONFIG_STATUS_DECLARE([VARNAME])
+# ------------------------------------
+# Quote a variable value, and forward it to `config.status' so that its
+# declaration there will have the same value as in `configure'.  VARNAME
+# must have a single quote delimited value for this to work.
+m4_define([_LT_CONFIG_STATUS_DECLARE],
+[$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`'])
+
+
+# _LT_CONFIG_STATUS_DECLARATIONS
+# ------------------------------
+# We delimit libtool config variables with single quotes, so when
+# we write them to config.status, we have to be sure to quote all
+# embedded single quotes properly.  In configure, this macro expands
+# each variable declared with _LT_DECL (and _LT_TAGDECL) into:
 #
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
+#    <var>='`$ECHO "$<var>" | $SED "$delay_single_quote_subst"`'
+m4_defun([_LT_CONFIG_STATUS_DECLARATIONS],
+[m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames),
+    [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])])
+
+
+# _LT_LIBTOOL_TAGS
+# ----------------
+# Output comment and list of tags supported by the script
+m4_defun([_LT_LIBTOOL_TAGS],
+[_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl
+available_tags="_LT_TAGS"dnl
+])
 
-# serial 1
 
-# AM_PROG_INSTALL_STRIP
-# ---------------------
-# One issue with vendor `install' (even GNU) is that you can't
-# specify the program used to strip binaries.  This is especially
-# annoying in cross-compiling environments, where the build's strip
-# is unlikely to handle the host's binaries.
-# Fortunately install-sh will honor a STRIPPROG variable, so we
-# always use install-sh in `make install-strip', and initialize
-# STRIPPROG with the value of the STRIP variable (set by the user).
-AC_DEFUN([AM_PROG_INSTALL_STRIP],
-[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
-# Installed binaries are usually stripped using `strip' when the user
-# run `make install-strip'.  However `strip' might not be the right
-# tool to use in cross-compilation environments, therefore Automake
-# will honor the `STRIP' environment variable to overrule this program.
-dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
-if test "$cross_compiling" != no; then
-  AC_CHECK_TOOL([STRIP], [strip], :)
-fi
-INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
-AC_SUBST([INSTALL_STRIP_PROGRAM])])
-
-# Copyright (C) 2006, 2008, 2010 Free Software Foundation, Inc.
+# _LT_LIBTOOL_DECLARE(VARNAME, [TAG])
+# -----------------------------------
+# Extract the dictionary values for VARNAME (optionally with TAG) and
+# expand to a commented shell variable setting:
 #
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
+#    # Some comment about what VAR is for.
+#    visible_name=$lt_internal_name
+m4_define([_LT_LIBTOOL_DECLARE],
+[_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1],
+                                          [description])))[]dnl
+m4_pushdef([_libtool_name],
+    m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl
+m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])),
+    [0], [_libtool_name=[$]$1],
+    [1], [_libtool_name=$lt_[]$1],
+    [2], [_libtool_name=$lt_[]$1],
+    [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl
+m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl
+])
 
-# serial 3
 
-# _AM_SUBST_NOTMAKE(VARIABLE)
-# ---------------------------
-# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
-# This macro is traced by Automake.
-AC_DEFUN([_AM_SUBST_NOTMAKE])
+# _LT_LIBTOOL_CONFIG_VARS
+# -----------------------
+# Produce commented declarations of non-tagged libtool config variables
+# suitable for insertion in the LIBTOOL CONFIG section of the `libtool'
+# script.  Tagged libtool config variables (even for the LIBTOOL CONFIG
+# section) are produced by _LT_LIBTOOL_TAG_VARS.
+m4_defun([_LT_LIBTOOL_CONFIG_VARS],
+[m4_foreach([_lt_var],
+    m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)),
+    [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])])
 
-# AM_SUBST_NOTMAKE(VARIABLE)
-# --------------------------
-# Public sister of _AM_SUBST_NOTMAKE.
-AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
 
-# Check how to create a tarball.                            -*- Autoconf -*-
+# _LT_LIBTOOL_TAG_VARS(TAG)
+# -------------------------
+m4_define([_LT_LIBTOOL_TAG_VARS],
+[m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames),
+    [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])])
 
-# Copyright (C) 2004, 2005, 2012 Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
 
-# serial 2
+# _LT_TAGVAR(VARNAME, [TAGNAME])
+# ------------------------------
+m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])])
 
-# _AM_PROG_TAR(FORMAT)
-# --------------------
-# Check how to create a tarball in format FORMAT.
-# FORMAT should be one of `v7', `ustar', or `pax'.
-#
-# Substitute a variable $(am__tar) that is a command
-# writing to stdout a FORMAT-tarball containing the directory
-# $tardir.
-#     tardir=directory && $(am__tar) > result.tar
-#
-# Substitute a variable $(am__untar) that extract such
-# a tarball read from stdin.
-#     $(am__untar) < result.tar
-AC_DEFUN([_AM_PROG_TAR],
-[# Always define AMTAR for backward compatibility.  Yes, it's still used
-# in the wild :-(  We should find a proper way to deprecate it ...
-AC_SUBST([AMTAR], ['$${TAR-tar}'])
-m4_if([$1], [v7],
-     [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
-     [m4_case([$1], [ustar],, [pax],,
-              [m4_fatal([Unknown tar format])])
-AC_MSG_CHECKING([how to create a $1 tar archive])
-# Loop over all known methods to create a tar archive until one works.
-_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
-_am_tools=${am_cv_prog_tar_$1-$_am_tools}
-# Do not fold the above two line into one, because Tru64 sh and
-# Solaris sh will not grok spaces in the rhs of `-'.
-for _am_tool in $_am_tools
+
+# _LT_CONFIG_COMMANDS
+# -------------------
+# Send accumulated output to $CONFIG_STATUS.  Thanks to the lists of
+# variables for single and double quote escaping we saved from calls
+# to _LT_DECL, we can put quote escaped variables declarations
+# into `config.status', and then the shell code to quote escape them in
+# for loops in `config.status'.  Finally, any additional code accumulated
+# from calls to _LT_CONFIG_LIBTOOL_INIT is expanded.
+m4_defun([_LT_CONFIG_COMMANDS],
+[AC_PROVIDE_IFELSE([LT_OUTPUT],
+       dnl If the libtool generation code has been placed in $CONFIG_LT,
+       dnl instead of duplicating it all over again into config.status,
+       dnl then we will have config.status run $CONFIG_LT later, so it
+       dnl needs to know what name is stored there:
+        [AC_CONFIG_COMMANDS([libtool],
+            [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])],
+    dnl If the libtool generation code is destined for config.status,
+    dnl expand the accumulated commands and init code now:
+    [AC_CONFIG_COMMANDS([libtool],
+        [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])])
+])#_LT_CONFIG_COMMANDS
+
+
+# Initialize.
+m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT],
+[
+
+# The HP-UX ksh and POSIX shell print the target directory to stdout
+# if CDPATH is set.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+
+sed_quote_subst='$sed_quote_subst'
+double_quote_subst='$double_quote_subst'
+delay_variable_subst='$delay_variable_subst'
+_LT_CONFIG_STATUS_DECLARATIONS
+LTCC='$LTCC'
+LTCFLAGS='$LTCFLAGS'
+compiler='$compiler_DEFAULT'
+
+# A function that is used when there is no print builtin or printf.
+func_fallback_echo ()
+{
+  eval 'cat <<_LTECHO_EOF
+\$[]1
+_LTECHO_EOF'
+}
+
+# Quote evaled strings.
+for var in lt_decl_all_varnames([[ \
+]], lt_decl_quote_varnames); do
+    case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in
+    *[[\\\\\\\`\\"\\\$]]*)
+      eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\""
+      ;;
+    *)
+      eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\""
+      ;;
+    esac
+done
+
+# Double-quote double-evaled strings.
+for var in lt_decl_all_varnames([[ \
+]], lt_decl_dquote_varnames); do
+    case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in
+    *[[\\\\\\\`\\"\\\$]]*)
+      eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\""
+      ;;
+    *)
+      eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\""
+      ;;
+    esac
+done
+
+_LT_OUTPUT_LIBTOOL_INIT
+])
+
+# _LT_GENERATED_FILE_INIT(FILE, [COMMENT])
+# ------------------------------------
+# Generate a child script FILE with all initialization necessary to
+# reuse the environment learned by the parent script, and make the
+# file executable.  If COMMENT is supplied, it is inserted after the
+# `#!' sequence but before initialization text begins.  After this
+# macro, additional text can be appended to FILE to form the body of
+# the child script.  The macro ends with non-zero status if the
+# file could not be fully written (such as if the disk is full).
+m4_ifdef([AS_INIT_GENERATED],
+[m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])],
+[m4_defun([_LT_GENERATED_FILE_INIT],
+[m4_require([AS_PREPARE])]dnl
+[m4_pushdef([AS_MESSAGE_LOG_FD])]dnl
+[lt_write_fail=0
+cat >$1 <<_ASEOF || lt_write_fail=1
+#! $SHELL
+# Generated by $as_me.
+$2
+SHELL=\${CONFIG_SHELL-$SHELL}
+export SHELL
+_ASEOF
+cat >>$1 <<\_ASEOF || lt_write_fail=1
+AS_SHELL_SANITIZE
+_AS_PREPARE
+exec AS_MESSAGE_FD>&1
+_ASEOF
+test $lt_write_fail = 0 && chmod +x $1[]dnl
+m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT
+
+# LT_OUTPUT
+# ---------
+# This macro allows early generation of the libtool script (before
+# AC_OUTPUT is called), incase it is used in configure for compilation
+# tests.
+AC_DEFUN([LT_OUTPUT],
+[: ${CONFIG_LT=./config.lt}
+AC_MSG_NOTICE([creating $CONFIG_LT])
+_LT_GENERATED_FILE_INIT(["$CONFIG_LT"],
+[# Run this file to recreate a libtool stub with the current configuration.])
+
+cat >>"$CONFIG_LT" <<\_LTEOF
+lt_cl_silent=false
+exec AS_MESSAGE_LOG_FD>>config.log
+{
+  echo
+  AS_BOX([Running $as_me.])
+} >&AS_MESSAGE_LOG_FD
+
+lt_cl_help="\
+\`$as_me' creates a local libtool stub from the current configuration,
+for use in further configure time tests before the real libtool is
+generated.
+
+Usage: $[0] [[OPTIONS]]
+
+  -h, --help      print this help, then exit
+  -V, --version   print version number, then exit
+  -q, --quiet     do not print progress messages
+  -d, --debug     don't remove temporary files
+
+Report bugs to <bug-libtool@gnu.org>."
+
+lt_cl_version="\
+m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl
+m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION])
+configured by $[0], generated by m4_PACKAGE_STRING.
+
+Copyright (C) 2011 Free Software Foundation, Inc.
+This config.lt script is free software; the Free Software Foundation
+gives unlimited permision to copy, distribute and modify it."
+
+while test $[#] != 0
 do
-  case $_am_tool in
-  gnutar)
-    for _am_tar in tar gnutar gtar;
-    do
-      AM_RUN_LOG([$_am_tar --version]) && break
-    done
-    am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
-    am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
-    am__untar="$_am_tar -xf -"
-    ;;
-  plaintar)
-    # Must skip GNU tar: if it does not support --format= it doesn't create
-    # ustar tarball either.
-    (tar --version) >/dev/null 2>&1 && continue
-    am__tar='tar chf - "$$tardir"'
-    am__tar_='tar chf - "$tardir"'
-    am__untar='tar xf -'
-    ;;
-  pax)
-    am__tar='pax -L -x $1 -w "$$tardir"'
-    am__tar_='pax -L -x $1 -w "$tardir"'
-    am__untar='pax -r'
+  case $[1] in
+    --version | --v* | -V )
+      echo "$lt_cl_version"; exit 0 ;;
+    --help | --h* | -h )
+      echo "$lt_cl_help"; exit 0 ;;
+    --debug | --d* | -d )
+      debug=: ;;
+    --quiet | --q* | --silent | --s* | -q )
+      lt_cl_silent=: ;;
+
+    -*) AC_MSG_ERROR([unrecognized option: $[1]
+Try \`$[0] --help' for more information.]) ;;
+
+    *) AC_MSG_ERROR([unrecognized argument: $[1]
+Try \`$[0] --help' for more information.]) ;;
+  esac
+  shift
+done
+
+if $lt_cl_silent; then
+  exec AS_MESSAGE_FD>/dev/null
+fi
+_LTEOF
+
+cat >>"$CONFIG_LT" <<_LTEOF
+_LT_OUTPUT_LIBTOOL_COMMANDS_INIT
+_LTEOF
+
+cat >>"$CONFIG_LT" <<\_LTEOF
+AC_MSG_NOTICE([creating $ofile])
+_LT_OUTPUT_LIBTOOL_COMMANDS
+AS_EXIT(0)
+_LTEOF
+chmod +x "$CONFIG_LT"
+
+# configure is writing to config.log, but config.lt does its own redirection,
+# appending to config.log, which fails on DOS, as config.log is still kept
+# open by configure.  Here we exec the FD to /dev/null, effectively closing
+# config.log, so it can be properly (re)opened and appended to by config.lt.
+lt_cl_success=:
+test "$silent" = yes &&
+  lt_config_lt_args="$lt_config_lt_args --quiet"
+exec AS_MESSAGE_LOG_FD>/dev/null
+$SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false
+exec AS_MESSAGE_LOG_FD>>config.log
+$lt_cl_success || AS_EXIT(1)
+])# LT_OUTPUT
+
+
+# _LT_CONFIG(TAG)
+# ---------------
+# If TAG is the built-in tag, create an initial libtool script with a
+# default configuration from the untagged config vars.  Otherwise add code
+# to config.status for appending the configuration named by TAG from the
+# matching tagged config vars.
+m4_defun([_LT_CONFIG],
+[m4_require([_LT_FILEUTILS_DEFAULTS])dnl
+_LT_CONFIG_SAVE_COMMANDS([
+  m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl
+  m4_if(_LT_TAG, [C], [
+    # See if we are running on zsh, and set the options which allow our
+    # commands through without removal of \ escapes.
+    if test -n "${ZSH_VERSION+set}" ; then
+      setopt NO_GLOB_SUBST
+    fi
+
+    cfgfile="${ofile}T"
+    trap "$RM \"$cfgfile\"; exit 1" 1 2 15
+    $RM "$cfgfile"
+
+    cat <<_LT_EOF >> "$cfgfile"
+#! $SHELL
+
+# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
+# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION
+# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
+# NOTE: Changes made to this file will be lost: look at ltmain.sh.
+#
+_LT_COPYING
+_LT_LIBTOOL_TAGS
+
+# ### BEGIN LIBTOOL CONFIG
+_LT_LIBTOOL_CONFIG_VARS
+_LT_LIBTOOL_TAG_VARS
+# ### END LIBTOOL CONFIG
+
+_LT_EOF
+
+  case $host_os in
+  aix3*)
+    cat <<\_LT_EOF >> "$cfgfile"
+# AIX sometimes has problems with the GCC collect2 program.  For some
+# reason, if we set the COLLECT_NAMES environment variable, the problems
+# vanish in a puff of smoke.
+if test "X${COLLECT_NAMES+set}" != Xset; then
+  COLLECT_NAMES=
+  export COLLECT_NAMES
+fi
+_LT_EOF
     ;;
-  cpio)
-    am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
-    am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
-    am__untar='cpio -i -H $1 -d'
+  esac
+
+  _LT_PROG_LTMAIN
+
+  # We use sed instead of cat because bash on DJGPP gets confused if
+  # if finds mixed CR/LF and LF-only lines.  Since sed operates in
+  # text mode, it properly converts lines to CR/LF.  This bash problem
+  # is reportedly fixed, but why not run on old versions too?
+  sed '$q' "$ltmain" >> "$cfgfile" \
+     || (rm -f "$cfgfile"; exit 1)
+
+  _LT_PROG_REPLACE_SHELLFNS
+
+   mv -f "$cfgfile" "$ofile" ||
+    (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
+  chmod +x "$ofile"
+],
+[cat <<_LT_EOF >> "$ofile"
+
+dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded
+dnl in a comment (ie after a #).
+# ### BEGIN LIBTOOL TAG CONFIG: $1
+_LT_LIBTOOL_TAG_VARS(_LT_TAG)
+# ### END LIBTOOL TAG CONFIG: $1
+_LT_EOF
+])dnl /m4_if
+],
+[m4_if([$1], [], [
+    PACKAGE='$PACKAGE'
+    VERSION='$VERSION'
+    TIMESTAMP='$TIMESTAMP'
+    RM='$RM'
+    ofile='$ofile'], [])
+])dnl /_LT_CONFIG_SAVE_COMMANDS
+])# _LT_CONFIG
+
+
+# LT_SUPPORTED_TAG(TAG)
+# ---------------------
+# Trace this macro to discover what tags are supported by the libtool
+# --tag option, using:
+#    autoconf --trace 'LT_SUPPORTED_TAG:$1'
+AC_DEFUN([LT_SUPPORTED_TAG], [])
+
+
+# C support is built-in for now
+m4_define([_LT_LANG_C_enabled], [])
+m4_define([_LT_TAGS], [])
+
+
+# LT_LANG(LANG)
+# -------------
+# Enable libtool support for the given language if not already enabled.
+AC_DEFUN([LT_LANG],
+[AC_BEFORE([$0], [LT_OUTPUT])dnl
+m4_case([$1],
+  [C],                 [_LT_LANG(C)],
+  [C++],               [_LT_LANG(CXX)],
+  [Go],                        [_LT_LANG(GO)],
+  [Java],              [_LT_LANG(GCJ)],
+  [Fortran 77],                [_LT_LANG(F77)],
+  [Fortran],           [_LT_LANG(FC)],
+  [Windows Resource],  [_LT_LANG(RC)],
+  [m4_ifdef([_LT_LANG_]$1[_CONFIG],
+    [_LT_LANG($1)],
+    [m4_fatal([$0: unsupported language: "$1"])])])dnl
+])# LT_LANG
+
+
+# _LT_LANG(LANGNAME)
+# ------------------
+m4_defun([_LT_LANG],
+[m4_ifdef([_LT_LANG_]$1[_enabled], [],
+  [LT_SUPPORTED_TAG([$1])dnl
+  m4_append([_LT_TAGS], [$1 ])dnl
+  m4_define([_LT_LANG_]$1[_enabled], [])dnl
+  _LT_LANG_$1_CONFIG($1)])dnl
+])# _LT_LANG
+
+
+m4_ifndef([AC_PROG_GO], [
+# NOTE: This macro has been submitted for inclusion into   #
+#  GNU Autoconf as AC_PROG_GO.  When it is available in    #
+#  a released version of Autoconf we should remove this    #
+#  macro and use it instead.                               #
+m4_defun([AC_PROG_GO],
+[AC_LANG_PUSH(Go)dnl
+AC_ARG_VAR([GOC],     [Go compiler command])dnl
+AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl
+_AC_ARG_VAR_LDFLAGS()dnl
+AC_CHECK_TOOL(GOC, gccgo)
+if test -z "$GOC"; then
+  if test -n "$ac_tool_prefix"; then
+    AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo])
+  fi
+fi
+if test -z "$GOC"; then
+  AC_CHECK_PROG(GOC, gccgo, gccgo, false)
+fi
+])#m4_defun
+])#m4_ifndef
+
+
+# _LT_LANG_DEFAULT_CONFIG
+# -----------------------
+m4_defun([_LT_LANG_DEFAULT_CONFIG],
+[AC_PROVIDE_IFELSE([AC_PROG_CXX],
+  [LT_LANG(CXX)],
+  [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])])
+
+AC_PROVIDE_IFELSE([AC_PROG_F77],
+  [LT_LANG(F77)],
+  [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])])
+
+AC_PROVIDE_IFELSE([AC_PROG_FC],
+  [LT_LANG(FC)],
+  [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])])
+
+dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal
+dnl pulling things in needlessly.
+AC_PROVIDE_IFELSE([AC_PROG_GCJ],
+  [LT_LANG(GCJ)],
+  [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],
+    [LT_LANG(GCJ)],
+    [AC_PROVIDE_IFELSE([LT_PROG_GCJ],
+      [LT_LANG(GCJ)],
+      [m4_ifdef([AC_PROG_GCJ],
+       [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])])
+       m4_ifdef([A][M_PROG_GCJ],
+       [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])])
+       m4_ifdef([LT_PROG_GCJ],
+       [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])])
+
+AC_PROVIDE_IFELSE([AC_PROG_GO],
+  [LT_LANG(GO)],
+  [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])])
+
+AC_PROVIDE_IFELSE([LT_PROG_RC],
+  [LT_LANG(RC)],
+  [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])])
+])# _LT_LANG_DEFAULT_CONFIG
+
+# Obsolete macros:
+AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)])
+AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)])
+AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)])
+AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)])
+AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)])
+dnl aclocal-1.4 backwards compatibility:
+dnl AC_DEFUN([AC_LIBTOOL_CXX], [])
+dnl AC_DEFUN([AC_LIBTOOL_F77], [])
+dnl AC_DEFUN([AC_LIBTOOL_FC], [])
+dnl AC_DEFUN([AC_LIBTOOL_GCJ], [])
+dnl AC_DEFUN([AC_LIBTOOL_RC], [])
+
+
+# _LT_TAG_COMPILER
+# ----------------
+m4_defun([_LT_TAG_COMPILER],
+[AC_REQUIRE([AC_PROG_CC])dnl
+
+_LT_DECL([LTCC], [CC], [1], [A C compiler])dnl
+_LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl
+_LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl
+_LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl
+
+# If no C compiler was specified, use CC.
+LTCC=${LTCC-"$CC"}
+
+# If no C compiler flags were specified, use CFLAGS.
+LTCFLAGS=${LTCFLAGS-"$CFLAGS"}
+
+# Allow CC to be a program name with arguments.
+compiler=$CC
+])# _LT_TAG_COMPILER
+
+
+# _LT_COMPILER_BOILERPLATE
+# ------------------------
+# Check for compiler boilerplate output or warnings with
+# the simple compiler test code.
+m4_defun([_LT_COMPILER_BOILERPLATE],
+[m4_require([_LT_DECL_SED])dnl
+ac_outfile=conftest.$ac_objext
+echo "$lt_simple_compile_test_code" >conftest.$ac_ext
+eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
+_lt_compiler_boilerplate=`cat conftest.err`
+$RM conftest*
+])# _LT_COMPILER_BOILERPLATE
+
+
+# _LT_LINKER_BOILERPLATE
+# ----------------------
+# Check for linker boilerplate output or warnings with
+# the simple link test code.
+m4_defun([_LT_LINKER_BOILERPLATE],
+[m4_require([_LT_DECL_SED])dnl
+ac_outfile=conftest.$ac_objext
+echo "$lt_simple_link_test_code" >conftest.$ac_ext
+eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
+_lt_linker_boilerplate=`cat conftest.err`
+$RM -r conftest*
+])# _LT_LINKER_BOILERPLATE
+
+# _LT_REQUIRED_DARWIN_CHECKS
+# -------------------------
+m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[
+  case $host_os in
+    rhapsody* | darwin*)
+    AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:])
+    AC_CHECK_TOOL([NMEDIT], [nmedit], [:])
+    AC_CHECK_TOOL([LIPO], [lipo], [:])
+    AC_CHECK_TOOL([OTOOL], [otool], [:])
+    AC_CHECK_TOOL([OTOOL64], [otool64], [:])
+    _LT_DECL([], [DSYMUTIL], [1],
+      [Tool to manipulate archived DWARF debug symbol files on Mac OS X])
+    _LT_DECL([], [NMEDIT], [1],
+      [Tool to change global to local symbols on Mac OS X])
+    _LT_DECL([], [LIPO], [1],
+      [Tool to manipulate fat objects and archives on Mac OS X])
+    _LT_DECL([], [OTOOL], [1],
+      [ldd/readelf like tool for Mach-O binaries on Mac OS X])
+    _LT_DECL([], [OTOOL64], [1],
+      [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4])
+
+    AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod],
+      [lt_cv_apple_cc_single_mod=no
+      if test -z "${LT_MULTI_MODULE}"; then
+       # By default we will add the -single_module flag. You can override
+       # by either setting the environment variable LT_MULTI_MODULE
+       # non-empty at configure time, or by adding -multi_module to the
+       # link flags.
+       rm -rf libconftest.dylib*
+       echo "int foo(void){return 1;}" > conftest.c
+       echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \
+-dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD
+       $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \
+         -dynamiclib -Wl,-single_module conftest.c 2>conftest.err
+        _lt_result=$?
+       # If there is a non-empty error log, and "single_module"
+       # appears in it, assume the flag caused a linker warning
+        if test -s conftest.err && $GREP single_module conftest.err; then
+         cat conftest.err >&AS_MESSAGE_LOG_FD
+       # Otherwise, if the output was created with a 0 exit code from
+       # the compiler, it worked.
+       elif test -f libconftest.dylib && test $_lt_result -eq 0; then
+         lt_cv_apple_cc_single_mod=yes
+       else
+         cat conftest.err >&AS_MESSAGE_LOG_FD
+       fi
+       rm -rf libconftest.dylib*
+       rm -f conftest.*
+      fi])
+
+    AC_CACHE_CHECK([for -exported_symbols_list linker flag],
+      [lt_cv_ld_exported_symbols_list],
+      [lt_cv_ld_exported_symbols_list=no
+      save_LDFLAGS=$LDFLAGS
+      echo "_main" > conftest.sym
+      LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym"
+      AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])],
+       [lt_cv_ld_exported_symbols_list=yes],
+       [lt_cv_ld_exported_symbols_list=no])
+       LDFLAGS="$save_LDFLAGS"
+    ])
+
+    AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load],
+      [lt_cv_ld_force_load=no
+      cat > conftest.c << _LT_EOF
+int forced_loaded() { return 2;}
+_LT_EOF
+      echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD
+      $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD
+      echo "$AR cru libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD
+      $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD
+      echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD
+      $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD
+      cat > conftest.c << _LT_EOF
+int main() { return 0;}
+_LT_EOF
+      echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD
+      $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err
+      _lt_result=$?
+      if test -s conftest.err && $GREP force_load conftest.err; then
+       cat conftest.err >&AS_MESSAGE_LOG_FD
+      elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then
+       lt_cv_ld_force_load=yes
+      else
+       cat conftest.err >&AS_MESSAGE_LOG_FD
+      fi
+        rm -f conftest.err libconftest.a conftest conftest.c
+        rm -rf conftest.dSYM
+    ])
+    case $host_os in
+    rhapsody* | darwin1.[[012]])
+      _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;;
+    darwin1.*)
+      _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;
+    darwin*) # darwin 5.x on
+      # if running on 10.5 or later, the deployment target defaults
+      # to the OS version, if on x86, and 10.4, the deployment
+      # target defaults to 10.4. Don't you love it?
+      case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in
+       10.0,*86*-darwin8*|10.0,*-darwin[[91]]*)
+         _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;;
+       10.[[012]]*)
+         _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;
+       10.*)
+         _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;;
+      esac
     ;;
-  none)
-    am__tar=false
-    am__tar_=false
-    am__untar=false
+  esac
+    if test "$lt_cv_apple_cc_single_mod" = "yes"; then
+      _lt_dar_single_mod='$single_module'
+    fi
+    if test "$lt_cv_ld_exported_symbols_list" = "yes"; then
+      _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym'
+    else
+      _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}'
+    fi
+    if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then
+      _lt_dsymutil='~$DSYMUTIL $lib || :'
+    else
+      _lt_dsymutil=
+    fi
     ;;
   esac
+])
 
-  # If the value was cached, stop now.  We just wanted to have am__tar
-  # and am__untar set.
-  test -n "${am_cv_prog_tar_$1}" && break
 
-  # tar/untar a dummy directory, and stop if the command works
-  rm -rf conftest.dir
-  mkdir conftest.dir
-  echo GrepMe > conftest.dir/file
-  AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
-  rm -rf conftest.dir
-  if test -s conftest.tar; then
-    AM_RUN_LOG([$am__untar <conftest.tar])
-    grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
+# _LT_DARWIN_LINKER_FEATURES([TAG])
+# ---------------------------------
+# Checks for linker and compiler features on darwin
+m4_defun([_LT_DARWIN_LINKER_FEATURES],
+[
+  m4_require([_LT_REQUIRED_DARWIN_CHECKS])
+  _LT_TAGVAR(archive_cmds_need_lc, $1)=no
+  _LT_TAGVAR(hardcode_direct, $1)=no
+  _LT_TAGVAR(hardcode_automatic, $1)=yes
+  _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
+  if test "$lt_cv_ld_force_load" = "yes"; then
+    _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`'
+    m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes],
+                  [FC],  [_LT_TAGVAR(compiler_needs_object, $1)=yes])
+  else
+    _LT_TAGVAR(whole_archive_flag_spec, $1)=''
   fi
-done
-rm -rf conftest.dir
+  _LT_TAGVAR(link_all_deplibs, $1)=yes
+  _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined"
+  case $cc_basename in
+     ifort*) _lt_dar_can_shared=yes ;;
+     *) _lt_dar_can_shared=$GCC ;;
+  esac
+  if test "$_lt_dar_can_shared" = "yes"; then
+    output_verbose_link_cmd=func_echo_all
+    _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}"
+    _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}"
+    _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}"
+    _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}"
+    m4_if([$1], [CXX],
+[   if test "$lt_cv_apple_cc_single_mod" != "yes"; then
+      _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}"
+      _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}"
+    fi
+],[])
+  else
+  _LT_TAGVAR(ld_shlibs, $1)=no
+  fi
+])
 
-AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
-AC_MSG_RESULT([$am_cv_prog_tar_$1])])
-AC_SUBST([am__tar])
-AC_SUBST([am__untar])
-]) # _AM_PROG_TAR
+# _LT_SYS_MODULE_PATH_AIX([TAGNAME])
+# ----------------------------------
+# Links a minimal program and checks the executable
+# for the system default hardcoded library path. In most cases,
+# this is /usr/lib:/lib, but when the MPI compilers are used
+# the location of the communication and MPI libs are included too.
+# If we don't find anything, use the default library path according
+# to the aix ld manual.
+# Store the results from the different compilers for each TAGNAME.
+# Allow to override them for all tags through lt_cv_aix_libpath.
+m4_defun([_LT_SYS_MODULE_PATH_AIX],
+[m4_require([_LT_DECL_SED])dnl
+if test "${lt_cv_aix_libpath+set}" = set; then
+  aix_libpath=$lt_cv_aix_libpath
+else
+  AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])],
+  [AC_LINK_IFELSE([AC_LANG_PROGRAM],[
+  lt_aix_libpath_sed='[
+      /Import File Strings/,/^$/ {
+         /^0/ {
+             s/^0  *\([^ ]*\) *$/\1/
+             p
+         }
+      }]'
+  _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
+  # Check for a 64-bit object if we didn't find anything.
+  if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then
+    _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
+  fi],[])
+  if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then
+    _LT_TAGVAR([lt_cv_aix_libpath_], [$1])="/usr/lib:/lib"
+  fi
+  ])
+  aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])
+fi
+])# _LT_SYS_MODULE_PATH_AIX
+
+
+# _LT_SHELL_INIT(ARG)
+# -------------------
+m4_define([_LT_SHELL_INIT],
+[m4_divert_text([M4SH-INIT], [$1
+])])# _LT_SHELL_INIT
+
+
+
+# _LT_PROG_ECHO_BACKSLASH
+# -----------------------
+# Find how we can fake an echo command that does not interpret backslash.
+# In particular, with Autoconf 2.60 or later we add some code to the start
+# of the generated configure script which will find a shell with a builtin
+# printf (which we can use as an echo command).
+m4_defun([_LT_PROG_ECHO_BACKSLASH],
+[ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
+ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO
+ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO
+
+AC_MSG_CHECKING([how to print strings])
+# Test print first, because it will be a builtin if present.
+if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \
+   test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then
+  ECHO='print -r --'
+elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then
+  ECHO='printf %s\n'
+else
+  # Use this function as a fallback that always works.
+  func_fallback_echo ()
+  {
+    eval 'cat <<_LTECHO_EOF
+$[]1
+_LTECHO_EOF'
+  }
+  ECHO='func_fallback_echo'
+fi
+
+# func_echo_all arg...
+# Invoke $ECHO with all args, space-separated.
+func_echo_all ()
+{
+    $ECHO "$*" 
+}
+
+case "$ECHO" in
+  printf*) AC_MSG_RESULT([printf]) ;;
+  print*) AC_MSG_RESULT([print -r]) ;;
+  *) AC_MSG_RESULT([cat]) ;;
+esac
+
+m4_ifdef([_AS_DETECT_SUGGESTED],
+[_AS_DETECT_SUGGESTED([
+  test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || (
+    ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
+    ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO
+    ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO
+    PATH=/empty FPATH=/empty; export PATH FPATH
+    test "X`printf %s $ECHO`" = "X$ECHO" \
+      || test "X`print -r -- $ECHO`" = "X$ECHO" )])])
+
+_LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts])
+_LT_DECL([], [ECHO], [1], [An echo program that protects backslashes])
+])# _LT_PROG_ECHO_BACKSLASH
+
+
+# _LT_WITH_SYSROOT
+# ----------------
+AC_DEFUN([_LT_WITH_SYSROOT],
+[AC_MSG_CHECKING([for sysroot])
+AC_ARG_WITH([sysroot],
+[  --with-sysroot[=DIR] Search for dependent libraries within DIR
+                        (or the compiler's sysroot if not specified).],
+[], [with_sysroot=no])
+
+dnl lt_sysroot will always be passed unquoted.  We quote it here
+dnl in case the user passed a directory name.
+lt_sysroot=
+case ${with_sysroot} in #(
+ yes)
+   if test "$GCC" = yes; then
+     lt_sysroot=`$CC --print-sysroot 2>/dev/null`
+   fi
+   ;; #(
+ /*)
+   lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"`
+   ;; #(
+ no|'')
+   ;; #(
+ *)
+   AC_MSG_RESULT([${with_sysroot}])
+   AC_MSG_ERROR([The sysroot must be an absolute path.])
+   ;;
+esac
+
+ AC_MSG_RESULT([${lt_sysroot:-no}])
+_LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl
+[dependent libraries, and in which our libraries should be installed.])])
+
+# _LT_ENABLE_LOCK
+# ---------------
+m4_defun([_LT_ENABLE_LOCK],
+[AC_ARG_ENABLE([libtool-lock],
+  [AS_HELP_STRING([--disable-libtool-lock],
+    [avoid locking (might break parallel builds)])])
+test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
+
+# Some flags need to be propagated to the compiler or linker for good
+# libtool support.
+case $host in
+ia64-*-hpux*)
+  # Find out which ABI we are using.
+  echo 'int i;' > conftest.$ac_ext
+  if AC_TRY_EVAL(ac_compile); then
+    case `/usr/bin/file conftest.$ac_objext` in
+      *ELF-32*)
+       HPUX_IA64_MODE="32"
+       ;;
+      *ELF-64*)
+       HPUX_IA64_MODE="64"
+       ;;
+    esac
+  fi
+  rm -rf conftest*
+  ;;
+*-*-irix6*)
+  # Find out which ABI we are using.
+  echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext
+  if AC_TRY_EVAL(ac_compile); then
+    if test "$lt_cv_prog_gnu_ld" = yes; then
+      case `/usr/bin/file conftest.$ac_objext` in
+       *32-bit*)
+         LD="${LD-ld} -melf32bsmip"
+         ;;
+       *N32*)
+         LD="${LD-ld} -melf32bmipn32"
+         ;;
+       *64-bit*)
+         LD="${LD-ld} -melf64bmip"
+       ;;
+      esac
+    else
+      case `/usr/bin/file conftest.$ac_objext` in
+       *32-bit*)
+         LD="${LD-ld} -32"
+         ;;
+       *N32*)
+         LD="${LD-ld} -n32"
+         ;;
+       *64-bit*)
+         LD="${LD-ld} -64"
+         ;;
+      esac
+    fi
+  fi
+  rm -rf conftest*
+  ;;
+
+x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \
+s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
+  # Find out which ABI we are using.
+  echo 'int i;' > conftest.$ac_ext
+  if AC_TRY_EVAL(ac_compile); then
+    case `/usr/bin/file conftest.o` in
+      *32-bit*)
+       case $host in
+         x86_64-*kfreebsd*-gnu)
+           LD="${LD-ld} -m elf_i386_fbsd"
+           ;;
+         x86_64-*linux*)
+           LD="${LD-ld} -m elf_i386"
+           ;;
+         ppc64-*linux*|powerpc64-*linux*)
+           LD="${LD-ld} -m elf32ppclinux"
+           ;;
+         s390x-*linux*)
+           LD="${LD-ld} -m elf_s390"
+           ;;
+         sparc64-*linux*)
+           LD="${LD-ld} -m elf32_sparc"
+           ;;
+       esac
+       ;;
+      *64-bit*)
+       case $host in
+         x86_64-*kfreebsd*-gnu)
+           LD="${LD-ld} -m elf_x86_64_fbsd"
+           ;;
+         x86_64-*linux*)
+           LD="${LD-ld} -m elf_x86_64"
+           ;;
+         ppc*-*linux*|powerpc*-*linux*)
+           LD="${LD-ld} -m elf64ppc"
+           ;;
+         s390*-*linux*|s390*-*tpf*)
+           LD="${LD-ld} -m elf64_s390"
+           ;;
+         sparc*-*linux*)
+           LD="${LD-ld} -m elf64_sparc"
+           ;;
+       esac
+       ;;
+    esac
+  fi
+  rm -rf conftest*
+  ;;
+
+*-*-sco3.2v5*)
+  # On SCO OpenServer 5, we need -belf to get full-featured binaries.
+  SAVE_CFLAGS="$CFLAGS"
+  CFLAGS="$CFLAGS -belf"
+  AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf,
+    [AC_LANG_PUSH(C)
+     AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no])
+     AC_LANG_POP])
+  if test x"$lt_cv_cc_needs_belf" != x"yes"; then
+    # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
+    CFLAGS="$SAVE_CFLAGS"
+  fi
+  ;;
+*-*solaris*)
+  # Find out which ABI we are using.
+  echo 'int i;' > conftest.$ac_ext
+  if AC_TRY_EVAL(ac_compile); then
+    case `/usr/bin/file conftest.o` in
+    *64-bit*)
+      case $lt_cv_prog_gnu_ld in
+      yes*)
+        case $host in
+        i?86-*-solaris*)
+          LD="${LD-ld} -m elf_x86_64"
+          ;;
+        sparc*-*-solaris*)
+          LD="${LD-ld} -m elf64_sparc"
+          ;;
+        esac
+        # GNU ld 2.21 introduced _sol2 emulations.  Use them if available.
+        if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then
+          LD="${LD-ld}_sol2"
+        fi
+        ;;
+      *)
+       if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then
+         LD="${LD-ld} -64"
+       fi
+       ;;
+      esac
+      ;;
+    esac
+  fi
+  rm -rf conftest*
+  ;;
+esac
+
+need_locks="$enable_libtool_lock"
+])# _LT_ENABLE_LOCK
+
+
+# _LT_PROG_AR
+# -----------
+m4_defun([_LT_PROG_AR],
+[AC_CHECK_TOOLS(AR, [ar], false)
+: ${AR=ar}
+: ${AR_FLAGS=cru}
+_LT_DECL([], [AR], [1], [The archiver])
+_LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive])
+
+AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file],
+  [lt_cv_ar_at_file=no
+   AC_COMPILE_IFELSE([AC_LANG_PROGRAM],
+     [echo conftest.$ac_objext > conftest.lst
+      lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD'
+      AC_TRY_EVAL([lt_ar_try])
+      if test "$ac_status" -eq 0; then
+       # Ensure the archiver fails upon bogus file names.
+       rm -f conftest.$ac_objext libconftest.a
+       AC_TRY_EVAL([lt_ar_try])
+       if test "$ac_status" -ne 0; then
+          lt_cv_ar_at_file=@
+        fi
+      fi
+      rm -f conftest.* libconftest.a
+     ])
+  ])
+
+if test "x$lt_cv_ar_at_file" = xno; then
+  archiver_list_spec=
+else
+  archiver_list_spec=$lt_cv_ar_at_file
+fi
+_LT_DECL([], [archiver_list_spec], [1],
+  [How to feed a file listing to the archiver])
+])# _LT_PROG_AR
+
+
+# _LT_CMD_OLD_ARCHIVE
+# -------------------
+m4_defun([_LT_CMD_OLD_ARCHIVE],
+[_LT_PROG_AR
+
+AC_CHECK_TOOL(STRIP, strip, :)
+test -z "$STRIP" && STRIP=:
+_LT_DECL([], [STRIP], [1], [A symbol stripping program])
+
+AC_CHECK_TOOL(RANLIB, ranlib, :)
+test -z "$RANLIB" && RANLIB=:
+_LT_DECL([], [RANLIB], [1],
+    [Commands used to install an old-style archive])
+
+# Determine commands to create old-style static archives.
+old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs'
+old_postinstall_cmds='chmod 644 $oldlib'
+old_postuninstall_cmds=
+
+if test -n "$RANLIB"; then
+  case $host_os in
+  openbsd*)
+    old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib"
+    ;;
+  *)
+    old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib"
+    ;;
+  esac
+  old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib"
+fi
+
+case $host_os in
+  darwin*)
+    lock_old_archive_extraction=yes ;;
+  *)
+    lock_old_archive_extraction=no ;;
+esac
+_LT_DECL([], [old_postinstall_cmds], [2])
+_LT_DECL([], [old_postuninstall_cmds], [2])
+_LT_TAGDECL([], [old_archive_cmds], [2],
+    [Commands used to build an old-style archive])
+_LT_DECL([], [lock_old_archive_extraction], [0],
+    [Whether to use a lock for old archive extraction])
+])# _LT_CMD_OLD_ARCHIVE
+
+
+# _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS,
+#              [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE])
+# ----------------------------------------------------------------
+# Check whether the given compiler option works
+AC_DEFUN([_LT_COMPILER_OPTION],
+[m4_require([_LT_FILEUTILS_DEFAULTS])dnl
+m4_require([_LT_DECL_SED])dnl
+AC_CACHE_CHECK([$1], [$2],
+  [$2=no
+   m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4])
+   echo "$lt_simple_compile_test_code" > conftest.$ac_ext
+   lt_compiler_flag="$3"
+   # Insert the option either (1) after the last *FLAGS variable, or
+   # (2) before a word containing "conftest.", or (3) at the end.
+   # Note that $ac_compile itself does not contain backslashes and begins
+   # with a dollar sign (not a hyphen), so the echo should work correctly.
+   # The option is referenced via a variable to avoid confusing sed.
+   lt_compile=`echo "$ac_compile" | $SED \
+   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
+   -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
+   -e 's:$: $lt_compiler_flag:'`
+   (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
+   (eval "$lt_compile" 2>conftest.err)
+   ac_status=$?
+   cat conftest.err >&AS_MESSAGE_LOG_FD
+   echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
+   if (exit $ac_status) && test -s "$ac_outfile"; then
+     # The compiler can only warn and ignore the option if not recognized
+     # So say no if there are warnings other than the usual output.
+     $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp
+     $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
+     if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
+       $2=yes
+     fi
+   fi
+   $RM conftest*
+])
+
+if test x"[$]$2" = xyes; then
+    m4_if([$5], , :, [$5])
+else
+    m4_if([$6], , :, [$6])
+fi
+])# _LT_COMPILER_OPTION
+
+# Old name:
+AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION])
+dnl aclocal-1.4 backwards compatibility:
+dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [])
+
+
+# _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS,
+#                  [ACTION-SUCCESS], [ACTION-FAILURE])
+# ----------------------------------------------------
+# Check whether the given linker option works
+AC_DEFUN([_LT_LINKER_OPTION],
+[m4_require([_LT_FILEUTILS_DEFAULTS])dnl
+m4_require([_LT_DECL_SED])dnl
+AC_CACHE_CHECK([$1], [$2],
+  [$2=no
+   save_LDFLAGS="$LDFLAGS"
+   LDFLAGS="$LDFLAGS $3"
+   echo "$lt_simple_link_test_code" > conftest.$ac_ext
+   if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
+     # The linker can only warn and ignore the option if not recognized
+     # So say no if there are warnings
+     if test -s conftest.err; then
+       # Append any errors to the config.log.
+       cat conftest.err 1>&AS_MESSAGE_LOG_FD
+       $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp
+       $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
+       if diff conftest.exp conftest.er2 >/dev/null; then
+         $2=yes
+       fi
+     else
+       $2=yes
+     fi
+   fi
+   $RM -r conftest*
+   LDFLAGS="$save_LDFLAGS"
+])
+
+if test x"[$]$2" = xyes; then
+    m4_if([$4], , :, [$4])
+else
+    m4_if([$5], , :, [$5])
+fi
+])# _LT_LINKER_OPTION
+
+# Old name:
+AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION])
+dnl aclocal-1.4 backwards compatibility:
+dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [])
+
+
+# LT_CMD_MAX_LEN
+#---------------
+AC_DEFUN([LT_CMD_MAX_LEN],
+[AC_REQUIRE([AC_CANONICAL_HOST])dnl
+# find the maximum length of command line arguments
+AC_MSG_CHECKING([the maximum length of command line arguments])
+AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
+  i=0
+  teststring="ABCD"
+
+  case $build_os in
+  msdosdjgpp*)
+    # On DJGPP, this test can blow up pretty badly due to problems in libc
+    # (any single argument exceeding 2000 bytes causes a buffer overrun
+    # during glob expansion).  Even if it were fixed, the result of this
+    # check would be larger than it should be.
+    lt_cv_sys_max_cmd_len=12288;    # 12K is about right
+    ;;
+
+  gnu*)
+    # Under GNU Hurd, this test is not required because there is
+    # no limit to the length of command line arguments.
+    # Libtool will interpret -1 as no limit whatsoever
+    lt_cv_sys_max_cmd_len=-1;
+    ;;
+
+  cygwin* | mingw* | cegcc*)
+    # On Win9x/ME, this test blows up -- it succeeds, but takes
+    # about 5 minutes as the teststring grows exponentially.
+    # Worse, since 9x/ME are not pre-emptively multitasking,
+    # you end up with a "frozen" computer, even though with patience
+    # the test eventually succeeds (with a max line length of 256k).
+    # Instead, let's just punt: use the minimum linelength reported by
+    # all of the supported platforms: 8192 (on NT/2K/XP).
+    lt_cv_sys_max_cmd_len=8192;
+    ;;
+
+  mint*)
+    # On MiNT this can take a long time and run out of memory.
+    lt_cv_sys_max_cmd_len=8192;
+    ;;
+
+  amigaos*)
+    # On AmigaOS with pdksh, this test takes hours, literally.
+    # So we just punt and use a minimum line length of 8192.
+    lt_cv_sys_max_cmd_len=8192;
+    ;;
+
+  netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)
+    # This has been around since 386BSD, at least.  Likely further.
+    if test -x /sbin/sysctl; then
+      lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
+    elif test -x /usr/sbin/sysctl; then
+      lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
+    else
+      lt_cv_sys_max_cmd_len=65536      # usable default for all BSDs
+    fi
+    # And add a safety zone
+    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
+    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
+    ;;
+
+  interix*)
+    # We know the value 262144 and hardcode it with a safety zone (like BSD)
+    lt_cv_sys_max_cmd_len=196608
+    ;;
+
+  os2*)
+    # The test takes a long time on OS/2.
+    lt_cv_sys_max_cmd_len=8192
+    ;;
+
+  osf*)
+    # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
+    # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
+    # nice to cause kernel panics so lets avoid the loop below.
+    # First set a reasonable default.
+    lt_cv_sys_max_cmd_len=16384
+    #
+    if test -x /sbin/sysconfig; then
+      case `/sbin/sysconfig -q proc exec_disable_arg_limit` in
+        *1*) lt_cv_sys_max_cmd_len=-1 ;;
+      esac
+    fi
+    ;;
+  sco3.2v5*)
+    lt_cv_sys_max_cmd_len=102400
+    ;;
+  sysv5* | sco5v6* | sysv4.2uw2*)
+    kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`
+    if test -n "$kargmax"; then
+      lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[        ]]//'`
+    else
+      lt_cv_sys_max_cmd_len=32768
+    fi
+    ;;
+  *)
+    lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
+    if test -n "$lt_cv_sys_max_cmd_len"; then
+      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
+      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
+    else
+      # Make teststring a little bigger before we do anything with it.
+      # a 1K string should be a reasonable start.
+      for i in 1 2 3 4 5 6 7 8 ; do
+        teststring=$teststring$teststring
+      done
+      SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
+      # If test is not a shell built-in, we'll probably end up computing a
+      # maximum length that is only half of the actual maximum length, but
+      # we can't tell.
+      while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \
+                = "X$teststring$teststring"; } >/dev/null 2>&1 &&
+             test $i != 17 # 1/2 MB should be enough
+      do
+        i=`expr $i + 1`
+        teststring=$teststring$teststring
+      done
+      # Only check the string length outside the loop.
+      lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1`
+      teststring=
+      # Add a significant safety factor because C++ compilers can tack on
+      # massive amounts of additional arguments before passing them to the
+      # linker.  It appears as though 1/2 is a usable value.
+      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
+    fi
+    ;;
+  esac
+])
+if test -n $lt_cv_sys_max_cmd_len ; then
+  AC_MSG_RESULT($lt_cv_sys_max_cmd_len)
+else
+  AC_MSG_RESULT(none)
+fi
+max_cmd_len=$lt_cv_sys_max_cmd_len
+_LT_DECL([], [max_cmd_len], [0],
+    [What is the maximum length of a command?])
+])# LT_CMD_MAX_LEN
+
+# Old name:
+AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN])
+dnl aclocal-1.4 backwards compatibility:
+dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [])
+
+
+# _LT_HEADER_DLFCN
+# ----------------
+m4_defun([_LT_HEADER_DLFCN],
+[AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl
+])# _LT_HEADER_DLFCN
+
+
+# _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE,
+#                      ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING)
+# ----------------------------------------------------------------
+m4_defun([_LT_TRY_DLOPEN_SELF],
+[m4_require([_LT_HEADER_DLFCN])dnl
+if test "$cross_compiling" = yes; then :
+  [$4]
+else
+  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
+  lt_status=$lt_dlunknown
+  cat > conftest.$ac_ext <<_LT_EOF
+[#line $LINENO "configure"
+#include "confdefs.h"
+
+#if HAVE_DLFCN_H
+#include <dlfcn.h>
+#endif
+
+#include <stdio.h>
+
+#ifdef RTLD_GLOBAL
+#  define LT_DLGLOBAL          RTLD_GLOBAL
+#else
+#  ifdef DL_GLOBAL
+#    define LT_DLGLOBAL                DL_GLOBAL
+#  else
+#    define LT_DLGLOBAL                0
+#  endif
+#endif
+
+/* We may have to define LT_DLLAZY_OR_NOW in the command line if we
+   find out it does not work in some platform. */
+#ifndef LT_DLLAZY_OR_NOW
+#  ifdef RTLD_LAZY
+#    define LT_DLLAZY_OR_NOW           RTLD_LAZY
+#  else
+#    ifdef DL_LAZY
+#      define LT_DLLAZY_OR_NOW         DL_LAZY
+#    else
+#      ifdef RTLD_NOW
+#        define LT_DLLAZY_OR_NOW       RTLD_NOW
+#      else
+#        ifdef DL_NOW
+#          define LT_DLLAZY_OR_NOW     DL_NOW
+#        else
+#          define LT_DLLAZY_OR_NOW     0
+#        endif
+#      endif
+#    endif
+#  endif
+#endif
+
+/* When -fvisbility=hidden is used, assume the code has been annotated
+   correspondingly for the symbols needed.  */
+#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))
+int fnord () __attribute__((visibility("default")));
+#endif
+
+int fnord () { return 42; }
+int main ()
+{
+  void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
+  int status = $lt_dlunknown;
+
+  if (self)
+    {
+      if (dlsym (self,"fnord"))       status = $lt_dlno_uscore;
+      else
+        {
+         if (dlsym( self,"_fnord"))  status = $lt_dlneed_uscore;
+          else puts (dlerror ());
+       }
+      /* dlclose (self); */
+    }
+  else
+    puts (dlerror ());
+
+  return status;
+}]
+_LT_EOF
+  if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then
+    (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null
+    lt_status=$?
+    case x$lt_status in
+      x$lt_dlno_uscore) $1 ;;
+      x$lt_dlneed_uscore) $2 ;;
+      x$lt_dlunknown|x*) $3 ;;
+    esac
+  else :
+    # compilation failed
+    $3
+  fi
+fi
+rm -fr conftest*
+])# _LT_TRY_DLOPEN_SELF
+
+
+# LT_SYS_DLOPEN_SELF
+# ------------------
+AC_DEFUN([LT_SYS_DLOPEN_SELF],
+[m4_require([_LT_HEADER_DLFCN])dnl
+if test "x$enable_dlopen" != xyes; then
+  enable_dlopen=unknown
+  enable_dlopen_self=unknown
+  enable_dlopen_self_static=unknown
+else
+  lt_cv_dlopen=no
+  lt_cv_dlopen_libs=
+
+  case $host_os in
+  beos*)
+    lt_cv_dlopen="load_add_on"
+    lt_cv_dlopen_libs=
+    lt_cv_dlopen_self=yes
+    ;;
+
+  mingw* | pw32* | cegcc*)
+    lt_cv_dlopen="LoadLibrary"
+    lt_cv_dlopen_libs=
+    ;;
+
+  cygwin*)
+    lt_cv_dlopen="dlopen"
+    lt_cv_dlopen_libs=
+    ;;
+
+  darwin*)
+  # if libdl is installed we need to link against it
+    AC_CHECK_LIB([dl], [dlopen],
+               [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[
+    lt_cv_dlopen="dyld"
+    lt_cv_dlopen_libs=
+    lt_cv_dlopen_self=yes
+    ])
+    ;;
+
+  *)
+    AC_CHECK_FUNC([shl_load],
+         [lt_cv_dlopen="shl_load"],
+      [AC_CHECK_LIB([dld], [shl_load],
+           [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"],
+       [AC_CHECK_FUNC([dlopen],
+             [lt_cv_dlopen="dlopen"],
+         [AC_CHECK_LIB([dl], [dlopen],
+               [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],
+           [AC_CHECK_LIB([svld], [dlopen],
+                 [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"],
+             [AC_CHECK_LIB([dld], [dld_link],
+                   [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"])
+             ])
+           ])
+         ])
+       ])
+      ])
+    ;;
+  esac
+
+  if test "x$lt_cv_dlopen" != xno; then
+    enable_dlopen=yes
+  else
+    enable_dlopen=no
+  fi
+
+  case $lt_cv_dlopen in
+  dlopen)
+    save_CPPFLAGS="$CPPFLAGS"
+    test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
+
+    save_LDFLAGS="$LDFLAGS"
+    wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
+
+    save_LIBS="$LIBS"
+    LIBS="$lt_cv_dlopen_libs $LIBS"
+
+    AC_CACHE_CHECK([whether a program can dlopen itself],
+         lt_cv_dlopen_self, [dnl
+         _LT_TRY_DLOPEN_SELF(
+           lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,
+           lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)
+    ])
+
+    if test "x$lt_cv_dlopen_self" = xyes; then
+      wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
+      AC_CACHE_CHECK([whether a statically linked program can dlopen itself],
+         lt_cv_dlopen_self_static, [dnl
+         _LT_TRY_DLOPEN_SELF(
+           lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,
+           lt_cv_dlopen_self_static=no,  lt_cv_dlopen_self_static=cross)
+      ])
+    fi
+
+    CPPFLAGS="$save_CPPFLAGS"
+    LDFLAGS="$save_LDFLAGS"
+    LIBS="$save_LIBS"
+    ;;
+  esac
+
+  case $lt_cv_dlopen_self in
+  yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
+  *) enable_dlopen_self=unknown ;;
+  esac
+
+  case $lt_cv_dlopen_self_static in
+  yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
+  *) enable_dlopen_self_static=unknown ;;
+  esac
+fi
+_LT_DECL([dlopen_support], [enable_dlopen], [0],
+        [Whether dlopen is supported])
+_LT_DECL([dlopen_self], [enable_dlopen_self], [0],
+        [Whether dlopen of programs is supported])
+_LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0],
+        [Whether dlopen of statically linked programs is supported])
+])# LT_SYS_DLOPEN_SELF
+
+# Old name:
+AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF])
+dnl aclocal-1.4 backwards compatibility:
+dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [])
+
+
+# _LT_COMPILER_C_O([TAGNAME])
+# ---------------------------
+# Check to see if options -c and -o are simultaneously supported by compiler.
+# This macro does not hard code the compiler like AC_PROG_CC_C_O.
+m4_defun([_LT_COMPILER_C_O],
+[m4_require([_LT_DECL_SED])dnl
+m4_require([_LT_FILEUTILS_DEFAULTS])dnl
+m4_require([_LT_TAG_COMPILER])dnl
+AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext],
+  [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)],
+  [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no
+   $RM -r conftest 2>/dev/null
+   mkdir conftest
+   cd conftest
+   mkdir out
+   echo "$lt_simple_compile_test_code" > conftest.$ac_ext
+
+   lt_compiler_flag="-o out/conftest2.$ac_objext"
+   # Insert the option either (1) after the last *FLAGS variable, or
+   # (2) before a word containing "conftest.", or (3) at the end.
+   # Note that $ac_compile itself does not contain backslashes and begins
+   # with a dollar sign (not a hyphen), so the echo should work correctly.
+   lt_compile=`echo "$ac_compile" | $SED \
+   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
+   -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
+   -e 's:$: $lt_compiler_flag:'`
+   (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
+   (eval "$lt_compile" 2>out/conftest.err)
+   ac_status=$?
+   cat out/conftest.err >&AS_MESSAGE_LOG_FD
+   echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
+   if (exit $ac_status) && test -s out/conftest2.$ac_objext
+   then
+     # The compiler can only warn and ignore the option if not recognized
+     # So say no if there are warnings
+     $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp
+     $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2
+     if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then
+       _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes
+     fi
+   fi
+   chmod u+w . 2>&AS_MESSAGE_LOG_FD
+   $RM conftest*
+   # SGI C++ compiler will create directory out/ii_files/ for
+   # template instantiation
+   test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files
+   $RM out/* && rmdir out
+   cd ..
+   $RM -r conftest
+   $RM conftest*
+])
+_LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1],
+       [Does compiler simultaneously support -c and -o options?])
+])# _LT_COMPILER_C_O
+
+
+# _LT_COMPILER_FILE_LOCKS([TAGNAME])
+# ----------------------------------
+# Check to see if we can do hard links to lock some files if needed
+m4_defun([_LT_COMPILER_FILE_LOCKS],
+[m4_require([_LT_ENABLE_LOCK])dnl
+m4_require([_LT_FILEUTILS_DEFAULTS])dnl
+_LT_COMPILER_C_O([$1])
+
+hard_links="nottested"
+if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then
+  # do not overwrite the value of need_locks provided by the user
+  AC_MSG_CHECKING([if we can lock with hard links])
+  hard_links=yes
+  $RM conftest*
+  ln conftest.a conftest.b 2>/dev/null && hard_links=no
+  touch conftest.a
+  ln conftest.a conftest.b 2>&5 || hard_links=no
+  ln conftest.a conftest.b 2>/dev/null && hard_links=no
+  AC_MSG_RESULT([$hard_links])
+  if test "$hard_links" = no; then
+    AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe])
+    need_locks=warn
+  fi
+else
+  need_locks=no
+fi
+_LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?])
+])# _LT_COMPILER_FILE_LOCKS
+
+
+# _LT_CHECK_OBJDIR
+# ----------------
+m4_defun([_LT_CHECK_OBJDIR],
+[AC_CACHE_CHECK([for objdir], [lt_cv_objdir],
+[rm -f .libs 2>/dev/null
+mkdir .libs 2>/dev/null
+if test -d .libs; then
+  lt_cv_objdir=.libs
+else
+  # MS-DOS does not allow filenames that begin with a dot.
+  lt_cv_objdir=_libs
+fi
+rmdir .libs 2>/dev/null])
+objdir=$lt_cv_objdir
+_LT_DECL([], [objdir], [0],
+         [The name of the directory that contains temporary libtool files])dnl
+m4_pattern_allow([LT_OBJDIR])dnl
+AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/",
+  [Define to the sub-directory in which libtool stores uninstalled libraries.])
+])# _LT_CHECK_OBJDIR
+
+
+# _LT_LINKER_HARDCODE_LIBPATH([TAGNAME])
+# --------------------------------------
+# Check hardcoding attributes.
+m4_defun([_LT_LINKER_HARDCODE_LIBPATH],
+[AC_MSG_CHECKING([how to hardcode library paths into programs])
+_LT_TAGVAR(hardcode_action, $1)=
+if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" ||
+   test -n "$_LT_TAGVAR(runpath_var, $1)" ||
+   test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then
+
+  # We can hardcode non-existent directories.
+  if test "$_LT_TAGVAR(hardcode_direct, $1)" != no &&
+     # If the only mechanism to avoid hardcoding is shlibpath_var, we
+     # have to relink, otherwise we might link with an installed library
+     # when we should be linking with a yet-to-be-installed one
+     ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no &&
+     test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then
+    # Linking always hardcodes the temporary library directory.
+    _LT_TAGVAR(hardcode_action, $1)=relink
+  else
+    # We can link without hardcoding, and we can hardcode nonexisting dirs.
+    _LT_TAGVAR(hardcode_action, $1)=immediate
+  fi
+else
+  # We cannot hardcode anything, or else we can only hardcode existing
+  # directories.
+  _LT_TAGVAR(hardcode_action, $1)=unsupported
+fi
+AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)])
+
+if test "$_LT_TAGVAR(hardcode_action, $1)" = relink ||
+   test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then
+  # Fast installation is not supported
+  enable_fast_install=no
+elif test "$shlibpath_overrides_runpath" = yes ||
+     test "$enable_shared" = no; then
+  # Fast installation is not necessary
+  enable_fast_install=needless
+fi
+_LT_TAGDECL([], [hardcode_action], [0],
+    [How to hardcode a shared library path into an executable])
+])# _LT_LINKER_HARDCODE_LIBPATH
+
+
+# _LT_CMD_STRIPLIB
+# ----------------
+m4_defun([_LT_CMD_STRIPLIB],
+[m4_require([_LT_DECL_EGREP])
+striplib=
+old_striplib=
+AC_MSG_CHECKING([whether stripping libraries is possible])
+if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then
+  test -z "$old_striplib" && old_striplib="$STRIP --strip-debug"
+  test -z "$striplib" && striplib="$STRIP --strip-unneeded"
+  AC_MSG_RESULT([yes])
+else
+# FIXME - insert some real tests, host_os isn't really good enough
+  case $host_os in
+  darwin*)
+    if test -n "$STRIP" ; then
+      striplib="$STRIP -x"
+      old_striplib="$STRIP -S"
+      AC_MSG_RESULT([yes])
+    else
+      AC_MSG_RESULT([no])
+    fi
+    ;;
+  *)
+    AC_MSG_RESULT([no])
+    ;;
+  esac
+fi
+_LT_DECL([], [old_striplib], [1], [Commands to strip libraries])
+_LT_DECL([], [striplib], [1])
+])# _LT_CMD_STRIPLIB
+
+
+# _LT_SYS_DYNAMIC_LINKER([TAG])
+# -----------------------------
+# PORTME Fill in your ld.so characteristics
+m4_defun([_LT_SYS_DYNAMIC_LINKER],
+[AC_REQUIRE([AC_CANONICAL_HOST])dnl
+m4_require([_LT_DECL_EGREP])dnl
+m4_require([_LT_FILEUTILS_DEFAULTS])dnl
+m4_require([_LT_DECL_OBJDUMP])dnl
+m4_require([_LT_DECL_SED])dnl
+m4_require([_LT_CHECK_SHELL_FEATURES])dnl
+AC_MSG_CHECKING([dynamic linker characteristics])
+m4_if([$1],
+       [], [
+if test "$GCC" = yes; then
+  case $host_os in
+    darwin*) lt_awk_arg="/^libraries:/,/LR/" ;;
+    *) lt_awk_arg="/^libraries:/" ;;
+  esac
+  case $host_os in
+    mingw* | cegcc*) lt_sed_strip_eq="s,=\([[A-Za-z]]:\),\1,g" ;;
+    *) lt_sed_strip_eq="s,=/,/,g" ;;
+  esac
+  lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq`
+  case $lt_search_path_spec in
+  *\;*)
+    # if the path contains ";" then we assume it to be the separator
+    # otherwise default to the standard path separator (i.e. ":") - it is
+    # assumed that no part of a normal pathname contains ";" but that should
+    # okay in the real world where ";" in dirpaths is itself problematic.
+    lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'`
+    ;;
+  *)
+    lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"`
+    ;;
+  esac
+  # Ok, now we have the path, separated by spaces, we can step through it
+  # and add multilib dir if necessary.
+  lt_tmp_lt_search_path_spec=
+  lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null`
+  for lt_sys_path in $lt_search_path_spec; do
+    if test -d "$lt_sys_path/$lt_multi_os_dir"; then
+      lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir"
+    else
+      test -d "$lt_sys_path" && \
+       lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path"
+    fi
+  done
+  lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk '
+BEGIN {RS=" "; FS="/|\n";} {
+  lt_foo="";
+  lt_count=0;
+  for (lt_i = NF; lt_i > 0; lt_i--) {
+    if ($lt_i != "" && $lt_i != ".") {
+      if ($lt_i == "..") {
+        lt_count++;
+      } else {
+        if (lt_count == 0) {
+          lt_foo="/" $lt_i lt_foo;
+        } else {
+          lt_count--;
+        }
+      }
+    }
+  }
+  if (lt_foo != "") { lt_freq[[lt_foo]]++; }
+  if (lt_freq[[lt_foo]] == 1) { print lt_foo; }
+}'`
+  # AWK program above erroneously prepends '/' to C:/dos/paths
+  # for these hosts.
+  case $host_os in
+    mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\
+      $SED 's,/\([[A-Za-z]]:\),\1,g'` ;;
+  esac
+  sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP`
+else
+  sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
+fi])
+library_names_spec=
+libname_spec='lib$name'
+soname_spec=
+shrext_cmds=".so"
+postinstall_cmds=
+postuninstall_cmds=
+finish_cmds=
+finish_eval=
+shlibpath_var=
+shlibpath_overrides_runpath=unknown
+version_type=none
+dynamic_linker="$host_os ld.so"
+sys_lib_dlsearch_path_spec="/lib /usr/lib"
+need_lib_prefix=unknown
+hardcode_into_libs=no
+
+# when you set need_version to no, make sure it does not cause -set_version
+# flags to be left without arguments
+need_version=unknown
+
+case $host_os in
+aix3*)
+  version_type=linux # correct to gnu/linux during the next big refactor
+  library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a'
+  shlibpath_var=LIBPATH
+
+  # AIX 3 has no versioning support, so we append a major version to the name.
+  soname_spec='${libname}${release}${shared_ext}$major'
+  ;;
+
+aix[[4-9]]*)
+  version_type=linux # correct to gnu/linux during the next big refactor
+  need_lib_prefix=no
+  need_version=no
+  hardcode_into_libs=yes
+  if test "$host_cpu" = ia64; then
+    # AIX 5 supports IA64
+    library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}'
+    shlibpath_var=LD_LIBRARY_PATH
+  else
+    # With GCC up to 2.95.x, collect2 would create an import file
+    # for dependence libraries.  The import file would start with
+    # the line `#! .'.  This would cause the generated library to
+    # depend on `.', always an invalid library.  This was fixed in
+    # development snapshots of GCC prior to 3.0.
+    case $host_os in
+      aix4 | aix4.[[01]] | aix4.[[01]].*)
+      if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'
+          echo ' yes '
+          echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then
+       :
+      else
+       can_build_shared=no
+      fi
+      ;;
+    esac
+    # AIX (on Power*) has no versioning support, so currently we can not hardcode correct
+    # soname into executable. Probably we can add versioning support to
+    # collect2, so additional links can be useful in future.
+    if test "$aix_use_runtimelinking" = yes; then
+      # If using run time linking (on AIX 4.2 or later) use lib<name>.so
+      # instead of lib<name>.a to let people know that these are not
+      # typical AIX shared libraries.
+      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
+    else
+      # We preserve .a as extension for shared libraries through AIX4.2
+      # and later when we are not doing run time linking.
+      library_names_spec='${libname}${release}.a $libname.a'
+      soname_spec='${libname}${release}${shared_ext}$major'
+    fi
+    shlibpath_var=LIBPATH
+  fi
+  ;;
+
+amigaos*)
+  case $host_cpu in
+  powerpc)
+    # Since July 2007 AmigaOS4 officially supports .so libraries.
+    # When compiling the executable, add -use-dynld -Lsobjs: to the compileline.
+    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
+    ;;
+  m68k)
+    library_names_spec='$libname.ixlibrary $libname.a'
+    # Create ${libname}_ixlibrary.a entries in /sys/libs.
+    finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
+    ;;
+  esac
+  ;;
+
+beos*)
+  library_names_spec='${libname}${shared_ext}'
+  dynamic_linker="$host_os ld.so"
+  shlibpath_var=LIBRARY_PATH
+  ;;
+
+bsdi[[45]]*)
+  version_type=linux # correct to gnu/linux during the next big refactor
+  need_version=no
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
+  soname_spec='${libname}${release}${shared_ext}$major'
+  finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir'
+  shlibpath_var=LD_LIBRARY_PATH
+  sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
+  sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
+  # the default ld.so.conf also contains /usr/contrib/lib and
+  # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow
+  # libtool to hard-code these into programs
+  ;;
+
+cygwin* | mingw* | pw32* | cegcc*)
+  version_type=windows
+  shrext_cmds=".dll"
+  need_version=no
+  need_lib_prefix=no
+
+  case $GCC,$cc_basename in
+  yes,*)
+    # gcc
+    library_names_spec='$libname.dll.a'
+    # DLL is installed to $(libdir)/../bin by postinstall_cmds
+    postinstall_cmds='base_file=`basename \${file}`~
+      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~
+      dldir=$destdir/`dirname \$dlpath`~
+      test -d \$dldir || mkdir -p \$dldir~
+      $install_prog $dir/$dlname \$dldir/$dlname~
+      chmod a+x \$dldir/$dlname~
+      if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then
+        eval '\''$striplib \$dldir/$dlname'\'' || exit \$?;
+      fi'
+    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
+      dlpath=$dir/\$dldll~
+       $RM \$dlpath'
+    shlibpath_overrides_runpath=yes
+
+    case $host_os in
+    cygwin*)
+      # Cygwin DLLs use 'cyg' prefix rather than 'lib'
+      soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
+m4_if([$1], [],[
+      sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"])
+      ;;
+    mingw* | cegcc*)
+      # MinGW DLLs use traditional 'lib' prefix
+      soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
+      ;;
+    pw32*)
+      # pw32 DLLs use 'pw' prefix rather than 'lib'
+      library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
+      ;;
+    esac
+    dynamic_linker='Win32 ld.exe'
+    ;;
+
+  *,cl*)
+    # Native MSVC
+    libname_spec='$name'
+    soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
+    library_names_spec='${libname}.dll.lib'
+
+    case $build_os in
+    mingw*)
+      sys_lib_search_path_spec=
+      lt_save_ifs=$IFS
+      IFS=';'
+      for lt_path in $LIB
+      do
+        IFS=$lt_save_ifs
+        # Let DOS variable expansion print the short 8.3 style file name.
+        lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"`
+        sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path"
+      done
+      IFS=$lt_save_ifs
+      # Convert to MSYS style.
+      sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'`
+      ;;
+    cygwin*)
+      # Convert to unix form, then to dos form, then back to unix form
+      # but this time dos style (no spaces!) so that the unix form looks
+      # like /cygdrive/c/PROGRA~1:/cygdr...
+      sys_lib_search_path_spec=`cygpath --path --unix "$LIB"`
+      sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null`
+      sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"`
+      ;;
+    *)
+      sys_lib_search_path_spec="$LIB"
+      if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then
+        # It is most probably a Windows format PATH.
+        sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
+      else
+        sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"`
+      fi
+      # FIXME: find the short name or the path components, as spaces are
+      # common. (e.g. "Program Files" -> "PROGRA~1")
+      ;;
+    esac
+
+    # DLL is installed to $(libdir)/../bin by postinstall_cmds
+    postinstall_cmds='base_file=`basename \${file}`~
+      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~
+      dldir=$destdir/`dirname \$dlpath`~
+      test -d \$dldir || mkdir -p \$dldir~
+      $install_prog $dir/$dlname \$dldir/$dlname'
+    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
+      dlpath=$dir/\$dldll~
+       $RM \$dlpath'
+    shlibpath_overrides_runpath=yes
+    dynamic_linker='Win32 link.exe'
+    ;;
+
+  *)
+    # Assume MSVC wrapper
+    library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib'
+    dynamic_linker='Win32 ld.exe'
+    ;;
+  esac
+  # FIXME: first we should search . and the directory the executable is in
+  shlibpath_var=PATH
+  ;;
+
+darwin* | rhapsody*)
+  dynamic_linker="$host_os dyld"
+  version_type=darwin
+  need_lib_prefix=no
+  need_version=no
+  library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext'
+  soname_spec='${libname}${release}${major}$shared_ext'
+  shlibpath_overrides_runpath=yes
+  shlibpath_var=DYLD_LIBRARY_PATH
+  shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
+m4_if([$1], [],[
+  sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"])
+  sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'
+  ;;
+
+dgux*)
+  version_type=linux # correct to gnu/linux during the next big refactor
+  need_lib_prefix=no
+  need_version=no
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'
+  soname_spec='${libname}${release}${shared_ext}$major'
+  shlibpath_var=LD_LIBRARY_PATH
+  ;;
+
+freebsd* | dragonfly*)
+  # DragonFly does not have aout.  When/if they implement a new
+  # versioning mechanism, adjust this.
+  if test -x /usr/bin/objformat; then
+    objformat=`/usr/bin/objformat`
+  else
+    case $host_os in
+    freebsd[[23]].*) objformat=aout ;;
+    *) objformat=elf ;;
+    esac
+  fi
+  version_type=freebsd-$objformat
+  case $version_type in
+    freebsd-elf*)
+      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
+      need_version=no
+      need_lib_prefix=no
+      ;;
+    freebsd-*)
+      library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix'
+      need_version=yes
+      ;;
+  esac
+  shlibpath_var=LD_LIBRARY_PATH
+  case $host_os in
+  freebsd2.*)
+    shlibpath_overrides_runpath=yes
+    ;;
+  freebsd3.[[01]]* | freebsdelf3.[[01]]*)
+    shlibpath_overrides_runpath=yes
+    hardcode_into_libs=yes
+    ;;
+  freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \
+  freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1)
+    shlibpath_overrides_runpath=no
+    hardcode_into_libs=yes
+    ;;
+  *) # from 4.6 on, and DragonFly
+    shlibpath_overrides_runpath=yes
+    hardcode_into_libs=yes
+    ;;
+  esac
+  ;;
+
+gnu*)
+  version_type=linux # correct to gnu/linux during the next big refactor
+  need_lib_prefix=no
+  need_version=no
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
+  soname_spec='${libname}${release}${shared_ext}$major'
+  shlibpath_var=LD_LIBRARY_PATH
+  shlibpath_overrides_runpath=no
+  hardcode_into_libs=yes
+  ;;
+
+haiku*)
+  version_type=linux # correct to gnu/linux during the next big refactor
+  need_lib_prefix=no
+  need_version=no
+  dynamic_linker="$host_os runtime_loader"
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
+  soname_spec='${libname}${release}${shared_ext}$major'
+  shlibpath_var=LIBRARY_PATH
+  shlibpath_overrides_runpath=yes
+  sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib'
+  hardcode_into_libs=yes
+  ;;
+
+hpux9* | hpux10* | hpux11*)
+  # Give a soname corresponding to the major version so that dld.sl refuses to
+  # link against other versions.
+  version_type=sunos
+  need_lib_prefix=no
+  need_version=no
+  case $host_cpu in
+  ia64*)
+    shrext_cmds='.so'
+    hardcode_into_libs=yes
+    dynamic_linker="$host_os dld.so"
+    shlibpath_var=LD_LIBRARY_PATH
+    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
+    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
+    soname_spec='${libname}${release}${shared_ext}$major'
+    if test "X$HPUX_IA64_MODE" = X32; then
+      sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib"
+    else
+      sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64"
+    fi
+    sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
+    ;;
+  hppa*64*)
+    shrext_cmds='.sl'
+    hardcode_into_libs=yes
+    dynamic_linker="$host_os dld.sl"
+    shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH
+    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
+    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
+    soname_spec='${libname}${release}${shared_ext}$major'
+    sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64"
+    sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
+    ;;
+  *)
+    shrext_cmds='.sl'
+    dynamic_linker="$host_os dld.sl"
+    shlibpath_var=SHLIB_PATH
+    shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
+    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
+    soname_spec='${libname}${release}${shared_ext}$major'
+    ;;
+  esac
+  # HP-UX runs *really* slowly unless shared libraries are mode 555, ...
+  postinstall_cmds='chmod 555 $lib'
+  # or fails outright, so override atomically:
+  install_override_mode=555
+  ;;
+
+interix[[3-9]]*)
+  version_type=linux # correct to gnu/linux during the next big refactor
+  need_lib_prefix=no
+  need_version=no
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
+  soname_spec='${libname}${release}${shared_ext}$major'
+  dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)'
+  shlibpath_var=LD_LIBRARY_PATH
+  shlibpath_overrides_runpath=no
+  hardcode_into_libs=yes
+  ;;
+
+irix5* | irix6* | nonstopux*)
+  case $host_os in
+    nonstopux*) version_type=nonstopux ;;
+    *)
+       if test "$lt_cv_prog_gnu_ld" = yes; then
+               version_type=linux # correct to gnu/linux during the next big refactor
+       else
+               version_type=irix
+       fi ;;
+  esac
+  need_lib_prefix=no
+  need_version=no
+  soname_spec='${libname}${release}${shared_ext}$major'
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}'
+  case $host_os in
+  irix5* | nonstopux*)
+    libsuff= shlibsuff=
+    ;;
+  *)
+    case $LD in # libtool.m4 will add one of these switches to LD
+    *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ")
+      libsuff= shlibsuff= libmagic=32-bit;;
+    *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ")
+      libsuff=32 shlibsuff=N32 libmagic=N32;;
+    *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ")
+      libsuff=64 shlibsuff=64 libmagic=64-bit;;
+    *) libsuff= shlibsuff= libmagic=never-match;;
+    esac
+    ;;
+  esac
+  shlibpath_var=LD_LIBRARY${shlibsuff}_PATH
+  shlibpath_overrides_runpath=no
+  sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
+  sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
+  hardcode_into_libs=yes
+  ;;
+
+# No shared lib support for Linux oldld, aout, or coff.
+linux*oldld* | linux*aout* | linux*coff*)
+  dynamic_linker=no
+  ;;
+
+# This must be glibc/ELF.
+linux* | k*bsd*-gnu | kopensolaris*-gnu)
+  version_type=linux # correct to gnu/linux during the next big refactor
+  need_lib_prefix=no
+  need_version=no
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
+  soname_spec='${libname}${release}${shared_ext}$major'
+  finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
+  shlibpath_var=LD_LIBRARY_PATH
+  shlibpath_overrides_runpath=no
+
+  # Some binutils ld are patched to set DT_RUNPATH
+  AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath],
+    [lt_cv_shlibpath_overrides_runpath=no
+    save_LDFLAGS=$LDFLAGS
+    save_libdir=$libdir
+    eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \
+        LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\""
+    AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])],
+      [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null],
+        [lt_cv_shlibpath_overrides_runpath=yes])])
+    LDFLAGS=$save_LDFLAGS
+    libdir=$save_libdir
+    ])
+  shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath
+
+  # This implies no fast_install, which is unacceptable.
+  # Some rework will be needed to allow for fast_install
+  # before this can be enabled.
+  hardcode_into_libs=yes
+
+  # Append ld.so.conf contents to the search path
+  if test -f /etc/ld.so.conf; then
+    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[  ]*hwcap[        ]/d;s/[:,      ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '`
+    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
+  fi
+
+  # We used to test for /lib/ld.so.1 and disable shared libraries on
+  # powerpc, because MkLinux only supported shared libraries with the
+  # GNU dynamic linker.  Since this was broken with cross compilers,
+  # most powerpc-linux boxes support dynamic linking these days and
+  # people can always --disable-shared, the test was removed, and we
+  # assume the GNU/Linux dynamic linker is in use.
+  dynamic_linker='GNU/Linux ld.so'
+  ;;
+
+netbsdelf*-gnu)
+  version_type=linux
+  need_lib_prefix=no
+  need_version=no
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
+  soname_spec='${libname}${release}${shared_ext}$major'
+  shlibpath_var=LD_LIBRARY_PATH
+  shlibpath_overrides_runpath=no
+  hardcode_into_libs=yes
+  dynamic_linker='NetBSD ld.elf_so'
+  ;;
+
+netbsd*)
+  version_type=sunos
+  need_lib_prefix=no
+  need_version=no
+  if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
+    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
+    finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
+    dynamic_linker='NetBSD (a.out) ld.so'
+  else
+    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
+    soname_spec='${libname}${release}${shared_ext}$major'
+    dynamic_linker='NetBSD ld.elf_so'
+  fi
+  shlibpath_var=LD_LIBRARY_PATH
+  shlibpath_overrides_runpath=yes
+  hardcode_into_libs=yes
+  ;;
+
+newsos6)
+  version_type=linux # correct to gnu/linux during the next big refactor
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
+  shlibpath_var=LD_LIBRARY_PATH
+  shlibpath_overrides_runpath=yes
+  ;;
+
+*nto* | *qnx*)
+  version_type=qnx
+  need_lib_prefix=no
+  need_version=no
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
+  soname_spec='${libname}${release}${shared_ext}$major'
+  shlibpath_var=LD_LIBRARY_PATH
+  shlibpath_overrides_runpath=no
+  hardcode_into_libs=yes
+  dynamic_linker='ldqnx.so'
+  ;;
+
+openbsd*)
+  version_type=sunos
+  sys_lib_dlsearch_path_spec="/usr/lib"
+  need_lib_prefix=no
+  # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs.
+  case $host_os in
+    openbsd3.3 | openbsd3.3.*) need_version=yes ;;
+    *)                         need_version=no  ;;
+  esac
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
+  finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
+  shlibpath_var=LD_LIBRARY_PATH
+  if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
+    case $host_os in
+      openbsd2.[[89]] | openbsd2.[[89]].*)
+       shlibpath_overrides_runpath=no
+       ;;
+      *)
+       shlibpath_overrides_runpath=yes
+       ;;
+      esac
+  else
+    shlibpath_overrides_runpath=yes
+  fi
+  ;;
+
+os2*)
+  libname_spec='$name'
+  shrext_cmds=".dll"
+  need_lib_prefix=no
+  library_names_spec='$libname${shared_ext} $libname.a'
+  dynamic_linker='OS/2 ld.exe'
+  shlibpath_var=LIBPATH
+  ;;
+
+osf3* | osf4* | osf5*)
+  version_type=osf
+  need_lib_prefix=no
+  need_version=no
+  soname_spec='${libname}${release}${shared_ext}$major'
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
+  shlibpath_var=LD_LIBRARY_PATH
+  sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
+  sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
+  ;;
+
+rdos*)
+  dynamic_linker=no
+  ;;
+
+solaris*)
+  version_type=linux # correct to gnu/linux during the next big refactor
+  need_lib_prefix=no
+  need_version=no
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
+  soname_spec='${libname}${release}${shared_ext}$major'
+  shlibpath_var=LD_LIBRARY_PATH
+  shlibpath_overrides_runpath=yes
+  hardcode_into_libs=yes
+  # ldd complains unless libraries are executable
+  postinstall_cmds='chmod +x $lib'
+  ;;
+
+sunos4*)
+  version_type=sunos
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
+  finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir'
+  shlibpath_var=LD_LIBRARY_PATH
+  shlibpath_overrides_runpath=yes
+  if test "$with_gnu_ld" = yes; then
+    need_lib_prefix=no
+  fi
+  need_version=yes
+  ;;
+
+sysv4 | sysv4.3*)
+  version_type=linux # correct to gnu/linux during the next big refactor
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
+  soname_spec='${libname}${release}${shared_ext}$major'
+  shlibpath_var=LD_LIBRARY_PATH
+  case $host_vendor in
+    sni)
+      shlibpath_overrides_runpath=no
+      need_lib_prefix=no
+      runpath_var=LD_RUN_PATH
+      ;;
+    siemens)
+      need_lib_prefix=no
+      ;;
+    motorola)
+      need_lib_prefix=no
+      need_version=no
+      shlibpath_overrides_runpath=no
+      sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'
+      ;;
+  esac
+  ;;
+
+sysv4*MP*)
+  if test -d /usr/nec ;then
+    version_type=linux # correct to gnu/linux during the next big refactor
+    library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}'
+    soname_spec='$libname${shared_ext}.$major'
+    shlibpath_var=LD_LIBRARY_PATH
+  fi
+  ;;
+
+sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
+  version_type=freebsd-elf
+  need_lib_prefix=no
+  need_version=no
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
+  soname_spec='${libname}${release}${shared_ext}$major'
+  shlibpath_var=LD_LIBRARY_PATH
+  shlibpath_overrides_runpath=yes
+  hardcode_into_libs=yes
+  if test "$with_gnu_ld" = yes; then
+    sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'
+  else
+    sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'
+    case $host_os in
+      sco3.2v5*)
+        sys_lib_search_path_spec="$sys_lib_search_path_spec /lib"
+       ;;
+    esac
+  fi
+  sys_lib_dlsearch_path_spec='/usr/lib'
+  ;;
+
+tpf*)
+  # TPF is a cross-target only.  Preferred cross-host = GNU/Linux.
+  version_type=linux # correct to gnu/linux during the next big refactor
+  need_lib_prefix=no
+  need_version=no
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
+  shlibpath_var=LD_LIBRARY_PATH
+  shlibpath_overrides_runpath=no
+  hardcode_into_libs=yes
+  ;;
+
+uts4*)
+  version_type=linux # correct to gnu/linux during the next big refactor
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
+  soname_spec='${libname}${release}${shared_ext}$major'
+  shlibpath_var=LD_LIBRARY_PATH
+  ;;
+
+*)
+  dynamic_linker=no
+  ;;
+esac
+AC_MSG_RESULT([$dynamic_linker])
+test "$dynamic_linker" = no && can_build_shared=no
+
+variables_saved_for_relink="PATH $shlibpath_var $runpath_var"
+if test "$GCC" = yes; then
+  variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
+fi
+
+if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then
+  sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec"
+fi
+if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then
+  sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec"
+fi
+
+_LT_DECL([], [variables_saved_for_relink], [1],
+    [Variables whose values should be saved in libtool wrapper scripts and
+    restored at link time])
+_LT_DECL([], [need_lib_prefix], [0],
+    [Do we need the "lib" prefix for modules?])
+_LT_DECL([], [need_version], [0], [Do we need a version for libraries?])
+_LT_DECL([], [version_type], [0], [Library versioning type])
+_LT_DECL([], [runpath_var], [0],  [Shared library runtime path variable])
+_LT_DECL([], [shlibpath_var], [0],[Shared library path variable])
+_LT_DECL([], [shlibpath_overrides_runpath], [0],
+    [Is shlibpath searched before the hard-coded library search path?])
+_LT_DECL([], [libname_spec], [1], [Format of library name prefix])
+_LT_DECL([], [library_names_spec], [1],
+    [[List of archive names.  First name is the real one, the rest are links.
+    The last name is the one that the linker finds with -lNAME]])
+_LT_DECL([], [soname_spec], [1],
+    [[The coded name of the library, if different from the real name]])
+_LT_DECL([], [install_override_mode], [1],
+    [Permission mode override for installation of shared libraries])
+_LT_DECL([], [postinstall_cmds], [2],
+    [Command to use after installation of a shared archive])
+_LT_DECL([], [postuninstall_cmds], [2],
+    [Command to use after uninstallation of a shared archive])
+_LT_DECL([], [finish_cmds], [2],
+    [Commands used to finish a libtool library installation in a directory])
+_LT_DECL([], [finish_eval], [1],
+    [[As "finish_cmds", except a single script fragment to be evaled but
+    not shown]])
+_LT_DECL([], [hardcode_into_libs], [0],
+    [Whether we should hardcode library paths into libraries])
+_LT_DECL([], [sys_lib_search_path_spec], [2],
+    [Compile-time system search path for libraries])
+_LT_DECL([], [sys_lib_dlsearch_path_spec], [2],
+    [Run-time system search path for libraries])
+])# _LT_SYS_DYNAMIC_LINKER
+
+
+# _LT_PATH_TOOL_PREFIX(TOOL)
+# --------------------------
+# find a file program which can recognize shared library
+AC_DEFUN([_LT_PATH_TOOL_PREFIX],
+[m4_require([_LT_DECL_EGREP])dnl
+AC_MSG_CHECKING([for $1])
+AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
+[case $MAGIC_CMD in
+[[\\/*] |  ?:[\\/]*])
+  lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
+  ;;
+*)
+  lt_save_MAGIC_CMD="$MAGIC_CMD"
+  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
+dnl $ac_dummy forces splitting on constant user-supplied paths.
+dnl POSIX.2 word splitting is done only on the output of word expansions,
+dnl not every word.  This closes a longstanding sh security hole.
+  ac_dummy="m4_if([$2], , $PATH, [$2])"
+  for ac_dir in $ac_dummy; do
+    IFS="$lt_save_ifs"
+    test -z "$ac_dir" && ac_dir=.
+    if test -f $ac_dir/$1; then
+      lt_cv_path_MAGIC_CMD="$ac_dir/$1"
+      if test -n "$file_magic_test_file"; then
+       case $deplibs_check_method in
+       "file_magic "*)
+         file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
+         MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
+         if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
+           $EGREP "$file_magic_regex" > /dev/null; then
+           :
+         else
+           cat <<_LT_EOF 1>&2
+
+*** Warning: the command libtool uses to detect shared libraries,
+*** $file_magic_cmd, produces output that libtool cannot recognize.
+*** The result is that libtool may fail to recognize shared libraries
+*** as such.  This will affect the creation of libtool libraries that
+*** depend on shared libraries, but programs linked with such libtool
+*** libraries will work regardless of this problem.  Nevertheless, you
+*** may want to report the problem to your system manager and/or to
+*** bug-libtool@gnu.org
+
+_LT_EOF
+         fi ;;
+       esac
+      fi
+      break
+    fi
+  done
+  IFS="$lt_save_ifs"
+  MAGIC_CMD="$lt_save_MAGIC_CMD"
+  ;;
+esac])
+MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
+if test -n "$MAGIC_CMD"; then
+  AC_MSG_RESULT($MAGIC_CMD)
+else
+  AC_MSG_RESULT(no)
+fi
+_LT_DECL([], [MAGIC_CMD], [0],
+        [Used to examine libraries when file_magic_cmd begins with "file"])dnl
+])# _LT_PATH_TOOL_PREFIX
+
+# Old name:
+AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX])
+dnl aclocal-1.4 backwards compatibility:
+dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], [])
+
+
+# _LT_PATH_MAGIC
+# --------------
+# find a file program which can recognize a shared library
+m4_defun([_LT_PATH_MAGIC],
+[_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH)
+if test -z "$lt_cv_path_MAGIC_CMD"; then
+  if test -n "$ac_tool_prefix"; then
+    _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH)
+  else
+    MAGIC_CMD=:
+  fi
+fi
+])# _LT_PATH_MAGIC
+
+
+# LT_PATH_LD
+# ----------
+# find the pathname to the GNU or non-GNU linker
+AC_DEFUN([LT_PATH_LD],
+[AC_REQUIRE([AC_PROG_CC])dnl
+AC_REQUIRE([AC_CANONICAL_HOST])dnl
+AC_REQUIRE([AC_CANONICAL_BUILD])dnl
+m4_require([_LT_DECL_SED])dnl
+m4_require([_LT_DECL_EGREP])dnl
+m4_require([_LT_PROG_ECHO_BACKSLASH])dnl
+
+AC_ARG_WITH([gnu-ld],
+    [AS_HELP_STRING([--with-gnu-ld],
+       [assume the C compiler uses GNU ld @<:@default=no@:>@])],
+    [test "$withval" = no || with_gnu_ld=yes],
+    [with_gnu_ld=no])dnl
+
+ac_prog=ld
+if test "$GCC" = yes; then
+  # Check if gcc -print-prog-name=ld gives a path.
+  AC_MSG_CHECKING([for ld used by $CC])
+  case $host in
+  *-*-mingw*)
+    # gcc leaves a trailing carriage return which upsets mingw
+    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
+  *)
+    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
+  esac
+  case $ac_prog in
+    # Accept absolute paths.
+    [[\\/]]* | ?:[[\\/]]*)
+      re_direlt='/[[^/]][[^/]]*/\.\./'
+      # Canonicalize the pathname of ld
+      ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'`
+      while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do
+       ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"`
+      done
+      test -z "$LD" && LD="$ac_prog"
+      ;;
+  "")
+    # If it fails, then pretend we aren't using GCC.
+    ac_prog=ld
+    ;;
+  *)
+    # If it is relative, then search for the first ld in PATH.
+    with_gnu_ld=unknown
+    ;;
+  esac
+elif test "$with_gnu_ld" = yes; then
+  AC_MSG_CHECKING([for GNU ld])
+else
+  AC_MSG_CHECKING([for non-GNU ld])
+fi
+AC_CACHE_VAL(lt_cv_path_LD,
+[if test -z "$LD"; then
+  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
+  for ac_dir in $PATH; do
+    IFS="$lt_save_ifs"
+    test -z "$ac_dir" && ac_dir=.
+    if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
+      lt_cv_path_LD="$ac_dir/$ac_prog"
+      # Check to see if the program is GNU ld.  I'd rather use --version,
+      # but apparently some variants of GNU ld only accept -v.
+      # Break only if it was the GNU/non-GNU ld that we prefer.
+      case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
+      *GNU* | *'with BFD'*)
+       test "$with_gnu_ld" != no && break
+       ;;
+      *)
+       test "$with_gnu_ld" != yes && break
+       ;;
+      esac
+    fi
+  done
+  IFS="$lt_save_ifs"
+else
+  lt_cv_path_LD="$LD" # Let the user override the test with a path.
+fi])
+LD="$lt_cv_path_LD"
+if test -n "$LD"; then
+  AC_MSG_RESULT($LD)
+else
+  AC_MSG_RESULT(no)
+fi
+test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
+_LT_PATH_LD_GNU
+AC_SUBST([LD])
+
+_LT_TAGDECL([], [LD], [1], [The linker used to build libraries])
+])# LT_PATH_LD
+
+# Old names:
+AU_ALIAS([AM_PROG_LD], [LT_PATH_LD])
+AU_ALIAS([AC_PROG_LD], [LT_PATH_LD])
+dnl aclocal-1.4 backwards compatibility:
+dnl AC_DEFUN([AM_PROG_LD], [])
+dnl AC_DEFUN([AC_PROG_LD], [])
+
+
+# _LT_PATH_LD_GNU
+#- --------------
+m4_defun([_LT_PATH_LD_GNU],
+[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], lt_cv_prog_gnu_ld,
+[# I'd rather use --version here, but apparently some GNU lds only accept -v.
+case `$LD -v 2>&1 </dev/null` in
+*GNU* | *'with BFD'*)
+  lt_cv_prog_gnu_ld=yes
+  ;;
+*)
+  lt_cv_prog_gnu_ld=no
+  ;;
+esac])
+with_gnu_ld=$lt_cv_prog_gnu_ld
+])# _LT_PATH_LD_GNU
+
+
+# _LT_CMD_RELOAD
+# --------------
+# find reload flag for linker
+#   -- PORTME Some linkers may need a different reload flag.
+m4_defun([_LT_CMD_RELOAD],
+[AC_CACHE_CHECK([for $LD option to reload object files],
+  lt_cv_ld_reload_flag,
+  [lt_cv_ld_reload_flag='-r'])
+reload_flag=$lt_cv_ld_reload_flag
+case $reload_flag in
+"" | " "*) ;;
+*) reload_flag=" $reload_flag" ;;
+esac
+reload_cmds='$LD$reload_flag -o $output$reload_objs'
+case $host_os in
+  cygwin* | mingw* | pw32* | cegcc*)
+    if test "$GCC" != yes; then
+      reload_cmds=false
+    fi
+    ;;
+  darwin*)
+    if test "$GCC" = yes; then
+      reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs'
+    else
+      reload_cmds='$LD$reload_flag -o $output$reload_objs'
+    fi
+    ;;
+esac
+_LT_TAGDECL([], [reload_flag], [1], [How to create reloadable object files])dnl
+_LT_TAGDECL([], [reload_cmds], [2])dnl
+])# _LT_CMD_RELOAD
+
+
+# _LT_CHECK_MAGIC_METHOD
+# ----------------------
+# how to check for library dependencies
+#  -- PORTME fill in with the dynamic library characteristics
+m4_defun([_LT_CHECK_MAGIC_METHOD],
+[m4_require([_LT_DECL_EGREP])
+m4_require([_LT_DECL_OBJDUMP])
+AC_CACHE_CHECK([how to recognize dependent libraries],
+lt_cv_deplibs_check_method,
+[lt_cv_file_magic_cmd='$MAGIC_CMD'
+lt_cv_file_magic_test_file=
+lt_cv_deplibs_check_method='unknown'
+# Need to set the preceding variable on all platforms that support
+# interlibrary dependencies.
+# 'none' -- dependencies not supported.
+# `unknown' -- same as none, but documents that we really don't know.
+# 'pass_all' -- all dependencies passed with no checks.
+# 'test_compile' -- check by making test program.
+# 'file_magic [[regex]]' -- check by looking for files in library path
+# which responds to the $file_magic_cmd with a given extended regex.
+# If you have `file' or equivalent on your system and you're not sure
+# whether `pass_all' will *always* work, you probably want this one.
+
+case $host_os in
+aix[[4-9]]*)
+  lt_cv_deplibs_check_method=pass_all
+  ;;
+
+beos*)
+  lt_cv_deplibs_check_method=pass_all
+  ;;
+
+bsdi[[45]]*)
+  lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)'
+  lt_cv_file_magic_cmd='/usr/bin/file -L'
+  lt_cv_file_magic_test_file=/shlib/libc.so
+  ;;
+
+cygwin*)
+  # func_win32_libid is a shell function defined in ltmain.sh
+  lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
+  lt_cv_file_magic_cmd='func_win32_libid'
+  ;;
+
+mingw* | pw32*)
+  # Base MSYS/MinGW do not provide the 'file' command needed by
+  # func_win32_libid shell function, so use a weaker test based on 'objdump',
+  # unless we find 'file', for example because we are cross-compiling.
+  # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin.
+  if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then
+    lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
+    lt_cv_file_magic_cmd='func_win32_libid'
+  else
+    # Keep this pattern in sync with the one in func_win32_libid.
+    lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)'
+    lt_cv_file_magic_cmd='$OBJDUMP -f'
+  fi
+  ;;
+
+cegcc*)
+  # use the weaker test based on 'objdump'. See mingw*.
+  lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?'
+  lt_cv_file_magic_cmd='$OBJDUMP -f'
+  ;;
+
+darwin* | rhapsody*)
+  lt_cv_deplibs_check_method=pass_all
+  ;;
+
+freebsd* | dragonfly*)
+  if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
+    case $host_cpu in
+    i*86 )
+      # Not sure whether the presence of OpenBSD here was a mistake.
+      # Let's accept both of them until this is cleared up.
+      lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library'
+      lt_cv_file_magic_cmd=/usr/bin/file
+      lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
+      ;;
+    esac
+  else
+    lt_cv_deplibs_check_method=pass_all
+  fi
+  ;;
+
+gnu*)
+  lt_cv_deplibs_check_method=pass_all
+  ;;
+
+haiku*)
+  lt_cv_deplibs_check_method=pass_all
+  ;;
+
+hpux10.20* | hpux11*)
+  lt_cv_file_magic_cmd=/usr/bin/file
+  case $host_cpu in
+  ia64*)
+    lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64'
+    lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so
+    ;;
+  hppa*64*)
+    [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]']
+    lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl
+    ;;
+  *)
+    lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\.[[0-9]]) shared library'
+    lt_cv_file_magic_test_file=/usr/lib/libc.sl
+    ;;
+  esac
+  ;;
+
+interix[[3-9]]*)
+  # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here
+  lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$'
+  ;;
+
+irix5* | irix6* | nonstopux*)
+  case $LD in
+  *-32|*"-32 ") libmagic=32-bit;;
+  *-n32|*"-n32 ") libmagic=N32;;
+  *-64|*"-64 ") libmagic=64-bit;;
+  *) libmagic=never-match;;
+  esac
+  lt_cv_deplibs_check_method=pass_all
+  ;;
+
+# This must be glibc/ELF.
+linux* | k*bsd*-gnu | kopensolaris*-gnu)
+  lt_cv_deplibs_check_method=pass_all
+  ;;
+
+netbsd* | netbsdelf*-gnu)
+  if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
+    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
+  else
+    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$'
+  fi
+  ;;
+
+newos6*)
+  lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)'
+  lt_cv_file_magic_cmd=/usr/bin/file
+  lt_cv_file_magic_test_file=/usr/lib/libnls.so
+  ;;
+
+*nto* | *qnx*)
+  lt_cv_deplibs_check_method=pass_all
+  ;;
+
+openbsd*)
+  if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
+    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$'
+  else
+    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
+  fi
+  ;;
+
+osf3* | osf4* | osf5*)
+  lt_cv_deplibs_check_method=pass_all
+  ;;
+
+rdos*)
+  lt_cv_deplibs_check_method=pass_all
+  ;;
+
+solaris*)
+  lt_cv_deplibs_check_method=pass_all
+  ;;
+
+sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
+  lt_cv_deplibs_check_method=pass_all
+  ;;
+
+sysv4 | sysv4.3*)
+  case $host_vendor in
+  motorola)
+    lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]'
+    lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`
+    ;;
+  ncr)
+    lt_cv_deplibs_check_method=pass_all
+    ;;
+  sequent)
+    lt_cv_file_magic_cmd='/bin/file'
+    lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )'
+    ;;
+  sni)
+    lt_cv_file_magic_cmd='/bin/file'
+    lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib"
+    lt_cv_file_magic_test_file=/lib/libc.so
+    ;;
+  siemens)
+    lt_cv_deplibs_check_method=pass_all
+    ;;
+  pc)
+    lt_cv_deplibs_check_method=pass_all
+    ;;
+  esac
+  ;;
+
+tpf*)
+  lt_cv_deplibs_check_method=pass_all
+  ;;
+esac
+])
+
+file_magic_glob=
+want_nocaseglob=no
+if test "$build" = "$host"; then
+  case $host_os in
+  mingw* | pw32*)
+    if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then
+      want_nocaseglob=yes
+    else
+      file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"`
+    fi
+    ;;
+  esac
+fi
+
+file_magic_cmd=$lt_cv_file_magic_cmd
+deplibs_check_method=$lt_cv_deplibs_check_method
+test -z "$deplibs_check_method" && deplibs_check_method=unknown
+
+_LT_DECL([], [deplibs_check_method], [1],
+    [Method to check whether dependent libraries are shared objects])
+_LT_DECL([], [file_magic_cmd], [1],
+    [Command to use when deplibs_check_method = "file_magic"])
+_LT_DECL([], [file_magic_glob], [1],
+    [How to find potential files when deplibs_check_method = "file_magic"])
+_LT_DECL([], [want_nocaseglob], [1],
+    [Find potential files using nocaseglob when deplibs_check_method = "file_magic"])
+])# _LT_CHECK_MAGIC_METHOD
+
+
+# LT_PATH_NM
+# ----------
+# find the pathname to a BSD- or MS-compatible name lister
+AC_DEFUN([LT_PATH_NM],
+[AC_REQUIRE([AC_PROG_CC])dnl
+AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM,
+[if test -n "$NM"; then
+  # Let the user override the test.
+  lt_cv_path_NM="$NM"
+else
+  lt_nm_to_check="${ac_tool_prefix}nm"
+  if test -n "$ac_tool_prefix" && test "$build" = "$host"; then
+    lt_nm_to_check="$lt_nm_to_check nm"
+  fi
+  for lt_tmp_nm in $lt_nm_to_check; do
+    lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
+    for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do
+      IFS="$lt_save_ifs"
+      test -z "$ac_dir" && ac_dir=.
+      tmp_nm="$ac_dir/$lt_tmp_nm"
+      if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then
+       # Check to see if the nm accepts a BSD-compat flag.
+       # Adding the `sed 1q' prevents false positives on HP-UX, which says:
+       #   nm: unknown option "B" ignored
+       # Tru64's nm complains that /dev/null is an invalid object file
+       case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in
+       */dev/null* | *'Invalid file or object type'*)
+         lt_cv_path_NM="$tmp_nm -B"
+         break
+         ;;
+       *)
+         case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
+         */dev/null*)
+           lt_cv_path_NM="$tmp_nm -p"
+           break
+           ;;
+         *)
+           lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
+           continue # so that we can try to find one that supports BSD flags
+           ;;
+         esac
+         ;;
+       esac
+      fi
+    done
+    IFS="$lt_save_ifs"
+  done
+  : ${lt_cv_path_NM=no}
+fi])
+if test "$lt_cv_path_NM" != "no"; then
+  NM="$lt_cv_path_NM"
+else
+  # Didn't find any BSD compatible name lister, look for dumpbin.
+  if test -n "$DUMPBIN"; then :
+    # Let the user override the test.
+  else
+    AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :)
+    case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in
+    *COFF*)
+      DUMPBIN="$DUMPBIN -symbols"
+      ;;
+    *)
+      DUMPBIN=:
+      ;;
+    esac
+  fi
+  AC_SUBST([DUMPBIN])
+  if test "$DUMPBIN" != ":"; then
+    NM="$DUMPBIN"
+  fi
+fi
+test -z "$NM" && NM=nm
+AC_SUBST([NM])
+_LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl
+
+AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface],
+  [lt_cv_nm_interface="BSD nm"
+  echo "int some_variable = 0;" > conftest.$ac_ext
+  (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD)
+  (eval "$ac_compile" 2>conftest.err)
+  cat conftest.err >&AS_MESSAGE_LOG_FD
+  (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD)
+  (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
+  cat conftest.err >&AS_MESSAGE_LOG_FD
+  (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD)
+  cat conftest.out >&AS_MESSAGE_LOG_FD
+  if $GREP 'External.*some_variable' conftest.out > /dev/null; then
+    lt_cv_nm_interface="MS dumpbin"
+  fi
+  rm -f conftest*])
+])# LT_PATH_NM
+
+# Old names:
+AU_ALIAS([AM_PROG_NM], [LT_PATH_NM])
+AU_ALIAS([AC_PROG_NM], [LT_PATH_NM])
+dnl aclocal-1.4 backwards compatibility:
+dnl AC_DEFUN([AM_PROG_NM], [])
+dnl AC_DEFUN([AC_PROG_NM], [])
+
+# _LT_CHECK_SHAREDLIB_FROM_LINKLIB
+# --------------------------------
+# how to determine the name of the shared library
+# associated with a specific link library.
+#  -- PORTME fill in with the dynamic library characteristics
+m4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB],
+[m4_require([_LT_DECL_EGREP])
+m4_require([_LT_DECL_OBJDUMP])
+m4_require([_LT_DECL_DLLTOOL])
+AC_CACHE_CHECK([how to associate runtime and link libraries],
+lt_cv_sharedlib_from_linklib_cmd,
+[lt_cv_sharedlib_from_linklib_cmd='unknown'
+
+case $host_os in
+cygwin* | mingw* | pw32* | cegcc*)
+  # two different shell functions defined in ltmain.sh
+  # decide which to use based on capabilities of $DLLTOOL
+  case `$DLLTOOL --help 2>&1` in
+  *--identify-strict*)
+    lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib
+    ;;
+  *)
+    lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback
+    ;;
+  esac
+  ;;
+*)
+  # fallback: assume linklib IS sharedlib
+  lt_cv_sharedlib_from_linklib_cmd="$ECHO"
+  ;;
+esac
+])
+sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd
+test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO
+
+_LT_DECL([], [sharedlib_from_linklib_cmd], [1],
+    [Command to associate shared and link libraries])
+])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB
+
+
+# _LT_PATH_MANIFEST_TOOL
+# ----------------------
+# locate the manifest tool
+m4_defun([_LT_PATH_MANIFEST_TOOL],
+[AC_CHECK_TOOL(MANIFEST_TOOL, mt, :)
+test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt
+AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool],
+  [lt_cv_path_mainfest_tool=no
+  echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&AS_MESSAGE_LOG_FD
+  $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out
+  cat conftest.err >&AS_MESSAGE_LOG_FD
+  if $GREP 'Manifest Tool' conftest.out > /dev/null; then
+    lt_cv_path_mainfest_tool=yes
+  fi
+  rm -f conftest*])
+if test "x$lt_cv_path_mainfest_tool" != xyes; then
+  MANIFEST_TOOL=:
+fi
+_LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl
+])# _LT_PATH_MANIFEST_TOOL
+
+
+# LT_LIB_M
+# --------
+# check for math library
+AC_DEFUN([LT_LIB_M],
+[AC_REQUIRE([AC_CANONICAL_HOST])dnl
+LIBM=
+case $host in
+*-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*)
+  # These system don't have libm, or don't need it
+  ;;
+*-ncr-sysv4.3*)
+  AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw")
+  AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm")
+  ;;
+*)
+  AC_CHECK_LIB(m, cos, LIBM="-lm")
+  ;;
+esac
+AC_SUBST([LIBM])
+])# LT_LIB_M
+
+# Old name:
+AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M])
+dnl aclocal-1.4 backwards compatibility:
+dnl AC_DEFUN([AC_CHECK_LIBM], [])
+
+
+# _LT_COMPILER_NO_RTTI([TAGNAME])
+# -------------------------------
+m4_defun([_LT_COMPILER_NO_RTTI],
+[m4_require([_LT_TAG_COMPILER])dnl
+
+_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
+
+if test "$GCC" = yes; then
+  case $cc_basename in
+  nvcc*)
+    _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;;
+  *)
+    _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;;
+  esac
+
+  _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions],
+    lt_cv_prog_compiler_rtti_exceptions,
+    [-fno-rtti -fno-exceptions], [],
+    [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"])
+fi
+_LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1],
+       [Compiler flag to turn off builtin functions])
+])# _LT_COMPILER_NO_RTTI
+
+
+# _LT_CMD_GLOBAL_SYMBOLS
+# ----------------------
+m4_defun([_LT_CMD_GLOBAL_SYMBOLS],
+[AC_REQUIRE([AC_CANONICAL_HOST])dnl
+AC_REQUIRE([AC_PROG_CC])dnl
+AC_REQUIRE([AC_PROG_AWK])dnl
+AC_REQUIRE([LT_PATH_NM])dnl
+AC_REQUIRE([LT_PATH_LD])dnl
+m4_require([_LT_DECL_SED])dnl
+m4_require([_LT_DECL_EGREP])dnl
+m4_require([_LT_TAG_COMPILER])dnl
+
+# Check for command to grab the raw symbol name followed by C symbol from nm.
+AC_MSG_CHECKING([command to parse $NM output from $compiler object])
+AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe],
+[
+# These are sane defaults that work on at least a few old systems.
+# [They come from Ultrix.  What could be older than Ultrix?!! ;)]
+
+# Character class describing NM global symbol codes.
+symcode='[[BCDEGRST]]'
+
+# Regexp to match symbols that can be accessed directly from C.
+sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)'
+
+# Define system-specific variables.
+case $host_os in
+aix*)
+  symcode='[[BCDT]]'
+  ;;
+cygwin* | mingw* | pw32* | cegcc*)
+  symcode='[[ABCDGISTW]]'
+  ;;
+hpux*)
+  if test "$host_cpu" = ia64; then
+    symcode='[[ABCDEGRST]]'
+  fi
+  ;;
+irix* | nonstopux*)
+  symcode='[[BCDEGRST]]'
+  ;;
+osf*)
+  symcode='[[BCDEGQRST]]'
+  ;;
+solaris*)
+  symcode='[[BDRT]]'
+  ;;
+sco3.2v5*)
+  symcode='[[DT]]'
+  ;;
+sysv4.2uw2*)
+  symcode='[[DT]]'
+  ;;
+sysv5* | sco5v6* | unixware* | OpenUNIX*)
+  symcode='[[ABDT]]'
+  ;;
+sysv4)
+  symcode='[[DFNSTU]]'
+  ;;
+esac
+
+# If we're using GNU nm, then use its standard symbol codes.
+case `$NM -V 2>&1` in
+*GNU* | *'with BFD'*)
+  symcode='[[ABCDGIRSTW]]' ;;
+esac
+
+# Transform an extracted symbol line into a proper C declaration.
+# Some systems (esp. on ia64) link data and code symbols differently,
+# so use this general approach.
+lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
+
+# Transform an extracted symbol line into symbol name and symbol address
+lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/  {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/  {\"\2\", (void *) \&\2},/p'"
+lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/  {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \(lib[[^ ]]*\)$/  {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/  {\"lib\2\", (void *) \&\2},/p'"
+
+# Handle CRLF in mingw tool chain
+opt_cr=
+case $build_os in
+mingw*)
+  opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp
+  ;;
+esac
+
+# Try without a prefix underscore, then with it.
+for ac_symprfx in "" "_"; do
+
+  # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol.
+  symxfrm="\\1 $ac_symprfx\\2 \\2"
+
+  # Write the raw and C identifiers.
+  if test "$lt_cv_nm_interface" = "MS dumpbin"; then
+    # Fake it for dumpbin and say T for any non-static function
+    # and D for any global variable.
+    # Also find C++ and __fastcall symbols from MSVC++,
+    # which start with @ or ?.
+    lt_cv_sys_global_symbol_pipe="$AWK ['"\
+"     {last_section=section; section=\$ 3};"\
+"     /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\
+"     /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\
+"     \$ 0!~/External *\|/{next};"\
+"     / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\
+"     {if(hide[section]) next};"\
+"     {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\
+"     {split(\$ 0, a, /\||\r/); split(a[2], s)};"\
+"     s[1]~/^[@?]/{print s[1], s[1]; next};"\
+"     s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\
+"     ' prfx=^$ac_symprfx]"
+  else
+    lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[    ]]\($symcode$symcode*\)[[       ]][[    ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'"
+  fi
+  lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'"
+
+  # Check to see that the pipe works correctly.
+  pipe_works=no
+
+  rm -f conftest*
+  cat > conftest.$ac_ext <<_LT_EOF
+#ifdef __cplusplus
+extern "C" {
+#endif
+char nm_test_var;
+void nm_test_func(void);
+void nm_test_func(void){}
+#ifdef __cplusplus
+}
+#endif
+int main(){nm_test_var='a';nm_test_func();return(0);}
+_LT_EOF
+
+  if AC_TRY_EVAL(ac_compile); then
+    # Now try to grab the symbols.
+    nlist=conftest.nm
+    if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then
+      # Try sorting and uniquifying the output.
+      if sort "$nlist" | uniq > "$nlist"T; then
+       mv -f "$nlist"T "$nlist"
+      else
+       rm -f "$nlist"T
+      fi
+
+      # Make sure that we snagged all the symbols we need.
+      if $GREP ' nm_test_var$' "$nlist" >/dev/null; then
+       if $GREP ' nm_test_func$' "$nlist" >/dev/null; then
+         cat <<_LT_EOF > conftest.$ac_ext
+/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests.  */
+#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE)
+/* DATA imports from DLLs on WIN32 con't be const, because runtime
+   relocations are performed -- see ld's documentation on pseudo-relocs.  */
+# define LT@&t@_DLSYM_CONST
+#elif defined(__osf__)
+/* This system does not cope well with relocations in const data.  */
+# define LT@&t@_DLSYM_CONST
+#else
+# define LT@&t@_DLSYM_CONST const
+#endif
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+_LT_EOF
+         # Now generate the symbol file.
+         eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext'
+
+         cat <<_LT_EOF >> conftest.$ac_ext
+
+/* The mapping between symbol names and symbols.  */
+LT@&t@_DLSYM_CONST struct {
+  const char *name;
+  void       *address;
+}
+lt__PROGRAM__LTX_preloaded_symbols[[]] =
+{
+  { "@PROGRAM@", (void *) 0 },
+_LT_EOF
+         $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/  {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext
+         cat <<\_LT_EOF >> conftest.$ac_ext
+  {0, (void *) 0}
+};
+
+/* This works around a problem in FreeBSD linker */
+#ifdef FREEBSD_WORKAROUND
+static const void *lt_preloaded_setup() {
+  return lt__PROGRAM__LTX_preloaded_symbols;
+}
+#endif
+
+#ifdef __cplusplus
+}
+#endif
+_LT_EOF
+         # Now try linking the two files.
+         mv conftest.$ac_objext conftstm.$ac_objext
+         lt_globsym_save_LIBS=$LIBS
+         lt_globsym_save_CFLAGS=$CFLAGS
+         LIBS="conftstm.$ac_objext"
+         CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)"
+         if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then
+           pipe_works=yes
+         fi
+         LIBS=$lt_globsym_save_LIBS
+         CFLAGS=$lt_globsym_save_CFLAGS
+       else
+         echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD
+       fi
+      else
+       echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD
+      fi
+    else
+      echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD
+    fi
+  else
+    echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD
+    cat conftest.$ac_ext >&5
+  fi
+  rm -rf conftest* conftst*
+
+  # Do not use the global_symbol_pipe unless it works.
+  if test "$pipe_works" = yes; then
+    break
+  else
+    lt_cv_sys_global_symbol_pipe=
+  fi
+done
+])
+if test -z "$lt_cv_sys_global_symbol_pipe"; then
+  lt_cv_sys_global_symbol_to_cdecl=
+fi
+if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then
+  AC_MSG_RESULT(failed)
+else
+  AC_MSG_RESULT(ok)
+fi
+
+# Response file support.
+if test "$lt_cv_nm_interface" = "MS dumpbin"; then
+  nm_file_list_spec='@'
+elif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then
+  nm_file_list_spec='@'
+fi
+
+_LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1],
+    [Take the output of nm and produce a listing of raw symbols and C names])
+_LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1],
+    [Transform the output of nm in a proper C declaration])
+_LT_DECL([global_symbol_to_c_name_address],
+    [lt_cv_sys_global_symbol_to_c_name_address], [1],
+    [Transform the output of nm in a C name address pair])
+_LT_DECL([global_symbol_to_c_name_address_lib_prefix],
+    [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1],
+    [Transform the output of nm in a C name address pair when lib prefix is needed])
+_LT_DECL([], [nm_file_list_spec], [1],
+    [Specify filename containing input files for $NM])
+]) # _LT_CMD_GLOBAL_SYMBOLS
+
+
+# _LT_COMPILER_PIC([TAGNAME])
+# ---------------------------
+m4_defun([_LT_COMPILER_PIC],
+[m4_require([_LT_TAG_COMPILER])dnl
+_LT_TAGVAR(lt_prog_compiler_wl, $1)=
+_LT_TAGVAR(lt_prog_compiler_pic, $1)=
+_LT_TAGVAR(lt_prog_compiler_static, $1)=
+
+m4_if([$1], [CXX], [
+  # C++ specific cases for pic, static, wl, etc.
+  if test "$GXX" = yes; then
+    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+    _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
+
+    case $host_os in
+    aix*)
+      # All AIX code is PIC.
+      if test "$host_cpu" = ia64; then
+       # AIX 5 now supports IA64 processor
+       _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
+      fi
+      ;;
+
+    amigaos*)
+      case $host_cpu in
+      powerpc)
+            # see comment about AmigaOS4 .so support
+            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
+        ;;
+      m68k)
+            # FIXME: we need at least 68020 code to build shared libraries, but
+            # adding the `-m68020' flag to GCC prevents building anything better,
+            # like `-m68040'.
+            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
+        ;;
+      esac
+      ;;
+
+    beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
+      # PIC is the default for these OSes.
+      ;;
+    mingw* | cygwin* | os2* | pw32* | cegcc*)
+      # This hack is so that the source file can tell whether it is being
+      # built for inclusion in a dll (and should export symbols for example).
+      # Although the cygwin gcc ignores -fPIC, still need this for old-style
+      # (--disable-auto-import) libraries
+      m4_if([$1], [GCJ], [],
+       [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
+      ;;
+    darwin* | rhapsody*)
+      # PIC is the default on this platform
+      # Common symbols not allowed in MH_DYLIB files
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
+      ;;
+    *djgpp*)
+      # DJGPP does not support shared libraries at all
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)=
+      ;;
+    haiku*)
+      # PIC is the default for Haiku.
+      # The "-static" flag exists, but is broken.
+      _LT_TAGVAR(lt_prog_compiler_static, $1)=
+      ;;
+    interix[[3-9]]*)
+      # Interix 3.x gcc -fpic/-fPIC options generate broken code.
+      # Instead, we relocate shared libraries at runtime.
+      ;;
+    sysv4*MP*)
+      if test -d /usr/nec; then
+       _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
+      fi
+      ;;
+    hpux*)
+      # PIC is the default for 64-bit PA HP-UX, but not for 32-bit
+      # PA HP-UX.  On IA64 HP-UX, PIC is the default but the pic flag
+      # sets the default TLS model and affects inlining.
+      case $host_cpu in
+      hppa*64*)
+       ;;
+      *)
+       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
+       ;;
+      esac
+      ;;
+    *qnx* | *nto*)
+      # QNX uses GNU C++, but need to define -shared option too, otherwise
+      # it will coredump.
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
+      ;;
+    *)
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
+      ;;
+    esac
+  else
+    case $host_os in
+      aix[[4-9]]*)
+       # All AIX code is PIC.
+       if test "$host_cpu" = ia64; then
+         # AIX 5 now supports IA64 processor
+         _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
+       else
+         _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
+       fi
+       ;;
+      chorus*)
+       case $cc_basename in
+       cxch68*)
+         # Green Hills C++ Compiler
+         # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a"
+         ;;
+       esac
+       ;;
+      mingw* | cygwin* | os2* | pw32* | cegcc*)
+       # This hack is so that the source file can tell whether it is being
+       # built for inclusion in a dll (and should export symbols for example).
+       m4_if([$1], [GCJ], [],
+         [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
+       ;;
+      dgux*)
+       case $cc_basename in
+         ec++*)
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
+           ;;
+         ghcx*)
+           # Green Hills C++ Compiler
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
+           ;;
+         *)
+           ;;
+       esac
+       ;;
+      freebsd* | dragonfly*)
+       # FreeBSD uses GNU C++
+       ;;
+      hpux9* | hpux10* | hpux11*)
+       case $cc_basename in
+         CC*)
+           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
+           if test "$host_cpu" != ia64; then
+             _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
+           fi
+           ;;
+         aCC*)
+           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
+           case $host_cpu in
+           hppa*64*|ia64*)
+             # +Z the default
+             ;;
+           *)
+             _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
+             ;;
+           esac
+           ;;
+         *)
+           ;;
+       esac
+       ;;
+      interix*)
+       # This is c89, which is MS Visual C++ (no shared libs)
+       # Anyone wants to do a port?
+       ;;
+      irix5* | irix6* | nonstopux*)
+       case $cc_basename in
+         CC*)
+           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
+           # CC pic flag -KPIC is the default.
+           ;;
+         *)
+           ;;
+       esac
+       ;;
+      linux* | k*bsd*-gnu | kopensolaris*-gnu)
+       case $cc_basename in
+         KCC*)
+           # KAI C++ Compiler
+           _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
+           ;;
+         ecpc* )
+           # old Intel C++ for x86_64 which still supported -KPIC.
+           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
+           ;;
+         icpc* )
+           # Intel C++, used to be incompatible with GCC.
+           # ICC 10 doesn't accept -KPIC any more.
+           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
+           ;;
+         pgCC* | pgcpp*)
+           # Portland Group C++ compiler
+           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
+           ;;
+         cxx*)
+           # Compaq C++
+           # Make sure the PIC flag is empty.  It appears that all Alpha
+           # Linux and Compaq Tru64 Unix objects are PIC.
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)=
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
+           ;;
+         xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*)
+           # IBM XL 8.0, 9.0 on PPC and BlueGene
+           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic'
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink'
+           ;;
+         *)
+           case `$CC -V 2>&1 | sed 5q` in
+           *Sun\ C*)
+             # Sun C++ 5.9
+             _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
+             _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
+             _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
+             ;;
+           esac
+           ;;
+       esac
+       ;;
+      lynxos*)
+       ;;
+      m88k*)
+       ;;
+      mvs*)
+       case $cc_basename in
+         cxx*)
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall'
+           ;;
+         *)
+           ;;
+       esac
+       ;;
+      netbsd* | netbsdelf*-gnu)
+       ;;
+      *qnx* | *nto*)
+        # QNX uses GNU C++, but need to define -shared option too, otherwise
+        # it will coredump.
+        _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
+        ;;
+      osf3* | osf4* | osf5*)
+       case $cc_basename in
+         KCC*)
+           _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
+           ;;
+         RCC*)
+           # Rational C++ 2.4.1
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
+           ;;
+         cxx*)
+           # Digital/Compaq C++
+           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+           # Make sure the PIC flag is empty.  It appears that all Alpha
+           # Linux and Compaq Tru64 Unix objects are PIC.
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)=
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
+           ;;
+         *)
+           ;;
+       esac
+       ;;
+      psos*)
+       ;;
+      solaris*)
+       case $cc_basename in
+         CC* | sunCC*)
+           # Sun C++ 4.2, 5.x and Centerline C++
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
+           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
+           ;;
+         gcx*)
+           # Green Hills C++ Compiler
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
+           ;;
+         *)
+           ;;
+       esac
+       ;;
+      sunos4*)
+       case $cc_basename in
+         CC*)
+           # Sun C++ 4.x
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
+           ;;
+         lcc*)
+           # Lucid
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
+           ;;
+         *)
+           ;;
+       esac
+       ;;
+      sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
+       case $cc_basename in
+         CC*)
+           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
+           _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
+           ;;
+       esac
+       ;;
+      tandem*)
+       case $cc_basename in
+         NCC*)
+           # NonStop-UX NCC 3.20
+           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
+           ;;
+         *)
+           ;;
+       esac
+       ;;
+      vxworks*)
+       ;;
+      *)
+       _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
+       ;;
+    esac
+  fi
+],
+[
+  if test "$GCC" = yes; then
+    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+    _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
+
+    case $host_os in
+      aix*)
+      # All AIX code is PIC.
+      if test "$host_cpu" = ia64; then
+       # AIX 5 now supports IA64 processor
+       _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
+      fi
+      ;;
+
+    amigaos*)
+      case $host_cpu in
+      powerpc)
+            # see comment about AmigaOS4 .so support
+            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
+        ;;
+      m68k)
+            # FIXME: we need at least 68020 code to build shared libraries, but
+            # adding the `-m68020' flag to GCC prevents building anything better,
+            # like `-m68040'.
+            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
+        ;;
+      esac
+      ;;
+
+    beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
+      # PIC is the default for these OSes.
+      ;;
+
+    mingw* | cygwin* | pw32* | os2* | cegcc*)
+      # This hack is so that the source file can tell whether it is being
+      # built for inclusion in a dll (and should export symbols for example).
+      # Although the cygwin gcc ignores -fPIC, still need this for old-style
+      # (--disable-auto-import) libraries
+      m4_if([$1], [GCJ], [],
+       [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
+      ;;
+
+    darwin* | rhapsody*)
+      # PIC is the default on this platform
+      # Common symbols not allowed in MH_DYLIB files
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
+      ;;
+
+    haiku*)
+      # PIC is the default for Haiku.
+      # The "-static" flag exists, but is broken.
+      _LT_TAGVAR(lt_prog_compiler_static, $1)=
+      ;;
+
+    hpux*)
+      # PIC is the default for 64-bit PA HP-UX, but not for 32-bit
+      # PA HP-UX.  On IA64 HP-UX, PIC is the default but the pic flag
+      # sets the default TLS model and affects inlining.
+      case $host_cpu in
+      hppa*64*)
+       # +Z the default
+       ;;
+      *)
+       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
+       ;;
+      esac
+      ;;
+
+    interix[[3-9]]*)
+      # Interix 3.x gcc -fpic/-fPIC options generate broken code.
+      # Instead, we relocate shared libraries at runtime.
+      ;;
+
+    msdosdjgpp*)
+      # Just because we use GCC doesn't mean we suddenly get shared libraries
+      # on systems that don't support them.
+      _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
+      enable_shared=no
+      ;;
+
+    *nto* | *qnx*)
+      # QNX uses GNU C++, but need to define -shared option too, otherwise
+      # it will coredump.
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
+      ;;
+
+    sysv4*MP*)
+      if test -d /usr/nec; then
+       _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
+      fi
+      ;;
+
+    *)
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
+      ;;
+    esac
+
+    case $cc_basename in
+    nvcc*) # Cuda Compiler Driver 2.2
+      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker '
+      if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then
+        _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)"
+      fi
+      ;;
+    esac
+  else
+    # PORTME Check for flag to pass linker flags through the system compiler.
+    case $host_os in
+    aix*)
+      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+      if test "$host_cpu" = ia64; then
+       # AIX 5 now supports IA64 processor
+       _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
+      else
+       _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
+      fi
+      ;;
+
+    mingw* | cygwin* | pw32* | os2* | cegcc*)
+      # This hack is so that the source file can tell whether it is being
+      # built for inclusion in a dll (and should export symbols for example).
+      m4_if([$1], [GCJ], [],
+       [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
+      ;;
+
+    hpux9* | hpux10* | hpux11*)
+      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
+      # not for PA HP-UX.
+      case $host_cpu in
+      hppa*64*|ia64*)
+       # +Z the default
+       ;;
+      *)
+       _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
+       ;;
+      esac
+      # Is there a better lt_prog_compiler_static that works with the bundled CC?
+      _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
+      ;;
+
+    irix5* | irix6* | nonstopux*)
+      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+      # PIC (with -KPIC) is the default.
+      _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
+      ;;
+
+    linux* | k*bsd*-gnu | kopensolaris*-gnu)
+      case $cc_basename in
+      # old Intel for x86_64 which still supported -KPIC.
+      ecc*)
+       _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
+       _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
+        ;;
+      # icc used to be incompatible with GCC.
+      # ICC 10 doesn't accept -KPIC any more.
+      icc* | ifort*)
+       _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
+       _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
+        ;;
+      # Lahey Fortran 8.1.
+      lf95*)
+       _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+       _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared'
+       _LT_TAGVAR(lt_prog_compiler_static, $1)='--static'
+       ;;
+      nagfor*)
+       # NAG Fortran compiler
+       _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,'
+       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
+       _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
+       ;;
+      pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*)
+        # Portland Group compilers (*not* the Pentium gcc compiler,
+       # which looks to be a dead project)
+       _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
+       _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
+        ;;
+      ccc*)
+        _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+        # All Alpha code is PIC.
+        _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
+        ;;
+      xl* | bgxl* | bgf* | mpixl*)
+       # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene
+       _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic'
+       _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink'
+       ;;
+      *)
+       case `$CC -V 2>&1 | sed 5q` in
+       *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*)
+         # Sun Fortran 8.3 passes all unrecognized flags to the linker
+         _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
+         _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
+         _LT_TAGVAR(lt_prog_compiler_wl, $1)=''
+         ;;
+       *Sun\ F* | *Sun*Fortran*)
+         _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
+         _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
+         _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
+         ;;
+       *Sun\ C*)
+         # Sun C 5.9
+         _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
+         _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
+         _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+         ;;
+        *Intel*\ [[CF]]*Compiler*)
+         _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+         _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
+         _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
+         ;;
+       *Portland\ Group*)
+         _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+         _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
+         _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
+         ;;
+       esac
+       ;;
+      esac
+      ;;
+
+    newsos6)
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
+      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
+      ;;
+
+    *nto* | *qnx*)
+      # QNX uses GNU C++, but need to define -shared option too, otherwise
+      # it will coredump.
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
+      ;;
+
+    osf3* | osf4* | osf5*)
+      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+      # All OSF/1 code is PIC.
+      _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
+      ;;
+
+    rdos*)
+      _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
+      ;;
+
+    solaris*)
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
+      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
+      case $cc_basename in
+      f77* | f90* | f95* | sunf77* | sunf90* | sunf95*)
+       _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';;
+      *)
+       _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';;
+      esac
+      ;;
+
+    sunos4*)
+      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
+      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
+      ;;
+
+    sysv4 | sysv4.2uw2* | sysv4.3*)
+      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
+      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
+      ;;
+
+    sysv4*MP*)
+      if test -d /usr/nec ;then
+       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic'
+       _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
+      fi
+      ;;
+
+    sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
+      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
+      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
+      ;;
+
+    unicos*)
+      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+      _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
+      ;;
+
+    uts4*)
+      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
+      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
+      ;;
+
+    *)
+      _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
+      ;;
+    esac
+  fi
+])
+case $host_os in
+  # For platforms which do not support PIC, -DPIC is meaningless:
+  *djgpp*)
+    _LT_TAGVAR(lt_prog_compiler_pic, $1)=
+    ;;
+  *)
+    _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])"
+    ;;
+esac
+
+AC_CACHE_CHECK([for $compiler option to produce PIC],
+  [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)],
+  [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)])
+_LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)
+
+#
+# Check to make sure the PIC flag actually works.
+#
+if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then
+  _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works],
+    [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)],
+    [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [],
+    [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in
+     "" | " "*) ;;
+     *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;;
+     esac],
+    [_LT_TAGVAR(lt_prog_compiler_pic, $1)=
+     _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no])
+fi
+_LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1],
+       [Additional compiler flags for building library objects])
+
+_LT_TAGDECL([wl], [lt_prog_compiler_wl], [1],
+       [How to pass a linker flag through the compiler])
+#
+# Check to make sure the static flag actually works.
+#
+wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\"
+_LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works],
+  _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1),
+  $lt_tmp_static_flag,
+  [],
+  [_LT_TAGVAR(lt_prog_compiler_static, $1)=])
+_LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1],
+       [Compiler flag to prevent dynamic linking])
+])# _LT_COMPILER_PIC
+
+
+# _LT_LINKER_SHLIBS([TAGNAME])
+# ----------------------------
+# See if the linker supports building shared libraries.
+m4_defun([_LT_LINKER_SHLIBS],
+[AC_REQUIRE([LT_PATH_LD])dnl
+AC_REQUIRE([LT_PATH_NM])dnl
+m4_require([_LT_PATH_MANIFEST_TOOL])dnl
+m4_require([_LT_FILEUTILS_DEFAULTS])dnl
+m4_require([_LT_DECL_EGREP])dnl
+m4_require([_LT_DECL_SED])dnl
+m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl
+m4_require([_LT_TAG_COMPILER])dnl
+AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])
+m4_if([$1], [CXX], [
+  _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
+  _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*']
+  case $host_os in
+  aix[[4-9]]*)
+    # If we're using GNU nm, then we don't want the "-C" option.
+    # -C means demangle to AIX nm, but means don't demangle with GNU nm
+    # Also, AIX nm treats weak defined symbols like other global defined
+    # symbols, whereas GNU nm marks them as "W".
+    if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then
+      _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
+    else
+      _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
+    fi
+    ;;
+  pw32*)
+    _LT_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds"
+    ;;
+  cygwin* | mingw* | cegcc*)
+    case $cc_basename in
+    cl*)
+      _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*'
+      ;;
+    *)
+      _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols'
+      _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname']
+      ;;
+    esac
+    ;;
+  linux* | k*bsd*-gnu | gnu*)
+    _LT_TAGVAR(link_all_deplibs, $1)=no
+    ;;
+  *)
+    _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
+    ;;
+  esac
+], [
+  runpath_var=
+  _LT_TAGVAR(allow_undefined_flag, $1)=
+  _LT_TAGVAR(always_export_symbols, $1)=no
+  _LT_TAGVAR(archive_cmds, $1)=
+  _LT_TAGVAR(archive_expsym_cmds, $1)=
+  _LT_TAGVAR(compiler_needs_object, $1)=no
+  _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no
+  _LT_TAGVAR(export_dynamic_flag_spec, $1)=
+  _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
+  _LT_TAGVAR(hardcode_automatic, $1)=no
+  _LT_TAGVAR(hardcode_direct, $1)=no
+  _LT_TAGVAR(hardcode_direct_absolute, $1)=no
+  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
+  _LT_TAGVAR(hardcode_libdir_separator, $1)=
+  _LT_TAGVAR(hardcode_minus_L, $1)=no
+  _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
+  _LT_TAGVAR(inherit_rpath, $1)=no
+  _LT_TAGVAR(link_all_deplibs, $1)=unknown
+  _LT_TAGVAR(module_cmds, $1)=
+  _LT_TAGVAR(module_expsym_cmds, $1)=
+  _LT_TAGVAR(old_archive_from_new_cmds, $1)=
+  _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)=
+  _LT_TAGVAR(thread_safe_flag_spec, $1)=
+  _LT_TAGVAR(whole_archive_flag_spec, $1)=
+  # include_expsyms should be a list of space-separated symbols to be *always*
+  # included in the symbol list
+  _LT_TAGVAR(include_expsyms, $1)=
+  # exclude_expsyms can be an extended regexp of symbols to exclude
+  # it will be wrapped by ` (' and `)$', so one must not match beginning or
+  # end of line.  Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc',
+  # as well as any symbol that contains `d'.
+  _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*']
+  # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out
+  # platforms (ab)use it in PIC code, but their linkers get confused if
+  # the symbol is explicitly referenced.  Since portable code cannot
+  # rely on this symbol name, it's probably fine to never include it in
+  # preloaded symbol tables.
+  # Exclude shared library initialization/finalization symbols.
+dnl Note also adjust exclude_expsyms for C++ above.
+  extract_expsyms_cmds=
+
+  case $host_os in
+  cygwin* | mingw* | pw32* | cegcc*)
+    # FIXME: the MSVC++ port hasn't been tested in a loooong time
+    # When not using gcc, we currently assume that we are using
+    # Microsoft Visual C++.
+    if test "$GCC" != yes; then
+      with_gnu_ld=no
+    fi
+    ;;
+  interix*)
+    # we just hope/assume this is gcc and not c89 (= MSVC++)
+    with_gnu_ld=yes
+    ;;
+  openbsd*)
+    with_gnu_ld=no
+    ;;
+  linux* | k*bsd*-gnu | gnu*)
+    _LT_TAGVAR(link_all_deplibs, $1)=no
+    ;;
+  esac
+
+  _LT_TAGVAR(ld_shlibs, $1)=yes
+
+  # On some targets, GNU ld is compatible enough with the native linker
+  # that we're better off using the native interface for both.
+  lt_use_gnu_ld_interface=no
+  if test "$with_gnu_ld" = yes; then
+    case $host_os in
+      aix*)
+       # The AIX port of GNU ld has always aspired to compatibility
+       # with the native linker.  However, as the warning in the GNU ld
+       # block says, versions before 2.19.5* couldn't really create working
+       # shared libraries, regardless of the interface used.
+       case `$LD -v 2>&1` in
+         *\ \(GNU\ Binutils\)\ 2.19.5*) ;;
+         *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;;
+         *\ \(GNU\ Binutils\)\ [[3-9]]*) ;;
+         *)
+           lt_use_gnu_ld_interface=yes
+           ;;
+       esac
+       ;;
+      *)
+       lt_use_gnu_ld_interface=yes
+       ;;
+    esac
+  fi
+
+  if test "$lt_use_gnu_ld_interface" = yes; then
+    # If archive_cmds runs LD, not CC, wlarc should be empty
+    wlarc='${wl}'
+
+    # Set some defaults for GNU ld with shared library support. These
+    # are reset later if shared libraries are not supported. Putting them
+    # here allows them to be overridden if necessary.
+    runpath_var=LD_RUN_PATH
+    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
+    _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
+    # ancient GNU ld didn't support --whole-archive et. al.
+    if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then
+      _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
+    else
+      _LT_TAGVAR(whole_archive_flag_spec, $1)=
+    fi
+    supports_anon_versioning=no
+    case `$LD -v 2>&1` in
+      *GNU\ gold*) supports_anon_versioning=yes ;;
+      *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11
+      *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ...
+      *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ...
+      *\ 2.11.*) ;; # other 2.11 versions
+      *) supports_anon_versioning=yes ;;
+    esac
+
+    # See if GNU ld supports shared libraries.
+    case $host_os in
+    aix[[3-9]]*)
+      # On AIX/PPC, the GNU linker is very broken
+      if test "$host_cpu" != ia64; then
+       _LT_TAGVAR(ld_shlibs, $1)=no
+       cat <<_LT_EOF 1>&2
+
+*** Warning: the GNU linker, at least up to release 2.19, is reported
+*** to be unable to reliably create shared libraries on AIX.
+*** Therefore, libtool is disabling shared libraries support.  If you
+*** really care for shared libraries, you may want to install binutils
+*** 2.20 or above, or modify your PATH so that a non-GNU linker is found.
+*** You will then need to restart the configuration process.
+
+_LT_EOF
+      fi
+      ;;
+
+    amigaos*)
+      case $host_cpu in
+      powerpc)
+            # see comment about AmigaOS4 .so support
+            _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+            _LT_TAGVAR(archive_expsym_cmds, $1)=''
+        ;;
+      m68k)
+            _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'
+            _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
+            _LT_TAGVAR(hardcode_minus_L, $1)=yes
+        ;;
+      esac
+      ;;
+
+    beos*)
+      if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
+       _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
+       # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
+       # support --undefined.  This deserves some investigation.  FIXME
+       _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+      else
+       _LT_TAGVAR(ld_shlibs, $1)=no
+      fi
+      ;;
+
+    cygwin* | mingw* | pw32* | cegcc*)
+      # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
+      # as there is no search path for DLLs.
+      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
+      _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols'
+      _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
+      _LT_TAGVAR(always_export_symbols, $1)=no
+      _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
+      _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols'
+      _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname']
+
+      if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then
+        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
+       # If the export-symbols file already is a .def file (1st line
+       # is EXPORTS), use it as is; otherwise, prepend...
+       _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
+         cp $export_symbols $output_objdir/$soname.def;
+       else
+         echo EXPORTS > $output_objdir/$soname.def;
+         cat $export_symbols >> $output_objdir/$soname.def;
+       fi~
+       $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
+      else
+       _LT_TAGVAR(ld_shlibs, $1)=no
+      fi
+      ;;
+
+    haiku*)
+      _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+      _LT_TAGVAR(link_all_deplibs, $1)=yes
+      ;;
+
+    interix[[3-9]]*)
+      _LT_TAGVAR(hardcode_direct, $1)=no
+      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
+      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
+      _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
+      # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.
+      # Instead, shared libraries are loaded at an image base (0x10000000 by
+      # default) and relocated if they conflict, which is a slow very memory
+      # consuming and fragmenting process.  To avoid this, we pick a random,
+      # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
+      # time.  Moving up from 0x10000000 also allows more sbrk(2) space.
+      _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
+      _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
+      ;;
+
+    gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu)
+      tmp_diet=no
+      if test "$host_os" = linux-dietlibc; then
+       case $cc_basename in
+         diet\ *) tmp_diet=yes;;       # linux-dietlibc with static linking (!diet-dyn)
+       esac
+      fi
+      if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \
+        && test "$tmp_diet" = no
+      then
+       tmp_addflag=' $pic_flag'
+       tmp_sharedflag='-shared'
+       case $cc_basename,$host_cpu in
+        pgcc*)                         # Portland Group C compiler
+         _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
+         tmp_addflag=' $pic_flag'
+         ;;
+       pgf77* | pgf90* | pgf95* | pgfortran*)
+                                       # Portland Group f77 and f90 compilers
+         _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
+         tmp_addflag=' $pic_flag -Mnomain' ;;
+       ecc*,ia64* | icc*,ia64*)        # Intel C compiler on ia64
+         tmp_addflag=' -i_dynamic' ;;
+       efc*,ia64* | ifort*,ia64*)      # Intel Fortran compiler on ia64
+         tmp_addflag=' -i_dynamic -nofor_main' ;;
+       ifc* | ifort*)                  # Intel Fortran compiler
+         tmp_addflag=' -nofor_main' ;;
+       lf95*)                          # Lahey Fortran 8.1
+         _LT_TAGVAR(whole_archive_flag_spec, $1)=
+         tmp_sharedflag='--shared' ;;
+       xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below)
+         tmp_sharedflag='-qmkshrobj'
+         tmp_addflag= ;;
+       nvcc*)  # Cuda Compiler Driver 2.2
+         _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
+         _LT_TAGVAR(compiler_needs_object, $1)=yes
+         ;;
+       esac
+       case `$CC -V 2>&1 | sed 5q` in
+       *Sun\ C*)                       # Sun C 5.9
+         _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
+         _LT_TAGVAR(compiler_needs_object, $1)=yes
+         tmp_sharedflag='-G' ;;
+       *Sun\ F*)                       # Sun Fortran 8.3
+         tmp_sharedflag='-G' ;;
+       esac
+       _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+
+        if test "x$supports_anon_versioning" = xyes; then
+          _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~
+           cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
+           echo "local: *; };" >> $output_objdir/$libname.ver~
+           $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
+        fi
+
+       case $cc_basename in
+       xlf* | bgf* | bgxlf* | mpixlf*)
+         # IBM XL Fortran 10.1 on PPC cannot create shared libs itself
+         _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive'
+         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
+         _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib'
+         if test "x$supports_anon_versioning" = xyes; then
+           _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~
+             cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
+             echo "local: *; };" >> $output_objdir/$libname.ver~
+             $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib'
+         fi
+         ;;
+       esac
+      else
+        _LT_TAGVAR(ld_shlibs, $1)=no
+      fi
+      ;;
+
+    netbsd* | netbsdelf*-gnu)
+      if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
+       _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
+       wlarc=
+      else
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
+      fi
+      ;;
+
+    solaris*)
+      if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then
+       _LT_TAGVAR(ld_shlibs, $1)=no
+       cat <<_LT_EOF 1>&2
+
+*** Warning: The releases 2.8.* of the GNU linker cannot reliably
+*** create shared libraries on Solaris systems.  Therefore, libtool
+*** is disabling shared libraries support.  We urge you to upgrade GNU
+*** binutils to release 2.9.1 or newer.  Another option is to modify
+*** your PATH or compiler configuration so that the native linker is
+*** used, and then restart.
+
+_LT_EOF
+      elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
+      else
+       _LT_TAGVAR(ld_shlibs, $1)=no
+      fi
+      ;;
+
+    sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)
+      case `$LD -v 2>&1` in
+        *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*)
+       _LT_TAGVAR(ld_shlibs, $1)=no
+       cat <<_LT_EOF 1>&2
+
+*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not
+*** reliably create shared libraries on SCO systems.  Therefore, libtool
+*** is disabling shared libraries support.  We urge you to upgrade GNU
+*** binutils to release 2.16.91.0.3 or newer.  Another option is to modify
+*** your PATH or compiler configuration so that the native linker is
+*** used, and then restart.
+
+_LT_EOF
+       ;;
+       *)
+         # For security reasons, it is highly recommended that you always
+         # use absolute paths for naming shared libraries, and exclude the
+         # DT_RUNPATH tag from executables and libraries.  But doing so
+         # requires that you compile everything twice, which is a pain.
+         if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
+           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
+           _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+           _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
+         else
+           _LT_TAGVAR(ld_shlibs, $1)=no
+         fi
+       ;;
+      esac
+      ;;
+
+    sunos4*)
+      _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'
+      wlarc=
+      _LT_TAGVAR(hardcode_direct, $1)=yes
+      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
+      ;;
+
+    *)
+      if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
+      else
+       _LT_TAGVAR(ld_shlibs, $1)=no
+      fi
+      ;;
+    esac
+
+    if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then
+      runpath_var=
+      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
+      _LT_TAGVAR(export_dynamic_flag_spec, $1)=
+      _LT_TAGVAR(whole_archive_flag_spec, $1)=
+    fi
+  else
+    # PORTME fill in a description of your system's linker (not GNU ld)
+    case $host_os in
+    aix3*)
+      _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
+      _LT_TAGVAR(always_export_symbols, $1)=yes
+      _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname'
+      # Note: this linker hardcodes the directories in LIBPATH if there
+      # are no directories specified by -L.
+      _LT_TAGVAR(hardcode_minus_L, $1)=yes
+      if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then
+       # Neither direct hardcoding nor static linking is supported with a
+       # broken collect2.
+       _LT_TAGVAR(hardcode_direct, $1)=unsupported
+      fi
+      ;;
+
+    aix[[4-9]]*)
+      if test "$host_cpu" = ia64; then
+       # On IA64, the linker does run time linking by default, so we don't
+       # have to do anything special.
+       aix_use_runtimelinking=no
+       exp_sym_flag='-Bexport'
+       no_entry_flag=""
+      else
+       # If we're using GNU nm, then we don't want the "-C" option.
+       # -C means demangle to AIX nm, but means don't demangle with GNU nm
+       # Also, AIX nm treats weak defined symbols like other global
+       # defined symbols, whereas GNU nm marks them as "W".
+       if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then
+         _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
+       else
+         _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
+       fi
+       aix_use_runtimelinking=no
+
+       # Test if we are trying to use run time linking or normal
+       # AIX style linking. If -brtl is somewhere in LDFLAGS, we
+       # need to do runtime linking.
+       case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*)
+         for ld_flag in $LDFLAGS; do
+         if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
+           aix_use_runtimelinking=yes
+           break
+         fi
+         done
+         ;;
+       esac
+
+       exp_sym_flag='-bexport'
+       no_entry_flag='-bnoentry'
+      fi
+
+      # When large executables or shared objects are built, AIX ld can
+      # have problems creating the table of contents.  If linking a library
+      # or program results in "error TOC overflow" add -mminimal-toc to
+      # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
+      # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
+
+      _LT_TAGVAR(archive_cmds, $1)=''
+      _LT_TAGVAR(hardcode_direct, $1)=yes
+      _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
+      _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
+      _LT_TAGVAR(link_all_deplibs, $1)=yes
+      _LT_TAGVAR(file_list_spec, $1)='${wl}-f,'
+
+      if test "$GCC" = yes; then
+       case $host_os in aix4.[[012]]|aix4.[[012]].*)
+       # We only want to do this on AIX 4.2 and lower, the check
+       # below for broken collect2 doesn't work under 4.3+
+         collect2name=`${CC} -print-prog-name=collect2`
+         if test -f "$collect2name" &&
+          strings "$collect2name" | $GREP resolve_lib_name >/dev/null
+         then
+         # We have reworked collect2
+         :
+         else
+         # We have old collect2
+         _LT_TAGVAR(hardcode_direct, $1)=unsupported
+         # It fails to find uninstalled libraries when the uninstalled
+         # path is not listed in the libpath.  Setting hardcode_minus_L
+         # to unsupported forces relinking
+         _LT_TAGVAR(hardcode_minus_L, $1)=yes
+         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
+         _LT_TAGVAR(hardcode_libdir_separator, $1)=
+         fi
+         ;;
+       esac
+       shared_flag='-shared'
+       if test "$aix_use_runtimelinking" = yes; then
+         shared_flag="$shared_flag "'${wl}-G'
+       fi
+       _LT_TAGVAR(link_all_deplibs, $1)=no
+      else
+       # not using gcc
+       if test "$host_cpu" = ia64; then
+       # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
+       # chokes on -Wl,-G. The following line is correct:
+         shared_flag='-G'
+       else
+         if test "$aix_use_runtimelinking" = yes; then
+           shared_flag='${wl}-G'
+         else
+           shared_flag='${wl}-bM:SRE'
+         fi
+       fi
+      fi
+
+      _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall'
+      # It seems that -bexpall does not export symbols beginning with
+      # underscore (_), so it is better to generate a list of symbols to export.
+      _LT_TAGVAR(always_export_symbols, $1)=yes
+      if test "$aix_use_runtimelinking" = yes; then
+       # Warning - without using the other runtime loading flags (-brtl),
+       # -berok will link without error, but may produce a broken library.
+       _LT_TAGVAR(allow_undefined_flag, $1)='-berok'
+        # Determine the default libpath from the value encoded in an
+        # empty executable.
+        _LT_SYS_MODULE_PATH_AIX([$1])
+        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
+        _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
+      else
+       if test "$host_cpu" = ia64; then
+         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'
+         _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
+         _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols"
+       else
+        # Determine the default libpath from the value encoded in an
+        # empty executable.
+        _LT_SYS_MODULE_PATH_AIX([$1])
+        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
+         # Warning - without using the other run time loading flags,
+         # -berok will link without error, but may produce a broken library.
+         _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'
+         _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'
+         if test "$with_gnu_ld" = yes; then
+           # We only use this code for GNU lds that support --whole-archive.
+           _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
+         else
+           # Exported symbols can be pulled into shared objects from archives
+           _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience'
+         fi
+         _LT_TAGVAR(archive_cmds_need_lc, $1)=yes
+         # This is similar to how AIX traditionally builds its shared libraries.
+         _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
+       fi
+      fi
+      ;;
+
+    amigaos*)
+      case $host_cpu in
+      powerpc)
+            # see comment about AmigaOS4 .so support
+            _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+            _LT_TAGVAR(archive_expsym_cmds, $1)=''
+        ;;
+      m68k)
+            _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'
+            _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
+            _LT_TAGVAR(hardcode_minus_L, $1)=yes
+        ;;
+      esac
+      ;;
+
+    bsdi[[45]]*)
+      _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic
+      ;;
+
+    cygwin* | mingw* | pw32* | cegcc*)
+      # When not using gcc, we currently assume that we are using
+      # Microsoft Visual C++.
+      # hardcode_libdir_flag_spec is actually meaningless, as there is
+      # no search path for DLLs.
+      case $cc_basename in
+      cl*)
+       # Native MSVC
+       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' '
+       _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
+       _LT_TAGVAR(always_export_symbols, $1)=yes
+       _LT_TAGVAR(file_list_spec, $1)='@'
+       # Tell ltmain to make .lib files, not .a files.
+       libext=lib
+       # Tell ltmain to make .dll files, not .so files.
+       shrext_cmds=".dll"
+       # FIXME: Setting linknames here is a bad hack.
+       _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames='
+       _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
+           sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp;
+         else
+           sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp;
+         fi~
+         $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~
+         linknames='
+       # The linker will not automatically build a static lib if we build a DLL.
+       # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true'
+       _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
+       _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*'
+       _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1,DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols'
+       # Don't use ranlib
+       _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib'
+       _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~
+         lt_tool_outputfile="@TOOL_OUTPUT@"~
+         case $lt_outputfile in
+           *.exe|*.EXE) ;;
+           *)
+             lt_outputfile="$lt_outputfile.exe"
+             lt_tool_outputfile="$lt_tool_outputfile.exe"
+             ;;
+         esac~
+         if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then
+           $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1;
+           $RM "$lt_outputfile.manifest";
+         fi'
+       ;;
+      *)
+       # Assume MSVC wrapper
+       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' '
+       _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
+       # Tell ltmain to make .lib files, not .a files.
+       libext=lib
+       # Tell ltmain to make .dll files, not .so files.
+       shrext_cmds=".dll"
+       # FIXME: Setting linknames here is a bad hack.
+       _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames='
+       # The linker will automatically build a .lib file if we build a DLL.
+       _LT_TAGVAR(old_archive_from_new_cmds, $1)='true'
+       # FIXME: Should let the user specify the lib program.
+       _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs'
+       _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
+       ;;
+      esac
+      ;;
+
+    darwin* | rhapsody*)
+      _LT_DARWIN_LINKER_FEATURES($1)
+      ;;
+
+    dgux*)
+      _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
+      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
+      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
+      ;;
+
+    # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor
+    # support.  Future versions do this automatically, but an explicit c++rt0.o
+    # does not break anything, and helps significantly (at the cost of a little
+    # extra space).
+    freebsd2.2*)
+      _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o'
+      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
+      _LT_TAGVAR(hardcode_direct, $1)=yes
+      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
+      ;;
+
+    # Unfortunately, older versions of FreeBSD 2 do not have this feature.
+    freebsd2.*)
+      _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
+      _LT_TAGVAR(hardcode_direct, $1)=yes
+      _LT_TAGVAR(hardcode_minus_L, $1)=yes
+      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
+      ;;
+
+    # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
+    freebsd* | dragonfly*)
+      _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
+      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
+      _LT_TAGVAR(hardcode_direct, $1)=yes
+      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
+      ;;
+
+    hpux9*)
+      if test "$GCC" = yes; then
+       _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
+      else
+       _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
+      fi
+      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
+      _LT_TAGVAR(hardcode_libdir_separator, $1)=:
+      _LT_TAGVAR(hardcode_direct, $1)=yes
+
+      # hardcode_minus_L: Not really in the search PATH,
+      # but as the default location of the library.
+      _LT_TAGVAR(hardcode_minus_L, $1)=yes
+      _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
+      ;;
+
+    hpux10*)
+      if test "$GCC" = yes && test "$with_gnu_ld" = no; then
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
+      else
+       _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'
+      fi
+      if test "$with_gnu_ld" = no; then
+       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
+       _LT_TAGVAR(hardcode_libdir_separator, $1)=:
+       _LT_TAGVAR(hardcode_direct, $1)=yes
+       _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
+       _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
+       # hardcode_minus_L: Not really in the search PATH,
+       # but as the default location of the library.
+       _LT_TAGVAR(hardcode_minus_L, $1)=yes
+      fi
+      ;;
+
+    hpux11*)
+      if test "$GCC" = yes && test "$with_gnu_ld" = no; then
+       case $host_cpu in
+       hppa*64*)
+         _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
+         ;;
+       ia64*)
+         _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
+         ;;
+       *)
+         _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
+         ;;
+       esac
+      else
+       case $host_cpu in
+       hppa*64*)
+         _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
+         ;;
+       ia64*)
+         _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
+         ;;
+       *)
+       m4_if($1, [], [
+         # Older versions of the 11.00 compiler do not understand -b yet
+         # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does)
+         _LT_LINKER_OPTION([if $CC understands -b],
+           _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b],
+           [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'],
+           [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])],
+         [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'])
+         ;;
+       esac
+      fi
+      if test "$with_gnu_ld" = no; then
+       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
+       _LT_TAGVAR(hardcode_libdir_separator, $1)=:
+
+       case $host_cpu in
+       hppa*64*|ia64*)
+         _LT_TAGVAR(hardcode_direct, $1)=no
+         _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
+         ;;
+       *)
+         _LT_TAGVAR(hardcode_direct, $1)=yes
+         _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
+         _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
+
+         # hardcode_minus_L: Not really in the search PATH,
+         # but as the default location of the library.
+         _LT_TAGVAR(hardcode_minus_L, $1)=yes
+         ;;
+       esac
+      fi
+      ;;
+
+    irix5* | irix6* | nonstopux*)
+      if test "$GCC" = yes; then
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
+       # Try to use the -exported_symbol ld option, if it does not
+       # work, assume that -exports_file does not work either and
+       # implicitly export all symbols.
+       # This should be the same for all languages, so no per-tag cache variable.
+       AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol],
+         [lt_cv_irix_exported_symbol],
+         [save_LDFLAGS="$LDFLAGS"
+          LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null"
+          AC_LINK_IFELSE(
+            [AC_LANG_SOURCE(
+               [AC_LANG_CASE([C], [[int foo (void) { return 0; }]],
+                             [C++], [[int foo (void) { return 0; }]],
+                             [Fortran 77], [[
+      subroutine foo
+      end]],
+                             [Fortran], [[
+      subroutine foo
+      end]])])],
+             [lt_cv_irix_exported_symbol=yes],
+             [lt_cv_irix_exported_symbol=no])
+           LDFLAGS="$save_LDFLAGS"])
+       if test "$lt_cv_irix_exported_symbol" = yes; then
+          _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib'
+       fi
+      else
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
+       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib'
+      fi
+      _LT_TAGVAR(archive_cmds_need_lc, $1)='no'
+      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
+      _LT_TAGVAR(hardcode_libdir_separator, $1)=:
+      _LT_TAGVAR(inherit_rpath, $1)=yes
+      _LT_TAGVAR(link_all_deplibs, $1)=yes
+      ;;
+
+    netbsd* | netbsdelf*-gnu)
+      if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
+       _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out
+      else
+       _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags'      # ELF
+      fi
+      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
+      _LT_TAGVAR(hardcode_direct, $1)=yes
+      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
+      ;;
+
+    newsos6)
+      _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
+      _LT_TAGVAR(hardcode_direct, $1)=yes
+      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
+      _LT_TAGVAR(hardcode_libdir_separator, $1)=:
+      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
+      ;;
+
+    *nto* | *qnx*)
+      ;;
+
+    openbsd*)
+      if test -f /usr/libexec/ld.so; then
+       _LT_TAGVAR(hardcode_direct, $1)=yes
+       _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
+       _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
+       if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
+         _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
+         _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols'
+         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
+         _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
+       else
+         case $host_os in
+          openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*)
+            _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
+            _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
+            ;;
+          *)
+            _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
+            _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
+            ;;
+         esac
+       fi
+      else
+       _LT_TAGVAR(ld_shlibs, $1)=no
+      fi
+      ;;
+
+    os2*)
+      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
+      _LT_TAGVAR(hardcode_minus_L, $1)=yes
+      _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
+      _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def'
+      _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def'
+      ;;
+
+    osf3*)
+      if test "$GCC" = yes; then
+       _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
+      else
+       _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
+      fi
+      _LT_TAGVAR(archive_cmds_need_lc, $1)='no'
+      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
+      _LT_TAGVAR(hardcode_libdir_separator, $1)=:
+      ;;
+
+    osf4* | osf5*)     # as osf3* with the addition of -msym flag
+      if test "$GCC" = yes; then
+       _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
+       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
+      else
+       _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
+       _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~
+       $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp'
+
+       # Both c and cxx compiler support -rpath directly
+       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
+      fi
+      _LT_TAGVAR(archive_cmds_need_lc, $1)='no'
+      _LT_TAGVAR(hardcode_libdir_separator, $1)=:
+      ;;
+
+    solaris*)
+      _LT_TAGVAR(no_undefined_flag, $1)=' -z defs'
+      if test "$GCC" = yes; then
+       wlarc='${wl}'
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
+       _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
+         $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'
+      else
+       case `$CC -V 2>&1` in
+       *"Compilers 5.0"*)
+         wlarc=''
+         _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'
+         _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
+         $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp'
+         ;;
+       *)
+         wlarc='${wl}'
+         _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags'
+         _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
+         $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'
+         ;;
+       esac
+      fi
+      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
+      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
+      case $host_os in
+      solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
+      *)
+       # The compiler driver will combine and reorder linker options,
+       # but understands `-z linker_flag'.  GCC discards it without `$wl',
+       # but is careful enough not to reorder.
+       # Supported since Solaris 2.6 (maybe 2.5.1?)
+       if test "$GCC" = yes; then
+         _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'
+       else
+         _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract'
+       fi
+       ;;
+      esac
+      _LT_TAGVAR(link_all_deplibs, $1)=yes
+      ;;
+
+    sunos4*)
+      if test "x$host_vendor" = xsequent; then
+       # Use $CC to link under sequent, because it throws in some extra .o
+       # files that make .init and .fini sections work.
+       _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags'
+      else
+       _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags'
+      fi
+      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
+      _LT_TAGVAR(hardcode_direct, $1)=yes
+      _LT_TAGVAR(hardcode_minus_L, $1)=yes
+      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
+      ;;
+
+    sysv4)
+      case $host_vendor in
+       sni)
+         _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
+         _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true???
+       ;;
+       siemens)
+         ## LD is ld it makes a PLAMLIB
+         ## CC just makes a GrossModule.
+         _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags'
+         _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs'
+         _LT_TAGVAR(hardcode_direct, $1)=no
+        ;;
+       motorola)
+         _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
+         _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie
+       ;;
+      esac
+      runpath_var='LD_RUN_PATH'
+      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
+      ;;
+
+    sysv4.3*)
+      _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
+      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
+      _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport'
+      ;;
+
+    sysv4*MP*)
+      if test -d /usr/nec; then
+       _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
+       _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
+       runpath_var=LD_RUN_PATH
+       hardcode_runpath_var=yes
+       _LT_TAGVAR(ld_shlibs, $1)=yes
+      fi
+      ;;
+
+    sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*)
+      _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
+      _LT_TAGVAR(archive_cmds_need_lc, $1)=no
+      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
+      runpath_var='LD_RUN_PATH'
+
+      if test "$GCC" = yes; then
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+      else
+       _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+      fi
+      ;;
+
+    sysv5* | sco3.2v5* | sco5v6*)
+      # Note: We can NOT use -z defs as we might desire, because we do not
+      # link with -lc, and that would cause any symbols used from libc to
+      # always be unresolved, which means just about no library would
+      # ever link correctly.  If we're not using GNU ld we use -z text
+      # though, which does catch some bad symbols but isn't as heavy-handed
+      # as -z defs.
+      _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
+      _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs'
+      _LT_TAGVAR(archive_cmds_need_lc, $1)=no
+      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
+      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir'
+      _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
+      _LT_TAGVAR(link_all_deplibs, $1)=yes
+      _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport'
+      runpath_var='LD_RUN_PATH'
+
+      if test "$GCC" = yes; then
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+      else
+       _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+      fi
+      ;;
+
+    uts4*)
+      _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
+      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
+      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
+      ;;
+
+    *)
+      _LT_TAGVAR(ld_shlibs, $1)=no
+      ;;
+    esac
+
+    if test x$host_vendor = xsni; then
+      case $host in
+      sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
+       _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym'
+       ;;
+      esac
+    fi
+  fi
+])
+AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)])
+test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no
+
+_LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld
+
+_LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl
+_LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl
+_LT_DECL([], [extract_expsyms_cmds], [2],
+    [The commands to extract the exported symbol list from a shared archive])
+
+#
+# Do we need to explicitly link libc?
+#
+case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in
+x|xyes)
+  # Assume -lc should be added
+  _LT_TAGVAR(archive_cmds_need_lc, $1)=yes
+
+  if test "$enable_shared" = yes && test "$GCC" = yes; then
+    case $_LT_TAGVAR(archive_cmds, $1) in
+    *'~'*)
+      # FIXME: we may have to deal with multi-command sequences.
+      ;;
+    '$CC '*)
+      # Test whether the compiler implicitly links with -lc since on some
+      # systems, -lgcc has to come before -lc. If gcc already passes -lc
+      # to ld, don't add -lc before -lgcc.
+      AC_CACHE_CHECK([whether -lc should be explicitly linked in],
+       [lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1),
+       [$RM conftest*
+       echo "$lt_simple_compile_test_code" > conftest.$ac_ext
+
+       if AC_TRY_EVAL(ac_compile) 2>conftest.err; then
+         soname=conftest
+         lib=conftest
+         libobjs=conftest.$ac_objext
+         deplibs=
+         wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1)
+         pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1)
+         compiler_flags=-v
+         linker_flags=-v
+         verstring=
+         output_objdir=.
+         libname=conftest
+         lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1)
+         _LT_TAGVAR(allow_undefined_flag, $1)=
+         if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1)
+         then
+           lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no
+         else
+           lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes
+         fi
+         _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag
+       else
+         cat conftest.err 1>&5
+       fi
+       $RM conftest*
+       ])
+      _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)
+      ;;
+    esac
+  fi
+  ;;
+esac
+
+_LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0],
+    [Whether or not to add -lc for building shared libraries])
+_LT_TAGDECL([allow_libtool_libs_with_static_runtimes],
+    [enable_shared_with_static_runtimes], [0],
+    [Whether or not to disallow shared libs when runtime libs are static])
+_LT_TAGDECL([], [export_dynamic_flag_spec], [1],
+    [Compiler flag to allow reflexive dlopens])
+_LT_TAGDECL([], [whole_archive_flag_spec], [1],
+    [Compiler flag to generate shared objects directly from archives])
+_LT_TAGDECL([], [compiler_needs_object], [1],
+    [Whether the compiler copes with passing no objects directly])
+_LT_TAGDECL([], [old_archive_from_new_cmds], [2],
+    [Create an old-style archive from a shared archive])
+_LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2],
+    [Create a temporary old-style archive to link instead of a shared archive])
+_LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive])
+_LT_TAGDECL([], [archive_expsym_cmds], [2])
+_LT_TAGDECL([], [module_cmds], [2],
+    [Commands used to build a loadable module if different from building
+    a shared archive.])
+_LT_TAGDECL([], [module_expsym_cmds], [2])
+_LT_TAGDECL([], [with_gnu_ld], [1],
+    [Whether we are building with GNU ld or not])
+_LT_TAGDECL([], [allow_undefined_flag], [1],
+    [Flag that allows shared libraries with undefined symbols to be built])
+_LT_TAGDECL([], [no_undefined_flag], [1],
+    [Flag that enforces no undefined symbols])
+_LT_TAGDECL([], [hardcode_libdir_flag_spec], [1],
+    [Flag to hardcode $libdir into a binary during linking.
+    This must work even if $libdir does not exist])
+_LT_TAGDECL([], [hardcode_libdir_separator], [1],
+    [Whether we need a single "-rpath" flag with a separated argument])
+_LT_TAGDECL([], [hardcode_direct], [0],
+    [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes
+    DIR into the resulting binary])
+_LT_TAGDECL([], [hardcode_direct_absolute], [0],
+    [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes
+    DIR into the resulting binary and the resulting library dependency is
+    "absolute", i.e impossible to change by setting ${shlibpath_var} if the
+    library is relocated])
+_LT_TAGDECL([], [hardcode_minus_L], [0],
+    [Set to "yes" if using the -LDIR flag during linking hardcodes DIR
+    into the resulting binary])
+_LT_TAGDECL([], [hardcode_shlibpath_var], [0],
+    [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
+    into the resulting binary])
+_LT_TAGDECL([], [hardcode_automatic], [0],
+    [Set to "yes" if building a shared library automatically hardcodes DIR
+    into the library and all subsequent libraries and executables linked
+    against it])
+_LT_TAGDECL([], [inherit_rpath], [0],
+    [Set to yes if linker adds runtime paths of dependent libraries
+    to runtime path list])
+_LT_TAGDECL([], [link_all_deplibs], [0],
+    [Whether libtool must link a program against all its dependency libraries])
+_LT_TAGDECL([], [always_export_symbols], [0],
+    [Set to "yes" if exported symbols are required])
+_LT_TAGDECL([], [export_symbols_cmds], [2],
+    [The commands to list exported symbols])
+_LT_TAGDECL([], [exclude_expsyms], [1],
+    [Symbols that should not be listed in the preloaded symbols])
+_LT_TAGDECL([], [include_expsyms], [1],
+    [Symbols that must always be exported])
+_LT_TAGDECL([], [prelink_cmds], [2],
+    [Commands necessary for linking programs (against libraries) with templates])
+_LT_TAGDECL([], [postlink_cmds], [2],
+    [Commands necessary for finishing linking programs])
+_LT_TAGDECL([], [file_list_spec], [1],
+    [Specify filename containing input files])
+dnl FIXME: Not yet implemented
+dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1],
+dnl    [Compiler flag to generate thread safe objects])
+])# _LT_LINKER_SHLIBS
+
+
+# _LT_LANG_C_CONFIG([TAG])
+# ------------------------
+# Ensure that the configuration variables for a C compiler are suitably
+# defined.  These variables are subsequently used by _LT_CONFIG to write
+# the compiler configuration to `libtool'.
+m4_defun([_LT_LANG_C_CONFIG],
+[m4_require([_LT_DECL_EGREP])dnl
+lt_save_CC="$CC"
+AC_LANG_PUSH(C)
+
+# Source file extension for C test sources.
+ac_ext=c
+
+# Object file extension for compiled C test sources.
+objext=o
+_LT_TAGVAR(objext, $1)=$objext
+
+# Code to be used in simple compile tests
+lt_simple_compile_test_code="int some_variable = 0;"
+
+# Code to be used in simple link tests
+lt_simple_link_test_code='int main(){return(0);}'
+
+_LT_TAG_COMPILER
+# Save the default compiler, since it gets overwritten when the other
+# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP.
+compiler_DEFAULT=$CC
+
+# save warnings/boilerplate of simple test code
+_LT_COMPILER_BOILERPLATE
+_LT_LINKER_BOILERPLATE
+
+if test -n "$compiler"; then
+  _LT_COMPILER_NO_RTTI($1)
+  _LT_COMPILER_PIC($1)
+  _LT_COMPILER_C_O($1)
+  _LT_COMPILER_FILE_LOCKS($1)
+  _LT_LINKER_SHLIBS($1)
+  _LT_SYS_DYNAMIC_LINKER($1)
+  _LT_LINKER_HARDCODE_LIBPATH($1)
+  LT_SYS_DLOPEN_SELF
+  _LT_CMD_STRIPLIB
+
+  # Report which library types will actually be built
+  AC_MSG_CHECKING([if libtool supports shared libraries])
+  AC_MSG_RESULT([$can_build_shared])
+
+  AC_MSG_CHECKING([whether to build shared libraries])
+  test "$can_build_shared" = "no" && enable_shared=no
+
+  # On AIX, shared libraries and static libraries use the same namespace, and
+  # are all built from PIC.
+  case $host_os in
+  aix3*)
+    test "$enable_shared" = yes && enable_static=no
+    if test -n "$RANLIB"; then
+      archive_cmds="$archive_cmds~\$RANLIB \$lib"
+      postinstall_cmds='$RANLIB $lib'
+    fi
+    ;;
+
+  aix[[4-9]]*)
+    if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
+      test "$enable_shared" = yes && enable_static=no
+    fi
+    ;;
+  esac
+  AC_MSG_RESULT([$enable_shared])
+
+  AC_MSG_CHECKING([whether to build static libraries])
+  # Make sure either enable_shared or enable_static is yes.
+  test "$enable_shared" = yes || enable_static=yes
+  AC_MSG_RESULT([$enable_static])
+
+  _LT_CONFIG($1)
+fi
+AC_LANG_POP
+CC="$lt_save_CC"
+])# _LT_LANG_C_CONFIG
+
+
+# _LT_LANG_CXX_CONFIG([TAG])
+# --------------------------
+# Ensure that the configuration variables for a C++ compiler are suitably
+# defined.  These variables are subsequently used by _LT_CONFIG to write
+# the compiler configuration to `libtool'.
+m4_defun([_LT_LANG_CXX_CONFIG],
+[m4_require([_LT_FILEUTILS_DEFAULTS])dnl
+m4_require([_LT_DECL_EGREP])dnl
+m4_require([_LT_PATH_MANIFEST_TOOL])dnl
+if test -n "$CXX" && ( test "X$CXX" != "Xno" &&
+    ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) ||
+    (test "X$CXX" != "Xg++"))) ; then
+  AC_PROG_CXXCPP
+else
+  _lt_caught_CXX_error=yes
+fi
+
+AC_LANG_PUSH(C++)
+_LT_TAGVAR(archive_cmds_need_lc, $1)=no
+_LT_TAGVAR(allow_undefined_flag, $1)=
+_LT_TAGVAR(always_export_symbols, $1)=no
+_LT_TAGVAR(archive_expsym_cmds, $1)=
+_LT_TAGVAR(compiler_needs_object, $1)=no
+_LT_TAGVAR(export_dynamic_flag_spec, $1)=
+_LT_TAGVAR(hardcode_direct, $1)=no
+_LT_TAGVAR(hardcode_direct_absolute, $1)=no
+_LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
+_LT_TAGVAR(hardcode_libdir_separator, $1)=
+_LT_TAGVAR(hardcode_minus_L, $1)=no
+_LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
+_LT_TAGVAR(hardcode_automatic, $1)=no
+_LT_TAGVAR(inherit_rpath, $1)=no
+_LT_TAGVAR(module_cmds, $1)=
+_LT_TAGVAR(module_expsym_cmds, $1)=
+_LT_TAGVAR(link_all_deplibs, $1)=unknown
+_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
+_LT_TAGVAR(reload_flag, $1)=$reload_flag
+_LT_TAGVAR(reload_cmds, $1)=$reload_cmds
+_LT_TAGVAR(no_undefined_flag, $1)=
+_LT_TAGVAR(whole_archive_flag_spec, $1)=
+_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no
+
+# Source file extension for C++ test sources.
+ac_ext=cpp
+
+# Object file extension for compiled C++ test sources.
+objext=o
+_LT_TAGVAR(objext, $1)=$objext
+
+# No sense in running all these tests if we already determined that
+# the CXX compiler isn't working.  Some variables (like enable_shared)
+# are currently assumed to apply to all compilers on this platform,
+# and will be corrupted by setting them based on a non-working compiler.
+if test "$_lt_caught_CXX_error" != yes; then
+  # Code to be used in simple compile tests
+  lt_simple_compile_test_code="int some_variable = 0;"
+
+  # Code to be used in simple link tests
+  lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }'
+
+  # ltmain only uses $CC for tagged configurations so make sure $CC is set.
+  _LT_TAG_COMPILER
+
+  # save warnings/boilerplate of simple test code
+  _LT_COMPILER_BOILERPLATE
+  _LT_LINKER_BOILERPLATE
+
+  # Allow CC to be a program name with arguments.
+  lt_save_CC=$CC
+  lt_save_CFLAGS=$CFLAGS
+  lt_save_LD=$LD
+  lt_save_GCC=$GCC
+  GCC=$GXX
+  lt_save_with_gnu_ld=$with_gnu_ld
+  lt_save_path_LD=$lt_cv_path_LD
+  if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then
+    lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx
+  else
+    $as_unset lt_cv_prog_gnu_ld
+  fi
+  if test -n "${lt_cv_path_LDCXX+set}"; then
+    lt_cv_path_LD=$lt_cv_path_LDCXX
+  else
+    $as_unset lt_cv_path_LD
+  fi
+  test -z "${LDCXX+set}" || LD=$LDCXX
+  CC=${CXX-"c++"}
+  CFLAGS=$CXXFLAGS
+  compiler=$CC
+  _LT_TAGVAR(compiler, $1)=$CC
+  _LT_CC_BASENAME([$compiler])
+
+  if test -n "$compiler"; then
+    # We don't want -fno-exception when compiling C++ code, so set the
+    # no_builtin_flag separately
+    if test "$GXX" = yes; then
+      _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin'
+    else
+      _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
+    fi
+
+    if test "$GXX" = yes; then
+      # Set up default GNU C++ configuration
+
+      LT_PATH_LD
+
+      # Check if GNU C++ uses GNU ld as the underlying linker, since the
+      # archiving commands below assume that GNU ld is being used.
+      if test "$with_gnu_ld" = yes; then
+        _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
+        _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
+
+        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
+        _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
+
+        # If archive_cmds runs LD, not CC, wlarc should be empty
+        # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to
+        #     investigate it a little bit more. (MM)
+        wlarc='${wl}'
+
+        # ancient GNU ld didn't support --whole-archive et. al.
+        if eval "`$CC -print-prog-name=ld` --help 2>&1" |
+         $GREP 'no-whole-archive' > /dev/null; then
+          _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
+        else
+          _LT_TAGVAR(whole_archive_flag_spec, $1)=
+        fi
+      else
+        with_gnu_ld=no
+        wlarc=
+
+        # A generic and very simple default shared library creation
+        # command for GNU C++ for the case where it uses the native
+        # linker, instead of GNU ld.  If possible, this setting should
+        # overridden to take advantage of the native linker features on
+        # the platform it is being used on.
+        _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
+      fi
+
+      # Commands to make compiler produce verbose output that lists
+      # what "hidden" libraries, object files and flags are used when
+      # linking a shared library.
+      output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
+
+    else
+      GXX=no
+      with_gnu_ld=no
+      wlarc=
+    fi
+
+    # PORTME: fill in a description of your system's C++ link characteristics
+    AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])
+    _LT_TAGVAR(ld_shlibs, $1)=yes
+    case $host_os in
+      aix3*)
+        # FIXME: insert proper C++ library support
+        _LT_TAGVAR(ld_shlibs, $1)=no
+        ;;
+      aix[[4-9]]*)
+        if test "$host_cpu" = ia64; then
+          # On IA64, the linker does run time linking by default, so we don't
+          # have to do anything special.
+          aix_use_runtimelinking=no
+          exp_sym_flag='-Bexport'
+          no_entry_flag=""
+        else
+          aix_use_runtimelinking=no
+
+          # Test if we are trying to use run time linking or normal
+          # AIX style linking. If -brtl is somewhere in LDFLAGS, we
+          # need to do runtime linking.
+          case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*)
+           for ld_flag in $LDFLAGS; do
+             case $ld_flag in
+             *-brtl*)
+               aix_use_runtimelinking=yes
+               break
+               ;;
+             esac
+           done
+           ;;
+          esac
+
+          exp_sym_flag='-bexport'
+          no_entry_flag='-bnoentry'
+        fi
+
+        # When large executables or shared objects are built, AIX ld can
+        # have problems creating the table of contents.  If linking a library
+        # or program results in "error TOC overflow" add -mminimal-toc to
+        # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
+        # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
+
+        _LT_TAGVAR(archive_cmds, $1)=''
+        _LT_TAGVAR(hardcode_direct, $1)=yes
+        _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
+        _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
+        _LT_TAGVAR(link_all_deplibs, $1)=yes
+        _LT_TAGVAR(file_list_spec, $1)='${wl}-f,'
+
+        if test "$GXX" = yes; then
+          case $host_os in aix4.[[012]]|aix4.[[012]].*)
+          # We only want to do this on AIX 4.2 and lower, the check
+          # below for broken collect2 doesn't work under 4.3+
+         collect2name=`${CC} -print-prog-name=collect2`
+         if test -f "$collect2name" &&
+            strings "$collect2name" | $GREP resolve_lib_name >/dev/null
+         then
+           # We have reworked collect2
+           :
+         else
+           # We have old collect2
+           _LT_TAGVAR(hardcode_direct, $1)=unsupported
+           # It fails to find uninstalled libraries when the uninstalled
+           # path is not listed in the libpath.  Setting hardcode_minus_L
+           # to unsupported forces relinking
+           _LT_TAGVAR(hardcode_minus_L, $1)=yes
+           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
+           _LT_TAGVAR(hardcode_libdir_separator, $1)=
+         fi
+          esac
+          shared_flag='-shared'
+         if test "$aix_use_runtimelinking" = yes; then
+           shared_flag="$shared_flag "'${wl}-G'
+         fi
+        else
+          # not using gcc
+          if test "$host_cpu" = ia64; then
+         # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
+         # chokes on -Wl,-G. The following line is correct:
+         shared_flag='-G'
+          else
+           if test "$aix_use_runtimelinking" = yes; then
+             shared_flag='${wl}-G'
+           else
+             shared_flag='${wl}-bM:SRE'
+           fi
+          fi
+        fi
+
+        _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall'
+        # It seems that -bexpall does not export symbols beginning with
+        # underscore (_), so it is better to generate a list of symbols to
+       # export.
+        _LT_TAGVAR(always_export_symbols, $1)=yes
+        if test "$aix_use_runtimelinking" = yes; then
+          # Warning - without using the other runtime loading flags (-brtl),
+          # -berok will link without error, but may produce a broken library.
+          _LT_TAGVAR(allow_undefined_flag, $1)='-berok'
+          # Determine the default libpath from the value encoded in an empty
+          # executable.
+          _LT_SYS_MODULE_PATH_AIX([$1])
+          _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
+
+          _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
+        else
+          if test "$host_cpu" = ia64; then
+           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'
+           _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
+           _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols"
+          else
+           # Determine the default libpath from the value encoded in an
+           # empty executable.
+           _LT_SYS_MODULE_PATH_AIX([$1])
+           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
+           # Warning - without using the other run time loading flags,
+           # -berok will link without error, but may produce a broken library.
+           _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'
+           _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'
+           if test "$with_gnu_ld" = yes; then
+             # We only use this code for GNU lds that support --whole-archive.
+             _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
+           else
+             # Exported symbols can be pulled into shared objects from archives
+             _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience'
+           fi
+           _LT_TAGVAR(archive_cmds_need_lc, $1)=yes
+           # This is similar to how AIX traditionally builds its shared
+           # libraries.
+           _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
+          fi
+        fi
+        ;;
+
+      beos*)
+       if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
+         _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
+         # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
+         # support --undefined.  This deserves some investigation.  FIXME
+         _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+       else
+         _LT_TAGVAR(ld_shlibs, $1)=no
+       fi
+       ;;
+
+      chorus*)
+        case $cc_basename in
+          *)
+         # FIXME: insert proper C++ library support
+         _LT_TAGVAR(ld_shlibs, $1)=no
+         ;;
+        esac
+        ;;
+
+      cygwin* | mingw* | pw32* | cegcc*)
+       case $GXX,$cc_basename in
+       ,cl* | no,cl*)
+         # Native MSVC
+         # hardcode_libdir_flag_spec is actually meaningless, as there is
+         # no search path for DLLs.
+         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' '
+         _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
+         _LT_TAGVAR(always_export_symbols, $1)=yes
+         _LT_TAGVAR(file_list_spec, $1)='@'
+         # Tell ltmain to make .lib files, not .a files.
+         libext=lib
+         # Tell ltmain to make .dll files, not .so files.
+         shrext_cmds=".dll"
+         # FIXME: Setting linknames here is a bad hack.
+         _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames='
+         _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
+             $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp;
+           else
+             $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp;
+           fi~
+           $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~
+           linknames='
+         # The linker will not automatically build a static lib if we build a DLL.
+         # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true'
+         _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
+         # Don't use ranlib
+         _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib'
+         _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~
+           lt_tool_outputfile="@TOOL_OUTPUT@"~
+           case $lt_outputfile in
+             *.exe|*.EXE) ;;
+             *)
+               lt_outputfile="$lt_outputfile.exe"
+               lt_tool_outputfile="$lt_tool_outputfile.exe"
+               ;;
+           esac~
+           func_to_tool_file "$lt_outputfile"~
+           if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then
+             $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1;
+             $RM "$lt_outputfile.manifest";
+           fi'
+         ;;
+       *)
+         # g++
+         # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
+         # as there is no search path for DLLs.
+         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
+         _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols'
+         _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
+         _LT_TAGVAR(always_export_symbols, $1)=no
+         _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
+
+         if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then
+           _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
+           # If the export-symbols file already is a .def file (1st line
+           # is EXPORTS), use it as is; otherwise, prepend...
+           _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
+             cp $export_symbols $output_objdir/$soname.def;
+           else
+             echo EXPORTS > $output_objdir/$soname.def;
+             cat $export_symbols >> $output_objdir/$soname.def;
+           fi~
+           $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
+         else
+           _LT_TAGVAR(ld_shlibs, $1)=no
+         fi
+         ;;
+       esac
+       ;;
+      darwin* | rhapsody*)
+        _LT_DARWIN_LINKER_FEATURES($1)
+       ;;
+
+      dgux*)
+        case $cc_basename in
+          ec++*)
+           # FIXME: insert proper C++ library support
+           _LT_TAGVAR(ld_shlibs, $1)=no
+           ;;
+          ghcx*)
+           # Green Hills C++ Compiler
+           # FIXME: insert proper C++ library support
+           _LT_TAGVAR(ld_shlibs, $1)=no
+           ;;
+          *)
+           # FIXME: insert proper C++ library support
+           _LT_TAGVAR(ld_shlibs, $1)=no
+           ;;
+        esac
+        ;;
+
+      freebsd2.*)
+        # C++ shared libraries reported to be fairly broken before
+       # switch to ELF
+        _LT_TAGVAR(ld_shlibs, $1)=no
+        ;;
+
+      freebsd-elf*)
+        _LT_TAGVAR(archive_cmds_need_lc, $1)=no
+        ;;
+
+      freebsd* | dragonfly*)
+        # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF
+        # conventions
+        _LT_TAGVAR(ld_shlibs, $1)=yes
+        ;;
+
+      gnu*)
+        ;;
+
+      haiku*)
+        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+        _LT_TAGVAR(link_all_deplibs, $1)=yes
+        ;;
+
+      hpux9*)
+        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
+        _LT_TAGVAR(hardcode_libdir_separator, $1)=:
+        _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
+        _LT_TAGVAR(hardcode_direct, $1)=yes
+        _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
+                                            # but as the default
+                                            # location of the library.
+
+        case $cc_basename in
+          CC*)
+            # FIXME: insert proper C++ library support
+            _LT_TAGVAR(ld_shlibs, $1)=no
+            ;;
+          aCC*)
+            _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
+            # Commands to make compiler produce verbose output that lists
+            # what "hidden" libraries, object files and flags are used when
+            # linking a shared library.
+            #
+            # There doesn't appear to be a way to prevent this compiler from
+            # explicitly linking system object files so we need to strip them
+            # from the output so that they don't get included in the library
+            # dependencies.
+            output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
+            ;;
+          *)
+            if test "$GXX" = yes; then
+              _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
+            else
+              # FIXME: insert proper C++ library support
+              _LT_TAGVAR(ld_shlibs, $1)=no
+            fi
+            ;;
+        esac
+        ;;
+
+      hpux10*|hpux11*)
+        if test $with_gnu_ld = no; then
+         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
+         _LT_TAGVAR(hardcode_libdir_separator, $1)=:
+
+          case $host_cpu in
+            hppa*64*|ia64*)
+              ;;
+            *)
+             _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
+              ;;
+          esac
+        fi
+        case $host_cpu in
+          hppa*64*|ia64*)
+            _LT_TAGVAR(hardcode_direct, $1)=no
+            _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
+            ;;
+          *)
+            _LT_TAGVAR(hardcode_direct, $1)=yes
+            _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
+            _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
+                                                # but as the default
+                                                # location of the library.
+            ;;
+        esac
+
+        case $cc_basename in
+          CC*)
+           # FIXME: insert proper C++ library support
+           _LT_TAGVAR(ld_shlibs, $1)=no
+           ;;
+          aCC*)
+           case $host_cpu in
+             hppa*64*)
+               _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
+               ;;
+             ia64*)
+               _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
+               ;;
+             *)
+               _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
+               ;;
+           esac
+           # Commands to make compiler produce verbose output that lists
+           # what "hidden" libraries, object files and flags are used when
+           # linking a shared library.
+           #
+           # There doesn't appear to be a way to prevent this compiler from
+           # explicitly linking system object files so we need to strip them
+           # from the output so that they don't get included in the library
+           # dependencies.
+           output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
+           ;;
+          *)
+           if test "$GXX" = yes; then
+             if test $with_gnu_ld = no; then
+               case $host_cpu in
+                 hppa*64*)
+                   _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
+                   ;;
+                 ia64*)
+                   _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
+                   ;;
+                 *)
+                   _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
+                   ;;
+               esac
+             fi
+           else
+             # FIXME: insert proper C++ library support
+             _LT_TAGVAR(ld_shlibs, $1)=no
+           fi
+           ;;
+        esac
+        ;;
+
+      interix[[3-9]]*)
+       _LT_TAGVAR(hardcode_direct, $1)=no
+       _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
+       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
+       _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
+       # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.
+       # Instead, shared libraries are loaded at an image base (0x10000000 by
+       # default) and relocated if they conflict, which is a slow very memory
+       # consuming and fragmenting process.  To avoid this, we pick a random,
+       # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
+       # time.  Moving up from 0x10000000 also allows more sbrk(2) space.
+       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
+       _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
+       ;;
+      irix5* | irix6*)
+        case $cc_basename in
+          CC*)
+           # SGI C++
+           _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
+
+           # Archives containing C++ object files must be created using
+           # "CC -ar", where "CC" is the IRIX C++ compiler.  This is
+           # necessary to make sure instantiated templates are included
+           # in the archive.
+           _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs'
+           ;;
+          *)
+           if test "$GXX" = yes; then
+             if test "$with_gnu_ld" = no; then
+               _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
+             else
+               _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib'
+             fi
+           fi
+           _LT_TAGVAR(link_all_deplibs, $1)=yes
+           ;;
+        esac
+        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
+        _LT_TAGVAR(hardcode_libdir_separator, $1)=:
+        _LT_TAGVAR(inherit_rpath, $1)=yes
+        ;;
+
+      linux* | k*bsd*-gnu | kopensolaris*-gnu)
+        case $cc_basename in
+          KCC*)
+           # Kuck and Associates, Inc. (KAI) C++ Compiler
+
+           # KCC will only create a shared library if the output file
+           # ends with ".so" (or ".sl" for HP-UX), so rename the library
+           # to its proper name (with version) after linking.
+           _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
+           _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib'
+           # Commands to make compiler produce verbose output that lists
+           # what "hidden" libraries, object files and flags are used when
+           # linking a shared library.
+           #
+           # There doesn't appear to be a way to prevent this compiler from
+           # explicitly linking system object files so we need to strip them
+           # from the output so that they don't get included in the library
+           # dependencies.
+           output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
+
+           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
+           _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
+
+           # Archives containing C++ object files must be created using
+           # "CC -Bstatic", where "CC" is the KAI C++ compiler.
+           _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs'
+           ;;
+         icpc* | ecpc* )
+           # Intel C++
+           with_gnu_ld=yes
+           # version 8.0 and above of icpc choke on multiply defined symbols
+           # if we add $predep_objects and $postdep_objects, however 7.1 and
+           # earlier do not add the objects themselves.
+           case `$CC -V 2>&1` in
+             *"Version 7."*)
+               _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
+               _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
+               ;;
+             *)  # Version 8.0 or newer
+               tmp_idyn=
+               case $host_cpu in
+                 ia64*) tmp_idyn=' -i_dynamic';;
+               esac
+               _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+               _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
+               ;;
+           esac
+           _LT_TAGVAR(archive_cmds_need_lc, $1)=no
+           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
+           _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
+           _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
+           ;;
+          pgCC* | pgcpp*)
+            # Portland Group C++ compiler
+           case `$CC -V` in
+           *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*)
+             _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~
+               rm -rf $tpldir~
+               $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~
+               compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"'
+             _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~
+               rm -rf $tpldir~
+               $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~
+               $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~
+               $RANLIB $oldlib'
+             _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~
+               rm -rf $tpldir~
+               $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~
+               $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'
+             _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~
+               rm -rf $tpldir~
+               $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~
+               $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib'
+             ;;
+           *) # Version 6 and above use weak symbols
+             _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'
+             _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib'
+             ;;
+           esac
+
+           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir'
+           _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
+           _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
+            ;;
+         cxx*)
+           # Compaq C++
+           _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
+           _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname  -o $lib ${wl}-retain-symbols-file $wl$export_symbols'
+
+           runpath_var=LD_RUN_PATH
+           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
+           _LT_TAGVAR(hardcode_libdir_separator, $1)=:
+
+           # Commands to make compiler produce verbose output that lists
+           # what "hidden" libraries, object files and flags are used when
+           # linking a shared library.
+           #
+           # There doesn't appear to be a way to prevent this compiler from
+           # explicitly linking system object files so we need to strip them
+           # from the output so that they don't get included in the library
+           # dependencies.
+           output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed'
+           ;;
+         xl* | mpixl* | bgxl*)
+           # IBM XL 8.0 on PPC, with GNU ld
+           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
+           _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
+           _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+           if test "x$supports_anon_versioning" = xyes; then
+             _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~
+               cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
+               echo "local: *; };" >> $output_objdir/$libname.ver~
+               $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
+           fi
+           ;;
+         *)
+           case `$CC -V 2>&1 | sed 5q` in
+           *Sun\ C*)
+             # Sun C++ 5.9
+             _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs'
+             _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
+             _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols'
+             _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
+             _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
+             _LT_TAGVAR(compiler_needs_object, $1)=yes
+
+             # Not sure whether something based on
+             # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1
+             # would be better.
+             output_verbose_link_cmd='func_echo_all'
+
+             # Archives containing C++ object files must be created using
+             # "CC -xar", where "CC" is the Sun C++ compiler.  This is
+             # necessary to make sure instantiated templates are included
+             # in the archive.
+             _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs'
+             ;;
+           esac
+           ;;
+       esac
+       ;;
+
+      lynxos*)
+        # FIXME: insert proper C++ library support
+       _LT_TAGVAR(ld_shlibs, $1)=no
+       ;;
+
+      m88k*)
+        # FIXME: insert proper C++ library support
+        _LT_TAGVAR(ld_shlibs, $1)=no
+       ;;
+
+      mvs*)
+        case $cc_basename in
+          cxx*)
+           # FIXME: insert proper C++ library support
+           _LT_TAGVAR(ld_shlibs, $1)=no
+           ;;
+         *)
+           # FIXME: insert proper C++ library support
+           _LT_TAGVAR(ld_shlibs, $1)=no
+           ;;
+       esac
+       ;;
+
+      netbsd*)
+        if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
+         _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable  -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags'
+         wlarc=
+         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
+         _LT_TAGVAR(hardcode_direct, $1)=yes
+         _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
+       fi
+       # Workaround some broken pre-1.5 toolchains
+       output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"'
+       ;;
+
+      *nto* | *qnx*)
+        _LT_TAGVAR(ld_shlibs, $1)=yes
+       ;;
+
+      openbsd2*)
+        # C++ shared libraries are fairly broken
+       _LT_TAGVAR(ld_shlibs, $1)=no
+       ;;
+
+      openbsd*)
+       if test -f /usr/libexec/ld.so; then
+         _LT_TAGVAR(hardcode_direct, $1)=yes
+         _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
+         _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
+         _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
+         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
+         if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
+           _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib'
+           _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
+           _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
+         fi
+         output_verbose_link_cmd=func_echo_all
+       else
+         _LT_TAGVAR(ld_shlibs, $1)=no
+       fi
+       ;;
+
+      osf3* | osf4* | osf5*)
+        case $cc_basename in
+          KCC*)
+           # Kuck and Associates, Inc. (KAI) C++ Compiler
+
+           # KCC will only create a shared library if the output file
+           # ends with ".so" (or ".sl" for HP-UX), so rename the library
+           # to its proper name (with version) after linking.
+           _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
+
+           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
+           _LT_TAGVAR(hardcode_libdir_separator, $1)=:
+
+           # Archives containing C++ object files must be created using
+           # the KAI C++ compiler.
+           case $host in
+             osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;;
+             *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;;
+           esac
+           ;;
+          RCC*)
+           # Rational C++ 2.4.1
+           # FIXME: insert proper C++ library support
+           _LT_TAGVAR(ld_shlibs, $1)=no
+           ;;
+          cxx*)
+           case $host in
+             osf3*)
+               _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
+               _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
+               _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
+               ;;
+             *)
+               _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
+               _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
+               _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~
+                 echo "-hidden">> $lib.exp~
+                 $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp  `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~
+                 $RM $lib.exp'
+               _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
+               ;;
+           esac
+
+           _LT_TAGVAR(hardcode_libdir_separator, $1)=:
+
+           # Commands to make compiler produce verbose output that lists
+           # what "hidden" libraries, object files and flags are used when
+           # linking a shared library.
+           #
+           # There doesn't appear to be a way to prevent this compiler from
+           # explicitly linking system object files so we need to strip them
+           # from the output so that they don't get included in the library
+           # dependencies.
+           output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
+           ;;
+         *)
+           if test "$GXX" = yes && test "$with_gnu_ld" = no; then
+             _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
+             case $host in
+               osf3*)
+                 _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
+                 ;;
+               *)
+                 _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
+                 ;;
+             esac
+
+             _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
+             _LT_TAGVAR(hardcode_libdir_separator, $1)=:
+
+             # Commands to make compiler produce verbose output that lists
+             # what "hidden" libraries, object files and flags are used when
+             # linking a shared library.
+             output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
+
+           else
+             # FIXME: insert proper C++ library support
+             _LT_TAGVAR(ld_shlibs, $1)=no
+           fi
+           ;;
+        esac
+        ;;
+
+      psos*)
+        # FIXME: insert proper C++ library support
+        _LT_TAGVAR(ld_shlibs, $1)=no
+        ;;
+
+      sunos4*)
+        case $cc_basename in
+          CC*)
+           # Sun C++ 4.x
+           # FIXME: insert proper C++ library support
+           _LT_TAGVAR(ld_shlibs, $1)=no
+           ;;
+          lcc*)
+           # Lucid
+           # FIXME: insert proper C++ library support
+           _LT_TAGVAR(ld_shlibs, $1)=no
+           ;;
+          *)
+           # FIXME: insert proper C++ library support
+           _LT_TAGVAR(ld_shlibs, $1)=no
+           ;;
+        esac
+        ;;
+
+      solaris*)
+        case $cc_basename in
+          CC* | sunCC*)
+           # Sun C++ 4.2, 5.x and Centerline C++
+            _LT_TAGVAR(archive_cmds_need_lc,$1)=yes
+           _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs'
+           _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag}  -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
+           _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
+             $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'
+
+           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
+           _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
+           case $host_os in
+             solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
+             *)
+               # The compiler driver will combine and reorder linker options,
+               # but understands `-z linker_flag'.
+               # Supported since Solaris 2.6 (maybe 2.5.1?)
+               _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract'
+               ;;
+           esac
+           _LT_TAGVAR(link_all_deplibs, $1)=yes
+
+           output_verbose_link_cmd='func_echo_all'
+
+           # Archives containing C++ object files must be created using
+           # "CC -xar", where "CC" is the Sun C++ compiler.  This is
+           # necessary to make sure instantiated templates are included
+           # in the archive.
+           _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs'
+           ;;
+          gcx*)
+           # Green Hills C++ Compiler
+           _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
+
+           # The C++ compiler must be used to create the archive.
+           _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs'
+           ;;
+          *)
+           # GNU C++ compiler with Solaris linker
+           if test "$GXX" = yes && test "$with_gnu_ld" = no; then
+             _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs'
+             if $CC --version | $GREP -v '^2\.7' > /dev/null; then
+               _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
+               _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
+                 $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'
+
+               # Commands to make compiler produce verbose output that lists
+               # what "hidden" libraries, object files and flags are used when
+               # linking a shared library.
+               output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
+             else
+               # g++ 2.7 appears to require `-G' NOT `-shared' on this
+               # platform.
+               _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
+               _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
+                 $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'
+
+               # Commands to make compiler produce verbose output that lists
+               # what "hidden" libraries, object files and flags are used when
+               # linking a shared library.
+               output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
+             fi
+
+             _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir'
+             case $host_os in
+               solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
+               *)
+                 _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'
+                 ;;
+             esac
+           fi
+           ;;
+        esac
+        ;;
+
+    sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*)
+      _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
+      _LT_TAGVAR(archive_cmds_need_lc, $1)=no
+      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
+      runpath_var='LD_RUN_PATH'
+
+      case $cc_basename in
+        CC*)
+         _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+         _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+         ;;
+       *)
+         _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+         _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+         ;;
+      esac
+      ;;
+
+      sysv5* | sco3.2v5* | sco5v6*)
+       # Note: We can NOT use -z defs as we might desire, because we do not
+       # link with -lc, and that would cause any symbols used from libc to
+       # always be unresolved, which means just about no library would
+       # ever link correctly.  If we're not using GNU ld we use -z text
+       # though, which does catch some bad symbols but isn't as heavy-handed
+       # as -z defs.
+       _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
+       _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs'
+       _LT_TAGVAR(archive_cmds_need_lc, $1)=no
+       _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
+       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir'
+       _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
+       _LT_TAGVAR(link_all_deplibs, $1)=yes
+       _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport'
+       runpath_var='LD_RUN_PATH'
+
+       case $cc_basename in
+          CC*)
+           _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+           _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+           _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~
+             '"$_LT_TAGVAR(old_archive_cmds, $1)"
+           _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~
+             '"$_LT_TAGVAR(reload_cmds, $1)"
+           ;;
+         *)
+           _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+           _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
+           ;;
+       esac
+      ;;
+
+      tandem*)
+        case $cc_basename in
+          NCC*)
+           # NonStop-UX NCC 3.20
+           # FIXME: insert proper C++ library support
+           _LT_TAGVAR(ld_shlibs, $1)=no
+           ;;
+          *)
+           # FIXME: insert proper C++ library support
+           _LT_TAGVAR(ld_shlibs, $1)=no
+           ;;
+        esac
+        ;;
+
+      vxworks*)
+        # FIXME: insert proper C++ library support
+        _LT_TAGVAR(ld_shlibs, $1)=no
+        ;;
+
+      *)
+        # FIXME: insert proper C++ library support
+        _LT_TAGVAR(ld_shlibs, $1)=no
+        ;;
+    esac
+
+    AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)])
+    test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no
+
+    _LT_TAGVAR(GCC, $1)="$GXX"
+    _LT_TAGVAR(LD, $1)="$LD"
+
+    ## CAVEAT EMPTOR:
+    ## There is no encapsulation within the following macros, do not change
+    ## the running order or otherwise move them around unless you know exactly
+    ## what you are doing...
+    _LT_SYS_HIDDEN_LIBDEPS($1)
+    _LT_COMPILER_PIC($1)
+    _LT_COMPILER_C_O($1)
+    _LT_COMPILER_FILE_LOCKS($1)
+    _LT_LINKER_SHLIBS($1)
+    _LT_SYS_DYNAMIC_LINKER($1)
+    _LT_LINKER_HARDCODE_LIBPATH($1)
+
+    _LT_CONFIG($1)
+  fi # test -n "$compiler"
+
+  CC=$lt_save_CC
+  CFLAGS=$lt_save_CFLAGS
+  LDCXX=$LD
+  LD=$lt_save_LD
+  GCC=$lt_save_GCC
+  with_gnu_ld=$lt_save_with_gnu_ld
+  lt_cv_path_LDCXX=$lt_cv_path_LD
+  lt_cv_path_LD=$lt_save_path_LD
+  lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld
+  lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld
+fi # test "$_lt_caught_CXX_error" != yes
+
+AC_LANG_POP
+])# _LT_LANG_CXX_CONFIG
+
+
+# _LT_FUNC_STRIPNAME_CNF
+# ----------------------
+# func_stripname_cnf prefix suffix name
+# strip PREFIX and SUFFIX off of NAME.
+# PREFIX and SUFFIX must not contain globbing or regex special
+# characters, hashes, percent signs, but SUFFIX may contain a leading
+# dot (in which case that matches only a dot).
+#
+# This function is identical to the (non-XSI) version of func_stripname,
+# except this one can be used by m4 code that may be executed by configure,
+# rather than the libtool script.
+m4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl
+AC_REQUIRE([_LT_DECL_SED])
+AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])
+func_stripname_cnf ()
+{
+  case ${2} in
+  .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;;
+  *)  func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;;
+  esac
+} # func_stripname_cnf
+])# _LT_FUNC_STRIPNAME_CNF
+
+# _LT_SYS_HIDDEN_LIBDEPS([TAGNAME])
+# ---------------------------------
+# Figure out "hidden" library dependencies from verbose
+# compiler output when linking a shared library.
+# Parse the compiler output and extract the necessary
+# objects, libraries and library flags.
+m4_defun([_LT_SYS_HIDDEN_LIBDEPS],
+[m4_require([_LT_FILEUTILS_DEFAULTS])dnl
+AC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl
+# Dependencies to place before and after the object being linked:
+_LT_TAGVAR(predep_objects, $1)=
+_LT_TAGVAR(postdep_objects, $1)=
+_LT_TAGVAR(predeps, $1)=
+_LT_TAGVAR(postdeps, $1)=
+_LT_TAGVAR(compiler_lib_search_path, $1)=
+
+dnl we can't use the lt_simple_compile_test_code here,
+dnl because it contains code intended for an executable,
+dnl not a library.  It's possible we should let each
+dnl tag define a new lt_????_link_test_code variable,
+dnl but it's only used here...
+m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF
+int a;
+void foo (void) { a = 0; }
+_LT_EOF
+], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF
+class Foo
+{
+public:
+  Foo (void) { a = 0; }
+private:
+  int a;
+};
+_LT_EOF
+], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF
+      subroutine foo
+      implicit none
+      integer*4 a
+      a=0
+      return
+      end
+_LT_EOF
+], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF
+      subroutine foo
+      implicit none
+      integer a
+      a=0
+      return
+      end
+_LT_EOF
+], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF
+public class foo {
+  private int a;
+  public void bar (void) {
+    a = 0;
+  }
+};
+_LT_EOF
+], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF
+package foo
+func foo() {
+}
+_LT_EOF
+])
+
+_lt_libdeps_save_CFLAGS=$CFLAGS
+case "$CC $CFLAGS " in #(
+*\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;;
+*\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;;
+*\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;;
+esac
+
+dnl Parse the compiler output and extract the necessary
+dnl objects, libraries and library flags.
+if AC_TRY_EVAL(ac_compile); then
+  # Parse the compiler output and extract the necessary
+  # objects, libraries and library flags.
+
+  # Sentinel used to keep track of whether or not we are before
+  # the conftest object file.
+  pre_test_object_deps_done=no
+
+  for p in `eval "$output_verbose_link_cmd"`; do
+    case ${prev}${p} in
+
+    -L* | -R* | -l*)
+       # Some compilers place space between "-{L,R}" and the path.
+       # Remove the space.
+       if test $p = "-L" ||
+          test $p = "-R"; then
+        prev=$p
+        continue
+       fi
+
+       # Expand the sysroot to ease extracting the directories later.
+       if test -z "$prev"; then
+         case $p in
+         -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;;
+         -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;;
+         -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;;
+         esac
+       fi
+       case $p in
+       =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;;
+       esac
+       if test "$pre_test_object_deps_done" = no; then
+        case ${prev} in
+        -L | -R)
+          # Internal compiler library paths should come after those
+          # provided the user.  The postdeps already come after the
+          # user supplied libs so there is no need to process them.
+          if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then
+            _LT_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}"
+          else
+            _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}"
+          fi
+          ;;
+        # The "-l" case would never come before the object being
+        # linked, so don't bother handling this case.
+        esac
+       else
+        if test -z "$_LT_TAGVAR(postdeps, $1)"; then
+          _LT_TAGVAR(postdeps, $1)="${prev}${p}"
+        else
+          _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}"
+        fi
+       fi
+       prev=
+       ;;
+
+    *.lto.$objext) ;; # Ignore GCC LTO objects
+    *.$objext)
+       # This assumes that the test object file only shows up
+       # once in the compiler output.
+       if test "$p" = "conftest.$objext"; then
+        pre_test_object_deps_done=yes
+        continue
+       fi
+
+       if test "$pre_test_object_deps_done" = no; then
+        if test -z "$_LT_TAGVAR(predep_objects, $1)"; then
+          _LT_TAGVAR(predep_objects, $1)="$p"
+        else
+          _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p"
+        fi
+       else
+        if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then
+          _LT_TAGVAR(postdep_objects, $1)="$p"
+        else
+          _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p"
+        fi
+       fi
+       ;;
+
+    *) ;; # Ignore the rest.
+
+    esac
+  done
+
+  # Clean up.
+  rm -f a.out a.exe
+else
+  echo "libtool.m4: error: problem compiling $1 test program"
+fi
+
+$RM -f confest.$objext
+CFLAGS=$_lt_libdeps_save_CFLAGS
+
+# PORTME: override above test on systems where it is broken
+m4_if([$1], [CXX],
+[case $host_os in
+interix[[3-9]]*)
+  # Interix 3.5 installs completely hosed .la files for C++, so rather than
+  # hack all around it, let's just trust "g++" to DTRT.
+  _LT_TAGVAR(predep_objects,$1)=
+  _LT_TAGVAR(postdep_objects,$1)=
+  _LT_TAGVAR(postdeps,$1)=
+  ;;
+
+linux*)
+  case `$CC -V 2>&1 | sed 5q` in
+  *Sun\ C*)
+    # Sun C++ 5.9
+
+    # The more standards-conforming stlport4 library is
+    # incompatible with the Cstd library. Avoid specifying
+    # it if it's in CXXFLAGS. Ignore libCrun as
+    # -library=stlport4 depends on it.
+    case " $CXX $CXXFLAGS " in
+    *" -library=stlport4 "*)
+      solaris_use_stlport4=yes
+      ;;
+    esac
+
+    if test "$solaris_use_stlport4" != yes; then
+      _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun'
+    fi
+    ;;
+  esac
+  ;;
+
+solaris*)
+  case $cc_basename in
+  CC* | sunCC*)
+    # The more standards-conforming stlport4 library is
+    # incompatible with the Cstd library. Avoid specifying
+    # it if it's in CXXFLAGS. Ignore libCrun as
+    # -library=stlport4 depends on it.
+    case " $CXX $CXXFLAGS " in
+    *" -library=stlport4 "*)
+      solaris_use_stlport4=yes
+      ;;
+    esac
+
+    # Adding this requires a known-good setup of shared libraries for
+    # Sun compiler versions before 5.6, else PIC objects from an old
+    # archive will be linked into the output, leading to subtle bugs.
+    if test "$solaris_use_stlport4" != yes; then
+      _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun'
+    fi
+    ;;
+  esac
+  ;;
+esac
+])
+
+case " $_LT_TAGVAR(postdeps, $1) " in
+*" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;;
+esac
+ _LT_TAGVAR(compiler_lib_search_dirs, $1)=
+if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then
+ _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'`
+fi
+_LT_TAGDECL([], [compiler_lib_search_dirs], [1],
+    [The directories searched by this compiler when creating a shared library])
+_LT_TAGDECL([], [predep_objects], [1],
+    [Dependencies to place before and after the objects being linked to
+    create a shared library])
+_LT_TAGDECL([], [postdep_objects], [1])
+_LT_TAGDECL([], [predeps], [1])
+_LT_TAGDECL([], [postdeps], [1])
+_LT_TAGDECL([], [compiler_lib_search_path], [1],
+    [The library search path used internally by the compiler when linking
+    a shared library])
+])# _LT_SYS_HIDDEN_LIBDEPS
+
+
+# _LT_LANG_F77_CONFIG([TAG])
+# --------------------------
+# Ensure that the configuration variables for a Fortran 77 compiler are
+# suitably defined.  These variables are subsequently used by _LT_CONFIG
+# to write the compiler configuration to `libtool'.
+m4_defun([_LT_LANG_F77_CONFIG],
+[AC_LANG_PUSH(Fortran 77)
+if test -z "$F77" || test "X$F77" = "Xno"; then
+  _lt_disable_F77=yes
+fi
+
+_LT_TAGVAR(archive_cmds_need_lc, $1)=no
+_LT_TAGVAR(allow_undefined_flag, $1)=
+_LT_TAGVAR(always_export_symbols, $1)=no
+_LT_TAGVAR(archive_expsym_cmds, $1)=
+_LT_TAGVAR(export_dynamic_flag_spec, $1)=
+_LT_TAGVAR(hardcode_direct, $1)=no
+_LT_TAGVAR(hardcode_direct_absolute, $1)=no
+_LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
+_LT_TAGVAR(hardcode_libdir_separator, $1)=
+_LT_TAGVAR(hardcode_minus_L, $1)=no
+_LT_TAGVAR(hardcode_automatic, $1)=no
+_LT_TAGVAR(inherit_rpath, $1)=no
+_LT_TAGVAR(module_cmds, $1)=
+_LT_TAGVAR(module_expsym_cmds, $1)=
+_LT_TAGVAR(link_all_deplibs, $1)=unknown
+_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
+_LT_TAGVAR(reload_flag, $1)=$reload_flag
+_LT_TAGVAR(reload_cmds, $1)=$reload_cmds
+_LT_TAGVAR(no_undefined_flag, $1)=
+_LT_TAGVAR(whole_archive_flag_spec, $1)=
+_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no
+
+# Source file extension for f77 test sources.
+ac_ext=f
+
+# Object file extension for compiled f77 test sources.
+objext=o
+_LT_TAGVAR(objext, $1)=$objext
+
+# No sense in running all these tests if we already determined that
+# the F77 compiler isn't working.  Some variables (like enable_shared)
+# are currently assumed to apply to all compilers on this platform,
+# and will be corrupted by setting them based on a non-working compiler.
+if test "$_lt_disable_F77" != yes; then
+  # Code to be used in simple compile tests
+  lt_simple_compile_test_code="\
+      subroutine t
+      return
+      end
+"
+
+  # Code to be used in simple link tests
+  lt_simple_link_test_code="\
+      program t
+      end
+"
+
+  # ltmain only uses $CC for tagged configurations so make sure $CC is set.
+  _LT_TAG_COMPILER
+
+  # save warnings/boilerplate of simple test code
+  _LT_COMPILER_BOILERPLATE
+  _LT_LINKER_BOILERPLATE
+
+  # Allow CC to be a program name with arguments.
+  lt_save_CC="$CC"
+  lt_save_GCC=$GCC
+  lt_save_CFLAGS=$CFLAGS
+  CC=${F77-"f77"}
+  CFLAGS=$FFLAGS
+  compiler=$CC
+  _LT_TAGVAR(compiler, $1)=$CC
+  _LT_CC_BASENAME([$compiler])
+  GCC=$G77
+  if test -n "$compiler"; then
+    AC_MSG_CHECKING([if libtool supports shared libraries])
+    AC_MSG_RESULT([$can_build_shared])
+
+    AC_MSG_CHECKING([whether to build shared libraries])
+    test "$can_build_shared" = "no" && enable_shared=no
+
+    # On AIX, shared libraries and static libraries use the same namespace, and
+    # are all built from PIC.
+    case $host_os in
+      aix3*)
+        test "$enable_shared" = yes && enable_static=no
+        if test -n "$RANLIB"; then
+          archive_cmds="$archive_cmds~\$RANLIB \$lib"
+          postinstall_cmds='$RANLIB $lib'
+        fi
+        ;;
+      aix[[4-9]]*)
+       if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
+         test "$enable_shared" = yes && enable_static=no
+       fi
+        ;;
+    esac
+    AC_MSG_RESULT([$enable_shared])
+
+    AC_MSG_CHECKING([whether to build static libraries])
+    # Make sure either enable_shared or enable_static is yes.
+    test "$enable_shared" = yes || enable_static=yes
+    AC_MSG_RESULT([$enable_static])
+
+    _LT_TAGVAR(GCC, $1)="$G77"
+    _LT_TAGVAR(LD, $1)="$LD"
+
+    ## CAVEAT EMPTOR:
+    ## There is no encapsulation within the following macros, do not change
+    ## the running order or otherwise move them around unless you know exactly
+    ## what you are doing...
+    _LT_COMPILER_PIC($1)
+    _LT_COMPILER_C_O($1)
+    _LT_COMPILER_FILE_LOCKS($1)
+    _LT_LINKER_SHLIBS($1)
+    _LT_SYS_DYNAMIC_LINKER($1)
+    _LT_LINKER_HARDCODE_LIBPATH($1)
+
+    _LT_CONFIG($1)
+  fi # test -n "$compiler"
+
+  GCC=$lt_save_GCC
+  CC="$lt_save_CC"
+  CFLAGS="$lt_save_CFLAGS"
+fi # test "$_lt_disable_F77" != yes
+
+AC_LANG_POP
+])# _LT_LANG_F77_CONFIG
+
+
+# _LT_LANG_FC_CONFIG([TAG])
+# -------------------------
+# Ensure that the configuration variables for a Fortran compiler are
+# suitably defined.  These variables are subsequently used by _LT_CONFIG
+# to write the compiler configuration to `libtool'.
+m4_defun([_LT_LANG_FC_CONFIG],
+[AC_LANG_PUSH(Fortran)
+
+if test -z "$FC" || test "X$FC" = "Xno"; then
+  _lt_disable_FC=yes
+fi
+
+_LT_TAGVAR(archive_cmds_need_lc, $1)=no
+_LT_TAGVAR(allow_undefined_flag, $1)=
+_LT_TAGVAR(always_export_symbols, $1)=no
+_LT_TAGVAR(archive_expsym_cmds, $1)=
+_LT_TAGVAR(export_dynamic_flag_spec, $1)=
+_LT_TAGVAR(hardcode_direct, $1)=no
+_LT_TAGVAR(hardcode_direct_absolute, $1)=no
+_LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
+_LT_TAGVAR(hardcode_libdir_separator, $1)=
+_LT_TAGVAR(hardcode_minus_L, $1)=no
+_LT_TAGVAR(hardcode_automatic, $1)=no
+_LT_TAGVAR(inherit_rpath, $1)=no
+_LT_TAGVAR(module_cmds, $1)=
+_LT_TAGVAR(module_expsym_cmds, $1)=
+_LT_TAGVAR(link_all_deplibs, $1)=unknown
+_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
+_LT_TAGVAR(reload_flag, $1)=$reload_flag
+_LT_TAGVAR(reload_cmds, $1)=$reload_cmds
+_LT_TAGVAR(no_undefined_flag, $1)=
+_LT_TAGVAR(whole_archive_flag_spec, $1)=
+_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no
+
+# Source file extension for fc test sources.
+ac_ext=${ac_fc_srcext-f}
+
+# Object file extension for compiled fc test sources.
+objext=o
+_LT_TAGVAR(objext, $1)=$objext
+
+# No sense in running all these tests if we already determined that
+# the FC compiler isn't working.  Some variables (like enable_shared)
+# are currently assumed to apply to all compilers on this platform,
+# and will be corrupted by setting them based on a non-working compiler.
+if test "$_lt_disable_FC" != yes; then
+  # Code to be used in simple compile tests
+  lt_simple_compile_test_code="\
+      subroutine t
+      return
+      end
+"
+
+  # Code to be used in simple link tests
+  lt_simple_link_test_code="\
+      program t
+      end
+"
+
+  # ltmain only uses $CC for tagged configurations so make sure $CC is set.
+  _LT_TAG_COMPILER
+
+  # save warnings/boilerplate of simple test code
+  _LT_COMPILER_BOILERPLATE
+  _LT_LINKER_BOILERPLATE
+
+  # Allow CC to be a program name with arguments.
+  lt_save_CC="$CC"
+  lt_save_GCC=$GCC
+  lt_save_CFLAGS=$CFLAGS
+  CC=${FC-"f95"}
+  CFLAGS=$FCFLAGS
+  compiler=$CC
+  GCC=$ac_cv_fc_compiler_gnu
+
+  _LT_TAGVAR(compiler, $1)=$CC
+  _LT_CC_BASENAME([$compiler])
+
+  if test -n "$compiler"; then
+    AC_MSG_CHECKING([if libtool supports shared libraries])
+    AC_MSG_RESULT([$can_build_shared])
+
+    AC_MSG_CHECKING([whether to build shared libraries])
+    test "$can_build_shared" = "no" && enable_shared=no
+
+    # On AIX, shared libraries and static libraries use the same namespace, and
+    # are all built from PIC.
+    case $host_os in
+      aix3*)
+        test "$enable_shared" = yes && enable_static=no
+        if test -n "$RANLIB"; then
+          archive_cmds="$archive_cmds~\$RANLIB \$lib"
+          postinstall_cmds='$RANLIB $lib'
+        fi
+        ;;
+      aix[[4-9]]*)
+       if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
+         test "$enable_shared" = yes && enable_static=no
+       fi
+        ;;
+    esac
+    AC_MSG_RESULT([$enable_shared])
+
+    AC_MSG_CHECKING([whether to build static libraries])
+    # Make sure either enable_shared or enable_static is yes.
+    test "$enable_shared" = yes || enable_static=yes
+    AC_MSG_RESULT([$enable_static])
+
+    _LT_TAGVAR(GCC, $1)="$ac_cv_fc_compiler_gnu"
+    _LT_TAGVAR(LD, $1)="$LD"
+
+    ## CAVEAT EMPTOR:
+    ## There is no encapsulation within the following macros, do not change
+    ## the running order or otherwise move them around unless you know exactly
+    ## what you are doing...
+    _LT_SYS_HIDDEN_LIBDEPS($1)
+    _LT_COMPILER_PIC($1)
+    _LT_COMPILER_C_O($1)
+    _LT_COMPILER_FILE_LOCKS($1)
+    _LT_LINKER_SHLIBS($1)
+    _LT_SYS_DYNAMIC_LINKER($1)
+    _LT_LINKER_HARDCODE_LIBPATH($1)
+
+    _LT_CONFIG($1)
+  fi # test -n "$compiler"
+
+  GCC=$lt_save_GCC
+  CC=$lt_save_CC
+  CFLAGS=$lt_save_CFLAGS
+fi # test "$_lt_disable_FC" != yes
+
+AC_LANG_POP
+])# _LT_LANG_FC_CONFIG
+
+
+# _LT_LANG_GCJ_CONFIG([TAG])
+# --------------------------
+# Ensure that the configuration variables for the GNU Java Compiler compiler
+# are suitably defined.  These variables are subsequently used by _LT_CONFIG
+# to write the compiler configuration to `libtool'.
+m4_defun([_LT_LANG_GCJ_CONFIG],
+[AC_REQUIRE([LT_PROG_GCJ])dnl
+AC_LANG_SAVE
+
+# Source file extension for Java test sources.
+ac_ext=java
+
+# Object file extension for compiled Java test sources.
+objext=o
+_LT_TAGVAR(objext, $1)=$objext
+
+# Code to be used in simple compile tests
+lt_simple_compile_test_code="class foo {}"
+
+# Code to be used in simple link tests
+lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }'
+
+# ltmain only uses $CC for tagged configurations so make sure $CC is set.
+_LT_TAG_COMPILER
+
+# save warnings/boilerplate of simple test code
+_LT_COMPILER_BOILERPLATE
+_LT_LINKER_BOILERPLATE
+
+# Allow CC to be a program name with arguments.
+lt_save_CC=$CC
+lt_save_CFLAGS=$CFLAGS
+lt_save_GCC=$GCC
+GCC=yes
+CC=${GCJ-"gcj"}
+CFLAGS=$GCJFLAGS
+compiler=$CC
+_LT_TAGVAR(compiler, $1)=$CC
+_LT_TAGVAR(LD, $1)="$LD"
+_LT_CC_BASENAME([$compiler])
+
+# GCJ did not exist at the time GCC didn't implicitly link libc in.
+_LT_TAGVAR(archive_cmds_need_lc, $1)=no
+
+_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
+_LT_TAGVAR(reload_flag, $1)=$reload_flag
+_LT_TAGVAR(reload_cmds, $1)=$reload_cmds
+
+if test -n "$compiler"; then
+  _LT_COMPILER_NO_RTTI($1)
+  _LT_COMPILER_PIC($1)
+  _LT_COMPILER_C_O($1)
+  _LT_COMPILER_FILE_LOCKS($1)
+  _LT_LINKER_SHLIBS($1)
+  _LT_LINKER_HARDCODE_LIBPATH($1)
+
+  _LT_CONFIG($1)
+fi
+
+AC_LANG_RESTORE
+
+GCC=$lt_save_GCC
+CC=$lt_save_CC
+CFLAGS=$lt_save_CFLAGS
+])# _LT_LANG_GCJ_CONFIG
+
+
+# _LT_LANG_GO_CONFIG([TAG])
+# --------------------------
+# Ensure that the configuration variables for the GNU Go compiler
+# are suitably defined.  These variables are subsequently used by _LT_CONFIG
+# to write the compiler configuration to `libtool'.
+m4_defun([_LT_LANG_GO_CONFIG],
+[AC_REQUIRE([LT_PROG_GO])dnl
+AC_LANG_SAVE
+
+# Source file extension for Go test sources.
+ac_ext=go
+
+# Object file extension for compiled Go test sources.
+objext=o
+_LT_TAGVAR(objext, $1)=$objext
+
+# Code to be used in simple compile tests
+lt_simple_compile_test_code="package main; func main() { }"
+
+# Code to be used in simple link tests
+lt_simple_link_test_code='package main; func main() { }'
+
+# ltmain only uses $CC for tagged configurations so make sure $CC is set.
+_LT_TAG_COMPILER
+
+# save warnings/boilerplate of simple test code
+_LT_COMPILER_BOILERPLATE
+_LT_LINKER_BOILERPLATE
+
+# Allow CC to be a program name with arguments.
+lt_save_CC=$CC
+lt_save_CFLAGS=$CFLAGS
+lt_save_GCC=$GCC
+GCC=yes
+CC=${GOC-"gccgo"}
+CFLAGS=$GOFLAGS
+compiler=$CC
+_LT_TAGVAR(compiler, $1)=$CC
+_LT_TAGVAR(LD, $1)="$LD"
+_LT_CC_BASENAME([$compiler])
+
+# Go did not exist at the time GCC didn't implicitly link libc in.
+_LT_TAGVAR(archive_cmds_need_lc, $1)=no
+
+_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
+_LT_TAGVAR(reload_flag, $1)=$reload_flag
+_LT_TAGVAR(reload_cmds, $1)=$reload_cmds
+
+if test -n "$compiler"; then
+  _LT_COMPILER_NO_RTTI($1)
+  _LT_COMPILER_PIC($1)
+  _LT_COMPILER_C_O($1)
+  _LT_COMPILER_FILE_LOCKS($1)
+  _LT_LINKER_SHLIBS($1)
+  _LT_LINKER_HARDCODE_LIBPATH($1)
+
+  _LT_CONFIG($1)
+fi
+
+AC_LANG_RESTORE
+
+GCC=$lt_save_GCC
+CC=$lt_save_CC
+CFLAGS=$lt_save_CFLAGS
+])# _LT_LANG_GO_CONFIG
+
+
+# _LT_LANG_RC_CONFIG([TAG])
+# -------------------------
+# Ensure that the configuration variables for the Windows resource compiler
+# are suitably defined.  These variables are subsequently used by _LT_CONFIG
+# to write the compiler configuration to `libtool'.
+m4_defun([_LT_LANG_RC_CONFIG],
+[AC_REQUIRE([LT_PROG_RC])dnl
+AC_LANG_SAVE
+
+# Source file extension for RC test sources.
+ac_ext=rc
+
+# Object file extension for compiled RC test sources.
+objext=o
+_LT_TAGVAR(objext, $1)=$objext
+
+# Code to be used in simple compile tests
+lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }'
+
+# Code to be used in simple link tests
+lt_simple_link_test_code="$lt_simple_compile_test_code"
+
+# ltmain only uses $CC for tagged configurations so make sure $CC is set.
+_LT_TAG_COMPILER
+
+# save warnings/boilerplate of simple test code
+_LT_COMPILER_BOILERPLATE
+_LT_LINKER_BOILERPLATE
+
+# Allow CC to be a program name with arguments.
+lt_save_CC="$CC"
+lt_save_CFLAGS=$CFLAGS
+lt_save_GCC=$GCC
+GCC=
+CC=${RC-"windres"}
+CFLAGS=
+compiler=$CC
+_LT_TAGVAR(compiler, $1)=$CC
+_LT_CC_BASENAME([$compiler])
+_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes
+
+if test -n "$compiler"; then
+  :
+  _LT_CONFIG($1)
+fi
+
+GCC=$lt_save_GCC
+AC_LANG_RESTORE
+CC=$lt_save_CC
+CFLAGS=$lt_save_CFLAGS
+])# _LT_LANG_RC_CONFIG
+
+
+# LT_PROG_GCJ
+# -----------
+AC_DEFUN([LT_PROG_GCJ],
+[m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ],
+  [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ],
+    [AC_CHECK_TOOL(GCJ, gcj,)
+      test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2"
+      AC_SUBST(GCJFLAGS)])])[]dnl
+])
+
+# Old name:
+AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ])
+dnl aclocal-1.4 backwards compatibility:
+dnl AC_DEFUN([LT_AC_PROG_GCJ], [])
+
+
+# LT_PROG_GO
+# ----------
+AC_DEFUN([LT_PROG_GO],
+[AC_CHECK_TOOL(GOC, gccgo,)
+])
+
+
+# LT_PROG_RC
+# ----------
+AC_DEFUN([LT_PROG_RC],
+[AC_CHECK_TOOL(RC, windres,)
+])
+
+# Old name:
+AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC])
+dnl aclocal-1.4 backwards compatibility:
+dnl AC_DEFUN([LT_AC_PROG_RC], [])
+
+
+# _LT_DECL_EGREP
+# --------------
+# If we don't have a new enough Autoconf to choose the best grep
+# available, choose the one first in the user's PATH.
+m4_defun([_LT_DECL_EGREP],
+[AC_REQUIRE([AC_PROG_EGREP])dnl
+AC_REQUIRE([AC_PROG_FGREP])dnl
+test -z "$GREP" && GREP=grep
+_LT_DECL([], [GREP], [1], [A grep program that handles long lines])
+_LT_DECL([], [EGREP], [1], [An ERE matcher])
+_LT_DECL([], [FGREP], [1], [A literal string matcher])
+dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too
+AC_SUBST([GREP])
+])
+
+
+# _LT_DECL_OBJDUMP
+# --------------
+# If we don't have a new enough Autoconf to choose the best objdump
+# available, choose the one first in the user's PATH.
+m4_defun([_LT_DECL_OBJDUMP],
+[AC_CHECK_TOOL(OBJDUMP, objdump, false)
+test -z "$OBJDUMP" && OBJDUMP=objdump
+_LT_DECL([], [OBJDUMP], [1], [An object symbol dumper])
+AC_SUBST([OBJDUMP])
+])
+
+# _LT_DECL_DLLTOOL
+# ----------------
+# Ensure DLLTOOL variable is set.
+m4_defun([_LT_DECL_DLLTOOL],
+[AC_CHECK_TOOL(DLLTOOL, dlltool, false)
+test -z "$DLLTOOL" && DLLTOOL=dlltool
+_LT_DECL([], [DLLTOOL], [1], [DLL creation program])
+AC_SUBST([DLLTOOL])
+])
+
+# _LT_DECL_SED
+# ------------
+# Check for a fully-functional sed program, that truncates
+# as few characters as possible.  Prefer GNU sed if found.
+m4_defun([_LT_DECL_SED],
+[AC_PROG_SED
+test -z "$SED" && SED=sed
+Xsed="$SED -e 1s/^X//"
+_LT_DECL([], [SED], [1], [A sed program that does not truncate output])
+_LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"],
+    [Sed that helps us avoid accidentally triggering echo(1) options like -n])
+])# _LT_DECL_SED
+
+m4_ifndef([AC_PROG_SED], [
+# NOTE: This macro has been submitted for inclusion into   #
+#  GNU Autoconf as AC_PROG_SED.  When it is available in   #
+#  a released version of Autoconf we should remove this    #
+#  macro and use it instead.                               #
+
+m4_defun([AC_PROG_SED],
+[AC_MSG_CHECKING([for a sed that does not truncate output])
+AC_CACHE_VAL(lt_cv_path_SED,
+[# Loop through the user's path and test for sed and gsed.
+# Then use that list of sed's as ones to test for truncation.
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+  IFS=$as_save_IFS
+  test -z "$as_dir" && as_dir=.
+  for lt_ac_prog in sed gsed; do
+    for ac_exec_ext in '' $ac_executable_extensions; do
+      if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then
+        lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext"
+      fi
+    done
+  done
+done
+IFS=$as_save_IFS
+lt_ac_max=0
+lt_ac_count=0
+# Add /usr/xpg4/bin/sed as it is typically found on Solaris
+# along with /bin/sed that truncates output.
+for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do
+  test ! -f $lt_ac_sed && continue
+  cat /dev/null > conftest.in
+  lt_ac_count=0
+  echo $ECHO_N "0123456789$ECHO_C" >conftest.in
+  # Check for GNU sed and select it if it is found.
+  if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then
+    lt_cv_path_SED=$lt_ac_sed
+    break
+  fi
+  while true; do
+    cat conftest.in conftest.in >conftest.tmp
+    mv conftest.tmp conftest.in
+    cp conftest.in conftest.nl
+    echo >>conftest.nl
+    $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break
+    cmp -s conftest.out conftest.nl || break
+    # 10000 chars as input seems more than enough
+    test $lt_ac_count -gt 10 && break
+    lt_ac_count=`expr $lt_ac_count + 1`
+    if test $lt_ac_count -gt $lt_ac_max; then
+      lt_ac_max=$lt_ac_count
+      lt_cv_path_SED=$lt_ac_sed
+    fi
+  done
+done
+])
+SED=$lt_cv_path_SED
+AC_SUBST([SED])
+AC_MSG_RESULT([$SED])
+])#AC_PROG_SED
+])#m4_ifndef
+
+# Old name:
+AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED])
+dnl aclocal-1.4 backwards compatibility:
+dnl AC_DEFUN([LT_AC_PROG_SED], [])
+
+
+# _LT_CHECK_SHELL_FEATURES
+# ------------------------
+# Find out whether the shell is Bourne or XSI compatible,
+# or has some other useful features.
+m4_defun([_LT_CHECK_SHELL_FEATURES],
+[AC_MSG_CHECKING([whether the shell understands some XSI constructs])
+# Try some XSI features
+xsi_shell=no
+( _lt_dummy="a/b/c"
+  test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \
+      = c,a/b,b/c, \
+    && eval 'test $(( 1 + 1 )) -eq 2 \
+    && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \
+  && xsi_shell=yes
+AC_MSG_RESULT([$xsi_shell])
+_LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell'])
+
+AC_MSG_CHECKING([whether the shell understands "+="])
+lt_shell_append=no
+( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \
+    >/dev/null 2>&1 \
+  && lt_shell_append=yes
+AC_MSG_RESULT([$lt_shell_append])
+_LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append'])
+
+if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
+  lt_unset=unset
+else
+  lt_unset=false
+fi
+_LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl
+
+# test EBCDIC or ASCII
+case `echo X|tr X '\101'` in
+ A) # ASCII based system
+    # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr
+  lt_SP2NL='tr \040 \012'
+  lt_NL2SP='tr \015\012 \040\040'
+  ;;
+ *) # EBCDIC based system
+  lt_SP2NL='tr \100 \n'
+  lt_NL2SP='tr \r\n \100\100'
+  ;;
+esac
+_LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl
+_LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl
+])# _LT_CHECK_SHELL_FEATURES
+
+
+# _LT_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY)
+# ------------------------------------------------------
+# In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and
+# '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY.
+m4_defun([_LT_PROG_FUNCTION_REPLACE],
+[dnl {
+sed -e '/^$1 ()$/,/^} # $1 /c\
+$1 ()\
+{\
+m4_bpatsubsts([$2], [$], [\\], [^\([    ]\)], [\\\1])
+} # Extended-shell $1 implementation' "$cfgfile" > $cfgfile.tmp \
+  && mv -f "$cfgfile.tmp" "$cfgfile" \
+    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
+test 0 -eq $? || _lt_function_replace_fail=:
+])
+
+
+# _LT_PROG_REPLACE_SHELLFNS
+# -------------------------
+# Replace existing portable implementations of several shell functions with
+# equivalent extended shell implementations where those features are available..
+m4_defun([_LT_PROG_REPLACE_SHELLFNS],
+[if test x"$xsi_shell" = xyes; then
+  _LT_PROG_FUNCTION_REPLACE([func_dirname], [dnl
+    case ${1} in
+      */*) func_dirname_result="${1%/*}${2}" ;;
+      *  ) func_dirname_result="${3}" ;;
+    esac])
+
+  _LT_PROG_FUNCTION_REPLACE([func_basename], [dnl
+    func_basename_result="${1##*/}"])
+
+  _LT_PROG_FUNCTION_REPLACE([func_dirname_and_basename], [dnl
+    case ${1} in
+      */*) func_dirname_result="${1%/*}${2}" ;;
+      *  ) func_dirname_result="${3}" ;;
+    esac
+    func_basename_result="${1##*/}"])
+
+  _LT_PROG_FUNCTION_REPLACE([func_stripname], [dnl
+    # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are
+    # positional parameters, so assign one to ordinary parameter first.
+    func_stripname_result=${3}
+    func_stripname_result=${func_stripname_result#"${1}"}
+    func_stripname_result=${func_stripname_result%"${2}"}])
+
+  _LT_PROG_FUNCTION_REPLACE([func_split_long_opt], [dnl
+    func_split_long_opt_name=${1%%=*}
+    func_split_long_opt_arg=${1#*=}])
+
+  _LT_PROG_FUNCTION_REPLACE([func_split_short_opt], [dnl
+    func_split_short_opt_arg=${1#??}
+    func_split_short_opt_name=${1%"$func_split_short_opt_arg"}])
+
+  _LT_PROG_FUNCTION_REPLACE([func_lo2o], [dnl
+    case ${1} in
+      *.lo) func_lo2o_result=${1%.lo}.${objext} ;;
+      *)    func_lo2o_result=${1} ;;
+    esac])
+
+  _LT_PROG_FUNCTION_REPLACE([func_xform], [    func_xform_result=${1%.*}.lo])
+
+  _LT_PROG_FUNCTION_REPLACE([func_arith], [    func_arith_result=$(( $[*] ))])
+
+  _LT_PROG_FUNCTION_REPLACE([func_len], [    func_len_result=${#1}])
+fi
+
+if test x"$lt_shell_append" = xyes; then
+  _LT_PROG_FUNCTION_REPLACE([func_append], [    eval "${1}+=\\${2}"])
+
+  _LT_PROG_FUNCTION_REPLACE([func_append_quoted], [dnl
+    func_quote_for_eval "${2}"
+dnl m4 expansion turns \\\\ into \\, and then the shell eval turns that into \
+    eval "${1}+=\\\\ \\$func_quote_for_eval_result"])
+
+  # Save a `func_append' function call where possible by direct use of '+='
+  sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \
+    && mv -f "$cfgfile.tmp" "$cfgfile" \
+      || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
+  test 0 -eq $? || _lt_function_replace_fail=:
+else
+  # Save a `func_append' function call even when '+=' is not available
+  sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \
+    && mv -f "$cfgfile.tmp" "$cfgfile" \
+      || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
+  test 0 -eq $? || _lt_function_replace_fail=:
+fi
+
+if test x"$_lt_function_replace_fail" = x":"; then
+  AC_MSG_WARN([Unable to substitute extended shell functions in $ofile])
+fi
+])
+
+# _LT_PATH_CONVERSION_FUNCTIONS
+# -----------------------------
+# Determine which file name conversion functions should be used by
+# func_to_host_file (and, implicitly, by func_to_host_path).  These are needed
+# for certain cross-compile configurations and native mingw.
+m4_defun([_LT_PATH_CONVERSION_FUNCTIONS],
+[AC_REQUIRE([AC_CANONICAL_HOST])dnl
+AC_REQUIRE([AC_CANONICAL_BUILD])dnl
+AC_MSG_CHECKING([how to convert $build file names to $host format])
+AC_CACHE_VAL(lt_cv_to_host_file_cmd,
+[case $host in
+  *-*-mingw* )
+    case $build in
+      *-*-mingw* ) # actually msys
+        lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32
+        ;;
+      *-*-cygwin* )
+        lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32
+        ;;
+      * ) # otherwise, assume *nix
+        lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32
+        ;;
+    esac
+    ;;
+  *-*-cygwin* )
+    case $build in
+      *-*-mingw* ) # actually msys
+        lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin
+        ;;
+      *-*-cygwin* )
+        lt_cv_to_host_file_cmd=func_convert_file_noop
+        ;;
+      * ) # otherwise, assume *nix
+        lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin
+        ;;
+    esac
+    ;;
+  * ) # unhandled hosts (and "normal" native builds)
+    lt_cv_to_host_file_cmd=func_convert_file_noop
+    ;;
+esac
+])
+to_host_file_cmd=$lt_cv_to_host_file_cmd
+AC_MSG_RESULT([$lt_cv_to_host_file_cmd])
+_LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd],
+         [0], [convert $build file names to $host format])dnl
+
+AC_MSG_CHECKING([how to convert $build file names to toolchain format])
+AC_CACHE_VAL(lt_cv_to_tool_file_cmd,
+[#assume ordinary cross tools, or native build.
+lt_cv_to_tool_file_cmd=func_convert_file_noop
+case $host in
+  *-*-mingw* )
+    case $build in
+      *-*-mingw* ) # actually msys
+        lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32
+        ;;
+    esac
+    ;;
+esac
+])
+to_tool_file_cmd=$lt_cv_to_tool_file_cmd
+AC_MSG_RESULT([$lt_cv_to_tool_file_cmd])
+_LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd],
+         [0], [convert $build files to toolchain format])dnl
+])# _LT_PATH_CONVERSION_FUNCTIONS
+
+# Helper functions for option handling.                    -*- Autoconf -*-
+#
+#   Copyright (C) 2004, 2005, 2007, 2008, 2009 Free Software Foundation,
+#   Inc.
+#   Written by Gary V. Vaughan, 2004
+#
+# This file is free software; the Free Software Foundation gives
+# unlimited permission to copy and/or distribute it, with or without
+# modifications, as long as this notice is preserved.
+
+# serial 7 ltoptions.m4
+
+# This is to help aclocal find these macros, as it can't see m4_define.
+AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])
+
+
+# _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME)
+# ------------------------------------------
+m4_define([_LT_MANGLE_OPTION],
+[[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])])
+
+
+# _LT_SET_OPTION(MACRO-NAME, OPTION-NAME)
+# ---------------------------------------
+# Set option OPTION-NAME for macro MACRO-NAME, and if there is a
+# matching handler defined, dispatch to it.  Other OPTION-NAMEs are
+# saved as a flag.
+m4_define([_LT_SET_OPTION],
+[m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl
+m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]),
+        _LT_MANGLE_DEFUN([$1], [$2]),
+    [m4_warning([Unknown $1 option `$2'])])[]dnl
+])
+
+
+# _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET])
+# ------------------------------------------------------------
+# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
+m4_define([_LT_IF_OPTION],
+[m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])])
+
+
+# _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET)
+# -------------------------------------------------------
+# Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME
+# are set.
+m4_define([_LT_UNLESS_OPTIONS],
+[m4_foreach([_LT_Option], m4_split(m4_normalize([$2])),
+           [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option),
+                     [m4_define([$0_found])])])[]dnl
+m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3
+])[]dnl
+])
+
+
+# _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST)
+# ----------------------------------------
+# OPTION-LIST is a space-separated list of Libtool options associated
+# with MACRO-NAME.  If any OPTION has a matching handler declared with
+# LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about
+# the unknown option and exit.
+m4_defun([_LT_SET_OPTIONS],
+[# Set options
+m4_foreach([_LT_Option], m4_split(m4_normalize([$2])),
+    [_LT_SET_OPTION([$1], _LT_Option)])
+
+m4_if([$1],[LT_INIT],[
+  dnl
+  dnl Simply set some default values (i.e off) if boolean options were not
+  dnl specified:
+  _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no
+  ])
+  _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no
+  ])
+  dnl
+  dnl If no reference was made to various pairs of opposing options, then
+  dnl we run the default mode handler for the pair.  For example, if neither
+  dnl `shared' nor `disable-shared' was passed, we enable building of shared
+  dnl archives by default:
+  _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED])
+  _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC])
+  _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC])
+  _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install],
+                  [_LT_ENABLE_FAST_INSTALL])
+  ])
+])# _LT_SET_OPTIONS
+
+
+
+# _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME)
+# -----------------------------------------
+m4_define([_LT_MANGLE_DEFUN],
+[[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])])
+
+
+# LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE)
+# -----------------------------------------------
+m4_define([LT_OPTION_DEFINE],
+[m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl
+])# LT_OPTION_DEFINE
+
+
+# dlopen
+# ------
+LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes
+])
+
+AU_DEFUN([AC_LIBTOOL_DLOPEN],
+[_LT_SET_OPTION([LT_INIT], [dlopen])
+AC_DIAGNOSE([obsolete],
+[$0: Remove this warning and the call to _LT_SET_OPTION when you
+put the `dlopen' option into LT_INIT's first parameter.])
+])
+
+dnl aclocal-1.4 backwards compatibility:
+dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], [])
+
+
+# win32-dll
+# ---------
+# Declare package support for building win32 dll's.
+LT_OPTION_DEFINE([LT_INIT], [win32-dll],
+[enable_win32_dll=yes
+
+case $host in
+*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*)
+  AC_CHECK_TOOL(AS, as, false)
+  AC_CHECK_TOOL(DLLTOOL, dlltool, false)
+  AC_CHECK_TOOL(OBJDUMP, objdump, false)
+  ;;
+esac
+
+test -z "$AS" && AS=as
+_LT_DECL([], [AS],      [1], [Assembler program])dnl
+
+test -z "$DLLTOOL" && DLLTOOL=dlltool
+_LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl
+
+test -z "$OBJDUMP" && OBJDUMP=objdump
+_LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl
+])# win32-dll
+
+AU_DEFUN([AC_LIBTOOL_WIN32_DLL],
+[AC_REQUIRE([AC_CANONICAL_HOST])dnl
+_LT_SET_OPTION([LT_INIT], [win32-dll])
+AC_DIAGNOSE([obsolete],
+[$0: Remove this warning and the call to _LT_SET_OPTION when you
+put the `win32-dll' option into LT_INIT's first parameter.])
+])
+
+dnl aclocal-1.4 backwards compatibility:
+dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [])
+
+
+# _LT_ENABLE_SHARED([DEFAULT])
+# ----------------------------
+# implement the --enable-shared flag, and supports the `shared' and
+# `disable-shared' LT_INIT options.
+# DEFAULT is either `yes' or `no'.  If omitted, it defaults to `yes'.
+m4_define([_LT_ENABLE_SHARED],
+[m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl
+AC_ARG_ENABLE([shared],
+    [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@],
+       [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])],
+    [p=${PACKAGE-default}
+    case $enableval in
+    yes) enable_shared=yes ;;
+    no) enable_shared=no ;;
+    *)
+      enable_shared=no
+      # Look at the argument we got.  We use all the common list separators.
+      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
+      for pkg in $enableval; do
+       IFS="$lt_save_ifs"
+       if test "X$pkg" = "X$p"; then
+         enable_shared=yes
+       fi
+      done
+      IFS="$lt_save_ifs"
+      ;;
+    esac],
+    [enable_shared=]_LT_ENABLE_SHARED_DEFAULT)
+
+    _LT_DECL([build_libtool_libs], [enable_shared], [0],
+       [Whether or not to build shared libraries])
+])# _LT_ENABLE_SHARED
+
+LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])])
+LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])])
+
+# Old names:
+AC_DEFUN([AC_ENABLE_SHARED],
+[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared])
+])
+
+AC_DEFUN([AC_DISABLE_SHARED],
+[_LT_SET_OPTION([LT_INIT], [disable-shared])
+])
+
+AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])
+AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
+
+dnl aclocal-1.4 backwards compatibility:
+dnl AC_DEFUN([AM_ENABLE_SHARED], [])
+dnl AC_DEFUN([AM_DISABLE_SHARED], [])
+
+
+
+# _LT_ENABLE_STATIC([DEFAULT])
+# ----------------------------
+# implement the --enable-static flag, and support the `static' and
+# `disable-static' LT_INIT options.
+# DEFAULT is either `yes' or `no'.  If omitted, it defaults to `yes'.
+m4_define([_LT_ENABLE_STATIC],
+[m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl
+AC_ARG_ENABLE([static],
+    [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@],
+       [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])],
+    [p=${PACKAGE-default}
+    case $enableval in
+    yes) enable_static=yes ;;
+    no) enable_static=no ;;
+    *)
+     enable_static=no
+      # Look at the argument we got.  We use all the common list separators.
+      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
+      for pkg in $enableval; do
+       IFS="$lt_save_ifs"
+       if test "X$pkg" = "X$p"; then
+         enable_static=yes
+       fi
+      done
+      IFS="$lt_save_ifs"
+      ;;
+    esac],
+    [enable_static=]_LT_ENABLE_STATIC_DEFAULT)
+
+    _LT_DECL([build_old_libs], [enable_static], [0],
+       [Whether or not to build static libraries])
+])# _LT_ENABLE_STATIC
+
+LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])])
+LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])])
+
+# Old names:
+AC_DEFUN([AC_ENABLE_STATIC],
+[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static])
+])
+
+AC_DEFUN([AC_DISABLE_STATIC],
+[_LT_SET_OPTION([LT_INIT], [disable-static])
+])
+
+AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
+AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
+
+dnl aclocal-1.4 backwards compatibility:
+dnl AC_DEFUN([AM_ENABLE_STATIC], [])
+dnl AC_DEFUN([AM_DISABLE_STATIC], [])
+
+
+
+# _LT_ENABLE_FAST_INSTALL([DEFAULT])
+# ----------------------------------
+# implement the --enable-fast-install flag, and support the `fast-install'
+# and `disable-fast-install' LT_INIT options.
+# DEFAULT is either `yes' or `no'.  If omitted, it defaults to `yes'.
+m4_define([_LT_ENABLE_FAST_INSTALL],
+[m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl
+AC_ARG_ENABLE([fast-install],
+    [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@],
+    [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])],
+    [p=${PACKAGE-default}
+    case $enableval in
+    yes) enable_fast_install=yes ;;
+    no) enable_fast_install=no ;;
+    *)
+      enable_fast_install=no
+      # Look at the argument we got.  We use all the common list separators.
+      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
+      for pkg in $enableval; do
+       IFS="$lt_save_ifs"
+       if test "X$pkg" = "X$p"; then
+         enable_fast_install=yes
+       fi
+      done
+      IFS="$lt_save_ifs"
+      ;;
+    esac],
+    [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT)
+
+_LT_DECL([fast_install], [enable_fast_install], [0],
+        [Whether or not to optimize for fast installation])dnl
+])# _LT_ENABLE_FAST_INSTALL
+
+LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])])
+LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])])
+
+# Old names:
+AU_DEFUN([AC_ENABLE_FAST_INSTALL],
+[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
+AC_DIAGNOSE([obsolete],
+[$0: Remove this warning and the call to _LT_SET_OPTION when you put
+the `fast-install' option into LT_INIT's first parameter.])
+])
+
+AU_DEFUN([AC_DISABLE_FAST_INSTALL],
+[_LT_SET_OPTION([LT_INIT], [disable-fast-install])
+AC_DIAGNOSE([obsolete],
+[$0: Remove this warning and the call to _LT_SET_OPTION when you put
+the `disable-fast-install' option into LT_INIT's first parameter.])
+])
+
+dnl aclocal-1.4 backwards compatibility:
+dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], [])
+dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], [])
+
+
+# _LT_WITH_PIC([MODE])
+# --------------------
+# implement the --with-pic flag, and support the `pic-only' and `no-pic'
+# LT_INIT options.
+# MODE is either `yes' or `no'.  If omitted, it defaults to `both'.
+m4_define([_LT_WITH_PIC],
+[AC_ARG_WITH([pic],
+    [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@],
+       [try to use only PIC/non-PIC objects @<:@default=use both@:>@])],
+    [lt_p=${PACKAGE-default}
+    case $withval in
+    yes|no) pic_mode=$withval ;;
+    *)
+      pic_mode=default
+      # Look at the argument we got.  We use all the common list separators.
+      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
+      for lt_pkg in $withval; do
+       IFS="$lt_save_ifs"
+       if test "X$lt_pkg" = "X$lt_p"; then
+         pic_mode=yes
+       fi
+      done
+      IFS="$lt_save_ifs"
+      ;;
+    esac],
+    [pic_mode=default])
+
+test -z "$pic_mode" && pic_mode=m4_default([$1], [default])
+
+_LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl
+])# _LT_WITH_PIC
+
+LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])])
+LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])])
+
+# Old name:
+AU_DEFUN([AC_LIBTOOL_PICMODE],
+[_LT_SET_OPTION([LT_INIT], [pic-only])
+AC_DIAGNOSE([obsolete],
+[$0: Remove this warning and the call to _LT_SET_OPTION when you
+put the `pic-only' option into LT_INIT's first parameter.])
+])
+
+dnl aclocal-1.4 backwards compatibility:
+dnl AC_DEFUN([AC_LIBTOOL_PICMODE], [])
+
+
+m4_define([_LTDL_MODE], [])
+LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive],
+                [m4_define([_LTDL_MODE], [nonrecursive])])
+LT_OPTION_DEFINE([LTDL_INIT], [recursive],
+                [m4_define([_LTDL_MODE], [recursive])])
+LT_OPTION_DEFINE([LTDL_INIT], [subproject],
+                [m4_define([_LTDL_MODE], [subproject])])
+
+m4_define([_LTDL_TYPE], [])
+LT_OPTION_DEFINE([LTDL_INIT], [installable],
+                [m4_define([_LTDL_TYPE], [installable])])
+LT_OPTION_DEFINE([LTDL_INIT], [convenience],
+                [m4_define([_LTDL_TYPE], [convenience])])
+
+# ltsugar.m4 -- libtool m4 base layer.                         -*-Autoconf-*-
+#
+# Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc.
+# Written by Gary V. Vaughan, 2004
+#
+# This file is free software; the Free Software Foundation gives
+# unlimited permission to copy and/or distribute it, with or without
+# modifications, as long as this notice is preserved.
+
+# serial 6 ltsugar.m4
+
+# This is to help aclocal find these macros, as it can't see m4_define.
+AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])])
+
+
+# lt_join(SEP, ARG1, [ARG2...])
+# -----------------------------
+# Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their
+# associated separator.
+# Needed until we can rely on m4_join from Autoconf 2.62, since all earlier
+# versions in m4sugar had bugs.
+m4_define([lt_join],
+[m4_if([$#], [1], [],
+       [$#], [2], [[$2]],
+       [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])])
+m4_define([_lt_join],
+[m4_if([$#$2], [2], [],
+       [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])])
+
+
+# lt_car(LIST)
+# lt_cdr(LIST)
+# ------------
+# Manipulate m4 lists.
+# These macros are necessary as long as will still need to support
+# Autoconf-2.59 which quotes differently.
+m4_define([lt_car], [[$1]])
+m4_define([lt_cdr],
+[m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])],
+       [$#], 1, [],
+       [m4_dquote(m4_shift($@))])])
+m4_define([lt_unquote], $1)
+
+
+# lt_append(MACRO-NAME, STRING, [SEPARATOR])
+# ------------------------------------------
+# Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'.
+# Note that neither SEPARATOR nor STRING are expanded; they are appended
+# to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked).
+# No SEPARATOR is output if MACRO-NAME was previously undefined (different
+# than defined and empty).
+#
+# This macro is needed until we can rely on Autoconf 2.62, since earlier
+# versions of m4sugar mistakenly expanded SEPARATOR but not STRING.
+m4_define([lt_append],
+[m4_define([$1],
+          m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])])
+
+
+
+# lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...])
+# ----------------------------------------------------------
+# Produce a SEP delimited list of all paired combinations of elements of
+# PREFIX-LIST with SUFFIX1 through SUFFIXn.  Each element of the list
+# has the form PREFIXmINFIXSUFFIXn.
+# Needed until we can rely on m4_combine added in Autoconf 2.62.
+m4_define([lt_combine],
+[m4_if(m4_eval([$# > 3]), [1],
+       [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl
+[[m4_foreach([_Lt_prefix], [$2],
+            [m4_foreach([_Lt_suffix],
+               ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[,
+       [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])])
+
+
+# lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ])
+# -----------------------------------------------------------------------
+# Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited
+# by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ.
+m4_define([lt_if_append_uniq],
+[m4_ifdef([$1],
+         [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1],
+                [lt_append([$1], [$2], [$3])$4],
+                [$5])],
+         [lt_append([$1], [$2], [$3])$4])])
+
+
+# lt_dict_add(DICT, KEY, VALUE)
+# -----------------------------
+m4_define([lt_dict_add],
+[m4_define([$1($2)], [$3])])
+
+
+# lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE)
+# --------------------------------------------
+m4_define([lt_dict_add_subkey],
+[m4_define([$1($2:$3)], [$4])])
+
+
+# lt_dict_fetch(DICT, KEY, [SUBKEY])
+# ----------------------------------
+m4_define([lt_dict_fetch],
+[m4_ifval([$3],
+       m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]),
+    m4_ifdef([$1($2)], [m4_defn([$1($2)])]))])
+
+
+# lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE])
+# -----------------------------------------------------------------
+m4_define([lt_if_dict_fetch],
+[m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4],
+       [$5],
+    [$6])])
+
+
+# lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...])
+# --------------------------------------------------------------
+m4_define([lt_dict_filter],
+[m4_if([$5], [], [],
+  [lt_join(m4_quote(m4_default([$4], [[, ]])),
+           lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]),
+                     [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl
+])
+
+# ltversion.m4 -- version numbers                      -*- Autoconf -*-
+#
+#   Copyright (C) 2004 Free Software Foundation, Inc.
+#   Written by Scott James Remnant, 2004
+#
+# This file is free software; the Free Software Foundation gives
+# unlimited permission to copy and/or distribute it, with or without
+# modifications, as long as this notice is preserved.
+
+# @configure_input@
+
+# serial 3337 ltversion.m4
+# This file is part of GNU Libtool
+
+m4_define([LT_PACKAGE_VERSION], [2.4.2])
+m4_define([LT_PACKAGE_REVISION], [1.3337])
+
+AC_DEFUN([LTVERSION_VERSION],
+[macro_version='2.4.2'
+macro_revision='1.3337'
+_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
+_LT_DECL(, macro_revision, 0)
+])
+
+# lt~obsolete.m4 -- aclocal satisfying obsolete definitions.    -*-Autoconf-*-
+#
+#   Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc.
+#   Written by Scott James Remnant, 2004.
+#
+# This file is free software; the Free Software Foundation gives
+# unlimited permission to copy and/or distribute it, with or without
+# modifications, as long as this notice is preserved.
+
+# serial 5 lt~obsolete.m4
+
+# These exist entirely to fool aclocal when bootstrapping libtool.
+#
+# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN)
+# which have later been changed to m4_define as they aren't part of the
+# exported API, or moved to Autoconf or Automake where they belong.
+#
+# The trouble is, aclocal is a bit thick.  It'll see the old AC_DEFUN
+# in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us
+# using a macro with the same name in our local m4/libtool.m4 it'll
+# pull the old libtool.m4 in (it doesn't see our shiny new m4_define
+# and doesn't know about Autoconf macros at all.)
+#
+# So we provide this file, which has a silly filename so it's always
+# included after everything else.  This provides aclocal with the
+# AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything
+# because those macros already exist, or will be overwritten later.
+# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. 
+#
+# Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here.
+# Yes, that means every name once taken will need to remain here until
+# we give up compatibility with versions before 1.7, at which point
+# we need to keep only those names which we still refer to.
+
+# This is to help aclocal find these macros, as it can't see m4_define.
+AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])])
+
+m4_ifndef([AC_LIBTOOL_LINKER_OPTION],  [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])])
+m4_ifndef([AC_PROG_EGREP],             [AC_DEFUN([AC_PROG_EGREP])])
+m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH],        [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])])
+m4_ifndef([_LT_AC_SHELL_INIT],         [AC_DEFUN([_LT_AC_SHELL_INIT])])
+m4_ifndef([_LT_AC_SYS_LIBPATH_AIX],    [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])])
+m4_ifndef([_LT_PROG_LTMAIN],           [AC_DEFUN([_LT_PROG_LTMAIN])])
+m4_ifndef([_LT_AC_TAGVAR],             [AC_DEFUN([_LT_AC_TAGVAR])])
+m4_ifndef([AC_LTDL_ENABLE_INSTALL],    [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])])
+m4_ifndef([AC_LTDL_PREOPEN],           [AC_DEFUN([AC_LTDL_PREOPEN])])
+m4_ifndef([_LT_AC_SYS_COMPILER],       [AC_DEFUN([_LT_AC_SYS_COMPILER])])
+m4_ifndef([_LT_AC_LOCK],               [AC_DEFUN([_LT_AC_LOCK])])
+m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE],        [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])])
+m4_ifndef([_LT_AC_TRY_DLOPEN_SELF],    [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])])
+m4_ifndef([AC_LIBTOOL_PROG_CC_C_O],    [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])])
+m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])])
+m4_ifndef([AC_LIBTOOL_OBJDIR],         [AC_DEFUN([AC_LIBTOOL_OBJDIR])])
+m4_ifndef([AC_LTDL_OBJDIR],            [AC_DEFUN([AC_LTDL_OBJDIR])])
+m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])])
+m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP],  [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])])
+m4_ifndef([AC_PATH_MAGIC],             [AC_DEFUN([AC_PATH_MAGIC])])
+m4_ifndef([AC_PROG_LD_GNU],            [AC_DEFUN([AC_PROG_LD_GNU])])
+m4_ifndef([AC_PROG_LD_RELOAD_FLAG],    [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])])
+m4_ifndef([AC_DEPLIBS_CHECK_METHOD],   [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])])
+m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])])
+m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])])
+m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])])
+m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])])
+m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])])
+m4_ifndef([LT_AC_PROG_EGREP],          [AC_DEFUN([LT_AC_PROG_EGREP])])
+m4_ifndef([LT_AC_PROG_SED],            [AC_DEFUN([LT_AC_PROG_SED])])
+m4_ifndef([_LT_CC_BASENAME],           [AC_DEFUN([_LT_CC_BASENAME])])
+m4_ifndef([_LT_COMPILER_BOILERPLATE],  [AC_DEFUN([_LT_COMPILER_BOILERPLATE])])
+m4_ifndef([_LT_LINKER_BOILERPLATE],    [AC_DEFUN([_LT_LINKER_BOILERPLATE])])
+m4_ifndef([_AC_PROG_LIBTOOL],          [AC_DEFUN([_AC_PROG_LIBTOOL])])
+m4_ifndef([AC_LIBTOOL_SETUP],          [AC_DEFUN([AC_LIBTOOL_SETUP])])
+m4_ifndef([_LT_AC_CHECK_DLFCN],                [AC_DEFUN([_LT_AC_CHECK_DLFCN])])
+m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER],     [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])])
+m4_ifndef([_LT_AC_TAGCONFIG],          [AC_DEFUN([_LT_AC_TAGCONFIG])])
+m4_ifndef([AC_DISABLE_FAST_INSTALL],   [AC_DEFUN([AC_DISABLE_FAST_INSTALL])])
+m4_ifndef([_LT_AC_LANG_CXX],           [AC_DEFUN([_LT_AC_LANG_CXX])])
+m4_ifndef([_LT_AC_LANG_F77],           [AC_DEFUN([_LT_AC_LANG_F77])])
+m4_ifndef([_LT_AC_LANG_GCJ],           [AC_DEFUN([_LT_AC_LANG_GCJ])])
+m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG],  [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])])
+m4_ifndef([_LT_AC_LANG_C_CONFIG],      [AC_DEFUN([_LT_AC_LANG_C_CONFIG])])
+m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG],        [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])])
+m4_ifndef([_LT_AC_LANG_CXX_CONFIG],    [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])])
+m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG],        [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])])
+m4_ifndef([_LT_AC_LANG_F77_CONFIG],    [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])])
+m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG],        [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])])
+m4_ifndef([_LT_AC_LANG_GCJ_CONFIG],    [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])])
+m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])])
+m4_ifndef([_LT_AC_LANG_RC_CONFIG],     [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])])
+m4_ifndef([AC_LIBTOOL_CONFIG],         [AC_DEFUN([AC_LIBTOOL_CONFIG])])
+m4_ifndef([_LT_AC_FILE_LTDLL_C],       [AC_DEFUN([_LT_AC_FILE_LTDLL_C])])
+m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS],        [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])])
+m4_ifndef([_LT_AC_PROG_CXXCPP],                [AC_DEFUN([_LT_AC_PROG_CXXCPP])])
+m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS],        [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])])
+m4_ifndef([_LT_PROG_ECHO_BACKSLASH],   [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])])
+m4_ifndef([_LT_PROG_F77],              [AC_DEFUN([_LT_PROG_F77])])
+m4_ifndef([_LT_PROG_FC],               [AC_DEFUN([_LT_PROG_FC])])
+m4_ifndef([_LT_PROG_CXX],              [AC_DEFUN([_LT_PROG_CXX])])
+
+# pkg.m4 - Macros to locate and utilise pkg-config.            -*- Autoconf -*-
+# serial 1 (pkg-config-0.24)
+# 
+# Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+# As a special exception to the GNU General Public License, if you
+# distribute this file as part of a program that contains a
+# configuration script generated by Autoconf, you may include it under
+# the same distribution terms that you use for the rest of that program.
+
+# PKG_PROG_PKG_CONFIG([MIN-VERSION])
+# ----------------------------------
+AC_DEFUN([PKG_PROG_PKG_CONFIG],
+[m4_pattern_forbid([^_?PKG_[A-Z_]+$])
+m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
+m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
+AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
+AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
+AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
+
+if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
+       AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
+fi
+if test -n "$PKG_CONFIG"; then
+       _pkg_min_version=m4_default([$1], [0.9.0])
+       AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
+       if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
+               AC_MSG_RESULT([yes])
+       else
+               AC_MSG_RESULT([no])
+               PKG_CONFIG=""
+       fi
+fi[]dnl
+])# PKG_PROG_PKG_CONFIG
+
+# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
+#
+# Check to see whether a particular set of modules exists.  Similar
+# to PKG_CHECK_MODULES(), but does not set variables or print errors.
+#
+# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
+# only at the first occurence in configure.ac, so if the first place
+# it's called might be skipped (such as if it is within an "if", you
+# have to call PKG_CHECK_EXISTS manually
+# --------------------------------------------------------------
+AC_DEFUN([PKG_CHECK_EXISTS],
+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
+if test -n "$PKG_CONFIG" && \
+    AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
+  m4_default([$2], [:])
+m4_ifvaln([$3], [else
+  $3])dnl
+fi])
+
+# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
+# ---------------------------------------------
+m4_define([_PKG_CONFIG],
+[if test -n "$$1"; then
+    pkg_cv_[]$1="$$1"
+ elif test -n "$PKG_CONFIG"; then
+    PKG_CHECK_EXISTS([$3],
+                     [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`
+                     test "x$?" != "x0" && pkg_failed=yes ],
+                    [pkg_failed=yes])
+ else
+    pkg_failed=untried
+fi[]dnl
+])# _PKG_CONFIG
+
+# _PKG_SHORT_ERRORS_SUPPORTED
+# -----------------------------
+AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
+        _pkg_short_errors_supported=yes
+else
+        _pkg_short_errors_supported=no
+fi[]dnl
+])# _PKG_SHORT_ERRORS_SUPPORTED
+
+
+# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
+# [ACTION-IF-NOT-FOUND])
+#
+#
+# Note that if there is a possibility the first call to
+# PKG_CHECK_MODULES might not happen, you should be sure to include an
+# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
+#
+#
+# --------------------------------------------------------------
+AC_DEFUN([PKG_CHECK_MODULES],
+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
+AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
+AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
+
+pkg_failed=no
+AC_MSG_CHECKING([for $1])
+
+_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
+_PKG_CONFIG([$1][_LIBS], [libs], [$2])
+
+m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
+and $1[]_LIBS to avoid the need to call pkg-config.
+See the pkg-config man page for more details.])
+
+if test $pkg_failed = yes; then
+       AC_MSG_RESULT([no])
+        _PKG_SHORT_ERRORS_SUPPORTED
+        if test $_pkg_short_errors_supported = yes; then
+               $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
+        else 
+               $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
+        fi
+       # Put the nasty error message in config.log where it belongs
+       echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
+
+       m4_default([$4], [AC_MSG_ERROR(
+[Package requirements ($2) were not met:
+
+$$1_PKG_ERRORS
+
+Consider adjusting the PKG_CONFIG_PATH environment variable if you
+installed software in a non-standard prefix.
+
+_PKG_TEXT])[]dnl
+        ])
+elif test $pkg_failed = untried; then
+       AC_MSG_RESULT([no])
+       m4_default([$4], [AC_MSG_FAILURE(
+[The pkg-config script could not be found or is too old.  Make sure it
+is in your PATH or set the PKG_CONFIG environment variable to the full
+path to pkg-config.
+
+_PKG_TEXT
+
+To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl
+        ])
+else
+       $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
+       $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
+        AC_MSG_RESULT([yes])
+       $3
+fi[]dnl
+])# PKG_CHECK_MODULES
+
+# Configure paths for GLIB
+# Owen Taylor     1997-2001
+
+dnl AM_PATH_GLIB_2_0([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, MODULES]]]])
+dnl Test for GLIB, and define GLIB_CFLAGS and GLIB_LIBS, if gmodule, gobject,
+dnl gthread, or gio is specified in MODULES, pass to pkg-config
+dnl
+AC_DEFUN([AM_PATH_GLIB_2_0],
+[dnl 
+dnl Get the cflags and libraries from pkg-config
+dnl
+AC_ARG_ENABLE(glibtest, [  --disable-glibtest      do not try to compile and run a test GLIB program],
+                   , enable_glibtest=yes)
+
+  pkg_config_args=glib-2.0
+  for module in . $4
+  do
+      case "$module" in
+         gmodule) 
+             pkg_config_args="$pkg_config_args gmodule-2.0"
+         ;;
+         gmodule-no-export) 
+             pkg_config_args="$pkg_config_args gmodule-no-export-2.0"
+         ;;
+         gobject) 
+             pkg_config_args="$pkg_config_args gobject-2.0"
+         ;;
+         gthread) 
+             pkg_config_args="$pkg_config_args gthread-2.0"
+         ;;
+         gio*) 
+             pkg_config_args="$pkg_config_args $module-2.0"
+         ;;
+      esac
+  done
+
+  PKG_PROG_PKG_CONFIG([0.16])
+
+  no_glib=""
+
+  if test "x$PKG_CONFIG" = x ; then
+    no_glib=yes
+    PKG_CONFIG=no
+  fi
+
+  min_glib_version=ifelse([$1], ,2.0.0,$1)
+  AC_MSG_CHECKING(for GLIB - version >= $min_glib_version)
+
+  if test x$PKG_CONFIG != xno ; then
+    ## don't try to run the test against uninstalled libtool libs
+    if $PKG_CONFIG --uninstalled $pkg_config_args; then
+         echo "Will use uninstalled version of GLib found in PKG_CONFIG_PATH"
+         enable_glibtest=no
+    fi
+
+    if $PKG_CONFIG --atleast-version $min_glib_version $pkg_config_args; then
+         :
+    else
+         no_glib=yes
+    fi
+  fi
+
+  if test x"$no_glib" = x ; then
+    GLIB_GENMARSHAL=`$PKG_CONFIG --variable=glib_genmarshal glib-2.0`
+    GOBJECT_QUERY=`$PKG_CONFIG --variable=gobject_query glib-2.0`
+    GLIB_MKENUMS=`$PKG_CONFIG --variable=glib_mkenums glib-2.0`
+    GLIB_COMPILE_RESOURCES=`$PKG_CONFIG --variable=glib_compile_resources gio-2.0`
+
+    GLIB_CFLAGS=`$PKG_CONFIG --cflags $pkg_config_args`
+    GLIB_LIBS=`$PKG_CONFIG --libs $pkg_config_args`
+    glib_config_major_version=`$PKG_CONFIG --modversion glib-2.0 | \
+           sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+    glib_config_minor_version=`$PKG_CONFIG --modversion glib-2.0 | \
+           sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+    glib_config_micro_version=`$PKG_CONFIG --modversion glib-2.0 | \
+           sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+    if test "x$enable_glibtest" = "xyes" ; then
+      ac_save_CFLAGS="$CFLAGS"
+      ac_save_LIBS="$LIBS"
+      CFLAGS="$CFLAGS $GLIB_CFLAGS"
+      LIBS="$GLIB_LIBS $LIBS"
+dnl
+dnl Now check if the installed GLIB is sufficiently new. (Also sanity
+dnl checks the results of pkg-config to some extent)
+dnl
+      rm -f conf.glibtest
+      AC_TRY_RUN([
+#include <glib.h>
+#include <stdio.h>
+#include <stdlib.h>
+
+int 
+main ()
+{
+  unsigned int major, minor, micro;
+  char *tmp_version;
+
+  fclose (fopen ("conf.glibtest", "w"));
+
+  /* HP/UX 9 (%@#!) writes to sscanf strings */
+  tmp_version = g_strdup("$min_glib_version");
+  if (sscanf(tmp_version, "%u.%u.%u", &major, &minor, &micro) != 3) {
+     printf("%s, bad version string\n", "$min_glib_version");
+     exit(1);
+   }
+
+  if ((glib_major_version != $glib_config_major_version) ||
+      (glib_minor_version != $glib_config_minor_version) ||
+      (glib_micro_version != $glib_config_micro_version))
+    {
+      printf("\n*** 'pkg-config --modversion glib-2.0' returned %d.%d.%d, but GLIB (%d.%d.%d)\n", 
+             $glib_config_major_version, $glib_config_minor_version, $glib_config_micro_version,
+             glib_major_version, glib_minor_version, glib_micro_version);
+      printf ("*** was found! If pkg-config was correct, then it is best\n");
+      printf ("*** to remove the old version of GLib. You may also be able to fix the error\n");
+      printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n");
+      printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n");
+      printf("*** required on your system.\n");
+      printf("*** If pkg-config was wrong, set the environment variable PKG_CONFIG_PATH\n");
+      printf("*** to point to the correct configuration files\n");
+    } 
+  else if ((glib_major_version != GLIB_MAJOR_VERSION) ||
+          (glib_minor_version != GLIB_MINOR_VERSION) ||
+           (glib_micro_version != GLIB_MICRO_VERSION))
+    {
+      printf("*** GLIB header files (version %d.%d.%d) do not match\n",
+            GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION);
+      printf("*** library (version %d.%d.%d)\n",
+            glib_major_version, glib_minor_version, glib_micro_version);
+    }
+  else
+    {
+      if ((glib_major_version > major) ||
+        ((glib_major_version == major) && (glib_minor_version > minor)) ||
+        ((glib_major_version == major) && (glib_minor_version == minor) && (glib_micro_version >= micro)))
+      {
+        return 0;
+       }
+     else
+      {
+        printf("\n*** An old version of GLIB (%u.%u.%u) was found.\n",
+               glib_major_version, glib_minor_version, glib_micro_version);
+        printf("*** You need a version of GLIB newer than %u.%u.%u. The latest version of\n",
+              major, minor, micro);
+        printf("*** GLIB is always available from ftp://ftp.gtk.org.\n");
+        printf("***\n");
+        printf("*** If you have already installed a sufficiently new version, this error\n");
+        printf("*** probably means that the wrong copy of the pkg-config shell script is\n");
+        printf("*** being found. The easiest way to fix this is to remove the old version\n");
+        printf("*** of GLIB, but you can also set the PKG_CONFIG environment to point to the\n");
+        printf("*** correct copy of pkg-config. (In this case, you will have to\n");
+        printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n");
+        printf("*** so that the correct libraries are found at run-time))\n");
+      }
+    }
+  return 1;
+}
+],, no_glib=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
+       CFLAGS="$ac_save_CFLAGS"
+       LIBS="$ac_save_LIBS"
+     fi
+  fi
+  if test "x$no_glib" = x ; then
+     AC_MSG_RESULT(yes (version $glib_config_major_version.$glib_config_minor_version.$glib_config_micro_version))
+     ifelse([$2], , :, [$2])     
+  else
+     AC_MSG_RESULT(no)
+     if test "$PKG_CONFIG" = "no" ; then
+       echo "*** A new enough version of pkg-config was not found."
+       echo "*** See http://www.freedesktop.org/software/pkgconfig/"
+     else
+       if test -f conf.glibtest ; then
+        :
+       else
+          echo "*** Could not run GLIB test program, checking why..."
+          ac_save_CFLAGS="$CFLAGS"
+          ac_save_LIBS="$LIBS"
+          CFLAGS="$CFLAGS $GLIB_CFLAGS"
+          LIBS="$LIBS $GLIB_LIBS"
+          AC_TRY_LINK([
+#include <glib.h>
+#include <stdio.h>
+],      [ return ((glib_major_version) || (glib_minor_version) || (glib_micro_version)); ],
+        [ echo "*** The test program compiled, but did not run. This usually means"
+          echo "*** that the run-time linker is not finding GLIB or finding the wrong"
+          echo "*** version of GLIB. If it is not finding GLIB, you'll need to set your"
+          echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
+          echo "*** to the installed location  Also, make sure you have run ldconfig if that"
+          echo "*** is required on your system"
+         echo "***"
+          echo "*** If you have an old version installed, it is best to remove it, although"
+          echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" ],
+        [ echo "*** The test program failed to compile or link. See the file config.log for the"
+          echo "*** exact error that occured. This usually means GLIB is incorrectly installed."])
+          CFLAGS="$ac_save_CFLAGS"
+          LIBS="$ac_save_LIBS"
+       fi
+     fi
+     GLIB_CFLAGS=""
+     GLIB_LIBS=""
+     GLIB_GENMARSHAL=""
+     GOBJECT_QUERY=""
+     GLIB_MKENUMS=""
+     GLIB_COMPILE_RESOURCES=""
+     ifelse([$3], , :, [$3])
+  fi
+  AC_SUBST(GLIB_CFLAGS)
+  AC_SUBST(GLIB_LIBS)
+  AC_SUBST(GLIB_GENMARSHAL)
+  AC_SUBST(GOBJECT_QUERY)
+  AC_SUBST(GLIB_MKENUMS)
+  AC_SUBST(GLIB_COMPILE_RESOURCES)
+  rm -f conf.glibtest
+])
 
-m4_include([m4/as-ac-expand.m4])
-m4_include([m4/jhflags.m4])
-m4_include([m4/libtool.m4])
-m4_include([m4/ltoptions.m4])
-m4_include([m4/ltsugar.m4])
-m4_include([m4/ltversion.m4])
-m4_include([m4/lt~obsolete.m4])
-m4_include([m4/python.m4])
index de45806..72d7f6b 100755 (executable)
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for pygobject 3.4.2.
+# Generated by GNU Autoconf 2.69 for pygobject 3.7.1.
 #
 # Report bugs to <http://bugzilla.gnome.org/enter_bug.cgi?product=pygobject>.
 #
@@ -591,8 +591,8 @@ MAKEFLAGS=
 # Identity of this package.
 PACKAGE_NAME='pygobject'
 PACKAGE_TARNAME='pygobject'
-PACKAGE_VERSION='3.4.2'
-PACKAGE_STRING='pygobject 3.4.2'
+PACKAGE_VERSION='3.7.1'
+PACKAGE_STRING='pygobject 3.7.1'
 PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=pygobject'
 PACKAGE_URL=''
 
@@ -1385,7 +1385,7 @@ if test "$ac_init_help" = "long"; then
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures pygobject 3.4.2 to adapt to many kinds of systems.
+\`configure' configures pygobject 3.7.1 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1455,7 +1455,7 @@ fi
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of pygobject 3.4.2:";;
+     short | recursive ) echo "Configuration of pygobject 3.7.1:";;
    esac
   cat <<\_ACEOF
 
@@ -1584,7 +1584,7 @@ fi
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-pygobject configure 3.4.2
+pygobject configure 3.7.1
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1862,7 +1862,7 @@ cat >config.log <<_ACEOF
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by pygobject $as_me 3.4.2, which was
+It was created by pygobject $as_me 3.7.1, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -2221,14 +2221,14 @@ $as_echo "#define PYGOBJECT_MAJOR_VERSION 3" >>confdefs.h
 PYGOBJECT_MAJOR_VERSION=3
 
 
-$as_echo "#define PYGOBJECT_MINOR_VERSION 4" >>confdefs.h
+$as_echo "#define PYGOBJECT_MINOR_VERSION 7" >>confdefs.h
 
-PYGOBJECT_MINOR_VERSION=4
+PYGOBJECT_MINOR_VERSION=7
 
 
-$as_echo "#define PYGOBJECT_MICRO_VERSION 2" >>confdefs.h
+$as_echo "#define PYGOBJECT_MICRO_VERSION 1" >>confdefs.h
 
-PYGOBJECT_MICRO_VERSION=2
+PYGOBJECT_MICRO_VERSION=1
 
 
 ac_config_headers="$ac_config_headers config.h"
@@ -2739,7 +2739,7 @@ fi
 
 # Define the identity of the package.
  PACKAGE='pygobject'
- VERSION='3.4.2'
+ VERSION='3.7.1'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -5447,6 +5447,10 @@ freebsd* | dragonfly*)
   fi
   ;;
 
+gnu*)
+  lt_cv_deplibs_check_method=pass_all
+  ;;
+
 haiku*)
   lt_cv_deplibs_check_method=pass_all
   ;;
@@ -5485,7 +5489,7 @@ irix5* | irix6* | nonstopux*)
   ;;
 
 # This must be glibc/ELF.
-linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
+linux* | k*bsd*-gnu | kopensolaris*-gnu)
   lt_cv_deplibs_check_method=pass_all
   ;;
 
@@ -8161,10 +8165,6 @@ _lt_linker_boilerplate=`cat conftest.err`
 $RM -r conftest*
 
 
-## CAVEAT EMPTOR:
-## There is no encapsulation within the following macros, do not change
-## the running order or otherwise move them around unless you know exactly
-## what you are doing...
 if test -n "$compiler"; then
 
 lt_prog_compiler_no_builtin_flag=
@@ -8377,7 +8377,7 @@ lt_prog_compiler_static=
       lt_prog_compiler_static='-non_shared'
       ;;
 
-    linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
+    linux* | k*bsd*-gnu | kopensolaris*-gnu)
       case $cc_basename in
       # old Intel for x86_64 which still supported -KPIC.
       ecc*)
@@ -10547,6 +10547,17 @@ freebsd* | dragonfly*)
   esac
   ;;
 
+gnu*)
+  version_type=linux # correct to gnu/linux during the next big refactor
+  need_lib_prefix=no
+  need_version=no
+  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
+  soname_spec='${libname}${release}${shared_ext}$major'
+  shlibpath_var=LD_LIBRARY_PATH
+  shlibpath_overrides_runpath=no
+  hardcode_into_libs=yes
+  ;;
+
 haiku*)
   version_type=linux # correct to gnu/linux during the next big refactor
   need_lib_prefix=no
@@ -10663,7 +10674,7 @@ linux*oldld* | linux*aout* | linux*coff*)
   ;;
 
 # This must be glibc/ELF.
-linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
+linux* | k*bsd*-gnu | kopensolaris*-gnu)
   version_type=linux # correct to gnu/linux during the next big refactor
   need_lib_prefix=no
   need_version=no
@@ -12115,7 +12126,7 @@ Usage: $0 [OPTIONS]
 Report bugs to <bug-libtool@gnu.org>."
 
 lt_cl_version="\
-pygobject config.lt 3.4.2
+pygobject config.lt 3.7.1
 configured by $0, generated by GNU Autoconf 2.69.
 
 Copyright (C) 2011 Free Software Foundation, Inc.
@@ -15826,16 +15837,16 @@ if test -n "$GI_CFLAGS"; then
  elif test -n "$PKG_CONFIG"; then
     if test -n "$PKG_CONFIG" && \
     { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= 2.31.0
-    gobject-introspection-1.0 >= 1.34.1.1
+    gobject-introspection-1.0 >= 1.33.14
 \""; } >&5
   ($PKG_CONFIG --exists --print-errors "glib-2.0 >= 2.31.0
-    gobject-introspection-1.0 >= 1.34.1.1
+    gobject-introspection-1.0 >= 1.33.14
 ") 2>&5
   ac_status=$?
   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
   test $ac_status = 0; }; then
   pkg_cv_GI_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 >= 2.31.0
-    gobject-introspection-1.0 >= 1.34.1.1
+    gobject-introspection-1.0 >= 1.33.14
 " 2>/dev/null`
                      test "x$?" != "x0" && pkg_failed=yes
 else
@@ -15849,16 +15860,16 @@ if test -n "$GI_LIBS"; then
  elif test -n "$PKG_CONFIG"; then
     if test -n "$PKG_CONFIG" && \
     { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glib-2.0 >= 2.31.0
-    gobject-introspection-1.0 >= 1.34.1.1
+    gobject-introspection-1.0 >= 1.33.14
 \""; } >&5
   ($PKG_CONFIG --exists --print-errors "glib-2.0 >= 2.31.0
-    gobject-introspection-1.0 >= 1.34.1.1
+    gobject-introspection-1.0 >= 1.33.14
 ") 2>&5
   ac_status=$?
   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
   test $ac_status = 0; }; then
   pkg_cv_GI_LIBS=`$PKG_CONFIG --libs "glib-2.0 >= 2.31.0
-    gobject-introspection-1.0 >= 1.34.1.1
+    gobject-introspection-1.0 >= 1.33.14
 " 2>/dev/null`
                      test "x$?" != "x0" && pkg_failed=yes
 else
@@ -15881,18 +15892,18 @@ else
 fi
         if test $_pkg_short_errors_supported = yes; then
                GI_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "glib-2.0 >= 2.31.0
-    gobject-introspection-1.0 >= 1.34.1.1
+    gobject-introspection-1.0 >= 1.33.14
 " 2>&1`
         else
                GI_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "glib-2.0 >= 2.31.0
-    gobject-introspection-1.0 >= 1.34.1.1
+    gobject-introspection-1.0 >= 1.33.14
 " 2>&1`
         fi
        # Put the nasty error message in config.log where it belongs
        echo "$GI_PKG_ERRORS" >&5
 
        as_fn_error $? "Package requirements (glib-2.0 >= 2.31.0
-    gobject-introspection-1.0 >= 1.34.1.1
+    gobject-introspection-1.0 >= 1.33.14
 ) were not met:
 
 $GI_PKG_ERRORS
@@ -17069,7 +17080,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by pygobject $as_me 3.4.2, which was
+This file was extended by pygobject $as_me 3.7.1, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -17135,7 +17146,7 @@ _ACEOF
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-pygobject config.status 3.4.2
+pygobject config.status 3.7.1
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\"\$ac_cs_config\\"
 
index bda8eef..b6c3557 100644 (file)
@@ -11,12 +11,12 @@ m4_define(python3_min_ver, 3.1)
 
 dnl the pygobject version number
 m4_define(pygobject_major_version, 3)
-m4_define(pygobject_minor_version, 4)
-m4_define(pygobject_micro_version, 2)
+m4_define(pygobject_minor_version, 7)
+m4_define(pygobject_micro_version, 1)
 m4_define(pygobject_version, pygobject_major_version.pygobject_minor_version.pygobject_micro_version)
 
 dnl versions of packages we require ...
-m4_define(introspection_required_version, 1.34.1.1)
+m4_define(introspection_required_version, 1.33.14)
 m4_define(py2cairo_required_version, 1.2.0)
 m4_define(py3cairo_required_version, 1.10.0)
 m4_define(glib_required_version, 2.31.0)
index 26e1fd0..bd170ca 100644 (file)
@@ -54,10 +54,8 @@ subdir = examples
 DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/as-ac-expand.m4 \
-       $(top_srcdir)/m4/jhflags.m4 $(top_srcdir)/m4/libtool.m4 \
-       $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
-       $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
-       $(top_srcdir)/m4/python.m4 $(top_srcdir)/configure.ac
+       $(top_srcdir)/m4/jhflags.m4 $(top_srcdir)/m4/python.m4 \
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
index 1bbd583..72838c4 100644 (file)
@@ -61,10 +61,8 @@ DIST_COMMON = $(pygi_PYTHON) $(srcdir)/Makefile.am \
        $(srcdir)/Makefile.in
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/as-ac-expand.m4 \
-       $(top_srcdir)/m4/jhflags.m4 $(top_srcdir)/m4/libtool.m4 \
-       $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
-       $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
-       $(top_srcdir)/m4/python.m4 $(top_srcdir)/configure.ac
+       $(top_srcdir)/m4/jhflags.m4 $(top_srcdir)/m4/python.m4 \
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
index e87f9b2..fa858e0 100644 (file)
@@ -61,10 +61,8 @@ DIST_COMMON = $(pyglib_PYTHON) $(srcdir)/Makefile.am \
        $(srcdir)/Makefile.in
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/as-ac-expand.m4 \
-       $(top_srcdir)/m4/jhflags.m4 $(top_srcdir)/m4/libtool.m4 \
-       $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
-       $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
-       $(top_srcdir)/m4/python.m4 $(top_srcdir)/configure.ac
+       $(top_srcdir)/m4/jhflags.m4 $(top_srcdir)/m4/python.m4 \
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
index 7d70a07..11b97f5 100644 (file)
@@ -313,7 +313,7 @@ pyglib_source_remove(PyObject *self, PyObject *args)
 {
     guint tag;
 
-    if (!PyArg_ParseTuple(args, "I:source_remove", &tag))
+    if (!PyArg_ParseTuple(args, "i:source_remove", &tag))
        return NULL;
 
     return PyBool_FromLong(g_source_remove(tag));
@@ -351,15 +351,9 @@ static void
 child_watch_dnotify(gpointer data)
 {
     struct _PyGChildData *child_data = (struct _PyGChildData *) data;
-    PyGILState_STATE gil;
-
-    gil = pyglib_gil_state_ensure();
-
     Py_DECREF(child_data->func);
     Py_XDECREF(child_data->data);
     g_slice_free(struct _PyGChildData, child_data);
-
-    pyglib_gil_state_release(gil);
 }
 
 
index 722fd0d..0288145 100644 (file)
@@ -191,7 +191,7 @@ py_io_channel_read_chars(PyGIOChannel* self, PyObject *args, PyObject *kwargs)
         return NULL;
        
     if (max_count == 0)
-       return PYGLIB_PyBytes_FromString("");
+       return PYGLIB_PyUnicode_FromString("");
     
     while (status == G_IO_STATUS_NORMAL
           && (max_count == -1 || total_read < max_count)) {
@@ -234,6 +234,23 @@ py_io_channel_read_chars(PyGIOChannel* self, PyObject *args, PyObject *kwargs)
            goto failure;
     }
 
+#if PY_VERSION_HEX >= 0x03000000
+    /* If this is not UTF8 encoded channel return the raw bytes */
+    if (g_io_channel_get_encoding(self->channel) != NULL)
+        return ret_obj;
+
+    /* convert to Unicode string */
+    {
+       PyObject *unicode_obj;
+
+       unicode_obj = PyUnicode_FromString(PyBytes_AS_STRING(ret_obj));
+       if (unicode_obj == NULL)
+           goto failure;
+       Py_DECREF(ret_obj);
+       ret_obj = unicode_obj;
+    }
+#endif
+
     return ret_obj;
 
   failure:
@@ -281,11 +298,9 @@ py_io_channel_write_lines(PyGIOChannel* self, PyObject *args, PyObject *kwargs)
     
     while (1) {
         value = PyIter_Next(iter);
-        if (value == NULL)
-            break;
         if (PyErr_ExceptionMatches(PyExc_StopIteration)) {
             PyErr_Clear();
-            break;
+            goto normal_exit;
         }
         if (!PYGLIB_PyUnicode_Check(value)) {
             PyErr_SetString(PyExc_TypeError, "gi._glib.IOChannel.writelines must"
@@ -303,7 +318,7 @@ py_io_channel_write_lines(PyGIOChannel* self, PyObject *args, PyObject *kwargs)
             return NULL;
         }
     }
-
+normal_exit:
     Py_DECREF(iter);
     Py_INCREF(Py_None);
     return Py_None;
index fec095b..f66bd46 100644 (file)
@@ -60,10 +60,8 @@ DIST_COMMON = $(pkginclude_HEADERS) $(pygobject_PYTHON) \
        $(srcdir)/Makefile.am $(srcdir)/Makefile.in
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/as-ac-expand.m4 \
-       $(top_srcdir)/m4/jhflags.m4 $(top_srcdir)/m4/libtool.m4 \
-       $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
-       $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
-       $(top_srcdir)/m4/python.m4 $(top_srcdir)/configure.ac
+       $(top_srcdir)/m4/jhflags.m4 $(top_srcdir)/m4/python.m4 \
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
index 7b6ab36..f12d3fe 100644 (file)
@@ -30,7 +30,7 @@ if 'gobject' in sys.modules:
 from .. import _glib
 from . import _gobject
 from . import constants
-from .propertyhelper import Property
+from . import propertyhelper
 from . import signalhelper
 
 GBoxed = _gobject.GBoxed
@@ -211,6 +211,7 @@ G_MAXSSIZE = constants.G_MAXSSIZE
 G_MINOFFSET = constants.G_MINOFFSET
 G_MAXOFFSET = constants.G_MAXOFFSET
 
+Property = propertyhelper.Property
 Signal = signalhelper.Signal
 SignalOverride = signalhelper.SignalOverride
 
@@ -222,50 +223,10 @@ class GObjectMeta(type):
     "Metaclass for automatically registering GObject classes"
     def __init__(cls, name, bases, dict_):
         type.__init__(cls, name, bases, dict_)
-        cls._install_properties()
+        propertyhelper.install_properties(cls)
         signalhelper.install_signals(cls)
         cls._type_register(cls.__dict__)
 
-    def _install_properties(cls):
-        gproperties = getattr(cls, '__gproperties__', {})
-
-        props = []
-        for name, prop in cls.__dict__.items():
-            if isinstance(prop, Property):  # not same as the built-in
-                if name in gproperties:
-                    raise ValueError
-                prop.name = name
-                gproperties[name] = prop.get_pspec_args()
-                props.append(prop)
-
-        if not props:
-            return
-
-        cls.__gproperties__ = gproperties
-
-        if 'do_get_property' in cls.__dict__ or 'do_set_property' in cls.__dict__:
-            for prop in props:
-                if prop.fget != prop._default_getter or prop.fset != prop._default_setter:
-                    raise TypeError(
-                        "GObject subclass %r defines do_get/set_property"
-                        " and it also uses a property with a custom setter"
-                        " or getter. This is not allowed" % (
-                        cls.__name__,))
-
-        def obj_get_property(self, pspec):
-            name = pspec.name.replace('-', '_')
-            prop = getattr(cls, name, None)
-            if prop:
-                return prop.fget(self)
-        cls.do_get_property = obj_get_property
-
-        def obj_set_property(self, pspec, value):
-            name = pspec.name.replace('-', '_')
-            prop = getattr(cls, name, None)
-            if prop:
-                prop.fset(self, value)
-        cls.do_set_property = obj_set_property
-
     def _type_register(cls, namespace):
         ## don't register the class if already registered
         if '__gtype__' in namespace:
index 82b06b0..d6deb6d 100644 (file)
@@ -343,3 +343,48 @@ class Property(object):
             raise NotImplementedError(ptype)
 
         return (self.type, self.nick, self.blurb) + args + (self.flags,)
+
+
+def install_properties(cls):
+    """
+    Scans the given class for instances of Property and merges them
+    into the classes __gproperties__ dict if it exists or adds it if not.
+    """
+    gproperties = cls.__dict__.get('__gproperties__', {})
+
+    props = []
+    for name, prop in cls.__dict__.items():
+        if isinstance(prop, Property):  # not same as the built-in
+            if name in gproperties:
+                raise ValueError('Property %s was already found in __gproperties__' % name)
+            prop.name = name
+            gproperties[name] = prop.get_pspec_args()
+            props.append(prop)
+
+    if not props:
+        return
+
+    cls.__gproperties__ = gproperties
+
+    if 'do_get_property' in cls.__dict__ or 'do_set_property' in cls.__dict__:
+        for prop in props:
+            if prop.fget != prop._default_getter or prop.fset != prop._default_setter:
+                raise TypeError(
+                    "GObject subclass %r defines do_get/set_property"
+                    " and it also uses a property with a custom setter"
+                    " or getter. This is not allowed" % (
+                    cls.__name__,))
+
+    def obj_get_property(self, pspec):
+        name = pspec.name.replace('-', '_')
+        prop = getattr(cls, name, None)
+        if prop:
+            return prop.fget(self)
+    cls.do_get_property = obj_get_property
+
+    def obj_set_property(self, pspec, value):
+        name = pspec.name.replace('-', '_')
+        prop = getattr(cls, name, None)
+        if prop:
+            prop.fset(self, value)
+    cls.do_set_property = obj_set_property
index cc5dea2..b6f2ce2 100644 (file)
@@ -406,11 +406,3 @@ setattr(Variant, 'new_tuple', new_tuple)
 setattr(Variant, 'get_string', get_string)
 
 __all__.append('Variant')
-
-
-# work around wrong constants in GLib GIR, see
-# https://bugzilla.gnome.org/show_bug.cgi?id=685022
-MININT64 = -9223372036854775808
-MAXUINT64 = 18446744073709551615
-__all__.append('MININT64')
-__all__.append('MAXUINT64')
index 2c78fe1..bb0f0d9 100644 (file)
@@ -55,10 +55,8 @@ DIST_COMMON = $(pygioverrides_PYTHON) $(srcdir)/Makefile.am \
        $(srcdir)/Makefile.in
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/as-ac-expand.m4 \
-       $(top_srcdir)/m4/jhflags.m4 $(top_srcdir)/m4/libtool.m4 \
-       $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
-       $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
-       $(top_srcdir)/m4/python.m4 $(top_srcdir)/configure.ac
+       $(top_srcdir)/m4/jhflags.m4 $(top_srcdir)/m4/python.m4 \
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
index c20e023..b4c9fa0 100644 (file)
@@ -40,39 +40,11 @@ gi_argument_from_py_ssize_t (GIArgument   *arg_out,
     switch (type_tag) {
     case GI_TYPE_TAG_VOID:
     case GI_TYPE_TAG_BOOLEAN:
-        goto unhandled_type;
-
     case GI_TYPE_TAG_INT8:
-        if (size_in >= G_MININT8 && size_in <= G_MAXINT8) {
-            arg_out->v_int8 = size_in;
-            return TRUE;
-        } else {
-            goto overflow;
-        }
-
     case GI_TYPE_TAG_UINT8:
-        if (size_in >= 0 && size_in <= G_MAXUINT8) {
-            arg_out->v_uint8 = size_in;
-            return TRUE;
-        } else {
-            goto overflow;
-        }
-
     case GI_TYPE_TAG_INT16:
-        if (size_in >= G_MININT16 && size_in <= G_MAXINT16) {
-            arg_out->v_int16 = size_in;
-            return TRUE;
-        } else {
-            goto overflow;
-        }
-
     case GI_TYPE_TAG_UINT16:
-        if (size_in >= 0 && size_in <= G_MAXUINT16) {
-            arg_out->v_uint16 = size_in;
-            return TRUE;
-        } else {
-            goto overflow;
-        }
+        goto unhandled_type;
 
         /* Ranges assume two's complement */
     case GI_TYPE_TAG_INT32:
@@ -930,7 +902,6 @@ _pygi_marshal_from_py_array (PyGIInvokeState   *state,
     if (sequence_cache->item_cache->type_tag == GI_TYPE_TAG_UINT8 &&
         PYGLIB_PyBytes_Check (py_arg)) {
         memcpy(array_->data, PYGLIB_PyBytes_AsString (py_arg), length);
-        array_->len = length;
         if (sequence_cache->is_zero_terminated) {
             /* If array_ has been created with zero_termination, space for the
              * terminator is properly allocated, so we're not off-by-one here. */
index b6f258b..05006f1 100644 (file)
@@ -55,10 +55,8 @@ DIST_COMMON = $(pygirepository_PYTHON) $(srcdir)/Makefile.am \
        $(srcdir)/Makefile.in
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/as-ac-expand.m4 \
-       $(top_srcdir)/m4/jhflags.m4 $(top_srcdir)/m4/libtool.m4 \
-       $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
-       $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
-       $(top_srcdir)/m4/python.m4 $(top_srcdir)/configure.ac
+       $(top_srcdir)/m4/jhflags.m4 $(top_srcdir)/m4/python.m4 \
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
index 69a4518..0096fe6 100644 (file)
--- a/ltmain.sh
+++ b/ltmain.sh
@@ -70,7 +70,7 @@
 #         compiler:            $LTCC
 #         compiler flags:              $LTCFLAGS
 #         linker:              $LD (gnu? $with_gnu_ld)
-#         $progname:   (GNU libtool) 2.4.2 Debian-2.4.2-1.1ubuntu1
+#         $progname:   (GNU libtool) 2.4.2 Debian-2.4.2-1ubuntu2
 #         automake:    $automake_version
 #         autoconf:    $autoconf_version
 #
@@ -80,7 +80,7 @@
 
 PROGRAM=libtool
 PACKAGE=libtool
-VERSION="2.4.2 Debian-2.4.2-1.1ubuntu1"
+VERSION="2.4.2 Debian-2.4.2-1ubuntu2"
 TIMESTAMP=""
 package_revision=1.3337
 
diff --git a/m4/libtool.m4 b/m4/libtool.m4
deleted file mode 100644 (file)
index 534d1cc..0000000
+++ /dev/null
@@ -1,7983 +0,0 @@
-# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-
-#
-#   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
-#                 2006, 2007, 2008, 2009, 2010, 2011 Free Software
-#                 Foundation, Inc.
-#   Written by Gordon Matzigkeit, 1996
-#
-# This file is free software; the Free Software Foundation gives
-# unlimited permission to copy and/or distribute it, with or without
-# modifications, as long as this notice is preserved.
-
-m4_define([_LT_COPYING], [dnl
-#   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
-#                 2006, 2007, 2008, 2009, 2010, 2011 Free Software
-#                 Foundation, Inc.
-#   Written by Gordon Matzigkeit, 1996
-#
-#   This file is part of GNU Libtool.
-#
-# GNU Libtool is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License as
-# published by the Free Software Foundation; either version 2 of
-# the License, or (at your option) any later version.
-#
-# As a special exception to the GNU General Public License,
-# if you distribute this file as part of a program or library that
-# is built using GNU Libtool, you may include this file under the
-# same distribution terms that you use for the rest of that program.
-#
-# GNU Libtool is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with GNU Libtool; see the file COPYING.  If not, a copy
-# can be downloaded from http://www.gnu.org/licenses/gpl.html, or
-# obtained by writing to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-])
-
-# serial 57 LT_INIT
-
-
-# LT_PREREQ(VERSION)
-# ------------------
-# Complain and exit if this libtool version is less that VERSION.
-m4_defun([LT_PREREQ],
-[m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1,
-       [m4_default([$3],
-                  [m4_fatal([Libtool version $1 or higher is required],
-                            63)])],
-       [$2])])
-
-
-# _LT_CHECK_BUILDDIR
-# ------------------
-# Complain if the absolute build directory name contains unusual characters
-m4_defun([_LT_CHECK_BUILDDIR],
-[case `pwd` in
-  *\ * | *\    *)
-    AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;;
-esac
-])
-
-
-# LT_INIT([OPTIONS])
-# ------------------
-AC_DEFUN([LT_INIT],
-[AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT
-AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
-AC_BEFORE([$0], [LT_LANG])dnl
-AC_BEFORE([$0], [LT_OUTPUT])dnl
-AC_BEFORE([$0], [LTDL_INIT])dnl
-m4_require([_LT_CHECK_BUILDDIR])dnl
-
-dnl Autoconf doesn't catch unexpanded LT_ macros by default:
-m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl
-m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl
-dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4
-dnl unless we require an AC_DEFUNed macro:
-AC_REQUIRE([LTOPTIONS_VERSION])dnl
-AC_REQUIRE([LTSUGAR_VERSION])dnl
-AC_REQUIRE([LTVERSION_VERSION])dnl
-AC_REQUIRE([LTOBSOLETE_VERSION])dnl
-m4_require([_LT_PROG_LTMAIN])dnl
-
-_LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}])
-
-dnl Parse OPTIONS
-_LT_SET_OPTIONS([$0], [$1])
-
-# This can be used to rebuild libtool when needed
-LIBTOOL_DEPS="$ltmain"
-
-# Always use our own libtool.
-LIBTOOL='$(SHELL) $(top_builddir)/libtool'
-AC_SUBST(LIBTOOL)dnl
-
-_LT_SETUP
-
-# Only expand once:
-m4_define([LT_INIT])
-])# LT_INIT
-
-# Old names:
-AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT])
-AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT])
-dnl aclocal-1.4 backwards compatibility:
-dnl AC_DEFUN([AC_PROG_LIBTOOL], [])
-dnl AC_DEFUN([AM_PROG_LIBTOOL], [])
-
-
-# _LT_CC_BASENAME(CC)
-# -------------------
-# Calculate cc_basename.  Skip known compiler wrappers and cross-prefix.
-m4_defun([_LT_CC_BASENAME],
-[for cc_temp in $1""; do
-  case $cc_temp in
-    compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;;
-    distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;;
-    \-*) ;;
-    *) break;;
-  esac
-done
-cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"`
-])
-
-
-# _LT_FILEUTILS_DEFAULTS
-# ----------------------
-# It is okay to use these file commands and assume they have been set
-# sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'.
-m4_defun([_LT_FILEUTILS_DEFAULTS],
-[: ${CP="cp -f"}
-: ${MV="mv -f"}
-: ${RM="rm -f"}
-])# _LT_FILEUTILS_DEFAULTS
-
-
-# _LT_SETUP
-# ---------
-m4_defun([_LT_SETUP],
-[AC_REQUIRE([AC_CANONICAL_HOST])dnl
-AC_REQUIRE([AC_CANONICAL_BUILD])dnl
-AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl
-AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl
-
-_LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl
-dnl
-_LT_DECL([], [host_alias], [0], [The host system])dnl
-_LT_DECL([], [host], [0])dnl
-_LT_DECL([], [host_os], [0])dnl
-dnl
-_LT_DECL([], [build_alias], [0], [The build system])dnl
-_LT_DECL([], [build], [0])dnl
-_LT_DECL([], [build_os], [0])dnl
-dnl
-AC_REQUIRE([AC_PROG_CC])dnl
-AC_REQUIRE([LT_PATH_LD])dnl
-AC_REQUIRE([LT_PATH_NM])dnl
-dnl
-AC_REQUIRE([AC_PROG_LN_S])dnl
-test -z "$LN_S" && LN_S="ln -s"
-_LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl
-dnl
-AC_REQUIRE([LT_CMD_MAX_LEN])dnl
-_LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl
-_LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl
-dnl
-m4_require([_LT_FILEUTILS_DEFAULTS])dnl
-m4_require([_LT_CHECK_SHELL_FEATURES])dnl
-m4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl
-m4_require([_LT_CMD_RELOAD])dnl
-m4_require([_LT_CHECK_MAGIC_METHOD])dnl
-m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl
-m4_require([_LT_CMD_OLD_ARCHIVE])dnl
-m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl
-m4_require([_LT_WITH_SYSROOT])dnl
-
-_LT_CONFIG_LIBTOOL_INIT([
-# See if we are running on zsh, and set the options which allow our
-# commands through without removal of \ escapes INIT.
-if test -n "\${ZSH_VERSION+set}" ; then
-   setopt NO_GLOB_SUBST
-fi
-])
-if test -n "${ZSH_VERSION+set}" ; then
-   setopt NO_GLOB_SUBST
-fi
-
-_LT_CHECK_OBJDIR
-
-m4_require([_LT_TAG_COMPILER])dnl
-
-case $host_os in
-aix3*)
-  # AIX sometimes has problems with the GCC collect2 program.  For some
-  # reason, if we set the COLLECT_NAMES environment variable, the problems
-  # vanish in a puff of smoke.
-  if test "X${COLLECT_NAMES+set}" != Xset; then
-    COLLECT_NAMES=
-    export COLLECT_NAMES
-  fi
-  ;;
-esac
-
-# Global variables:
-ofile=libtool
-can_build_shared=yes
-
-# All known linkers require a `.a' archive for static linking (except MSVC,
-# which needs '.lib').
-libext=a
-
-with_gnu_ld="$lt_cv_prog_gnu_ld"
-
-old_CC="$CC"
-old_CFLAGS="$CFLAGS"
-
-# Set sane defaults for various variables
-test -z "$CC" && CC=cc
-test -z "$LTCC" && LTCC=$CC
-test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS
-test -z "$LD" && LD=ld
-test -z "$ac_objext" && ac_objext=o
-
-_LT_CC_BASENAME([$compiler])
-
-# Only perform the check for file, if the check method requires it
-test -z "$MAGIC_CMD" && MAGIC_CMD=file
-case $deplibs_check_method in
-file_magic*)
-  if test "$file_magic_cmd" = '$MAGIC_CMD'; then
-    _LT_PATH_MAGIC
-  fi
-  ;;
-esac
-
-# Use C for the default configuration in the libtool script
-LT_SUPPORTED_TAG([CC])
-_LT_LANG_C_CONFIG
-_LT_LANG_DEFAULT_CONFIG
-_LT_CONFIG_COMMANDS
-])# _LT_SETUP
-
-
-# _LT_PREPARE_SED_QUOTE_VARS
-# --------------------------
-# Define a few sed substitution that help us do robust quoting.
-m4_defun([_LT_PREPARE_SED_QUOTE_VARS],
-[# Backslashify metacharacters that are still active within
-# double-quoted strings.
-sed_quote_subst='s/\([["`$\\]]\)/\\\1/g'
-
-# Same as above, but do not quote variable references.
-double_quote_subst='s/\([["`\\]]\)/\\\1/g'
-
-# Sed substitution to delay expansion of an escaped shell variable in a
-# double_quote_subst'ed string.
-delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g'
-
-# Sed substitution to delay expansion of an escaped single quote.
-delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g'
-
-# Sed substitution to avoid accidental globbing in evaled expressions
-no_glob_subst='s/\*/\\\*/g'
-])
-
-# _LT_PROG_LTMAIN
-# ---------------
-# Note that this code is called both from `configure', and `config.status'
-# now that we use AC_CONFIG_COMMANDS to generate libtool.  Notably,
-# `config.status' has no value for ac_aux_dir unless we are using Automake,
-# so we pass a copy along to make sure it has a sensible value anyway.
-m4_defun([_LT_PROG_LTMAIN],
-[m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl
-_LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir'])
-ltmain="$ac_aux_dir/ltmain.sh"
-])# _LT_PROG_LTMAIN
-
-
-## ------------------------------------- ##
-## Accumulate code for creating libtool. ##
-## ------------------------------------- ##
-
-# So that we can recreate a full libtool script including additional
-# tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS
-# in macros and then make a single call at the end using the `libtool'
-# label.
-
-
-# _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS])
-# ----------------------------------------
-# Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later.
-m4_define([_LT_CONFIG_LIBTOOL_INIT],
-[m4_ifval([$1],
-          [m4_append([_LT_OUTPUT_LIBTOOL_INIT],
-                     [$1
-])])])
-
-# Initialize.
-m4_define([_LT_OUTPUT_LIBTOOL_INIT])
-
-
-# _LT_CONFIG_LIBTOOL([COMMANDS])
-# ------------------------------
-# Register COMMANDS to be passed to AC_CONFIG_COMMANDS later.
-m4_define([_LT_CONFIG_LIBTOOL],
-[m4_ifval([$1],
-          [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS],
-                     [$1
-])])])
-
-# Initialize.
-m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS])
-
-
-# _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS])
-# -----------------------------------------------------
-m4_defun([_LT_CONFIG_SAVE_COMMANDS],
-[_LT_CONFIG_LIBTOOL([$1])
-_LT_CONFIG_LIBTOOL_INIT([$2])
-])
-
-
-# _LT_FORMAT_COMMENT([COMMENT])
-# -----------------------------
-# Add leading comment marks to the start of each line, and a trailing
-# full-stop to the whole comment if one is not present already.
-m4_define([_LT_FORMAT_COMMENT],
-[m4_ifval([$1], [
-m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])],
-              [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.])
-)])
-
-
-
-## ------------------------ ##
-## FIXME: Eliminate VARNAME ##
-## ------------------------ ##
-
-
-# _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?])
-# -------------------------------------------------------------------
-# CONFIGNAME is the name given to the value in the libtool script.
-# VARNAME is the (base) name used in the configure script.
-# VALUE may be 0, 1 or 2 for a computed quote escaped value based on
-# VARNAME.  Any other value will be used directly.
-m4_define([_LT_DECL],
-[lt_if_append_uniq([lt_decl_varnames], [$2], [, ],
-    [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name],
-       [m4_ifval([$1], [$1], [$2])])
-    lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3])
-    m4_ifval([$4],
-       [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])])
-    lt_dict_add_subkey([lt_decl_dict], [$2],
-       [tagged?], [m4_ifval([$5], [yes], [no])])])
-])
-
-
-# _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION])
-# --------------------------------------------------------
-m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])])
-
-
-# lt_decl_tag_varnames([SEPARATOR], [VARNAME1...])
-# ------------------------------------------------
-m4_define([lt_decl_tag_varnames],
-[_lt_decl_filter([tagged?], [yes], $@)])
-
-
-# _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..])
-# ---------------------------------------------------------
-m4_define([_lt_decl_filter],
-[m4_case([$#],
-  [0], [m4_fatal([$0: too few arguments: $#])],
-  [1], [m4_fatal([$0: too few arguments: $#: $1])],
-  [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)],
-  [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)],
-  [lt_dict_filter([lt_decl_dict], $@)])[]dnl
-])
-
-
-# lt_decl_quote_varnames([SEPARATOR], [VARNAME1...])
-# --------------------------------------------------
-m4_define([lt_decl_quote_varnames],
-[_lt_decl_filter([value], [1], $@)])
-
-
-# lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...])
-# ---------------------------------------------------
-m4_define([lt_decl_dquote_varnames],
-[_lt_decl_filter([value], [2], $@)])
-
-
-# lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...])
-# ---------------------------------------------------
-m4_define([lt_decl_varnames_tagged],
-[m4_assert([$# <= 2])dnl
-_$0(m4_quote(m4_default([$1], [[, ]])),
-    m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]),
-    m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))])
-m4_define([_lt_decl_varnames_tagged],
-[m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])])
-
-
-# lt_decl_all_varnames([SEPARATOR], [VARNAME1...])
-# ------------------------------------------------
-m4_define([lt_decl_all_varnames],
-[_$0(m4_quote(m4_default([$1], [[, ]])),
-     m4_if([$2], [],
-          m4_quote(lt_decl_varnames),
-       m4_quote(m4_shift($@))))[]dnl
-])
-m4_define([_lt_decl_all_varnames],
-[lt_join($@, lt_decl_varnames_tagged([$1],
-                       lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl
-])
-
-
-# _LT_CONFIG_STATUS_DECLARE([VARNAME])
-# ------------------------------------
-# Quote a variable value, and forward it to `config.status' so that its
-# declaration there will have the same value as in `configure'.  VARNAME
-# must have a single quote delimited value for this to work.
-m4_define([_LT_CONFIG_STATUS_DECLARE],
-[$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`'])
-
-
-# _LT_CONFIG_STATUS_DECLARATIONS
-# ------------------------------
-# We delimit libtool config variables with single quotes, so when
-# we write them to config.status, we have to be sure to quote all
-# embedded single quotes properly.  In configure, this macro expands
-# each variable declared with _LT_DECL (and _LT_TAGDECL) into:
-#
-#    <var>='`$ECHO "$<var>" | $SED "$delay_single_quote_subst"`'
-m4_defun([_LT_CONFIG_STATUS_DECLARATIONS],
-[m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames),
-    [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])])
-
-
-# _LT_LIBTOOL_TAGS
-# ----------------
-# Output comment and list of tags supported by the script
-m4_defun([_LT_LIBTOOL_TAGS],
-[_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl
-available_tags="_LT_TAGS"dnl
-])
-
-
-# _LT_LIBTOOL_DECLARE(VARNAME, [TAG])
-# -----------------------------------
-# Extract the dictionary values for VARNAME (optionally with TAG) and
-# expand to a commented shell variable setting:
-#
-#    # Some comment about what VAR is for.
-#    visible_name=$lt_internal_name
-m4_define([_LT_LIBTOOL_DECLARE],
-[_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1],
-                                          [description])))[]dnl
-m4_pushdef([_libtool_name],
-    m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl
-m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])),
-    [0], [_libtool_name=[$]$1],
-    [1], [_libtool_name=$lt_[]$1],
-    [2], [_libtool_name=$lt_[]$1],
-    [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl
-m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl
-])
-
-
-# _LT_LIBTOOL_CONFIG_VARS
-# -----------------------
-# Produce commented declarations of non-tagged libtool config variables
-# suitable for insertion in the LIBTOOL CONFIG section of the `libtool'
-# script.  Tagged libtool config variables (even for the LIBTOOL CONFIG
-# section) are produced by _LT_LIBTOOL_TAG_VARS.
-m4_defun([_LT_LIBTOOL_CONFIG_VARS],
-[m4_foreach([_lt_var],
-    m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)),
-    [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])])
-
-
-# _LT_LIBTOOL_TAG_VARS(TAG)
-# -------------------------
-m4_define([_LT_LIBTOOL_TAG_VARS],
-[m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames),
-    [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])])
-
-
-# _LT_TAGVAR(VARNAME, [TAGNAME])
-# ------------------------------
-m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])])
-
-
-# _LT_CONFIG_COMMANDS
-# -------------------
-# Send accumulated output to $CONFIG_STATUS.  Thanks to the lists of
-# variables for single and double quote escaping we saved from calls
-# to _LT_DECL, we can put quote escaped variables declarations
-# into `config.status', and then the shell code to quote escape them in
-# for loops in `config.status'.  Finally, any additional code accumulated
-# from calls to _LT_CONFIG_LIBTOOL_INIT is expanded.
-m4_defun([_LT_CONFIG_COMMANDS],
-[AC_PROVIDE_IFELSE([LT_OUTPUT],
-       dnl If the libtool generation code has been placed in $CONFIG_LT,
-       dnl instead of duplicating it all over again into config.status,
-       dnl then we will have config.status run $CONFIG_LT later, so it
-       dnl needs to know what name is stored there:
-        [AC_CONFIG_COMMANDS([libtool],
-            [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])],
-    dnl If the libtool generation code is destined for config.status,
-    dnl expand the accumulated commands and init code now:
-    [AC_CONFIG_COMMANDS([libtool],
-        [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])])
-])#_LT_CONFIG_COMMANDS
-
-
-# Initialize.
-m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT],
-[
-
-# The HP-UX ksh and POSIX shell print the target directory to stdout
-# if CDPATH is set.
-(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
-
-sed_quote_subst='$sed_quote_subst'
-double_quote_subst='$double_quote_subst'
-delay_variable_subst='$delay_variable_subst'
-_LT_CONFIG_STATUS_DECLARATIONS
-LTCC='$LTCC'
-LTCFLAGS='$LTCFLAGS'
-compiler='$compiler_DEFAULT'
-
-# A function that is used when there is no print builtin or printf.
-func_fallback_echo ()
-{
-  eval 'cat <<_LTECHO_EOF
-\$[]1
-_LTECHO_EOF'
-}
-
-# Quote evaled strings.
-for var in lt_decl_all_varnames([[ \
-]], lt_decl_quote_varnames); do
-    case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in
-    *[[\\\\\\\`\\"\\\$]]*)
-      eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\""
-      ;;
-    *)
-      eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\""
-      ;;
-    esac
-done
-
-# Double-quote double-evaled strings.
-for var in lt_decl_all_varnames([[ \
-]], lt_decl_dquote_varnames); do
-    case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in
-    *[[\\\\\\\`\\"\\\$]]*)
-      eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\""
-      ;;
-    *)
-      eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\""
-      ;;
-    esac
-done
-
-_LT_OUTPUT_LIBTOOL_INIT
-])
-
-# _LT_GENERATED_FILE_INIT(FILE, [COMMENT])
-# ------------------------------------
-# Generate a child script FILE with all initialization necessary to
-# reuse the environment learned by the parent script, and make the
-# file executable.  If COMMENT is supplied, it is inserted after the
-# `#!' sequence but before initialization text begins.  After this
-# macro, additional text can be appended to FILE to form the body of
-# the child script.  The macro ends with non-zero status if the
-# file could not be fully written (such as if the disk is full).
-m4_ifdef([AS_INIT_GENERATED],
-[m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])],
-[m4_defun([_LT_GENERATED_FILE_INIT],
-[m4_require([AS_PREPARE])]dnl
-[m4_pushdef([AS_MESSAGE_LOG_FD])]dnl
-[lt_write_fail=0
-cat >$1 <<_ASEOF || lt_write_fail=1
-#! $SHELL
-# Generated by $as_me.
-$2
-SHELL=\${CONFIG_SHELL-$SHELL}
-export SHELL
-_ASEOF
-cat >>$1 <<\_ASEOF || lt_write_fail=1
-AS_SHELL_SANITIZE
-_AS_PREPARE
-exec AS_MESSAGE_FD>&1
-_ASEOF
-test $lt_write_fail = 0 && chmod +x $1[]dnl
-m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT
-
-# LT_OUTPUT
-# ---------
-# This macro allows early generation of the libtool script (before
-# AC_OUTPUT is called), incase it is used in configure for compilation
-# tests.
-AC_DEFUN([LT_OUTPUT],
-[: ${CONFIG_LT=./config.lt}
-AC_MSG_NOTICE([creating $CONFIG_LT])
-_LT_GENERATED_FILE_INIT(["$CONFIG_LT"],
-[# Run this file to recreate a libtool stub with the current configuration.])
-
-cat >>"$CONFIG_LT" <<\_LTEOF
-lt_cl_silent=false
-exec AS_MESSAGE_LOG_FD>>config.log
-{
-  echo
-  AS_BOX([Running $as_me.])
-} >&AS_MESSAGE_LOG_FD
-
-lt_cl_help="\
-\`$as_me' creates a local libtool stub from the current configuration,
-for use in further configure time tests before the real libtool is
-generated.
-
-Usage: $[0] [[OPTIONS]]
-
-  -h, --help      print this help, then exit
-  -V, --version   print version number, then exit
-  -q, --quiet     do not print progress messages
-  -d, --debug     don't remove temporary files
-
-Report bugs to <bug-libtool@gnu.org>."
-
-lt_cl_version="\
-m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl
-m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION])
-configured by $[0], generated by m4_PACKAGE_STRING.
-
-Copyright (C) 2011 Free Software Foundation, Inc.
-This config.lt script is free software; the Free Software Foundation
-gives unlimited permision to copy, distribute and modify it."
-
-while test $[#] != 0
-do
-  case $[1] in
-    --version | --v* | -V )
-      echo "$lt_cl_version"; exit 0 ;;
-    --help | --h* | -h )
-      echo "$lt_cl_help"; exit 0 ;;
-    --debug | --d* | -d )
-      debug=: ;;
-    --quiet | --q* | --silent | --s* | -q )
-      lt_cl_silent=: ;;
-
-    -*) AC_MSG_ERROR([unrecognized option: $[1]
-Try \`$[0] --help' for more information.]) ;;
-
-    *) AC_MSG_ERROR([unrecognized argument: $[1]
-Try \`$[0] --help' for more information.]) ;;
-  esac
-  shift
-done
-
-if $lt_cl_silent; then
-  exec AS_MESSAGE_FD>/dev/null
-fi
-_LTEOF
-
-cat >>"$CONFIG_LT" <<_LTEOF
-_LT_OUTPUT_LIBTOOL_COMMANDS_INIT
-_LTEOF
-
-cat >>"$CONFIG_LT" <<\_LTEOF
-AC_MSG_NOTICE([creating $ofile])
-_LT_OUTPUT_LIBTOOL_COMMANDS
-AS_EXIT(0)
-_LTEOF
-chmod +x "$CONFIG_LT"
-
-# configure is writing to config.log, but config.lt does its own redirection,
-# appending to config.log, which fails on DOS, as config.log is still kept
-# open by configure.  Here we exec the FD to /dev/null, effectively closing
-# config.log, so it can be properly (re)opened and appended to by config.lt.
-lt_cl_success=:
-test "$silent" = yes &&
-  lt_config_lt_args="$lt_config_lt_args --quiet"
-exec AS_MESSAGE_LOG_FD>/dev/null
-$SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false
-exec AS_MESSAGE_LOG_FD>>config.log
-$lt_cl_success || AS_EXIT(1)
-])# LT_OUTPUT
-
-
-# _LT_CONFIG(TAG)
-# ---------------
-# If TAG is the built-in tag, create an initial libtool script with a
-# default configuration from the untagged config vars.  Otherwise add code
-# to config.status for appending the configuration named by TAG from the
-# matching tagged config vars.
-m4_defun([_LT_CONFIG],
-[m4_require([_LT_FILEUTILS_DEFAULTS])dnl
-_LT_CONFIG_SAVE_COMMANDS([
-  m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl
-  m4_if(_LT_TAG, [C], [
-    # See if we are running on zsh, and set the options which allow our
-    # commands through without removal of \ escapes.
-    if test -n "${ZSH_VERSION+set}" ; then
-      setopt NO_GLOB_SUBST
-    fi
-
-    cfgfile="${ofile}T"
-    trap "$RM \"$cfgfile\"; exit 1" 1 2 15
-    $RM "$cfgfile"
-
-    cat <<_LT_EOF >> "$cfgfile"
-#! $SHELL
-
-# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
-# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION
-# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
-# NOTE: Changes made to this file will be lost: look at ltmain.sh.
-#
-_LT_COPYING
-_LT_LIBTOOL_TAGS
-
-# ### BEGIN LIBTOOL CONFIG
-_LT_LIBTOOL_CONFIG_VARS
-_LT_LIBTOOL_TAG_VARS
-# ### END LIBTOOL CONFIG
-
-_LT_EOF
-
-  case $host_os in
-  aix3*)
-    cat <<\_LT_EOF >> "$cfgfile"
-# AIX sometimes has problems with the GCC collect2 program.  For some
-# reason, if we set the COLLECT_NAMES environment variable, the problems
-# vanish in a puff of smoke.
-if test "X${COLLECT_NAMES+set}" != Xset; then
-  COLLECT_NAMES=
-  export COLLECT_NAMES
-fi
-_LT_EOF
-    ;;
-  esac
-
-  _LT_PROG_LTMAIN
-
-  # We use sed instead of cat because bash on DJGPP gets confused if
-  # if finds mixed CR/LF and LF-only lines.  Since sed operates in
-  # text mode, it properly converts lines to CR/LF.  This bash problem
-  # is reportedly fixed, but why not run on old versions too?
-  sed '$q' "$ltmain" >> "$cfgfile" \
-     || (rm -f "$cfgfile"; exit 1)
-
-  _LT_PROG_REPLACE_SHELLFNS
-
-   mv -f "$cfgfile" "$ofile" ||
-    (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
-  chmod +x "$ofile"
-],
-[cat <<_LT_EOF >> "$ofile"
-
-dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded
-dnl in a comment (ie after a #).
-# ### BEGIN LIBTOOL TAG CONFIG: $1
-_LT_LIBTOOL_TAG_VARS(_LT_TAG)
-# ### END LIBTOOL TAG CONFIG: $1
-_LT_EOF
-])dnl /m4_if
-],
-[m4_if([$1], [], [
-    PACKAGE='$PACKAGE'
-    VERSION='$VERSION'
-    TIMESTAMP='$TIMESTAMP'
-    RM='$RM'
-    ofile='$ofile'], [])
-])dnl /_LT_CONFIG_SAVE_COMMANDS
-])# _LT_CONFIG
-
-
-# LT_SUPPORTED_TAG(TAG)
-# ---------------------
-# Trace this macro to discover what tags are supported by the libtool
-# --tag option, using:
-#    autoconf --trace 'LT_SUPPORTED_TAG:$1'
-AC_DEFUN([LT_SUPPORTED_TAG], [])
-
-
-# C support is built-in for now
-m4_define([_LT_LANG_C_enabled], [])
-m4_define([_LT_TAGS], [])
-
-
-# LT_LANG(LANG)
-# -------------
-# Enable libtool support for the given language if not already enabled.
-AC_DEFUN([LT_LANG],
-[AC_BEFORE([$0], [LT_OUTPUT])dnl
-m4_case([$1],
-  [C],                 [_LT_LANG(C)],
-  [C++],               [_LT_LANG(CXX)],
-  [Go],                        [_LT_LANG(GO)],
-  [Java],              [_LT_LANG(GCJ)],
-  [Fortran 77],                [_LT_LANG(F77)],
-  [Fortran],           [_LT_LANG(FC)],
-  [Windows Resource],  [_LT_LANG(RC)],
-  [m4_ifdef([_LT_LANG_]$1[_CONFIG],
-    [_LT_LANG($1)],
-    [m4_fatal([$0: unsupported language: "$1"])])])dnl
-])# LT_LANG
-
-
-# _LT_LANG(LANGNAME)
-# ------------------
-m4_defun([_LT_LANG],
-[m4_ifdef([_LT_LANG_]$1[_enabled], [],
-  [LT_SUPPORTED_TAG([$1])dnl
-  m4_append([_LT_TAGS], [$1 ])dnl
-  m4_define([_LT_LANG_]$1[_enabled], [])dnl
-  _LT_LANG_$1_CONFIG($1)])dnl
-])# _LT_LANG
-
-
-m4_ifndef([AC_PROG_GO], [
-############################################################
-# NOTE: This macro has been submitted for inclusion into   #
-#  GNU Autoconf as AC_PROG_GO.  When it is available in    #
-#  a released version of Autoconf we should remove this    #
-#  macro and use it instead.                               #
-############################################################
-m4_defun([AC_PROG_GO],
-[AC_LANG_PUSH(Go)dnl
-AC_ARG_VAR([GOC],     [Go compiler command])dnl
-AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl
-_AC_ARG_VAR_LDFLAGS()dnl
-AC_CHECK_TOOL(GOC, gccgo)
-if test -z "$GOC"; then
-  if test -n "$ac_tool_prefix"; then
-    AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo])
-  fi
-fi
-if test -z "$GOC"; then
-  AC_CHECK_PROG(GOC, gccgo, gccgo, false)
-fi
-])#m4_defun
-])#m4_ifndef
-
-
-# _LT_LANG_DEFAULT_CONFIG
-# -----------------------
-m4_defun([_LT_LANG_DEFAULT_CONFIG],
-[AC_PROVIDE_IFELSE([AC_PROG_CXX],
-  [LT_LANG(CXX)],
-  [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])])
-
-AC_PROVIDE_IFELSE([AC_PROG_F77],
-  [LT_LANG(F77)],
-  [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])])
-
-AC_PROVIDE_IFELSE([AC_PROG_FC],
-  [LT_LANG(FC)],
-  [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])])
-
-dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal
-dnl pulling things in needlessly.
-AC_PROVIDE_IFELSE([AC_PROG_GCJ],
-  [LT_LANG(GCJ)],
-  [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],
-    [LT_LANG(GCJ)],
-    [AC_PROVIDE_IFELSE([LT_PROG_GCJ],
-      [LT_LANG(GCJ)],
-      [m4_ifdef([AC_PROG_GCJ],
-       [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])])
-       m4_ifdef([A][M_PROG_GCJ],
-       [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])])
-       m4_ifdef([LT_PROG_GCJ],
-       [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])])
-
-AC_PROVIDE_IFELSE([AC_PROG_GO],
-  [LT_LANG(GO)],
-  [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])])
-
-AC_PROVIDE_IFELSE([LT_PROG_RC],
-  [LT_LANG(RC)],
-  [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])])
-])# _LT_LANG_DEFAULT_CONFIG
-
-# Obsolete macros:
-AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)])
-AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)])
-AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)])
-AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)])
-AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)])
-dnl aclocal-1.4 backwards compatibility:
-dnl AC_DEFUN([AC_LIBTOOL_CXX], [])
-dnl AC_DEFUN([AC_LIBTOOL_F77], [])
-dnl AC_DEFUN([AC_LIBTOOL_FC], [])
-dnl AC_DEFUN([AC_LIBTOOL_GCJ], [])
-dnl AC_DEFUN([AC_LIBTOOL_RC], [])
-
-
-# _LT_TAG_COMPILER
-# ----------------
-m4_defun([_LT_TAG_COMPILER],
-[AC_REQUIRE([AC_PROG_CC])dnl
-
-_LT_DECL([LTCC], [CC], [1], [A C compiler])dnl
-_LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl
-_LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl
-_LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl
-
-# If no C compiler was specified, use CC.
-LTCC=${LTCC-"$CC"}
-
-# If no C compiler flags were specified, use CFLAGS.
-LTCFLAGS=${LTCFLAGS-"$CFLAGS"}
-
-# Allow CC to be a program name with arguments.
-compiler=$CC
-])# _LT_TAG_COMPILER
-
-
-# _LT_COMPILER_BOILERPLATE
-# ------------------------
-# Check for compiler boilerplate output or warnings with
-# the simple compiler test code.
-m4_defun([_LT_COMPILER_BOILERPLATE],
-[m4_require([_LT_DECL_SED])dnl
-ac_outfile=conftest.$ac_objext
-echo "$lt_simple_compile_test_code" >conftest.$ac_ext
-eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
-_lt_compiler_boilerplate=`cat conftest.err`
-$RM conftest*
-])# _LT_COMPILER_BOILERPLATE
-
-
-# _LT_LINKER_BOILERPLATE
-# ----------------------
-# Check for linker boilerplate output or warnings with
-# the simple link test code.
-m4_defun([_LT_LINKER_BOILERPLATE],
-[m4_require([_LT_DECL_SED])dnl
-ac_outfile=conftest.$ac_objext
-echo "$lt_simple_link_test_code" >conftest.$ac_ext
-eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
-_lt_linker_boilerplate=`cat conftest.err`
-$RM -r conftest*
-])# _LT_LINKER_BOILERPLATE
-
-# _LT_REQUIRED_DARWIN_CHECKS
-# -------------------------
-m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[
-  case $host_os in
-    rhapsody* | darwin*)
-    AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:])
-    AC_CHECK_TOOL([NMEDIT], [nmedit], [:])
-    AC_CHECK_TOOL([LIPO], [lipo], [:])
-    AC_CHECK_TOOL([OTOOL], [otool], [:])
-    AC_CHECK_TOOL([OTOOL64], [otool64], [:])
-    _LT_DECL([], [DSYMUTIL], [1],
-      [Tool to manipulate archived DWARF debug symbol files on Mac OS X])
-    _LT_DECL([], [NMEDIT], [1],
-      [Tool to change global to local symbols on Mac OS X])
-    _LT_DECL([], [LIPO], [1],
-      [Tool to manipulate fat objects and archives on Mac OS X])
-    _LT_DECL([], [OTOOL], [1],
-      [ldd/readelf like tool for Mach-O binaries on Mac OS X])
-    _LT_DECL([], [OTOOL64], [1],
-      [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4])
-
-    AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod],
-      [lt_cv_apple_cc_single_mod=no
-      if test -z "${LT_MULTI_MODULE}"; then
-       # By default we will add the -single_module flag. You can override
-       # by either setting the environment variable LT_MULTI_MODULE
-       # non-empty at configure time, or by adding -multi_module to the
-       # link flags.
-       rm -rf libconftest.dylib*
-       echo "int foo(void){return 1;}" > conftest.c
-       echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \
--dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD
-       $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \
-         -dynamiclib -Wl,-single_module conftest.c 2>conftest.err
-        _lt_result=$?
-       # If there is a non-empty error log, and "single_module"
-       # appears in it, assume the flag caused a linker warning
-        if test -s conftest.err && $GREP single_module conftest.err; then
-         cat conftest.err >&AS_MESSAGE_LOG_FD
-       # Otherwise, if the output was created with a 0 exit code from
-       # the compiler, it worked.
-       elif test -f libconftest.dylib && test $_lt_result -eq 0; then
-         lt_cv_apple_cc_single_mod=yes
-       else
-         cat conftest.err >&AS_MESSAGE_LOG_FD
-       fi
-       rm -rf libconftest.dylib*
-       rm -f conftest.*
-      fi])
-
-    AC_CACHE_CHECK([for -exported_symbols_list linker flag],
-      [lt_cv_ld_exported_symbols_list],
-      [lt_cv_ld_exported_symbols_list=no
-      save_LDFLAGS=$LDFLAGS
-      echo "_main" > conftest.sym
-      LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym"
-      AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])],
-       [lt_cv_ld_exported_symbols_list=yes],
-       [lt_cv_ld_exported_symbols_list=no])
-       LDFLAGS="$save_LDFLAGS"
-    ])
-
-    AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load],
-      [lt_cv_ld_force_load=no
-      cat > conftest.c << _LT_EOF
-int forced_loaded() { return 2;}
-_LT_EOF
-      echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD
-      $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD
-      echo "$AR cru libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD
-      $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD
-      echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD
-      $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD
-      cat > conftest.c << _LT_EOF
-int main() { return 0;}
-_LT_EOF
-      echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD
-      $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err
-      _lt_result=$?
-      if test -s conftest.err && $GREP force_load conftest.err; then
-       cat conftest.err >&AS_MESSAGE_LOG_FD
-      elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then
-       lt_cv_ld_force_load=yes
-      else
-       cat conftest.err >&AS_MESSAGE_LOG_FD
-      fi
-        rm -f conftest.err libconftest.a conftest conftest.c
-        rm -rf conftest.dSYM
-    ])
-    case $host_os in
-    rhapsody* | darwin1.[[012]])
-      _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;;
-    darwin1.*)
-      _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;
-    darwin*) # darwin 5.x on
-      # if running on 10.5 or later, the deployment target defaults
-      # to the OS version, if on x86, and 10.4, the deployment
-      # target defaults to 10.4. Don't you love it?
-      case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in
-       10.0,*86*-darwin8*|10.0,*-darwin[[91]]*)
-         _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;;
-       10.[[012]]*)
-         _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;
-       10.*)
-         _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;;
-      esac
-    ;;
-  esac
-    if test "$lt_cv_apple_cc_single_mod" = "yes"; then
-      _lt_dar_single_mod='$single_module'
-    fi
-    if test "$lt_cv_ld_exported_symbols_list" = "yes"; then
-      _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym'
-    else
-      _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}'
-    fi
-    if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then
-      _lt_dsymutil='~$DSYMUTIL $lib || :'
-    else
-      _lt_dsymutil=
-    fi
-    ;;
-  esac
-])
-
-
-# _LT_DARWIN_LINKER_FEATURES([TAG])
-# ---------------------------------
-# Checks for linker and compiler features on darwin
-m4_defun([_LT_DARWIN_LINKER_FEATURES],
-[
-  m4_require([_LT_REQUIRED_DARWIN_CHECKS])
-  _LT_TAGVAR(archive_cmds_need_lc, $1)=no
-  _LT_TAGVAR(hardcode_direct, $1)=no
-  _LT_TAGVAR(hardcode_automatic, $1)=yes
-  _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
-  if test "$lt_cv_ld_force_load" = "yes"; then
-    _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`'
-    m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes],
-                  [FC],  [_LT_TAGVAR(compiler_needs_object, $1)=yes])
-  else
-    _LT_TAGVAR(whole_archive_flag_spec, $1)=''
-  fi
-  _LT_TAGVAR(link_all_deplibs, $1)=yes
-  _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined"
-  case $cc_basename in
-     ifort*) _lt_dar_can_shared=yes ;;
-     *) _lt_dar_can_shared=$GCC ;;
-  esac
-  if test "$_lt_dar_can_shared" = "yes"; then
-    output_verbose_link_cmd=func_echo_all
-    _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}"
-    _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}"
-    _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}"
-    _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}"
-    m4_if([$1], [CXX],
-[   if test "$lt_cv_apple_cc_single_mod" != "yes"; then
-      _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}"
-      _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}"
-    fi
-],[])
-  else
-  _LT_TAGVAR(ld_shlibs, $1)=no
-  fi
-])
-
-# _LT_SYS_MODULE_PATH_AIX([TAGNAME])
-# ----------------------------------
-# Links a minimal program and checks the executable
-# for the system default hardcoded library path. In most cases,
-# this is /usr/lib:/lib, but when the MPI compilers are used
-# the location of the communication and MPI libs are included too.
-# If we don't find anything, use the default library path according
-# to the aix ld manual.
-# Store the results from the different compilers for each TAGNAME.
-# Allow to override them for all tags through lt_cv_aix_libpath.
-m4_defun([_LT_SYS_MODULE_PATH_AIX],
-[m4_require([_LT_DECL_SED])dnl
-if test "${lt_cv_aix_libpath+set}" = set; then
-  aix_libpath=$lt_cv_aix_libpath
-else
-  AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])],
-  [AC_LINK_IFELSE([AC_LANG_PROGRAM],[
-  lt_aix_libpath_sed='[
-      /Import File Strings/,/^$/ {
-         /^0/ {
-             s/^0  *\([^ ]*\) *$/\1/
-             p
-         }
-      }]'
-  _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
-  # Check for a 64-bit object if we didn't find anything.
-  if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then
-    _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
-  fi],[])
-  if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then
-    _LT_TAGVAR([lt_cv_aix_libpath_], [$1])="/usr/lib:/lib"
-  fi
-  ])
-  aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])
-fi
-])# _LT_SYS_MODULE_PATH_AIX
-
-
-# _LT_SHELL_INIT(ARG)
-# -------------------
-m4_define([_LT_SHELL_INIT],
-[m4_divert_text([M4SH-INIT], [$1
-])])# _LT_SHELL_INIT
-
-
-
-# _LT_PROG_ECHO_BACKSLASH
-# -----------------------
-# Find how we can fake an echo command that does not interpret backslash.
-# In particular, with Autoconf 2.60 or later we add some code to the start
-# of the generated configure script which will find a shell with a builtin
-# printf (which we can use as an echo command).
-m4_defun([_LT_PROG_ECHO_BACKSLASH],
-[ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
-ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO
-ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO
-
-AC_MSG_CHECKING([how to print strings])
-# Test print first, because it will be a builtin if present.
-if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \
-   test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then
-  ECHO='print -r --'
-elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then
-  ECHO='printf %s\n'
-else
-  # Use this function as a fallback that always works.
-  func_fallback_echo ()
-  {
-    eval 'cat <<_LTECHO_EOF
-$[]1
-_LTECHO_EOF'
-  }
-  ECHO='func_fallback_echo'
-fi
-
-# func_echo_all arg...
-# Invoke $ECHO with all args, space-separated.
-func_echo_all ()
-{
-    $ECHO "$*" 
-}
-
-case "$ECHO" in
-  printf*) AC_MSG_RESULT([printf]) ;;
-  print*) AC_MSG_RESULT([print -r]) ;;
-  *) AC_MSG_RESULT([cat]) ;;
-esac
-
-m4_ifdef([_AS_DETECT_SUGGESTED],
-[_AS_DETECT_SUGGESTED([
-  test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || (
-    ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
-    ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO
-    ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO
-    PATH=/empty FPATH=/empty; export PATH FPATH
-    test "X`printf %s $ECHO`" = "X$ECHO" \
-      || test "X`print -r -- $ECHO`" = "X$ECHO" )])])
-
-_LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts])
-_LT_DECL([], [ECHO], [1], [An echo program that protects backslashes])
-])# _LT_PROG_ECHO_BACKSLASH
-
-
-# _LT_WITH_SYSROOT
-# ----------------
-AC_DEFUN([_LT_WITH_SYSROOT],
-[AC_MSG_CHECKING([for sysroot])
-AC_ARG_WITH([sysroot],
-[  --with-sysroot[=DIR] Search for dependent libraries within DIR
-                        (or the compiler's sysroot if not specified).],
-[], [with_sysroot=no])
-
-dnl lt_sysroot will always be passed unquoted.  We quote it here
-dnl in case the user passed a directory name.
-lt_sysroot=
-case ${with_sysroot} in #(
- yes)
-   if test "$GCC" = yes; then
-     lt_sysroot=`$CC --print-sysroot 2>/dev/null`
-   fi
-   ;; #(
- /*)
-   lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"`
-   ;; #(
- no|'')
-   ;; #(
- *)
-   AC_MSG_RESULT([${with_sysroot}])
-   AC_MSG_ERROR([The sysroot must be an absolute path.])
-   ;;
-esac
-
- AC_MSG_RESULT([${lt_sysroot:-no}])
-_LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl
-[dependent libraries, and in which our libraries should be installed.])])
-
-# _LT_ENABLE_LOCK
-# ---------------
-m4_defun([_LT_ENABLE_LOCK],
-[AC_ARG_ENABLE([libtool-lock],
-  [AS_HELP_STRING([--disable-libtool-lock],
-    [avoid locking (might break parallel builds)])])
-test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
-
-# Some flags need to be propagated to the compiler or linker for good
-# libtool support.
-case $host in
-ia64-*-hpux*)
-  # Find out which ABI we are using.
-  echo 'int i;' > conftest.$ac_ext
-  if AC_TRY_EVAL(ac_compile); then
-    case `/usr/bin/file conftest.$ac_objext` in
-      *ELF-32*)
-       HPUX_IA64_MODE="32"
-       ;;
-      *ELF-64*)
-       HPUX_IA64_MODE="64"
-       ;;
-    esac
-  fi
-  rm -rf conftest*
-  ;;
-*-*-irix6*)
-  # Find out which ABI we are using.
-  echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext
-  if AC_TRY_EVAL(ac_compile); then
-    if test "$lt_cv_prog_gnu_ld" = yes; then
-      case `/usr/bin/file conftest.$ac_objext` in
-       *32-bit*)
-         LD="${LD-ld} -melf32bsmip"
-         ;;
-       *N32*)
-         LD="${LD-ld} -melf32bmipn32"
-         ;;
-       *64-bit*)
-         LD="${LD-ld} -melf64bmip"
-       ;;
-      esac
-    else
-      case `/usr/bin/file conftest.$ac_objext` in
-       *32-bit*)
-         LD="${LD-ld} -32"
-         ;;
-       *N32*)
-         LD="${LD-ld} -n32"
-         ;;
-       *64-bit*)
-         LD="${LD-ld} -64"
-         ;;
-      esac
-    fi
-  fi
-  rm -rf conftest*
-  ;;
-
-x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \
-s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
-  # Find out which ABI we are using.
-  echo 'int i;' > conftest.$ac_ext
-  if AC_TRY_EVAL(ac_compile); then
-    case `/usr/bin/file conftest.o` in
-      *32-bit*)
-       case $host in
-         x86_64-*kfreebsd*-gnu)
-           LD="${LD-ld} -m elf_i386_fbsd"
-           ;;
-         x86_64-*linux*)
-           LD="${LD-ld} -m elf_i386"
-           ;;
-         ppc64-*linux*|powerpc64-*linux*)
-           LD="${LD-ld} -m elf32ppclinux"
-           ;;
-         s390x-*linux*)
-           LD="${LD-ld} -m elf_s390"
-           ;;
-         sparc64-*linux*)
-           LD="${LD-ld} -m elf32_sparc"
-           ;;
-       esac
-       ;;
-      *64-bit*)
-       case $host in
-         x86_64-*kfreebsd*-gnu)
-           LD="${LD-ld} -m elf_x86_64_fbsd"
-           ;;
-         x86_64-*linux*)
-           LD="${LD-ld} -m elf_x86_64"
-           ;;
-         ppc*-*linux*|powerpc*-*linux*)
-           LD="${LD-ld} -m elf64ppc"
-           ;;
-         s390*-*linux*|s390*-*tpf*)
-           LD="${LD-ld} -m elf64_s390"
-           ;;
-         sparc*-*linux*)
-           LD="${LD-ld} -m elf64_sparc"
-           ;;
-       esac
-       ;;
-    esac
-  fi
-  rm -rf conftest*
-  ;;
-
-*-*-sco3.2v5*)
-  # On SCO OpenServer 5, we need -belf to get full-featured binaries.
-  SAVE_CFLAGS="$CFLAGS"
-  CFLAGS="$CFLAGS -belf"
-  AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf,
-    [AC_LANG_PUSH(C)
-     AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no])
-     AC_LANG_POP])
-  if test x"$lt_cv_cc_needs_belf" != x"yes"; then
-    # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
-    CFLAGS="$SAVE_CFLAGS"
-  fi
-  ;;
-*-*solaris*)
-  # Find out which ABI we are using.
-  echo 'int i;' > conftest.$ac_ext
-  if AC_TRY_EVAL(ac_compile); then
-    case `/usr/bin/file conftest.o` in
-    *64-bit*)
-      case $lt_cv_prog_gnu_ld in
-      yes*)
-        case $host in
-        i?86-*-solaris*)
-          LD="${LD-ld} -m elf_x86_64"
-          ;;
-        sparc*-*-solaris*)
-          LD="${LD-ld} -m elf64_sparc"
-          ;;
-        esac
-        # GNU ld 2.21 introduced _sol2 emulations.  Use them if available.
-        if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then
-          LD="${LD-ld}_sol2"
-        fi
-        ;;
-      *)
-       if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then
-         LD="${LD-ld} -64"
-       fi
-       ;;
-      esac
-      ;;
-    esac
-  fi
-  rm -rf conftest*
-  ;;
-esac
-
-need_locks="$enable_libtool_lock"
-])# _LT_ENABLE_LOCK
-
-
-# _LT_PROG_AR
-# -----------
-m4_defun([_LT_PROG_AR],
-[AC_CHECK_TOOLS(AR, [ar], false)
-: ${AR=ar}
-: ${AR_FLAGS=cru}
-_LT_DECL([], [AR], [1], [The archiver])
-_LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive])
-
-AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file],
-  [lt_cv_ar_at_file=no
-   AC_COMPILE_IFELSE([AC_LANG_PROGRAM],
-     [echo conftest.$ac_objext > conftest.lst
-      lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD'
-      AC_TRY_EVAL([lt_ar_try])
-      if test "$ac_status" -eq 0; then
-       # Ensure the archiver fails upon bogus file names.
-       rm -f conftest.$ac_objext libconftest.a
-       AC_TRY_EVAL([lt_ar_try])
-       if test "$ac_status" -ne 0; then
-          lt_cv_ar_at_file=@
-        fi
-      fi
-      rm -f conftest.* libconftest.a
-     ])
-  ])
-
-if test "x$lt_cv_ar_at_file" = xno; then
-  archiver_list_spec=
-else
-  archiver_list_spec=$lt_cv_ar_at_file
-fi
-_LT_DECL([], [archiver_list_spec], [1],
-  [How to feed a file listing to the archiver])
-])# _LT_PROG_AR
-
-
-# _LT_CMD_OLD_ARCHIVE
-# -------------------
-m4_defun([_LT_CMD_OLD_ARCHIVE],
-[_LT_PROG_AR
-
-AC_CHECK_TOOL(STRIP, strip, :)
-test -z "$STRIP" && STRIP=:
-_LT_DECL([], [STRIP], [1], [A symbol stripping program])
-
-AC_CHECK_TOOL(RANLIB, ranlib, :)
-test -z "$RANLIB" && RANLIB=:
-_LT_DECL([], [RANLIB], [1],
-    [Commands used to install an old-style archive])
-
-# Determine commands to create old-style static archives.
-old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs'
-old_postinstall_cmds='chmod 644 $oldlib'
-old_postuninstall_cmds=
-
-if test -n "$RANLIB"; then
-  case $host_os in
-  openbsd*)
-    old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib"
-    ;;
-  *)
-    old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib"
-    ;;
-  esac
-  old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib"
-fi
-
-case $host_os in
-  darwin*)
-    lock_old_archive_extraction=yes ;;
-  *)
-    lock_old_archive_extraction=no ;;
-esac
-_LT_DECL([], [old_postinstall_cmds], [2])
-_LT_DECL([], [old_postuninstall_cmds], [2])
-_LT_TAGDECL([], [old_archive_cmds], [2],
-    [Commands used to build an old-style archive])
-_LT_DECL([], [lock_old_archive_extraction], [0],
-    [Whether to use a lock for old archive extraction])
-])# _LT_CMD_OLD_ARCHIVE
-
-
-# _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS,
-#              [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE])
-# ----------------------------------------------------------------
-# Check whether the given compiler option works
-AC_DEFUN([_LT_COMPILER_OPTION],
-[m4_require([_LT_FILEUTILS_DEFAULTS])dnl
-m4_require([_LT_DECL_SED])dnl
-AC_CACHE_CHECK([$1], [$2],
-  [$2=no
-   m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4])
-   echo "$lt_simple_compile_test_code" > conftest.$ac_ext
-   lt_compiler_flag="$3"
-   # Insert the option either (1) after the last *FLAGS variable, or
-   # (2) before a word containing "conftest.", or (3) at the end.
-   # Note that $ac_compile itself does not contain backslashes and begins
-   # with a dollar sign (not a hyphen), so the echo should work correctly.
-   # The option is referenced via a variable to avoid confusing sed.
-   lt_compile=`echo "$ac_compile" | $SED \
-   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-   -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
-   -e 's:$: $lt_compiler_flag:'`
-   (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
-   (eval "$lt_compile" 2>conftest.err)
-   ac_status=$?
-   cat conftest.err >&AS_MESSAGE_LOG_FD
-   echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
-   if (exit $ac_status) && test -s "$ac_outfile"; then
-     # The compiler can only warn and ignore the option if not recognized
-     # So say no if there are warnings other than the usual output.
-     $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp
-     $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
-     if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
-       $2=yes
-     fi
-   fi
-   $RM conftest*
-])
-
-if test x"[$]$2" = xyes; then
-    m4_if([$5], , :, [$5])
-else
-    m4_if([$6], , :, [$6])
-fi
-])# _LT_COMPILER_OPTION
-
-# Old name:
-AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION])
-dnl aclocal-1.4 backwards compatibility:
-dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [])
-
-
-# _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS,
-#                  [ACTION-SUCCESS], [ACTION-FAILURE])
-# ----------------------------------------------------
-# Check whether the given linker option works
-AC_DEFUN([_LT_LINKER_OPTION],
-[m4_require([_LT_FILEUTILS_DEFAULTS])dnl
-m4_require([_LT_DECL_SED])dnl
-AC_CACHE_CHECK([$1], [$2],
-  [$2=no
-   save_LDFLAGS="$LDFLAGS"
-   LDFLAGS="$LDFLAGS $3"
-   echo "$lt_simple_link_test_code" > conftest.$ac_ext
-   if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
-     # The linker can only warn and ignore the option if not recognized
-     # So say no if there are warnings
-     if test -s conftest.err; then
-       # Append any errors to the config.log.
-       cat conftest.err 1>&AS_MESSAGE_LOG_FD
-       $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp
-       $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
-       if diff conftest.exp conftest.er2 >/dev/null; then
-         $2=yes
-       fi
-     else
-       $2=yes
-     fi
-   fi
-   $RM -r conftest*
-   LDFLAGS="$save_LDFLAGS"
-])
-
-if test x"[$]$2" = xyes; then
-    m4_if([$4], , :, [$4])
-else
-    m4_if([$5], , :, [$5])
-fi
-])# _LT_LINKER_OPTION
-
-# Old name:
-AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION])
-dnl aclocal-1.4 backwards compatibility:
-dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [])
-
-
-# LT_CMD_MAX_LEN
-#---------------
-AC_DEFUN([LT_CMD_MAX_LEN],
-[AC_REQUIRE([AC_CANONICAL_HOST])dnl
-# find the maximum length of command line arguments
-AC_MSG_CHECKING([the maximum length of command line arguments])
-AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
-  i=0
-  teststring="ABCD"
-
-  case $build_os in
-  msdosdjgpp*)
-    # On DJGPP, this test can blow up pretty badly due to problems in libc
-    # (any single argument exceeding 2000 bytes causes a buffer overrun
-    # during glob expansion).  Even if it were fixed, the result of this
-    # check would be larger than it should be.
-    lt_cv_sys_max_cmd_len=12288;    # 12K is about right
-    ;;
-
-  gnu*)
-    # Under GNU Hurd, this test is not required because there is
-    # no limit to the length of command line arguments.
-    # Libtool will interpret -1 as no limit whatsoever
-    lt_cv_sys_max_cmd_len=-1;
-    ;;
-
-  cygwin* | mingw* | cegcc*)
-    # On Win9x/ME, this test blows up -- it succeeds, but takes
-    # about 5 minutes as the teststring grows exponentially.
-    # Worse, since 9x/ME are not pre-emptively multitasking,
-    # you end up with a "frozen" computer, even though with patience
-    # the test eventually succeeds (with a max line length of 256k).
-    # Instead, let's just punt: use the minimum linelength reported by
-    # all of the supported platforms: 8192 (on NT/2K/XP).
-    lt_cv_sys_max_cmd_len=8192;
-    ;;
-
-  mint*)
-    # On MiNT this can take a long time and run out of memory.
-    lt_cv_sys_max_cmd_len=8192;
-    ;;
-
-  amigaos*)
-    # On AmigaOS with pdksh, this test takes hours, literally.
-    # So we just punt and use a minimum line length of 8192.
-    lt_cv_sys_max_cmd_len=8192;
-    ;;
-
-  netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)
-    # This has been around since 386BSD, at least.  Likely further.
-    if test -x /sbin/sysctl; then
-      lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
-    elif test -x /usr/sbin/sysctl; then
-      lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
-    else
-      lt_cv_sys_max_cmd_len=65536      # usable default for all BSDs
-    fi
-    # And add a safety zone
-    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
-    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
-    ;;
-
-  interix*)
-    # We know the value 262144 and hardcode it with a safety zone (like BSD)
-    lt_cv_sys_max_cmd_len=196608
-    ;;
-
-  os2*)
-    # The test takes a long time on OS/2.
-    lt_cv_sys_max_cmd_len=8192
-    ;;
-
-  osf*)
-    # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
-    # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
-    # nice to cause kernel panics so lets avoid the loop below.
-    # First set a reasonable default.
-    lt_cv_sys_max_cmd_len=16384
-    #
-    if test -x /sbin/sysconfig; then
-      case `/sbin/sysconfig -q proc exec_disable_arg_limit` in
-        *1*) lt_cv_sys_max_cmd_len=-1 ;;
-      esac
-    fi
-    ;;
-  sco3.2v5*)
-    lt_cv_sys_max_cmd_len=102400
-    ;;
-  sysv5* | sco5v6* | sysv4.2uw2*)
-    kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`
-    if test -n "$kargmax"; then
-      lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[        ]]//'`
-    else
-      lt_cv_sys_max_cmd_len=32768
-    fi
-    ;;
-  *)
-    lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
-    if test -n "$lt_cv_sys_max_cmd_len"; then
-      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
-      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
-    else
-      # Make teststring a little bigger before we do anything with it.
-      # a 1K string should be a reasonable start.
-      for i in 1 2 3 4 5 6 7 8 ; do
-        teststring=$teststring$teststring
-      done
-      SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
-      # If test is not a shell built-in, we'll probably end up computing a
-      # maximum length that is only half of the actual maximum length, but
-      # we can't tell.
-      while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \
-                = "X$teststring$teststring"; } >/dev/null 2>&1 &&
-             test $i != 17 # 1/2 MB should be enough
-      do
-        i=`expr $i + 1`
-        teststring=$teststring$teststring
-      done
-      # Only check the string length outside the loop.
-      lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1`
-      teststring=
-      # Add a significant safety factor because C++ compilers can tack on
-      # massive amounts of additional arguments before passing them to the
-      # linker.  It appears as though 1/2 is a usable value.
-      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
-    fi
-    ;;
-  esac
-])
-if test -n $lt_cv_sys_max_cmd_len ; then
-  AC_MSG_RESULT($lt_cv_sys_max_cmd_len)
-else
-  AC_MSG_RESULT(none)
-fi
-max_cmd_len=$lt_cv_sys_max_cmd_len
-_LT_DECL([], [max_cmd_len], [0],
-    [What is the maximum length of a command?])
-])# LT_CMD_MAX_LEN
-
-# Old name:
-AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN])
-dnl aclocal-1.4 backwards compatibility:
-dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [])
-
-
-# _LT_HEADER_DLFCN
-# ----------------
-m4_defun([_LT_HEADER_DLFCN],
-[AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl
-])# _LT_HEADER_DLFCN
-
-
-# _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE,
-#                      ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING)
-# ----------------------------------------------------------------
-m4_defun([_LT_TRY_DLOPEN_SELF],
-[m4_require([_LT_HEADER_DLFCN])dnl
-if test "$cross_compiling" = yes; then :
-  [$4]
-else
-  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
-  lt_status=$lt_dlunknown
-  cat > conftest.$ac_ext <<_LT_EOF
-[#line $LINENO "configure"
-#include "confdefs.h"
-
-#if HAVE_DLFCN_H
-#include <dlfcn.h>
-#endif
-
-#include <stdio.h>
-
-#ifdef RTLD_GLOBAL
-#  define LT_DLGLOBAL          RTLD_GLOBAL
-#else
-#  ifdef DL_GLOBAL
-#    define LT_DLGLOBAL                DL_GLOBAL
-#  else
-#    define LT_DLGLOBAL                0
-#  endif
-#endif
-
-/* We may have to define LT_DLLAZY_OR_NOW in the command line if we
-   find out it does not work in some platform. */
-#ifndef LT_DLLAZY_OR_NOW
-#  ifdef RTLD_LAZY
-#    define LT_DLLAZY_OR_NOW           RTLD_LAZY
-#  else
-#    ifdef DL_LAZY
-#      define LT_DLLAZY_OR_NOW         DL_LAZY
-#    else
-#      ifdef RTLD_NOW
-#        define LT_DLLAZY_OR_NOW       RTLD_NOW
-#      else
-#        ifdef DL_NOW
-#          define LT_DLLAZY_OR_NOW     DL_NOW
-#        else
-#          define LT_DLLAZY_OR_NOW     0
-#        endif
-#      endif
-#    endif
-#  endif
-#endif
-
-/* When -fvisbility=hidden is used, assume the code has been annotated
-   correspondingly for the symbols needed.  */
-#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))
-int fnord () __attribute__((visibility("default")));
-#endif
-
-int fnord () { return 42; }
-int main ()
-{
-  void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
-  int status = $lt_dlunknown;
-
-  if (self)
-    {
-      if (dlsym (self,"fnord"))       status = $lt_dlno_uscore;
-      else
-        {
-         if (dlsym( self,"_fnord"))  status = $lt_dlneed_uscore;
-          else puts (dlerror ());
-       }
-      /* dlclose (self); */
-    }
-  else
-    puts (dlerror ());
-
-  return status;
-}]
-_LT_EOF
-  if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then
-    (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null
-    lt_status=$?
-    case x$lt_status in
-      x$lt_dlno_uscore) $1 ;;
-      x$lt_dlneed_uscore) $2 ;;
-      x$lt_dlunknown|x*) $3 ;;
-    esac
-  else :
-    # compilation failed
-    $3
-  fi
-fi
-rm -fr conftest*
-])# _LT_TRY_DLOPEN_SELF
-
-
-# LT_SYS_DLOPEN_SELF
-# ------------------
-AC_DEFUN([LT_SYS_DLOPEN_SELF],
-[m4_require([_LT_HEADER_DLFCN])dnl
-if test "x$enable_dlopen" != xyes; then
-  enable_dlopen=unknown
-  enable_dlopen_self=unknown
-  enable_dlopen_self_static=unknown
-else
-  lt_cv_dlopen=no
-  lt_cv_dlopen_libs=
-
-  case $host_os in
-  beos*)
-    lt_cv_dlopen="load_add_on"
-    lt_cv_dlopen_libs=
-    lt_cv_dlopen_self=yes
-    ;;
-
-  mingw* | pw32* | cegcc*)
-    lt_cv_dlopen="LoadLibrary"
-    lt_cv_dlopen_libs=
-    ;;
-
-  cygwin*)
-    lt_cv_dlopen="dlopen"
-    lt_cv_dlopen_libs=
-    ;;
-
-  darwin*)
-  # if libdl is installed we need to link against it
-    AC_CHECK_LIB([dl], [dlopen],
-               [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[
-    lt_cv_dlopen="dyld"
-    lt_cv_dlopen_libs=
-    lt_cv_dlopen_self=yes
-    ])
-    ;;
-
-  *)
-    AC_CHECK_FUNC([shl_load],
-         [lt_cv_dlopen="shl_load"],
-      [AC_CHECK_LIB([dld], [shl_load],
-           [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"],
-       [AC_CHECK_FUNC([dlopen],
-             [lt_cv_dlopen="dlopen"],
-         [AC_CHECK_LIB([dl], [dlopen],
-               [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],
-           [AC_CHECK_LIB([svld], [dlopen],
-                 [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"],
-             [AC_CHECK_LIB([dld], [dld_link],
-                   [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"])
-             ])
-           ])
-         ])
-       ])
-      ])
-    ;;
-  esac
-
-  if test "x$lt_cv_dlopen" != xno; then
-    enable_dlopen=yes
-  else
-    enable_dlopen=no
-  fi
-
-  case $lt_cv_dlopen in
-  dlopen)
-    save_CPPFLAGS="$CPPFLAGS"
-    test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
-
-    save_LDFLAGS="$LDFLAGS"
-    wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
-
-    save_LIBS="$LIBS"
-    LIBS="$lt_cv_dlopen_libs $LIBS"
-
-    AC_CACHE_CHECK([whether a program can dlopen itself],
-         lt_cv_dlopen_self, [dnl
-         _LT_TRY_DLOPEN_SELF(
-           lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,
-           lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)
-    ])
-
-    if test "x$lt_cv_dlopen_self" = xyes; then
-      wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
-      AC_CACHE_CHECK([whether a statically linked program can dlopen itself],
-         lt_cv_dlopen_self_static, [dnl
-         _LT_TRY_DLOPEN_SELF(
-           lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,
-           lt_cv_dlopen_self_static=no,  lt_cv_dlopen_self_static=cross)
-      ])
-    fi
-
-    CPPFLAGS="$save_CPPFLAGS"
-    LDFLAGS="$save_LDFLAGS"
-    LIBS="$save_LIBS"
-    ;;
-  esac
-
-  case $lt_cv_dlopen_self in
-  yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
-  *) enable_dlopen_self=unknown ;;
-  esac
-
-  case $lt_cv_dlopen_self_static in
-  yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
-  *) enable_dlopen_self_static=unknown ;;
-  esac
-fi
-_LT_DECL([dlopen_support], [enable_dlopen], [0],
-        [Whether dlopen is supported])
-_LT_DECL([dlopen_self], [enable_dlopen_self], [0],
-        [Whether dlopen of programs is supported])
-_LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0],
-        [Whether dlopen of statically linked programs is supported])
-])# LT_SYS_DLOPEN_SELF
-
-# Old name:
-AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF])
-dnl aclocal-1.4 backwards compatibility:
-dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [])
-
-
-# _LT_COMPILER_C_O([TAGNAME])
-# ---------------------------
-# Check to see if options -c and -o are simultaneously supported by compiler.
-# This macro does not hard code the compiler like AC_PROG_CC_C_O.
-m4_defun([_LT_COMPILER_C_O],
-[m4_require([_LT_DECL_SED])dnl
-m4_require([_LT_FILEUTILS_DEFAULTS])dnl
-m4_require([_LT_TAG_COMPILER])dnl
-AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext],
-  [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)],
-  [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no
-   $RM -r conftest 2>/dev/null
-   mkdir conftest
-   cd conftest
-   mkdir out
-   echo "$lt_simple_compile_test_code" > conftest.$ac_ext
-
-   lt_compiler_flag="-o out/conftest2.$ac_objext"
-   # Insert the option either (1) after the last *FLAGS variable, or
-   # (2) before a word containing "conftest.", or (3) at the end.
-   # Note that $ac_compile itself does not contain backslashes and begins
-   # with a dollar sign (not a hyphen), so the echo should work correctly.
-   lt_compile=`echo "$ac_compile" | $SED \
-   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-   -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
-   -e 's:$: $lt_compiler_flag:'`
-   (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
-   (eval "$lt_compile" 2>out/conftest.err)
-   ac_status=$?
-   cat out/conftest.err >&AS_MESSAGE_LOG_FD
-   echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
-   if (exit $ac_status) && test -s out/conftest2.$ac_objext
-   then
-     # The compiler can only warn and ignore the option if not recognized
-     # So say no if there are warnings
-     $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp
-     $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2
-     if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then
-       _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes
-     fi
-   fi
-   chmod u+w . 2>&AS_MESSAGE_LOG_FD
-   $RM conftest*
-   # SGI C++ compiler will create directory out/ii_files/ for
-   # template instantiation
-   test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files
-   $RM out/* && rmdir out
-   cd ..
-   $RM -r conftest
-   $RM conftest*
-])
-_LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1],
-       [Does compiler simultaneously support -c and -o options?])
-])# _LT_COMPILER_C_O
-
-
-# _LT_COMPILER_FILE_LOCKS([TAGNAME])
-# ----------------------------------
-# Check to see if we can do hard links to lock some files if needed
-m4_defun([_LT_COMPILER_FILE_LOCKS],
-[m4_require([_LT_ENABLE_LOCK])dnl
-m4_require([_LT_FILEUTILS_DEFAULTS])dnl
-_LT_COMPILER_C_O([$1])
-
-hard_links="nottested"
-if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then
-  # do not overwrite the value of need_locks provided by the user
-  AC_MSG_CHECKING([if we can lock with hard links])
-  hard_links=yes
-  $RM conftest*
-  ln conftest.a conftest.b 2>/dev/null && hard_links=no
-  touch conftest.a
-  ln conftest.a conftest.b 2>&5 || hard_links=no
-  ln conftest.a conftest.b 2>/dev/null && hard_links=no
-  AC_MSG_RESULT([$hard_links])
-  if test "$hard_links" = no; then
-    AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe])
-    need_locks=warn
-  fi
-else
-  need_locks=no
-fi
-_LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?])
-])# _LT_COMPILER_FILE_LOCKS
-
-
-# _LT_CHECK_OBJDIR
-# ----------------
-m4_defun([_LT_CHECK_OBJDIR],
-[AC_CACHE_CHECK([for objdir], [lt_cv_objdir],
-[rm -f .libs 2>/dev/null
-mkdir .libs 2>/dev/null
-if test -d .libs; then
-  lt_cv_objdir=.libs
-else
-  # MS-DOS does not allow filenames that begin with a dot.
-  lt_cv_objdir=_libs
-fi
-rmdir .libs 2>/dev/null])
-objdir=$lt_cv_objdir
-_LT_DECL([], [objdir], [0],
-         [The name of the directory that contains temporary libtool files])dnl
-m4_pattern_allow([LT_OBJDIR])dnl
-AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/",
-  [Define to the sub-directory in which libtool stores uninstalled libraries.])
-])# _LT_CHECK_OBJDIR
-
-
-# _LT_LINKER_HARDCODE_LIBPATH([TAGNAME])
-# --------------------------------------
-# Check hardcoding attributes.
-m4_defun([_LT_LINKER_HARDCODE_LIBPATH],
-[AC_MSG_CHECKING([how to hardcode library paths into programs])
-_LT_TAGVAR(hardcode_action, $1)=
-if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" ||
-   test -n "$_LT_TAGVAR(runpath_var, $1)" ||
-   test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then
-
-  # We can hardcode non-existent directories.
-  if test "$_LT_TAGVAR(hardcode_direct, $1)" != no &&
-     # If the only mechanism to avoid hardcoding is shlibpath_var, we
-     # have to relink, otherwise we might link with an installed library
-     # when we should be linking with a yet-to-be-installed one
-     ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no &&
-     test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then
-    # Linking always hardcodes the temporary library directory.
-    _LT_TAGVAR(hardcode_action, $1)=relink
-  else
-    # We can link without hardcoding, and we can hardcode nonexisting dirs.
-    _LT_TAGVAR(hardcode_action, $1)=immediate
-  fi
-else
-  # We cannot hardcode anything, or else we can only hardcode existing
-  # directories.
-  _LT_TAGVAR(hardcode_action, $1)=unsupported
-fi
-AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)])
-
-if test "$_LT_TAGVAR(hardcode_action, $1)" = relink ||
-   test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then
-  # Fast installation is not supported
-  enable_fast_install=no
-elif test "$shlibpath_overrides_runpath" = yes ||
-     test "$enable_shared" = no; then
-  # Fast installation is not necessary
-  enable_fast_install=needless
-fi
-_LT_TAGDECL([], [hardcode_action], [0],
-    [How to hardcode a shared library path into an executable])
-])# _LT_LINKER_HARDCODE_LIBPATH
-
-
-# _LT_CMD_STRIPLIB
-# ----------------
-m4_defun([_LT_CMD_STRIPLIB],
-[m4_require([_LT_DECL_EGREP])
-striplib=
-old_striplib=
-AC_MSG_CHECKING([whether stripping libraries is possible])
-if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then
-  test -z "$old_striplib" && old_striplib="$STRIP --strip-debug"
-  test -z "$striplib" && striplib="$STRIP --strip-unneeded"
-  AC_MSG_RESULT([yes])
-else
-# FIXME - insert some real tests, host_os isn't really good enough
-  case $host_os in
-  darwin*)
-    if test -n "$STRIP" ; then
-      striplib="$STRIP -x"
-      old_striplib="$STRIP -S"
-      AC_MSG_RESULT([yes])
-    else
-      AC_MSG_RESULT([no])
-    fi
-    ;;
-  *)
-    AC_MSG_RESULT([no])
-    ;;
-  esac
-fi
-_LT_DECL([], [old_striplib], [1], [Commands to strip libraries])
-_LT_DECL([], [striplib], [1])
-])# _LT_CMD_STRIPLIB
-
-
-# _LT_SYS_DYNAMIC_LINKER([TAG])
-# -----------------------------
-# PORTME Fill in your ld.so characteristics
-m4_defun([_LT_SYS_DYNAMIC_LINKER],
-[AC_REQUIRE([AC_CANONICAL_HOST])dnl
-m4_require([_LT_DECL_EGREP])dnl
-m4_require([_LT_FILEUTILS_DEFAULTS])dnl
-m4_require([_LT_DECL_OBJDUMP])dnl
-m4_require([_LT_DECL_SED])dnl
-m4_require([_LT_CHECK_SHELL_FEATURES])dnl
-AC_MSG_CHECKING([dynamic linker characteristics])
-m4_if([$1],
-       [], [
-if test "$GCC" = yes; then
-  case $host_os in
-    darwin*) lt_awk_arg="/^libraries:/,/LR/" ;;
-    *) lt_awk_arg="/^libraries:/" ;;
-  esac
-  case $host_os in
-    mingw* | cegcc*) lt_sed_strip_eq="s,=\([[A-Za-z]]:\),\1,g" ;;
-    *) lt_sed_strip_eq="s,=/,/,g" ;;
-  esac
-  lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq`
-  case $lt_search_path_spec in
-  *\;*)
-    # if the path contains ";" then we assume it to be the separator
-    # otherwise default to the standard path separator (i.e. ":") - it is
-    # assumed that no part of a normal pathname contains ";" but that should
-    # okay in the real world where ";" in dirpaths is itself problematic.
-    lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'`
-    ;;
-  *)
-    lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"`
-    ;;
-  esac
-  # Ok, now we have the path, separated by spaces, we can step through it
-  # and add multilib dir if necessary.
-  lt_tmp_lt_search_path_spec=
-  lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null`
-  for lt_sys_path in $lt_search_path_spec; do
-    if test -d "$lt_sys_path/$lt_multi_os_dir"; then
-      lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir"
-    else
-      test -d "$lt_sys_path" && \
-       lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path"
-    fi
-  done
-  lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk '
-BEGIN {RS=" "; FS="/|\n";} {
-  lt_foo="";
-  lt_count=0;
-  for (lt_i = NF; lt_i > 0; lt_i--) {
-    if ($lt_i != "" && $lt_i != ".") {
-      if ($lt_i == "..") {
-        lt_count++;
-      } else {
-        if (lt_count == 0) {
-          lt_foo="/" $lt_i lt_foo;
-        } else {
-          lt_count--;
-        }
-      }
-    }
-  }
-  if (lt_foo != "") { lt_freq[[lt_foo]]++; }
-  if (lt_freq[[lt_foo]] == 1) { print lt_foo; }
-}'`
-  # AWK program above erroneously prepends '/' to C:/dos/paths
-  # for these hosts.
-  case $host_os in
-    mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\
-      $SED 's,/\([[A-Za-z]]:\),\1,g'` ;;
-  esac
-  sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP`
-else
-  sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
-fi])
-library_names_spec=
-libname_spec='lib$name'
-soname_spec=
-shrext_cmds=".so"
-postinstall_cmds=
-postuninstall_cmds=
-finish_cmds=
-finish_eval=
-shlibpath_var=
-shlibpath_overrides_runpath=unknown
-version_type=none
-dynamic_linker="$host_os ld.so"
-sys_lib_dlsearch_path_spec="/lib /usr/lib"
-need_lib_prefix=unknown
-hardcode_into_libs=no
-
-# when you set need_version to no, make sure it does not cause -set_version
-# flags to be left without arguments
-need_version=unknown
-
-case $host_os in
-aix3*)
-  version_type=linux # correct to gnu/linux during the next big refactor
-  library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a'
-  shlibpath_var=LIBPATH
-
-  # AIX 3 has no versioning support, so we append a major version to the name.
-  soname_spec='${libname}${release}${shared_ext}$major'
-  ;;
-
-aix[[4-9]]*)
-  version_type=linux # correct to gnu/linux during the next big refactor
-  need_lib_prefix=no
-  need_version=no
-  hardcode_into_libs=yes
-  if test "$host_cpu" = ia64; then
-    # AIX 5 supports IA64
-    library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}'
-    shlibpath_var=LD_LIBRARY_PATH
-  else
-    # With GCC up to 2.95.x, collect2 would create an import file
-    # for dependence libraries.  The import file would start with
-    # the line `#! .'.  This would cause the generated library to
-    # depend on `.', always an invalid library.  This was fixed in
-    # development snapshots of GCC prior to 3.0.
-    case $host_os in
-      aix4 | aix4.[[01]] | aix4.[[01]].*)
-      if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'
-          echo ' yes '
-          echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then
-       :
-      else
-       can_build_shared=no
-      fi
-      ;;
-    esac
-    # AIX (on Power*) has no versioning support, so currently we can not hardcode correct
-    # soname into executable. Probably we can add versioning support to
-    # collect2, so additional links can be useful in future.
-    if test "$aix_use_runtimelinking" = yes; then
-      # If using run time linking (on AIX 4.2 or later) use lib<name>.so
-      # instead of lib<name>.a to let people know that these are not
-      # typical AIX shared libraries.
-      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-    else
-      # We preserve .a as extension for shared libraries through AIX4.2
-      # and later when we are not doing run time linking.
-      library_names_spec='${libname}${release}.a $libname.a'
-      soname_spec='${libname}${release}${shared_ext}$major'
-    fi
-    shlibpath_var=LIBPATH
-  fi
-  ;;
-
-amigaos*)
-  case $host_cpu in
-  powerpc)
-    # Since July 2007 AmigaOS4 officially supports .so libraries.
-    # When compiling the executable, add -use-dynld -Lsobjs: to the compileline.
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-    ;;
-  m68k)
-    library_names_spec='$libname.ixlibrary $libname.a'
-    # Create ${libname}_ixlibrary.a entries in /sys/libs.
-    finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
-    ;;
-  esac
-  ;;
-
-beos*)
-  library_names_spec='${libname}${shared_ext}'
-  dynamic_linker="$host_os ld.so"
-  shlibpath_var=LIBRARY_PATH
-  ;;
-
-bsdi[[45]]*)
-  version_type=linux # correct to gnu/linux during the next big refactor
-  need_version=no
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-  soname_spec='${libname}${release}${shared_ext}$major'
-  finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir'
-  shlibpath_var=LD_LIBRARY_PATH
-  sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
-  sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
-  # the default ld.so.conf also contains /usr/contrib/lib and
-  # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow
-  # libtool to hard-code these into programs
-  ;;
-
-cygwin* | mingw* | pw32* | cegcc*)
-  version_type=windows
-  shrext_cmds=".dll"
-  need_version=no
-  need_lib_prefix=no
-
-  case $GCC,$cc_basename in
-  yes,*)
-    # gcc
-    library_names_spec='$libname.dll.a'
-    # DLL is installed to $(libdir)/../bin by postinstall_cmds
-    postinstall_cmds='base_file=`basename \${file}`~
-      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~
-      dldir=$destdir/`dirname \$dlpath`~
-      test -d \$dldir || mkdir -p \$dldir~
-      $install_prog $dir/$dlname \$dldir/$dlname~
-      chmod a+x \$dldir/$dlname~
-      if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then
-        eval '\''$striplib \$dldir/$dlname'\'' || exit \$?;
-      fi'
-    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
-      dlpath=$dir/\$dldll~
-       $RM \$dlpath'
-    shlibpath_overrides_runpath=yes
-
-    case $host_os in
-    cygwin*)
-      # Cygwin DLLs use 'cyg' prefix rather than 'lib'
-      soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
-m4_if([$1], [],[
-      sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"])
-      ;;
-    mingw* | cegcc*)
-      # MinGW DLLs use traditional 'lib' prefix
-      soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
-      ;;
-    pw32*)
-      # pw32 DLLs use 'pw' prefix rather than 'lib'
-      library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
-      ;;
-    esac
-    dynamic_linker='Win32 ld.exe'
-    ;;
-
-  *,cl*)
-    # Native MSVC
-    libname_spec='$name'
-    soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
-    library_names_spec='${libname}.dll.lib'
-
-    case $build_os in
-    mingw*)
-      sys_lib_search_path_spec=
-      lt_save_ifs=$IFS
-      IFS=';'
-      for lt_path in $LIB
-      do
-        IFS=$lt_save_ifs
-        # Let DOS variable expansion print the short 8.3 style file name.
-        lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"`
-        sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path"
-      done
-      IFS=$lt_save_ifs
-      # Convert to MSYS style.
-      sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'`
-      ;;
-    cygwin*)
-      # Convert to unix form, then to dos form, then back to unix form
-      # but this time dos style (no spaces!) so that the unix form looks
-      # like /cygdrive/c/PROGRA~1:/cygdr...
-      sys_lib_search_path_spec=`cygpath --path --unix "$LIB"`
-      sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null`
-      sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"`
-      ;;
-    *)
-      sys_lib_search_path_spec="$LIB"
-      if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then
-        # It is most probably a Windows format PATH.
-        sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
-      else
-        sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"`
-      fi
-      # FIXME: find the short name or the path components, as spaces are
-      # common. (e.g. "Program Files" -> "PROGRA~1")
-      ;;
-    esac
-
-    # DLL is installed to $(libdir)/../bin by postinstall_cmds
-    postinstall_cmds='base_file=`basename \${file}`~
-      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~
-      dldir=$destdir/`dirname \$dlpath`~
-      test -d \$dldir || mkdir -p \$dldir~
-      $install_prog $dir/$dlname \$dldir/$dlname'
-    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
-      dlpath=$dir/\$dldll~
-       $RM \$dlpath'
-    shlibpath_overrides_runpath=yes
-    dynamic_linker='Win32 link.exe'
-    ;;
-
-  *)
-    # Assume MSVC wrapper
-    library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib'
-    dynamic_linker='Win32 ld.exe'
-    ;;
-  esac
-  # FIXME: first we should search . and the directory the executable is in
-  shlibpath_var=PATH
-  ;;
-
-darwin* | rhapsody*)
-  dynamic_linker="$host_os dyld"
-  version_type=darwin
-  need_lib_prefix=no
-  need_version=no
-  library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext'
-  soname_spec='${libname}${release}${major}$shared_ext'
-  shlibpath_overrides_runpath=yes
-  shlibpath_var=DYLD_LIBRARY_PATH
-  shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
-m4_if([$1], [],[
-  sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"])
-  sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'
-  ;;
-
-dgux*)
-  version_type=linux # correct to gnu/linux during the next big refactor
-  need_lib_prefix=no
-  need_version=no
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'
-  soname_spec='${libname}${release}${shared_ext}$major'
-  shlibpath_var=LD_LIBRARY_PATH
-  ;;
-
-freebsd* | dragonfly*)
-  # DragonFly does not have aout.  When/if they implement a new
-  # versioning mechanism, adjust this.
-  if test -x /usr/bin/objformat; then
-    objformat=`/usr/bin/objformat`
-  else
-    case $host_os in
-    freebsd[[23]].*) objformat=aout ;;
-    *) objformat=elf ;;
-    esac
-  fi
-  version_type=freebsd-$objformat
-  case $version_type in
-    freebsd-elf*)
-      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
-      need_version=no
-      need_lib_prefix=no
-      ;;
-    freebsd-*)
-      library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix'
-      need_version=yes
-      ;;
-  esac
-  shlibpath_var=LD_LIBRARY_PATH
-  case $host_os in
-  freebsd2.*)
-    shlibpath_overrides_runpath=yes
-    ;;
-  freebsd3.[[01]]* | freebsdelf3.[[01]]*)
-    shlibpath_overrides_runpath=yes
-    hardcode_into_libs=yes
-    ;;
-  freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \
-  freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1)
-    shlibpath_overrides_runpath=no
-    hardcode_into_libs=yes
-    ;;
-  *) # from 4.6 on, and DragonFly
-    shlibpath_overrides_runpath=yes
-    hardcode_into_libs=yes
-    ;;
-  esac
-  ;;
-
-haiku*)
-  version_type=linux # correct to gnu/linux during the next big refactor
-  need_lib_prefix=no
-  need_version=no
-  dynamic_linker="$host_os runtime_loader"
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
-  soname_spec='${libname}${release}${shared_ext}$major'
-  shlibpath_var=LIBRARY_PATH
-  shlibpath_overrides_runpath=yes
-  sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib'
-  hardcode_into_libs=yes
-  ;;
-
-hpux9* | hpux10* | hpux11*)
-  # Give a soname corresponding to the major version so that dld.sl refuses to
-  # link against other versions.
-  version_type=sunos
-  need_lib_prefix=no
-  need_version=no
-  case $host_cpu in
-  ia64*)
-    shrext_cmds='.so'
-    hardcode_into_libs=yes
-    dynamic_linker="$host_os dld.so"
-    shlibpath_var=LD_LIBRARY_PATH
-    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-    soname_spec='${libname}${release}${shared_ext}$major'
-    if test "X$HPUX_IA64_MODE" = X32; then
-      sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib"
-    else
-      sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64"
-    fi
-    sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
-    ;;
-  hppa*64*)
-    shrext_cmds='.sl'
-    hardcode_into_libs=yes
-    dynamic_linker="$host_os dld.sl"
-    shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH
-    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-    soname_spec='${libname}${release}${shared_ext}$major'
-    sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64"
-    sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
-    ;;
-  *)
-    shrext_cmds='.sl'
-    dynamic_linker="$host_os dld.sl"
-    shlibpath_var=SHLIB_PATH
-    shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-    soname_spec='${libname}${release}${shared_ext}$major'
-    ;;
-  esac
-  # HP-UX runs *really* slowly unless shared libraries are mode 555, ...
-  postinstall_cmds='chmod 555 $lib'
-  # or fails outright, so override atomically:
-  install_override_mode=555
-  ;;
-
-interix[[3-9]]*)
-  version_type=linux # correct to gnu/linux during the next big refactor
-  need_lib_prefix=no
-  need_version=no
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
-  soname_spec='${libname}${release}${shared_ext}$major'
-  dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)'
-  shlibpath_var=LD_LIBRARY_PATH
-  shlibpath_overrides_runpath=no
-  hardcode_into_libs=yes
-  ;;
-
-irix5* | irix6* | nonstopux*)
-  case $host_os in
-    nonstopux*) version_type=nonstopux ;;
-    *)
-       if test "$lt_cv_prog_gnu_ld" = yes; then
-               version_type=linux # correct to gnu/linux during the next big refactor
-       else
-               version_type=irix
-       fi ;;
-  esac
-  need_lib_prefix=no
-  need_version=no
-  soname_spec='${libname}${release}${shared_ext}$major'
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}'
-  case $host_os in
-  irix5* | nonstopux*)
-    libsuff= shlibsuff=
-    ;;
-  *)
-    case $LD in # libtool.m4 will add one of these switches to LD
-    *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ")
-      libsuff= shlibsuff= libmagic=32-bit;;
-    *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ")
-      libsuff=32 shlibsuff=N32 libmagic=N32;;
-    *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ")
-      libsuff=64 shlibsuff=64 libmagic=64-bit;;
-    *) libsuff= shlibsuff= libmagic=never-match;;
-    esac
-    ;;
-  esac
-  shlibpath_var=LD_LIBRARY${shlibsuff}_PATH
-  shlibpath_overrides_runpath=no
-  sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
-  sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
-  hardcode_into_libs=yes
-  ;;
-
-# No shared lib support for Linux oldld, aout, or coff.
-linux*oldld* | linux*aout* | linux*coff*)
-  dynamic_linker=no
-  ;;
-
-# This must be glibc/ELF.
-linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
-  version_type=linux # correct to gnu/linux during the next big refactor
-  need_lib_prefix=no
-  need_version=no
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-  soname_spec='${libname}${release}${shared_ext}$major'
-  finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
-  shlibpath_var=LD_LIBRARY_PATH
-  shlibpath_overrides_runpath=no
-
-  # Some binutils ld are patched to set DT_RUNPATH
-  AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath],
-    [lt_cv_shlibpath_overrides_runpath=no
-    save_LDFLAGS=$LDFLAGS
-    save_libdir=$libdir
-    eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \
-        LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\""
-    AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])],
-      [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null],
-        [lt_cv_shlibpath_overrides_runpath=yes])])
-    LDFLAGS=$save_LDFLAGS
-    libdir=$save_libdir
-    ])
-  shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath
-
-  # This implies no fast_install, which is unacceptable.
-  # Some rework will be needed to allow for fast_install
-  # before this can be enabled.
-  hardcode_into_libs=yes
-
-  # Append ld.so.conf contents to the search path
-  if test -f /etc/ld.so.conf; then
-    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[  ]*hwcap[        ]/d;s/[:,      ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '`
-    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
-  fi
-
-  # We used to test for /lib/ld.so.1 and disable shared libraries on
-  # powerpc, because MkLinux only supported shared libraries with the
-  # GNU dynamic linker.  Since this was broken with cross compilers,
-  # most powerpc-linux boxes support dynamic linking these days and
-  # people can always --disable-shared, the test was removed, and we
-  # assume the GNU/Linux dynamic linker is in use.
-  dynamic_linker='GNU/Linux ld.so'
-  ;;
-
-netbsdelf*-gnu)
-  version_type=linux
-  need_lib_prefix=no
-  need_version=no
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
-  soname_spec='${libname}${release}${shared_ext}$major'
-  shlibpath_var=LD_LIBRARY_PATH
-  shlibpath_overrides_runpath=no
-  hardcode_into_libs=yes
-  dynamic_linker='NetBSD ld.elf_so'
-  ;;
-
-netbsd*)
-  version_type=sunos
-  need_lib_prefix=no
-  need_version=no
-  if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
-    finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
-    dynamic_linker='NetBSD (a.out) ld.so'
-  else
-    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
-    soname_spec='${libname}${release}${shared_ext}$major'
-    dynamic_linker='NetBSD ld.elf_so'
-  fi
-  shlibpath_var=LD_LIBRARY_PATH
-  shlibpath_overrides_runpath=yes
-  hardcode_into_libs=yes
-  ;;
-
-newsos6)
-  version_type=linux # correct to gnu/linux during the next big refactor
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-  shlibpath_var=LD_LIBRARY_PATH
-  shlibpath_overrides_runpath=yes
-  ;;
-
-*nto* | *qnx*)
-  version_type=qnx
-  need_lib_prefix=no
-  need_version=no
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-  soname_spec='${libname}${release}${shared_ext}$major'
-  shlibpath_var=LD_LIBRARY_PATH
-  shlibpath_overrides_runpath=no
-  hardcode_into_libs=yes
-  dynamic_linker='ldqnx.so'
-  ;;
-
-openbsd*)
-  version_type=sunos
-  sys_lib_dlsearch_path_spec="/usr/lib"
-  need_lib_prefix=no
-  # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs.
-  case $host_os in
-    openbsd3.3 | openbsd3.3.*) need_version=yes ;;
-    *)                         need_version=no  ;;
-  esac
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
-  finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
-  shlibpath_var=LD_LIBRARY_PATH
-  if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
-    case $host_os in
-      openbsd2.[[89]] | openbsd2.[[89]].*)
-       shlibpath_overrides_runpath=no
-       ;;
-      *)
-       shlibpath_overrides_runpath=yes
-       ;;
-      esac
-  else
-    shlibpath_overrides_runpath=yes
-  fi
-  ;;
-
-os2*)
-  libname_spec='$name'
-  shrext_cmds=".dll"
-  need_lib_prefix=no
-  library_names_spec='$libname${shared_ext} $libname.a'
-  dynamic_linker='OS/2 ld.exe'
-  shlibpath_var=LIBPATH
-  ;;
-
-osf3* | osf4* | osf5*)
-  version_type=osf
-  need_lib_prefix=no
-  need_version=no
-  soname_spec='${libname}${release}${shared_ext}$major'
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-  shlibpath_var=LD_LIBRARY_PATH
-  sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
-  sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
-  ;;
-
-rdos*)
-  dynamic_linker=no
-  ;;
-
-solaris*)
-  version_type=linux # correct to gnu/linux during the next big refactor
-  need_lib_prefix=no
-  need_version=no
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-  soname_spec='${libname}${release}${shared_ext}$major'
-  shlibpath_var=LD_LIBRARY_PATH
-  shlibpath_overrides_runpath=yes
-  hardcode_into_libs=yes
-  # ldd complains unless libraries are executable
-  postinstall_cmds='chmod +x $lib'
-  ;;
-
-sunos4*)
-  version_type=sunos
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
-  finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir'
-  shlibpath_var=LD_LIBRARY_PATH
-  shlibpath_overrides_runpath=yes
-  if test "$with_gnu_ld" = yes; then
-    need_lib_prefix=no
-  fi
-  need_version=yes
-  ;;
-
-sysv4 | sysv4.3*)
-  version_type=linux # correct to gnu/linux during the next big refactor
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-  soname_spec='${libname}${release}${shared_ext}$major'
-  shlibpath_var=LD_LIBRARY_PATH
-  case $host_vendor in
-    sni)
-      shlibpath_overrides_runpath=no
-      need_lib_prefix=no
-      runpath_var=LD_RUN_PATH
-      ;;
-    siemens)
-      need_lib_prefix=no
-      ;;
-    motorola)
-      need_lib_prefix=no
-      need_version=no
-      shlibpath_overrides_runpath=no
-      sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'
-      ;;
-  esac
-  ;;
-
-sysv4*MP*)
-  if test -d /usr/nec ;then
-    version_type=linux # correct to gnu/linux during the next big refactor
-    library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}'
-    soname_spec='$libname${shared_ext}.$major'
-    shlibpath_var=LD_LIBRARY_PATH
-  fi
-  ;;
-
-sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
-  version_type=freebsd-elf
-  need_lib_prefix=no
-  need_version=no
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
-  soname_spec='${libname}${release}${shared_ext}$major'
-  shlibpath_var=LD_LIBRARY_PATH
-  shlibpath_overrides_runpath=yes
-  hardcode_into_libs=yes
-  if test "$with_gnu_ld" = yes; then
-    sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'
-  else
-    sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'
-    case $host_os in
-      sco3.2v5*)
-        sys_lib_search_path_spec="$sys_lib_search_path_spec /lib"
-       ;;
-    esac
-  fi
-  sys_lib_dlsearch_path_spec='/usr/lib'
-  ;;
-
-tpf*)
-  # TPF is a cross-target only.  Preferred cross-host = GNU/Linux.
-  version_type=linux # correct to gnu/linux during the next big refactor
-  need_lib_prefix=no
-  need_version=no
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-  shlibpath_var=LD_LIBRARY_PATH
-  shlibpath_overrides_runpath=no
-  hardcode_into_libs=yes
-  ;;
-
-uts4*)
-  version_type=linux # correct to gnu/linux during the next big refactor
-  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-  soname_spec='${libname}${release}${shared_ext}$major'
-  shlibpath_var=LD_LIBRARY_PATH
-  ;;
-
-*)
-  dynamic_linker=no
-  ;;
-esac
-AC_MSG_RESULT([$dynamic_linker])
-test "$dynamic_linker" = no && can_build_shared=no
-
-variables_saved_for_relink="PATH $shlibpath_var $runpath_var"
-if test "$GCC" = yes; then
-  variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
-fi
-
-if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then
-  sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec"
-fi
-if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then
-  sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec"
-fi
-
-_LT_DECL([], [variables_saved_for_relink], [1],
-    [Variables whose values should be saved in libtool wrapper scripts and
-    restored at link time])
-_LT_DECL([], [need_lib_prefix], [0],
-    [Do we need the "lib" prefix for modules?])
-_LT_DECL([], [need_version], [0], [Do we need a version for libraries?])
-_LT_DECL([], [version_type], [0], [Library versioning type])
-_LT_DECL([], [runpath_var], [0],  [Shared library runtime path variable])
-_LT_DECL([], [shlibpath_var], [0],[Shared library path variable])
-_LT_DECL([], [shlibpath_overrides_runpath], [0],
-    [Is shlibpath searched before the hard-coded library search path?])
-_LT_DECL([], [libname_spec], [1], [Format of library name prefix])
-_LT_DECL([], [library_names_spec], [1],
-    [[List of archive names.  First name is the real one, the rest are links.
-    The last name is the one that the linker finds with -lNAME]])
-_LT_DECL([], [soname_spec], [1],
-    [[The coded name of the library, if different from the real name]])
-_LT_DECL([], [install_override_mode], [1],
-    [Permission mode override for installation of shared libraries])
-_LT_DECL([], [postinstall_cmds], [2],
-    [Command to use after installation of a shared archive])
-_LT_DECL([], [postuninstall_cmds], [2],
-    [Command to use after uninstallation of a shared archive])
-_LT_DECL([], [finish_cmds], [2],
-    [Commands used to finish a libtool library installation in a directory])
-_LT_DECL([], [finish_eval], [1],
-    [[As "finish_cmds", except a single script fragment to be evaled but
-    not shown]])
-_LT_DECL([], [hardcode_into_libs], [0],
-    [Whether we should hardcode library paths into libraries])
-_LT_DECL([], [sys_lib_search_path_spec], [2],
-    [Compile-time system search path for libraries])
-_LT_DECL([], [sys_lib_dlsearch_path_spec], [2],
-    [Run-time system search path for libraries])
-])# _LT_SYS_DYNAMIC_LINKER
-
-
-# _LT_PATH_TOOL_PREFIX(TOOL)
-# --------------------------
-# find a file program which can recognize shared library
-AC_DEFUN([_LT_PATH_TOOL_PREFIX],
-[m4_require([_LT_DECL_EGREP])dnl
-AC_MSG_CHECKING([for $1])
-AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
-[case $MAGIC_CMD in
-[[\\/*] |  ?:[\\/]*])
-  lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
-  ;;
-*)
-  lt_save_MAGIC_CMD="$MAGIC_CMD"
-  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
-dnl $ac_dummy forces splitting on constant user-supplied paths.
-dnl POSIX.2 word splitting is done only on the output of word expansions,
-dnl not every word.  This closes a longstanding sh security hole.
-  ac_dummy="m4_if([$2], , $PATH, [$2])"
-  for ac_dir in $ac_dummy; do
-    IFS="$lt_save_ifs"
-    test -z "$ac_dir" && ac_dir=.
-    if test -f $ac_dir/$1; then
-      lt_cv_path_MAGIC_CMD="$ac_dir/$1"
-      if test -n "$file_magic_test_file"; then
-       case $deplibs_check_method in
-       "file_magic "*)
-         file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
-         MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
-         if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
-           $EGREP "$file_magic_regex" > /dev/null; then
-           :
-         else
-           cat <<_LT_EOF 1>&2
-
-*** Warning: the command libtool uses to detect shared libraries,
-*** $file_magic_cmd, produces output that libtool cannot recognize.
-*** The result is that libtool may fail to recognize shared libraries
-*** as such.  This will affect the creation of libtool libraries that
-*** depend on shared libraries, but programs linked with such libtool
-*** libraries will work regardless of this problem.  Nevertheless, you
-*** may want to report the problem to your system manager and/or to
-*** bug-libtool@gnu.org
-
-_LT_EOF
-         fi ;;
-       esac
-      fi
-      break
-    fi
-  done
-  IFS="$lt_save_ifs"
-  MAGIC_CMD="$lt_save_MAGIC_CMD"
-  ;;
-esac])
-MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
-if test -n "$MAGIC_CMD"; then
-  AC_MSG_RESULT($MAGIC_CMD)
-else
-  AC_MSG_RESULT(no)
-fi
-_LT_DECL([], [MAGIC_CMD], [0],
-        [Used to examine libraries when file_magic_cmd begins with "file"])dnl
-])# _LT_PATH_TOOL_PREFIX
-
-# Old name:
-AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX])
-dnl aclocal-1.4 backwards compatibility:
-dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], [])
-
-
-# _LT_PATH_MAGIC
-# --------------
-# find a file program which can recognize a shared library
-m4_defun([_LT_PATH_MAGIC],
-[_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH)
-if test -z "$lt_cv_path_MAGIC_CMD"; then
-  if test -n "$ac_tool_prefix"; then
-    _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH)
-  else
-    MAGIC_CMD=:
-  fi
-fi
-])# _LT_PATH_MAGIC
-
-
-# LT_PATH_LD
-# ----------
-# find the pathname to the GNU or non-GNU linker
-AC_DEFUN([LT_PATH_LD],
-[AC_REQUIRE([AC_PROG_CC])dnl
-AC_REQUIRE([AC_CANONICAL_HOST])dnl
-AC_REQUIRE([AC_CANONICAL_BUILD])dnl
-m4_require([_LT_DECL_SED])dnl
-m4_require([_LT_DECL_EGREP])dnl
-m4_require([_LT_PROG_ECHO_BACKSLASH])dnl
-
-AC_ARG_WITH([gnu-ld],
-    [AS_HELP_STRING([--with-gnu-ld],
-       [assume the C compiler uses GNU ld @<:@default=no@:>@])],
-    [test "$withval" = no || with_gnu_ld=yes],
-    [with_gnu_ld=no])dnl
-
-ac_prog=ld
-if test "$GCC" = yes; then
-  # Check if gcc -print-prog-name=ld gives a path.
-  AC_MSG_CHECKING([for ld used by $CC])
-  case $host in
-  *-*-mingw*)
-    # gcc leaves a trailing carriage return which upsets mingw
-    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
-  *)
-    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
-  esac
-  case $ac_prog in
-    # Accept absolute paths.
-    [[\\/]]* | ?:[[\\/]]*)
-      re_direlt='/[[^/]][[^/]]*/\.\./'
-      # Canonicalize the pathname of ld
-      ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'`
-      while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do
-       ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"`
-      done
-      test -z "$LD" && LD="$ac_prog"
-      ;;
-  "")
-    # If it fails, then pretend we aren't using GCC.
-    ac_prog=ld
-    ;;
-  *)
-    # If it is relative, then search for the first ld in PATH.
-    with_gnu_ld=unknown
-    ;;
-  esac
-elif test "$with_gnu_ld" = yes; then
-  AC_MSG_CHECKING([for GNU ld])
-else
-  AC_MSG_CHECKING([for non-GNU ld])
-fi
-AC_CACHE_VAL(lt_cv_path_LD,
-[if test -z "$LD"; then
-  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
-  for ac_dir in $PATH; do
-    IFS="$lt_save_ifs"
-    test -z "$ac_dir" && ac_dir=.
-    if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
-      lt_cv_path_LD="$ac_dir/$ac_prog"
-      # Check to see if the program is GNU ld.  I'd rather use --version,
-      # but apparently some variants of GNU ld only accept -v.
-      # Break only if it was the GNU/non-GNU ld that we prefer.
-      case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
-      *GNU* | *'with BFD'*)
-       test "$with_gnu_ld" != no && break
-       ;;
-      *)
-       test "$with_gnu_ld" != yes && break
-       ;;
-      esac
-    fi
-  done
-  IFS="$lt_save_ifs"
-else
-  lt_cv_path_LD="$LD" # Let the user override the test with a path.
-fi])
-LD="$lt_cv_path_LD"
-if test -n "$LD"; then
-  AC_MSG_RESULT($LD)
-else
-  AC_MSG_RESULT(no)
-fi
-test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
-_LT_PATH_LD_GNU
-AC_SUBST([LD])
-
-_LT_TAGDECL([], [LD], [1], [The linker used to build libraries])
-])# LT_PATH_LD
-
-# Old names:
-AU_ALIAS([AM_PROG_LD], [LT_PATH_LD])
-AU_ALIAS([AC_PROG_LD], [LT_PATH_LD])
-dnl aclocal-1.4 backwards compatibility:
-dnl AC_DEFUN([AM_PROG_LD], [])
-dnl AC_DEFUN([AC_PROG_LD], [])
-
-
-# _LT_PATH_LD_GNU
-#- --------------
-m4_defun([_LT_PATH_LD_GNU],
-[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], lt_cv_prog_gnu_ld,
-[# I'd rather use --version here, but apparently some GNU lds only accept -v.
-case `$LD -v 2>&1 </dev/null` in
-*GNU* | *'with BFD'*)
-  lt_cv_prog_gnu_ld=yes
-  ;;
-*)
-  lt_cv_prog_gnu_ld=no
-  ;;
-esac])
-with_gnu_ld=$lt_cv_prog_gnu_ld
-])# _LT_PATH_LD_GNU
-
-
-# _LT_CMD_RELOAD
-# --------------
-# find reload flag for linker
-#   -- PORTME Some linkers may need a different reload flag.
-m4_defun([_LT_CMD_RELOAD],
-[AC_CACHE_CHECK([for $LD option to reload object files],
-  lt_cv_ld_reload_flag,
-  [lt_cv_ld_reload_flag='-r'])
-reload_flag=$lt_cv_ld_reload_flag
-case $reload_flag in
-"" | " "*) ;;
-*) reload_flag=" $reload_flag" ;;
-esac
-reload_cmds='$LD$reload_flag -o $output$reload_objs'
-case $host_os in
-  cygwin* | mingw* | pw32* | cegcc*)
-    if test "$GCC" != yes; then
-      reload_cmds=false
-    fi
-    ;;
-  darwin*)
-    if test "$GCC" = yes; then
-      reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs'
-    else
-      reload_cmds='$LD$reload_flag -o $output$reload_objs'
-    fi
-    ;;
-esac
-_LT_TAGDECL([], [reload_flag], [1], [How to create reloadable object files])dnl
-_LT_TAGDECL([], [reload_cmds], [2])dnl
-])# _LT_CMD_RELOAD
-
-
-# _LT_CHECK_MAGIC_METHOD
-# ----------------------
-# how to check for library dependencies
-#  -- PORTME fill in with the dynamic library characteristics
-m4_defun([_LT_CHECK_MAGIC_METHOD],
-[m4_require([_LT_DECL_EGREP])
-m4_require([_LT_DECL_OBJDUMP])
-AC_CACHE_CHECK([how to recognize dependent libraries],
-lt_cv_deplibs_check_method,
-[lt_cv_file_magic_cmd='$MAGIC_CMD'
-lt_cv_file_magic_test_file=
-lt_cv_deplibs_check_method='unknown'
-# Need to set the preceding variable on all platforms that support
-# interlibrary dependencies.
-# 'none' -- dependencies not supported.
-# `unknown' -- same as none, but documents that we really don't know.
-# 'pass_all' -- all dependencies passed with no checks.
-# 'test_compile' -- check by making test program.
-# 'file_magic [[regex]]' -- check by looking for files in library path
-# which responds to the $file_magic_cmd with a given extended regex.
-# If you have `file' or equivalent on your system and you're not sure
-# whether `pass_all' will *always* work, you probably want this one.
-
-case $host_os in
-aix[[4-9]]*)
-  lt_cv_deplibs_check_method=pass_all
-  ;;
-
-beos*)
-  lt_cv_deplibs_check_method=pass_all
-  ;;
-
-bsdi[[45]]*)
-  lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)'
-  lt_cv_file_magic_cmd='/usr/bin/file -L'
-  lt_cv_file_magic_test_file=/shlib/libc.so
-  ;;
-
-cygwin*)
-  # func_win32_libid is a shell function defined in ltmain.sh
-  lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
-  lt_cv_file_magic_cmd='func_win32_libid'
-  ;;
-
-mingw* | pw32*)
-  # Base MSYS/MinGW do not provide the 'file' command needed by
-  # func_win32_libid shell function, so use a weaker test based on 'objdump',
-  # unless we find 'file', for example because we are cross-compiling.
-  # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin.
-  if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then
-    lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
-    lt_cv_file_magic_cmd='func_win32_libid'
-  else
-    # Keep this pattern in sync with the one in func_win32_libid.
-    lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)'
-    lt_cv_file_magic_cmd='$OBJDUMP -f'
-  fi
-  ;;
-
-cegcc*)
-  # use the weaker test based on 'objdump'. See mingw*.
-  lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?'
-  lt_cv_file_magic_cmd='$OBJDUMP -f'
-  ;;
-
-darwin* | rhapsody*)
-  lt_cv_deplibs_check_method=pass_all
-  ;;
-
-freebsd* | dragonfly*)
-  if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
-    case $host_cpu in
-    i*86 )
-      # Not sure whether the presence of OpenBSD here was a mistake.
-      # Let's accept both of them until this is cleared up.
-      lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library'
-      lt_cv_file_magic_cmd=/usr/bin/file
-      lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
-      ;;
-    esac
-  else
-    lt_cv_deplibs_check_method=pass_all
-  fi
-  ;;
-
-haiku*)
-  lt_cv_deplibs_check_method=pass_all
-  ;;
-
-hpux10.20* | hpux11*)
-  lt_cv_file_magic_cmd=/usr/bin/file
-  case $host_cpu in
-  ia64*)
-    lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64'
-    lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so
-    ;;
-  hppa*64*)
-    [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]']
-    lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl
-    ;;
-  *)
-    lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\.[[0-9]]) shared library'
-    lt_cv_file_magic_test_file=/usr/lib/libc.sl
-    ;;
-  esac
-  ;;
-
-interix[[3-9]]*)
-  # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here
-  lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$'
-  ;;
-
-irix5* | irix6* | nonstopux*)
-  case $LD in
-  *-32|*"-32 ") libmagic=32-bit;;
-  *-n32|*"-n32 ") libmagic=N32;;
-  *-64|*"-64 ") libmagic=64-bit;;
-  *) libmagic=never-match;;
-  esac
-  lt_cv_deplibs_check_method=pass_all
-  ;;
-
-# This must be glibc/ELF.
-linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
-  lt_cv_deplibs_check_method=pass_all
-  ;;
-
-netbsd* | netbsdelf*-gnu)
-  if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
-    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
-  else
-    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$'
-  fi
-  ;;
-
-newos6*)
-  lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)'
-  lt_cv_file_magic_cmd=/usr/bin/file
-  lt_cv_file_magic_test_file=/usr/lib/libnls.so
-  ;;
-
-*nto* | *qnx*)
-  lt_cv_deplibs_check_method=pass_all
-  ;;
-
-openbsd*)
-  if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
-    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$'
-  else
-    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
-  fi
-  ;;
-
-osf3* | osf4* | osf5*)
-  lt_cv_deplibs_check_method=pass_all
-  ;;
-
-rdos*)
-  lt_cv_deplibs_check_method=pass_all
-  ;;
-
-solaris*)
-  lt_cv_deplibs_check_method=pass_all
-  ;;
-
-sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
-  lt_cv_deplibs_check_method=pass_all
-  ;;
-
-sysv4 | sysv4.3*)
-  case $host_vendor in
-  motorola)
-    lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]'
-    lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`
-    ;;
-  ncr)
-    lt_cv_deplibs_check_method=pass_all
-    ;;
-  sequent)
-    lt_cv_file_magic_cmd='/bin/file'
-    lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )'
-    ;;
-  sni)
-    lt_cv_file_magic_cmd='/bin/file'
-    lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib"
-    lt_cv_file_magic_test_file=/lib/libc.so
-    ;;
-  siemens)
-    lt_cv_deplibs_check_method=pass_all
-    ;;
-  pc)
-    lt_cv_deplibs_check_method=pass_all
-    ;;
-  esac
-  ;;
-
-tpf*)
-  lt_cv_deplibs_check_method=pass_all
-  ;;
-esac
-])
-
-file_magic_glob=
-want_nocaseglob=no
-if test "$build" = "$host"; then
-  case $host_os in
-  mingw* | pw32*)
-    if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then
-      want_nocaseglob=yes
-    else
-      file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"`
-    fi
-    ;;
-  esac
-fi
-
-file_magic_cmd=$lt_cv_file_magic_cmd
-deplibs_check_method=$lt_cv_deplibs_check_method
-test -z "$deplibs_check_method" && deplibs_check_method=unknown
-
-_LT_DECL([], [deplibs_check_method], [1],
-    [Method to check whether dependent libraries are shared objects])
-_LT_DECL([], [file_magic_cmd], [1],
-    [Command to use when deplibs_check_method = "file_magic"])
-_LT_DECL([], [file_magic_glob], [1],
-    [How to find potential files when deplibs_check_method = "file_magic"])
-_LT_DECL([], [want_nocaseglob], [1],
-    [Find potential files using nocaseglob when deplibs_check_method = "file_magic"])
-])# _LT_CHECK_MAGIC_METHOD
-
-
-# LT_PATH_NM
-# ----------
-# find the pathname to a BSD- or MS-compatible name lister
-AC_DEFUN([LT_PATH_NM],
-[AC_REQUIRE([AC_PROG_CC])dnl
-AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM,
-[if test -n "$NM"; then
-  # Let the user override the test.
-  lt_cv_path_NM="$NM"
-else
-  lt_nm_to_check="${ac_tool_prefix}nm"
-  if test -n "$ac_tool_prefix" && test "$build" = "$host"; then
-    lt_nm_to_check="$lt_nm_to_check nm"
-  fi
-  for lt_tmp_nm in $lt_nm_to_check; do
-    lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
-    for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do
-      IFS="$lt_save_ifs"
-      test -z "$ac_dir" && ac_dir=.
-      tmp_nm="$ac_dir/$lt_tmp_nm"
-      if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then
-       # Check to see if the nm accepts a BSD-compat flag.
-       # Adding the `sed 1q' prevents false positives on HP-UX, which says:
-       #   nm: unknown option "B" ignored
-       # Tru64's nm complains that /dev/null is an invalid object file
-       case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in
-       */dev/null* | *'Invalid file or object type'*)
-         lt_cv_path_NM="$tmp_nm -B"
-         break
-         ;;
-       *)
-         case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
-         */dev/null*)
-           lt_cv_path_NM="$tmp_nm -p"
-           break
-           ;;
-         *)
-           lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
-           continue # so that we can try to find one that supports BSD flags
-           ;;
-         esac
-         ;;
-       esac
-      fi
-    done
-    IFS="$lt_save_ifs"
-  done
-  : ${lt_cv_path_NM=no}
-fi])
-if test "$lt_cv_path_NM" != "no"; then
-  NM="$lt_cv_path_NM"
-else
-  # Didn't find any BSD compatible name lister, look for dumpbin.
-  if test -n "$DUMPBIN"; then :
-    # Let the user override the test.
-  else
-    AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :)
-    case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in
-    *COFF*)
-      DUMPBIN="$DUMPBIN -symbols"
-      ;;
-    *)
-      DUMPBIN=:
-      ;;
-    esac
-  fi
-  AC_SUBST([DUMPBIN])
-  if test "$DUMPBIN" != ":"; then
-    NM="$DUMPBIN"
-  fi
-fi
-test -z "$NM" && NM=nm
-AC_SUBST([NM])
-_LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl
-
-AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface],
-  [lt_cv_nm_interface="BSD nm"
-  echo "int some_variable = 0;" > conftest.$ac_ext
-  (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD)
-  (eval "$ac_compile" 2>conftest.err)
-  cat conftest.err >&AS_MESSAGE_LOG_FD
-  (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD)
-  (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
-  cat conftest.err >&AS_MESSAGE_LOG_FD
-  (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD)
-  cat conftest.out >&AS_MESSAGE_LOG_FD
-  if $GREP 'External.*some_variable' conftest.out > /dev/null; then
-    lt_cv_nm_interface="MS dumpbin"
-  fi
-  rm -f conftest*])
-])# LT_PATH_NM
-
-# Old names:
-AU_ALIAS([AM_PROG_NM], [LT_PATH_NM])
-AU_ALIAS([AC_PROG_NM], [LT_PATH_NM])
-dnl aclocal-1.4 backwards compatibility:
-dnl AC_DEFUN([AM_PROG_NM], [])
-dnl AC_DEFUN([AC_PROG_NM], [])
-
-# _LT_CHECK_SHAREDLIB_FROM_LINKLIB
-# --------------------------------
-# how to determine the name of the shared library
-# associated with a specific link library.
-#  -- PORTME fill in with the dynamic library characteristics
-m4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB],
-[m4_require([_LT_DECL_EGREP])
-m4_require([_LT_DECL_OBJDUMP])
-m4_require([_LT_DECL_DLLTOOL])
-AC_CACHE_CHECK([how to associate runtime and link libraries],
-lt_cv_sharedlib_from_linklib_cmd,
-[lt_cv_sharedlib_from_linklib_cmd='unknown'
-
-case $host_os in
-cygwin* | mingw* | pw32* | cegcc*)
-  # two different shell functions defined in ltmain.sh
-  # decide which to use based on capabilities of $DLLTOOL
-  case `$DLLTOOL --help 2>&1` in
-  *--identify-strict*)
-    lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib
-    ;;
-  *)
-    lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback
-    ;;
-  esac
-  ;;
-*)
-  # fallback: assume linklib IS sharedlib
-  lt_cv_sharedlib_from_linklib_cmd="$ECHO"
-  ;;
-esac
-])
-sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd
-test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO
-
-_LT_DECL([], [sharedlib_from_linklib_cmd], [1],
-    [Command to associate shared and link libraries])
-])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB
-
-
-# _LT_PATH_MANIFEST_TOOL
-# ----------------------
-# locate the manifest tool
-m4_defun([_LT_PATH_MANIFEST_TOOL],
-[AC_CHECK_TOOL(MANIFEST_TOOL, mt, :)
-test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt
-AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool],
-  [lt_cv_path_mainfest_tool=no
-  echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&AS_MESSAGE_LOG_FD
-  $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out
-  cat conftest.err >&AS_MESSAGE_LOG_FD
-  if $GREP 'Manifest Tool' conftest.out > /dev/null; then
-    lt_cv_path_mainfest_tool=yes
-  fi
-  rm -f conftest*])
-if test "x$lt_cv_path_mainfest_tool" != xyes; then
-  MANIFEST_TOOL=:
-fi
-_LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl
-])# _LT_PATH_MANIFEST_TOOL
-
-
-# LT_LIB_M
-# --------
-# check for math library
-AC_DEFUN([LT_LIB_M],
-[AC_REQUIRE([AC_CANONICAL_HOST])dnl
-LIBM=
-case $host in
-*-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*)
-  # These system don't have libm, or don't need it
-  ;;
-*-ncr-sysv4.3*)
-  AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw")
-  AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm")
-  ;;
-*)
-  AC_CHECK_LIB(m, cos, LIBM="-lm")
-  ;;
-esac
-AC_SUBST([LIBM])
-])# LT_LIB_M
-
-# Old name:
-AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M])
-dnl aclocal-1.4 backwards compatibility:
-dnl AC_DEFUN([AC_CHECK_LIBM], [])
-
-
-# _LT_COMPILER_NO_RTTI([TAGNAME])
-# -------------------------------
-m4_defun([_LT_COMPILER_NO_RTTI],
-[m4_require([_LT_TAG_COMPILER])dnl
-
-_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
-
-if test "$GCC" = yes; then
-  case $cc_basename in
-  nvcc*)
-    _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;;
-  *)
-    _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;;
-  esac
-
-  _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions],
-    lt_cv_prog_compiler_rtti_exceptions,
-    [-fno-rtti -fno-exceptions], [],
-    [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"])
-fi
-_LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1],
-       [Compiler flag to turn off builtin functions])
-])# _LT_COMPILER_NO_RTTI
-
-
-# _LT_CMD_GLOBAL_SYMBOLS
-# ----------------------
-m4_defun([_LT_CMD_GLOBAL_SYMBOLS],
-[AC_REQUIRE([AC_CANONICAL_HOST])dnl
-AC_REQUIRE([AC_PROG_CC])dnl
-AC_REQUIRE([AC_PROG_AWK])dnl
-AC_REQUIRE([LT_PATH_NM])dnl
-AC_REQUIRE([LT_PATH_LD])dnl
-m4_require([_LT_DECL_SED])dnl
-m4_require([_LT_DECL_EGREP])dnl
-m4_require([_LT_TAG_COMPILER])dnl
-
-# Check for command to grab the raw symbol name followed by C symbol from nm.
-AC_MSG_CHECKING([command to parse $NM output from $compiler object])
-AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe],
-[
-# These are sane defaults that work on at least a few old systems.
-# [They come from Ultrix.  What could be older than Ultrix?!! ;)]
-
-# Character class describing NM global symbol codes.
-symcode='[[BCDEGRST]]'
-
-# Regexp to match symbols that can be accessed directly from C.
-sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)'
-
-# Define system-specific variables.
-case $host_os in
-aix*)
-  symcode='[[BCDT]]'
-  ;;
-cygwin* | mingw* | pw32* | cegcc*)
-  symcode='[[ABCDGISTW]]'
-  ;;
-hpux*)
-  if test "$host_cpu" = ia64; then
-    symcode='[[ABCDEGRST]]'
-  fi
-  ;;
-irix* | nonstopux*)
-  symcode='[[BCDEGRST]]'
-  ;;
-osf*)
-  symcode='[[BCDEGQRST]]'
-  ;;
-solaris*)
-  symcode='[[BDRT]]'
-  ;;
-sco3.2v5*)
-  symcode='[[DT]]'
-  ;;
-sysv4.2uw2*)
-  symcode='[[DT]]'
-  ;;
-sysv5* | sco5v6* | unixware* | OpenUNIX*)
-  symcode='[[ABDT]]'
-  ;;
-sysv4)
-  symcode='[[DFNSTU]]'
-  ;;
-esac
-
-# If we're using GNU nm, then use its standard symbol codes.
-case `$NM -V 2>&1` in
-*GNU* | *'with BFD'*)
-  symcode='[[ABCDGIRSTW]]' ;;
-esac
-
-# Transform an extracted symbol line into a proper C declaration.
-# Some systems (esp. on ia64) link data and code symbols differently,
-# so use this general approach.
-lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
-
-# Transform an extracted symbol line into symbol name and symbol address
-lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/  {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/  {\"\2\", (void *) \&\2},/p'"
-lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/  {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \(lib[[^ ]]*\)$/  {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/  {\"lib\2\", (void *) \&\2},/p'"
-
-# Handle CRLF in mingw tool chain
-opt_cr=
-case $build_os in
-mingw*)
-  opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp
-  ;;
-esac
-
-# Try without a prefix underscore, then with it.
-for ac_symprfx in "" "_"; do
-
-  # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol.
-  symxfrm="\\1 $ac_symprfx\\2 \\2"
-
-  # Write the raw and C identifiers.
-  if test "$lt_cv_nm_interface" = "MS dumpbin"; then
-    # Fake it for dumpbin and say T for any non-static function
-    # and D for any global variable.
-    # Also find C++ and __fastcall symbols from MSVC++,
-    # which start with @ or ?.
-    lt_cv_sys_global_symbol_pipe="$AWK ['"\
-"     {last_section=section; section=\$ 3};"\
-"     /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\
-"     /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\
-"     \$ 0!~/External *\|/{next};"\
-"     / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\
-"     {if(hide[section]) next};"\
-"     {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\
-"     {split(\$ 0, a, /\||\r/); split(a[2], s)};"\
-"     s[1]~/^[@?]/{print s[1], s[1]; next};"\
-"     s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\
-"     ' prfx=^$ac_symprfx]"
-  else
-    lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[    ]]\($symcode$symcode*\)[[       ]][[    ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'"
-  fi
-  lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'"
-
-  # Check to see that the pipe works correctly.
-  pipe_works=no
-
-  rm -f conftest*
-  cat > conftest.$ac_ext <<_LT_EOF
-#ifdef __cplusplus
-extern "C" {
-#endif
-char nm_test_var;
-void nm_test_func(void);
-void nm_test_func(void){}
-#ifdef __cplusplus
-}
-#endif
-int main(){nm_test_var='a';nm_test_func();return(0);}
-_LT_EOF
-
-  if AC_TRY_EVAL(ac_compile); then
-    # Now try to grab the symbols.
-    nlist=conftest.nm
-    if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then
-      # Try sorting and uniquifying the output.
-      if sort "$nlist" | uniq > "$nlist"T; then
-       mv -f "$nlist"T "$nlist"
-      else
-       rm -f "$nlist"T
-      fi
-
-      # Make sure that we snagged all the symbols we need.
-      if $GREP ' nm_test_var$' "$nlist" >/dev/null; then
-       if $GREP ' nm_test_func$' "$nlist" >/dev/null; then
-         cat <<_LT_EOF > conftest.$ac_ext
-/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests.  */
-#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE)
-/* DATA imports from DLLs on WIN32 con't be const, because runtime
-   relocations are performed -- see ld's documentation on pseudo-relocs.  */
-# define LT@&t@_DLSYM_CONST
-#elif defined(__osf__)
-/* This system does not cope well with relocations in const data.  */
-# define LT@&t@_DLSYM_CONST
-#else
-# define LT@&t@_DLSYM_CONST const
-#endif
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-_LT_EOF
-         # Now generate the symbol file.
-         eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext'
-
-         cat <<_LT_EOF >> conftest.$ac_ext
-
-/* The mapping between symbol names and symbols.  */
-LT@&t@_DLSYM_CONST struct {
-  const char *name;
-  void       *address;
-}
-lt__PROGRAM__LTX_preloaded_symbols[[]] =
-{
-  { "@PROGRAM@", (void *) 0 },
-_LT_EOF
-         $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/  {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext
-         cat <<\_LT_EOF >> conftest.$ac_ext
-  {0, (void *) 0}
-};
-
-/* This works around a problem in FreeBSD linker */
-#ifdef FREEBSD_WORKAROUND
-static const void *lt_preloaded_setup() {
-  return lt__PROGRAM__LTX_preloaded_symbols;
-}
-#endif
-
-#ifdef __cplusplus
-}
-#endif
-_LT_EOF
-         # Now try linking the two files.
-         mv conftest.$ac_objext conftstm.$ac_objext
-         lt_globsym_save_LIBS=$LIBS
-         lt_globsym_save_CFLAGS=$CFLAGS
-         LIBS="conftstm.$ac_objext"
-         CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)"
-         if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then
-           pipe_works=yes
-         fi
-         LIBS=$lt_globsym_save_LIBS
-         CFLAGS=$lt_globsym_save_CFLAGS
-       else
-         echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD
-       fi
-      else
-       echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD
-      fi
-    else
-      echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD
-    fi
-  else
-    echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD
-    cat conftest.$ac_ext >&5
-  fi
-  rm -rf conftest* conftst*
-
-  # Do not use the global_symbol_pipe unless it works.
-  if test "$pipe_works" = yes; then
-    break
-  else
-    lt_cv_sys_global_symbol_pipe=
-  fi
-done
-])
-if test -z "$lt_cv_sys_global_symbol_pipe"; then
-  lt_cv_sys_global_symbol_to_cdecl=
-fi
-if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then
-  AC_MSG_RESULT(failed)
-else
-  AC_MSG_RESULT(ok)
-fi
-
-# Response file support.
-if test "$lt_cv_nm_interface" = "MS dumpbin"; then
-  nm_file_list_spec='@'
-elif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then
-  nm_file_list_spec='@'
-fi
-
-_LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1],
-    [Take the output of nm and produce a listing of raw symbols and C names])
-_LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1],
-    [Transform the output of nm in a proper C declaration])
-_LT_DECL([global_symbol_to_c_name_address],
-    [lt_cv_sys_global_symbol_to_c_name_address], [1],
-    [Transform the output of nm in a C name address pair])
-_LT_DECL([global_symbol_to_c_name_address_lib_prefix],
-    [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1],
-    [Transform the output of nm in a C name address pair when lib prefix is needed])
-_LT_DECL([], [nm_file_list_spec], [1],
-    [Specify filename containing input files for $NM])
-]) # _LT_CMD_GLOBAL_SYMBOLS
-
-
-# _LT_COMPILER_PIC([TAGNAME])
-# ---------------------------
-m4_defun([_LT_COMPILER_PIC],
-[m4_require([_LT_TAG_COMPILER])dnl
-_LT_TAGVAR(lt_prog_compiler_wl, $1)=
-_LT_TAGVAR(lt_prog_compiler_pic, $1)=
-_LT_TAGVAR(lt_prog_compiler_static, $1)=
-
-m4_if([$1], [CXX], [
-  # C++ specific cases for pic, static, wl, etc.
-  if test "$GXX" = yes; then
-    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
-    _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
-
-    case $host_os in
-    aix*)
-      # All AIX code is PIC.
-      if test "$host_cpu" = ia64; then
-       # AIX 5 now supports IA64 processor
-       _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
-      fi
-      ;;
-
-    amigaos*)
-      case $host_cpu in
-      powerpc)
-            # see comment about AmigaOS4 .so support
-            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
-        ;;
-      m68k)
-            # FIXME: we need at least 68020 code to build shared libraries, but
-            # adding the `-m68020' flag to GCC prevents building anything better,
-            # like `-m68040'.
-            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
-        ;;
-      esac
-      ;;
-
-    beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
-      # PIC is the default for these OSes.
-      ;;
-    mingw* | cygwin* | os2* | pw32* | cegcc*)
-      # This hack is so that the source file can tell whether it is being
-      # built for inclusion in a dll (and should export symbols for example).
-      # Although the cygwin gcc ignores -fPIC, still need this for old-style
-      # (--disable-auto-import) libraries
-      m4_if([$1], [GCJ], [],
-       [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
-      ;;
-    darwin* | rhapsody*)
-      # PIC is the default on this platform
-      # Common symbols not allowed in MH_DYLIB files
-      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
-      ;;
-    *djgpp*)
-      # DJGPP does not support shared libraries at all
-      _LT_TAGVAR(lt_prog_compiler_pic, $1)=
-      ;;
-    haiku*)
-      # PIC is the default for Haiku.
-      # The "-static" flag exists, but is broken.
-      _LT_TAGVAR(lt_prog_compiler_static, $1)=
-      ;;
-    interix[[3-9]]*)
-      # Interix 3.x gcc -fpic/-fPIC options generate broken code.
-      # Instead, we relocate shared libraries at runtime.
-      ;;
-    sysv4*MP*)
-      if test -d /usr/nec; then
-       _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
-      fi
-      ;;
-    hpux*)
-      # PIC is the default for 64-bit PA HP-UX, but not for 32-bit
-      # PA HP-UX.  On IA64 HP-UX, PIC is the default but the pic flag
-      # sets the default TLS model and affects inlining.
-      case $host_cpu in
-      hppa*64*)
-       ;;
-      *)
-       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
-       ;;
-      esac
-      ;;
-    *qnx* | *nto*)
-      # QNX uses GNU C++, but need to define -shared option too, otherwise
-      # it will coredump.
-      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
-      ;;
-    *)
-      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
-      ;;
-    esac
-  else
-    case $host_os in
-      aix[[4-9]]*)
-       # All AIX code is PIC.
-       if test "$host_cpu" = ia64; then
-         # AIX 5 now supports IA64 processor
-         _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
-       else
-         _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
-       fi
-       ;;
-      chorus*)
-       case $cc_basename in
-       cxch68*)
-         # Green Hills C++ Compiler
-         # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a"
-         ;;
-       esac
-       ;;
-      mingw* | cygwin* | os2* | pw32* | cegcc*)
-       # This hack is so that the source file can tell whether it is being
-       # built for inclusion in a dll (and should export symbols for example).
-       m4_if([$1], [GCJ], [],
-         [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
-       ;;
-      dgux*)
-       case $cc_basename in
-         ec++*)
-           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
-           ;;
-         ghcx*)
-           # Green Hills C++ Compiler
-           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
-           ;;
-         *)
-           ;;
-       esac
-       ;;
-      freebsd* | dragonfly*)
-       # FreeBSD uses GNU C++
-       ;;
-      hpux9* | hpux10* | hpux11*)
-       case $cc_basename in
-         CC*)
-           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
-           _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
-           if test "$host_cpu" != ia64; then
-             _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
-           fi
-           ;;
-         aCC*)
-           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
-           _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
-           case $host_cpu in
-           hppa*64*|ia64*)
-             # +Z the default
-             ;;
-           *)
-             _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
-             ;;
-           esac
-           ;;
-         *)
-           ;;
-       esac
-       ;;
-      interix*)
-       # This is c89, which is MS Visual C++ (no shared libs)
-       # Anyone wants to do a port?
-       ;;
-      irix5* | irix6* | nonstopux*)
-       case $cc_basename in
-         CC*)
-           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
-           _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
-           # CC pic flag -KPIC is the default.
-           ;;
-         *)
-           ;;
-       esac
-       ;;
-      linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
-       case $cc_basename in
-         KCC*)
-           # KAI C++ Compiler
-           _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
-           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
-           ;;
-         ecpc* )
-           # old Intel C++ for x86_64 which still supported -KPIC.
-           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
-           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
-           _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
-           ;;
-         icpc* )
-           # Intel C++, used to be incompatible with GCC.
-           # ICC 10 doesn't accept -KPIC any more.
-           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
-           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
-           _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
-           ;;
-         pgCC* | pgcpp*)
-           # Portland Group C++ compiler
-           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
-           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
-           _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
-           ;;
-         cxx*)
-           # Compaq C++
-           # Make sure the PIC flag is empty.  It appears that all Alpha
-           # Linux and Compaq Tru64 Unix objects are PIC.
-           _LT_TAGVAR(lt_prog_compiler_pic, $1)=
-           _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
-           ;;
-         xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*)
-           # IBM XL 8.0, 9.0 on PPC and BlueGene
-           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
-           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic'
-           _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink'
-           ;;
-         *)
-           case `$CC -V 2>&1 | sed 5q` in
-           *Sun\ C*)
-             # Sun C++ 5.9
-             _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
-             _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
-             _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
-             ;;
-           esac
-           ;;
-       esac
-       ;;
-      lynxos*)
-       ;;
-      m88k*)
-       ;;
-      mvs*)
-       case $cc_basename in
-         cxx*)
-           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall'
-           ;;
-         *)
-           ;;
-       esac
-       ;;
-      netbsd* | netbsdelf*-gnu)
-       ;;
-      *qnx* | *nto*)
-        # QNX uses GNU C++, but need to define -shared option too, otherwise
-        # it will coredump.
-        _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
-        ;;
-      osf3* | osf4* | osf5*)
-       case $cc_basename in
-         KCC*)
-           _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
-           ;;
-         RCC*)
-           # Rational C++ 2.4.1
-           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
-           ;;
-         cxx*)
-           # Digital/Compaq C++
-           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
-           # Make sure the PIC flag is empty.  It appears that all Alpha
-           # Linux and Compaq Tru64 Unix objects are PIC.
-           _LT_TAGVAR(lt_prog_compiler_pic, $1)=
-           _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
-           ;;
-         *)
-           ;;
-       esac
-       ;;
-      psos*)
-       ;;
-      solaris*)
-       case $cc_basename in
-         CC* | sunCC*)
-           # Sun C++ 4.2, 5.x and Centerline C++
-           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
-           _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
-           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
-           ;;
-         gcx*)
-           # Green Hills C++ Compiler
-           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
-           ;;
-         *)
-           ;;
-       esac
-       ;;
-      sunos4*)
-       case $cc_basename in
-         CC*)
-           # Sun C++ 4.x
-           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
-           _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
-           ;;
-         lcc*)
-           # Lucid
-           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
-           ;;
-         *)
-           ;;
-       esac
-       ;;
-      sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
-       case $cc_basename in
-         CC*)
-           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
-           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
-           _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
-           ;;
-       esac
-       ;;
-      tandem*)
-       case $cc_basename in
-         NCC*)
-           # NonStop-UX NCC 3.20
-           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
-           ;;
-         *)
-           ;;
-       esac
-       ;;
-      vxworks*)
-       ;;
-      *)
-       _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
-       ;;
-    esac
-  fi
-],
-[
-  if test "$GCC" = yes; then
-    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
-    _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
-
-    case $host_os in
-      aix*)
-      # All AIX code is PIC.
-      if test "$host_cpu" = ia64; then
-       # AIX 5 now supports IA64 processor
-       _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
-      fi
-      ;;
-
-    amigaos*)
-      case $host_cpu in
-      powerpc)
-            # see comment about AmigaOS4 .so support
-            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
-        ;;
-      m68k)
-            # FIXME: we need at least 68020 code to build shared libraries, but
-            # adding the `-m68020' flag to GCC prevents building anything better,
-            # like `-m68040'.
-            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
-        ;;
-      esac
-      ;;
-
-    beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
-      # PIC is the default for these OSes.
-      ;;
-
-    mingw* | cygwin* | pw32* | os2* | cegcc*)
-      # This hack is so that the source file can tell whether it is being
-      # built for inclusion in a dll (and should export symbols for example).
-      # Although the cygwin gcc ignores -fPIC, still need this for old-style
-      # (--disable-auto-import) libraries
-      m4_if([$1], [GCJ], [],
-       [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
-      ;;
-
-    darwin* | rhapsody*)
-      # PIC is the default on this platform
-      # Common symbols not allowed in MH_DYLIB files
-      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
-      ;;
-
-    haiku*)
-      # PIC is the default for Haiku.
-      # The "-static" flag exists, but is broken.
-      _LT_TAGVAR(lt_prog_compiler_static, $1)=
-      ;;
-
-    hpux*)
-      # PIC is the default for 64-bit PA HP-UX, but not for 32-bit
-      # PA HP-UX.  On IA64 HP-UX, PIC is the default but the pic flag
-      # sets the default TLS model and affects inlining.
-      case $host_cpu in
-      hppa*64*)
-       # +Z the default
-       ;;
-      *)
-       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
-       ;;
-      esac
-      ;;
-
-    interix[[3-9]]*)
-      # Interix 3.x gcc -fpic/-fPIC options generate broken code.
-      # Instead, we relocate shared libraries at runtime.
-      ;;
-
-    msdosdjgpp*)
-      # Just because we use GCC doesn't mean we suddenly get shared libraries
-      # on systems that don't support them.
-      _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
-      enable_shared=no
-      ;;
-
-    *nto* | *qnx*)
-      # QNX uses GNU C++, but need to define -shared option too, otherwise
-      # it will coredump.
-      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
-      ;;
-
-    sysv4*MP*)
-      if test -d /usr/nec; then
-       _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
-      fi
-      ;;
-
-    *)
-      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
-      ;;
-    esac
-
-    case $cc_basename in
-    nvcc*) # Cuda Compiler Driver 2.2
-      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker '
-      if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then
-        _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)"
-      fi
-      ;;
-    esac
-  else
-    # PORTME Check for flag to pass linker flags through the system compiler.
-    case $host_os in
-    aix*)
-      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
-      if test "$host_cpu" = ia64; then
-       # AIX 5 now supports IA64 processor
-       _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
-      else
-       _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
-      fi
-      ;;
-
-    mingw* | cygwin* | pw32* | os2* | cegcc*)
-      # This hack is so that the source file can tell whether it is being
-      # built for inclusion in a dll (and should export symbols for example).
-      m4_if([$1], [GCJ], [],
-       [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
-      ;;
-
-    hpux9* | hpux10* | hpux11*)
-      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
-      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
-      # not for PA HP-UX.
-      case $host_cpu in
-      hppa*64*|ia64*)
-       # +Z the default
-       ;;
-      *)
-       _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
-       ;;
-      esac
-      # Is there a better lt_prog_compiler_static that works with the bundled CC?
-      _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
-      ;;
-
-    irix5* | irix6* | nonstopux*)
-      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
-      # PIC (with -KPIC) is the default.
-      _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
-      ;;
-
-    linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
-      case $cc_basename in
-      # old Intel for x86_64 which still supported -KPIC.
-      ecc*)
-       _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
-       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
-       _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
-        ;;
-      # icc used to be incompatible with GCC.
-      # ICC 10 doesn't accept -KPIC any more.
-      icc* | ifort*)
-       _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
-       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
-       _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
-        ;;
-      # Lahey Fortran 8.1.
-      lf95*)
-       _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
-       _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared'
-       _LT_TAGVAR(lt_prog_compiler_static, $1)='--static'
-       ;;
-      nagfor*)
-       # NAG Fortran compiler
-       _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,'
-       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
-       _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
-       ;;
-      pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*)
-        # Portland Group compilers (*not* the Pentium gcc compiler,
-       # which looks to be a dead project)
-       _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
-       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
-       _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
-        ;;
-      ccc*)
-        _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
-        # All Alpha code is PIC.
-        _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
-        ;;
-      xl* | bgxl* | bgf* | mpixl*)
-       # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene
-       _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
-       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic'
-       _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink'
-       ;;
-      *)
-       case `$CC -V 2>&1 | sed 5q` in
-       *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*)
-         # Sun Fortran 8.3 passes all unrecognized flags to the linker
-         _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
-         _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
-         _LT_TAGVAR(lt_prog_compiler_wl, $1)=''
-         ;;
-       *Sun\ F* | *Sun*Fortran*)
-         _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
-         _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
-         _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
-         ;;
-       *Sun\ C*)
-         # Sun C 5.9
-         _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
-         _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
-         _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
-         ;;
-        *Intel*\ [[CF]]*Compiler*)
-         _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
-         _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
-         _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
-         ;;
-       *Portland\ Group*)
-         _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
-         _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
-         _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
-         ;;
-       esac
-       ;;
-      esac
-      ;;
-
-    newsos6)
-      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
-      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
-      ;;
-
-    *nto* | *qnx*)
-      # QNX uses GNU C++, but need to define -shared option too, otherwise
-      # it will coredump.
-      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
-      ;;
-
-    osf3* | osf4* | osf5*)
-      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
-      # All OSF/1 code is PIC.
-      _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
-      ;;
-
-    rdos*)
-      _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
-      ;;
-
-    solaris*)
-      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
-      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
-      case $cc_basename in
-      f77* | f90* | f95* | sunf77* | sunf90* | sunf95*)
-       _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';;
-      *)
-       _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';;
-      esac
-      ;;
-
-    sunos4*)
-      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
-      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
-      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
-      ;;
-
-    sysv4 | sysv4.2uw2* | sysv4.3*)
-      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
-      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
-      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
-      ;;
-
-    sysv4*MP*)
-      if test -d /usr/nec ;then
-       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic'
-       _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
-      fi
-      ;;
-
-    sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
-      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
-      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
-      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
-      ;;
-
-    unicos*)
-      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
-      _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
-      ;;
-
-    uts4*)
-      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
-      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
-      ;;
-
-    *)
-      _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
-      ;;
-    esac
-  fi
-])
-case $host_os in
-  # For platforms which do not support PIC, -DPIC is meaningless:
-  *djgpp*)
-    _LT_TAGVAR(lt_prog_compiler_pic, $1)=
-    ;;
-  *)
-    _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])"
-    ;;
-esac
-
-AC_CACHE_CHECK([for $compiler option to produce PIC],
-  [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)],
-  [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)])
-_LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)
-
-#
-# Check to make sure the PIC flag actually works.
-#
-if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then
-  _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works],
-    [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)],
-    [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [],
-    [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in
-     "" | " "*) ;;
-     *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;;
-     esac],
-    [_LT_TAGVAR(lt_prog_compiler_pic, $1)=
-     _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no])
-fi
-_LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1],
-       [Additional compiler flags for building library objects])
-
-_LT_TAGDECL([wl], [lt_prog_compiler_wl], [1],
-       [How to pass a linker flag through the compiler])
-#
-# Check to make sure the static flag actually works.
-#
-wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\"
-_LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works],
-  _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1),
-  $lt_tmp_static_flag,
-  [],
-  [_LT_TAGVAR(lt_prog_compiler_static, $1)=])
-_LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1],
-       [Compiler flag to prevent dynamic linking])
-])# _LT_COMPILER_PIC
-
-
-# _LT_LINKER_SHLIBS([TAGNAME])
-# ----------------------------
-# See if the linker supports building shared libraries.
-m4_defun([_LT_LINKER_SHLIBS],
-[AC_REQUIRE([LT_PATH_LD])dnl
-AC_REQUIRE([LT_PATH_NM])dnl
-m4_require([_LT_PATH_MANIFEST_TOOL])dnl
-m4_require([_LT_FILEUTILS_DEFAULTS])dnl
-m4_require([_LT_DECL_EGREP])dnl
-m4_require([_LT_DECL_SED])dnl
-m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl
-m4_require([_LT_TAG_COMPILER])dnl
-AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])
-m4_if([$1], [CXX], [
-  _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
-  _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*']
-  case $host_os in
-  aix[[4-9]]*)
-    # If we're using GNU nm, then we don't want the "-C" option.
-    # -C means demangle to AIX nm, but means don't demangle with GNU nm
-    # Also, AIX nm treats weak defined symbols like other global defined
-    # symbols, whereas GNU nm marks them as "W".
-    if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then
-      _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
-    else
-      _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
-    fi
-    ;;
-  pw32*)
-    _LT_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds"
-    ;;
-  cygwin* | mingw* | cegcc*)
-    case $cc_basename in
-    cl*)
-      _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*'
-      ;;
-    *)
-      _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols'
-      _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname']
-      ;;
-    esac
-    ;;
-  linux* | k*bsd*-gnu | gnu*)
-    _LT_TAGVAR(link_all_deplibs, $1)=no
-    ;;
-  *)
-    _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
-    ;;
-  esac
-], [
-  runpath_var=
-  _LT_TAGVAR(allow_undefined_flag, $1)=
-  _LT_TAGVAR(always_export_symbols, $1)=no
-  _LT_TAGVAR(archive_cmds, $1)=
-  _LT_TAGVAR(archive_expsym_cmds, $1)=
-  _LT_TAGVAR(compiler_needs_object, $1)=no
-  _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no
-  _LT_TAGVAR(export_dynamic_flag_spec, $1)=
-  _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
-  _LT_TAGVAR(hardcode_automatic, $1)=no
-  _LT_TAGVAR(hardcode_direct, $1)=no
-  _LT_TAGVAR(hardcode_direct_absolute, $1)=no
-  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
-  _LT_TAGVAR(hardcode_libdir_separator, $1)=
-  _LT_TAGVAR(hardcode_minus_L, $1)=no
-  _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
-  _LT_TAGVAR(inherit_rpath, $1)=no
-  _LT_TAGVAR(link_all_deplibs, $1)=unknown
-  _LT_TAGVAR(module_cmds, $1)=
-  _LT_TAGVAR(module_expsym_cmds, $1)=
-  _LT_TAGVAR(old_archive_from_new_cmds, $1)=
-  _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)=
-  _LT_TAGVAR(thread_safe_flag_spec, $1)=
-  _LT_TAGVAR(whole_archive_flag_spec, $1)=
-  # include_expsyms should be a list of space-separated symbols to be *always*
-  # included in the symbol list
-  _LT_TAGVAR(include_expsyms, $1)=
-  # exclude_expsyms can be an extended regexp of symbols to exclude
-  # it will be wrapped by ` (' and `)$', so one must not match beginning or
-  # end of line.  Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc',
-  # as well as any symbol that contains `d'.
-  _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*']
-  # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out
-  # platforms (ab)use it in PIC code, but their linkers get confused if
-  # the symbol is explicitly referenced.  Since portable code cannot
-  # rely on this symbol name, it's probably fine to never include it in
-  # preloaded symbol tables.
-  # Exclude shared library initialization/finalization symbols.
-dnl Note also adjust exclude_expsyms for C++ above.
-  extract_expsyms_cmds=
-
-  case $host_os in
-  cygwin* | mingw* | pw32* | cegcc*)
-    # FIXME: the MSVC++ port hasn't been tested in a loooong time
-    # When not using gcc, we currently assume that we are using
-    # Microsoft Visual C++.
-    if test "$GCC" != yes; then
-      with_gnu_ld=no
-    fi
-    ;;
-  interix*)
-    # we just hope/assume this is gcc and not c89 (= MSVC++)
-    with_gnu_ld=yes
-    ;;
-  openbsd*)
-    with_gnu_ld=no
-    ;;
-  linux* | k*bsd*-gnu | gnu*)
-    _LT_TAGVAR(link_all_deplibs, $1)=no
-    ;;
-  esac
-
-  _LT_TAGVAR(ld_shlibs, $1)=yes
-
-  # On some targets, GNU ld is compatible enough with the native linker
-  # that we're better off using the native interface for both.
-  lt_use_gnu_ld_interface=no
-  if test "$with_gnu_ld" = yes; then
-    case $host_os in
-      aix*)
-       # The AIX port of GNU ld has always aspired to compatibility
-       # with the native linker.  However, as the warning in the GNU ld
-       # block says, versions before 2.19.5* couldn't really create working
-       # shared libraries, regardless of the interface used.
-       case `$LD -v 2>&1` in
-         *\ \(GNU\ Binutils\)\ 2.19.5*) ;;
-         *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;;
-         *\ \(GNU\ Binutils\)\ [[3-9]]*) ;;
-         *)
-           lt_use_gnu_ld_interface=yes
-           ;;
-       esac
-       ;;
-      *)
-       lt_use_gnu_ld_interface=yes
-       ;;
-    esac
-  fi
-
-  if test "$lt_use_gnu_ld_interface" = yes; then
-    # If archive_cmds runs LD, not CC, wlarc should be empty
-    wlarc='${wl}'
-
-    # Set some defaults for GNU ld with shared library support. These
-    # are reset later if shared libraries are not supported. Putting them
-    # here allows them to be overridden if necessary.
-    runpath_var=LD_RUN_PATH
-    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
-    _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
-    # ancient GNU ld didn't support --whole-archive et. al.
-    if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then
-      _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
-    else
-      _LT_TAGVAR(whole_archive_flag_spec, $1)=
-    fi
-    supports_anon_versioning=no
-    case `$LD -v 2>&1` in
-      *GNU\ gold*) supports_anon_versioning=yes ;;
-      *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11
-      *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ...
-      *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ...
-      *\ 2.11.*) ;; # other 2.11 versions
-      *) supports_anon_versioning=yes ;;
-    esac
-
-    # See if GNU ld supports shared libraries.
-    case $host_os in
-    aix[[3-9]]*)
-      # On AIX/PPC, the GNU linker is very broken
-      if test "$host_cpu" != ia64; then
-       _LT_TAGVAR(ld_shlibs, $1)=no
-       cat <<_LT_EOF 1>&2
-
-*** Warning: the GNU linker, at least up to release 2.19, is reported
-*** to be unable to reliably create shared libraries on AIX.
-*** Therefore, libtool is disabling shared libraries support.  If you
-*** really care for shared libraries, you may want to install binutils
-*** 2.20 or above, or modify your PATH so that a non-GNU linker is found.
-*** You will then need to restart the configuration process.
-
-_LT_EOF
-      fi
-      ;;
-
-    amigaos*)
-      case $host_cpu in
-      powerpc)
-            # see comment about AmigaOS4 .so support
-            _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
-            _LT_TAGVAR(archive_expsym_cmds, $1)=''
-        ;;
-      m68k)
-            _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'
-            _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
-            _LT_TAGVAR(hardcode_minus_L, $1)=yes
-        ;;
-      esac
-      ;;
-
-    beos*)
-      if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
-       _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
-       # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
-       # support --undefined.  This deserves some investigation.  FIXME
-       _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
-      else
-       _LT_TAGVAR(ld_shlibs, $1)=no
-      fi
-      ;;
-
-    cygwin* | mingw* | pw32* | cegcc*)
-      # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
-      # as there is no search path for DLLs.
-      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
-      _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols'
-      _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
-      _LT_TAGVAR(always_export_symbols, $1)=no
-      _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
-      _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols'
-      _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname']
-
-      if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then
-        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
-       # If the export-symbols file already is a .def file (1st line
-       # is EXPORTS), use it as is; otherwise, prepend...
-       _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
-         cp $export_symbols $output_objdir/$soname.def;
-       else
-         echo EXPORTS > $output_objdir/$soname.def;
-         cat $export_symbols >> $output_objdir/$soname.def;
-       fi~
-       $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
-      else
-       _LT_TAGVAR(ld_shlibs, $1)=no
-      fi
-      ;;
-
-    haiku*)
-      _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
-      _LT_TAGVAR(link_all_deplibs, $1)=yes
-      ;;
-
-    interix[[3-9]]*)
-      _LT_TAGVAR(hardcode_direct, $1)=no
-      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
-      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
-      _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
-      # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.
-      # Instead, shared libraries are loaded at an image base (0x10000000 by
-      # default) and relocated if they conflict, which is a slow very memory
-      # consuming and fragmenting process.  To avoid this, we pick a random,
-      # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
-      # time.  Moving up from 0x10000000 also allows more sbrk(2) space.
-      _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
-      _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
-      ;;
-
-    gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu)
-      tmp_diet=no
-      if test "$host_os" = linux-dietlibc; then
-       case $cc_basename in
-         diet\ *) tmp_diet=yes;;       # linux-dietlibc with static linking (!diet-dyn)
-       esac
-      fi
-      if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \
-        && test "$tmp_diet" = no
-      then
-       tmp_addflag=' $pic_flag'
-       tmp_sharedflag='-shared'
-       case $cc_basename,$host_cpu in
-        pgcc*)                         # Portland Group C compiler
-         _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
-         tmp_addflag=' $pic_flag'
-         ;;
-       pgf77* | pgf90* | pgf95* | pgfortran*)
-                                       # Portland Group f77 and f90 compilers
-         _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
-         tmp_addflag=' $pic_flag -Mnomain' ;;
-       ecc*,ia64* | icc*,ia64*)        # Intel C compiler on ia64
-         tmp_addflag=' -i_dynamic' ;;
-       efc*,ia64* | ifort*,ia64*)      # Intel Fortran compiler on ia64
-         tmp_addflag=' -i_dynamic -nofor_main' ;;
-       ifc* | ifort*)                  # Intel Fortran compiler
-         tmp_addflag=' -nofor_main' ;;
-       lf95*)                          # Lahey Fortran 8.1
-         _LT_TAGVAR(whole_archive_flag_spec, $1)=
-         tmp_sharedflag='--shared' ;;
-       xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below)
-         tmp_sharedflag='-qmkshrobj'
-         tmp_addflag= ;;
-       nvcc*)  # Cuda Compiler Driver 2.2
-         _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
-         _LT_TAGVAR(compiler_needs_object, $1)=yes
-         ;;
-       esac
-       case `$CC -V 2>&1 | sed 5q` in
-       *Sun\ C*)                       # Sun C 5.9
-         _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
-         _LT_TAGVAR(compiler_needs_object, $1)=yes
-         tmp_sharedflag='-G' ;;
-       *Sun\ F*)                       # Sun Fortran 8.3
-         tmp_sharedflag='-G' ;;
-       esac
-       _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
-
-        if test "x$supports_anon_versioning" = xyes; then
-          _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~
-           cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
-           echo "local: *; };" >> $output_objdir/$libname.ver~
-           $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
-        fi
-
-       case $cc_basename in
-       xlf* | bgf* | bgxlf* | mpixlf*)
-         # IBM XL Fortran 10.1 on PPC cannot create shared libs itself
-         _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive'
-         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
-         _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib'
-         if test "x$supports_anon_versioning" = xyes; then
-           _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~
-             cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
-             echo "local: *; };" >> $output_objdir/$libname.ver~
-             $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib'
-         fi
-         ;;
-       esac
-      else
-        _LT_TAGVAR(ld_shlibs, $1)=no
-      fi
-      ;;
-
-    netbsd* | netbsdelf*-gnu)
-      if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
-       _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
-       wlarc=
-      else
-       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
-       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
-      fi
-      ;;
-
-    solaris*)
-      if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then
-       _LT_TAGVAR(ld_shlibs, $1)=no
-       cat <<_LT_EOF 1>&2
-
-*** Warning: The releases 2.8.* of the GNU linker cannot reliably
-*** create shared libraries on Solaris systems.  Therefore, libtool
-*** is disabling shared libraries support.  We urge you to upgrade GNU
-*** binutils to release 2.9.1 or newer.  Another option is to modify
-*** your PATH or compiler configuration so that the native linker is
-*** used, and then restart.
-
-_LT_EOF
-      elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
-       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
-       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
-      else
-       _LT_TAGVAR(ld_shlibs, $1)=no
-      fi
-      ;;
-
-    sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)
-      case `$LD -v 2>&1` in
-        *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*)
-       _LT_TAGVAR(ld_shlibs, $1)=no
-       cat <<_LT_EOF 1>&2
-
-*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not
-*** reliably create shared libraries on SCO systems.  Therefore, libtool
-*** is disabling shared libraries support.  We urge you to upgrade GNU
-*** binutils to release 2.16.91.0.3 or newer.  Another option is to modify
-*** your PATH or compiler configuration so that the native linker is
-*** used, and then restart.
-
-_LT_EOF
-       ;;
-       *)
-         # For security reasons, it is highly recommended that you always
-         # use absolute paths for naming shared libraries, and exclude the
-         # DT_RUNPATH tag from executables and libraries.  But doing so
-         # requires that you compile everything twice, which is a pain.
-         if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
-           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
-           _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
-           _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
-         else
-           _LT_TAGVAR(ld_shlibs, $1)=no
-         fi
-       ;;
-      esac
-      ;;
-
-    sunos4*)
-      _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'
-      wlarc=
-      _LT_TAGVAR(hardcode_direct, $1)=yes
-      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
-      ;;
-
-    *)
-      if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
-       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
-       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
-      else
-       _LT_TAGVAR(ld_shlibs, $1)=no
-      fi
-      ;;
-    esac
-
-    if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then
-      runpath_var=
-      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
-      _LT_TAGVAR(export_dynamic_flag_spec, $1)=
-      _LT_TAGVAR(whole_archive_flag_spec, $1)=
-    fi
-  else
-    # PORTME fill in a description of your system's linker (not GNU ld)
-    case $host_os in
-    aix3*)
-      _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
-      _LT_TAGVAR(always_export_symbols, $1)=yes
-      _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname'
-      # Note: this linker hardcodes the directories in LIBPATH if there
-      # are no directories specified by -L.
-      _LT_TAGVAR(hardcode_minus_L, $1)=yes
-      if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then
-       # Neither direct hardcoding nor static linking is supported with a
-       # broken collect2.
-       _LT_TAGVAR(hardcode_direct, $1)=unsupported
-      fi
-      ;;
-
-    aix[[4-9]]*)
-      if test "$host_cpu" = ia64; then
-       # On IA64, the linker does run time linking by default, so we don't
-       # have to do anything special.
-       aix_use_runtimelinking=no
-       exp_sym_flag='-Bexport'
-       no_entry_flag=""
-      else
-       # If we're using GNU nm, then we don't want the "-C" option.
-       # -C means demangle to AIX nm, but means don't demangle with GNU nm
-       # Also, AIX nm treats weak defined symbols like other global
-       # defined symbols, whereas GNU nm marks them as "W".
-       if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then
-         _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
-       else
-         _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
-       fi
-       aix_use_runtimelinking=no
-
-       # Test if we are trying to use run time linking or normal
-       # AIX style linking. If -brtl is somewhere in LDFLAGS, we
-       # need to do runtime linking.
-       case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*)
-         for ld_flag in $LDFLAGS; do
-         if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
-           aix_use_runtimelinking=yes
-           break
-         fi
-         done
-         ;;
-       esac
-
-       exp_sym_flag='-bexport'
-       no_entry_flag='-bnoentry'
-      fi
-
-      # When large executables or shared objects are built, AIX ld can
-      # have problems creating the table of contents.  If linking a library
-      # or program results in "error TOC overflow" add -mminimal-toc to
-      # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
-      # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
-
-      _LT_TAGVAR(archive_cmds, $1)=''
-      _LT_TAGVAR(hardcode_direct, $1)=yes
-      _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
-      _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
-      _LT_TAGVAR(link_all_deplibs, $1)=yes
-      _LT_TAGVAR(file_list_spec, $1)='${wl}-f,'
-
-      if test "$GCC" = yes; then
-       case $host_os in aix4.[[012]]|aix4.[[012]].*)
-       # We only want to do this on AIX 4.2 and lower, the check
-       # below for broken collect2 doesn't work under 4.3+
-         collect2name=`${CC} -print-prog-name=collect2`
-         if test -f "$collect2name" &&
-          strings "$collect2name" | $GREP resolve_lib_name >/dev/null
-         then
-         # We have reworked collect2
-         :
-         else
-         # We have old collect2
-         _LT_TAGVAR(hardcode_direct, $1)=unsupported
-         # It fails to find uninstalled libraries when the uninstalled
-         # path is not listed in the libpath.  Setting hardcode_minus_L
-         # to unsupported forces relinking
-         _LT_TAGVAR(hardcode_minus_L, $1)=yes
-         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
-         _LT_TAGVAR(hardcode_libdir_separator, $1)=
-         fi
-         ;;
-       esac
-       shared_flag='-shared'
-       if test "$aix_use_runtimelinking" = yes; then
-         shared_flag="$shared_flag "'${wl}-G'
-       fi
-       _LT_TAGVAR(link_all_deplibs, $1)=no
-      else
-       # not using gcc
-       if test "$host_cpu" = ia64; then
-       # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
-       # chokes on -Wl,-G. The following line is correct:
-         shared_flag='-G'
-       else
-         if test "$aix_use_runtimelinking" = yes; then
-           shared_flag='${wl}-G'
-         else
-           shared_flag='${wl}-bM:SRE'
-         fi
-       fi
-      fi
-
-      _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall'
-      # It seems that -bexpall does not export symbols beginning with
-      # underscore (_), so it is better to generate a list of symbols to export.
-      _LT_TAGVAR(always_export_symbols, $1)=yes
-      if test "$aix_use_runtimelinking" = yes; then
-       # Warning - without using the other runtime loading flags (-brtl),
-       # -berok will link without error, but may produce a broken library.
-       _LT_TAGVAR(allow_undefined_flag, $1)='-berok'
-        # Determine the default libpath from the value encoded in an
-        # empty executable.
-        _LT_SYS_MODULE_PATH_AIX([$1])
-        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
-        _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
-      else
-       if test "$host_cpu" = ia64; then
-         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'
-         _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
-         _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols"
-       else
-        # Determine the default libpath from the value encoded in an
-        # empty executable.
-        _LT_SYS_MODULE_PATH_AIX([$1])
-        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
-         # Warning - without using the other run time loading flags,
-         # -berok will link without error, but may produce a broken library.
-         _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'
-         _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'
-         if test "$with_gnu_ld" = yes; then
-           # We only use this code for GNU lds that support --whole-archive.
-           _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
-         else
-           # Exported symbols can be pulled into shared objects from archives
-           _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience'
-         fi
-         _LT_TAGVAR(archive_cmds_need_lc, $1)=yes
-         # This is similar to how AIX traditionally builds its shared libraries.
-         _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
-       fi
-      fi
-      ;;
-
-    amigaos*)
-      case $host_cpu in
-      powerpc)
-            # see comment about AmigaOS4 .so support
-            _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
-            _LT_TAGVAR(archive_expsym_cmds, $1)=''
-        ;;
-      m68k)
-            _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'
-            _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
-            _LT_TAGVAR(hardcode_minus_L, $1)=yes
-        ;;
-      esac
-      ;;
-
-    bsdi[[45]]*)
-      _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic
-      ;;
-
-    cygwin* | mingw* | pw32* | cegcc*)
-      # When not using gcc, we currently assume that we are using
-      # Microsoft Visual C++.
-      # hardcode_libdir_flag_spec is actually meaningless, as there is
-      # no search path for DLLs.
-      case $cc_basename in
-      cl*)
-       # Native MSVC
-       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' '
-       _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
-       _LT_TAGVAR(always_export_symbols, $1)=yes
-       _LT_TAGVAR(file_list_spec, $1)='@'
-       # Tell ltmain to make .lib files, not .a files.
-       libext=lib
-       # Tell ltmain to make .dll files, not .so files.
-       shrext_cmds=".dll"
-       # FIXME: Setting linknames here is a bad hack.
-       _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames='
-       _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
-           sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp;
-         else
-           sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp;
-         fi~
-         $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~
-         linknames='
-       # The linker will not automatically build a static lib if we build a DLL.
-       # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true'
-       _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
-       _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*'
-       _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1,DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols'
-       # Don't use ranlib
-       _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib'
-       _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~
-         lt_tool_outputfile="@TOOL_OUTPUT@"~
-         case $lt_outputfile in
-           *.exe|*.EXE) ;;
-           *)
-             lt_outputfile="$lt_outputfile.exe"
-             lt_tool_outputfile="$lt_tool_outputfile.exe"
-             ;;
-         esac~
-         if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then
-           $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1;
-           $RM "$lt_outputfile.manifest";
-         fi'
-       ;;
-      *)
-       # Assume MSVC wrapper
-       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' '
-       _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
-       # Tell ltmain to make .lib files, not .a files.
-       libext=lib
-       # Tell ltmain to make .dll files, not .so files.
-       shrext_cmds=".dll"
-       # FIXME: Setting linknames here is a bad hack.
-       _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames='
-       # The linker will automatically build a .lib file if we build a DLL.
-       _LT_TAGVAR(old_archive_from_new_cmds, $1)='true'
-       # FIXME: Should let the user specify the lib program.
-       _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs'
-       _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
-       ;;
-      esac
-      ;;
-
-    darwin* | rhapsody*)
-      _LT_DARWIN_LINKER_FEATURES($1)
-      ;;
-
-    dgux*)
-      _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
-      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
-      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
-      ;;
-
-    # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor
-    # support.  Future versions do this automatically, but an explicit c++rt0.o
-    # does not break anything, and helps significantly (at the cost of a little
-    # extra space).
-    freebsd2.2*)
-      _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o'
-      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
-      _LT_TAGVAR(hardcode_direct, $1)=yes
-      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
-      ;;
-
-    # Unfortunately, older versions of FreeBSD 2 do not have this feature.
-    freebsd2.*)
-      _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
-      _LT_TAGVAR(hardcode_direct, $1)=yes
-      _LT_TAGVAR(hardcode_minus_L, $1)=yes
-      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
-      ;;
-
-    # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
-    freebsd* | dragonfly*)
-      _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
-      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
-      _LT_TAGVAR(hardcode_direct, $1)=yes
-      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
-      ;;
-
-    hpux9*)
-      if test "$GCC" = yes; then
-       _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
-      else
-       _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
-      fi
-      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
-      _LT_TAGVAR(hardcode_libdir_separator, $1)=:
-      _LT_TAGVAR(hardcode_direct, $1)=yes
-
-      # hardcode_minus_L: Not really in the search PATH,
-      # but as the default location of the library.
-      _LT_TAGVAR(hardcode_minus_L, $1)=yes
-      _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
-      ;;
-
-    hpux10*)
-      if test "$GCC" = yes && test "$with_gnu_ld" = no; then
-       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
-      else
-       _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'
-      fi
-      if test "$with_gnu_ld" = no; then
-       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
-       _LT_TAGVAR(hardcode_libdir_separator, $1)=:
-       _LT_TAGVAR(hardcode_direct, $1)=yes
-       _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
-       _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
-       # hardcode_minus_L: Not really in the search PATH,
-       # but as the default location of the library.
-       _LT_TAGVAR(hardcode_minus_L, $1)=yes
-      fi
-      ;;
-
-    hpux11*)
-      if test "$GCC" = yes && test "$with_gnu_ld" = no; then
-       case $host_cpu in
-       hppa*64*)
-         _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
-         ;;
-       ia64*)
-         _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
-         ;;
-       *)
-         _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
-         ;;
-       esac
-      else
-       case $host_cpu in
-       hppa*64*)
-         _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
-         ;;
-       ia64*)
-         _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
-         ;;
-       *)
-       m4_if($1, [], [
-         # Older versions of the 11.00 compiler do not understand -b yet
-         # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does)
-         _LT_LINKER_OPTION([if $CC understands -b],
-           _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b],
-           [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'],
-           [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])],
-         [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'])
-         ;;
-       esac
-      fi
-      if test "$with_gnu_ld" = no; then
-       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
-       _LT_TAGVAR(hardcode_libdir_separator, $1)=:
-
-       case $host_cpu in
-       hppa*64*|ia64*)
-         _LT_TAGVAR(hardcode_direct, $1)=no
-         _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
-         ;;
-       *)
-         _LT_TAGVAR(hardcode_direct, $1)=yes
-         _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
-         _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
-
-         # hardcode_minus_L: Not really in the search PATH,
-         # but as the default location of the library.
-         _LT_TAGVAR(hardcode_minus_L, $1)=yes
-         ;;
-       esac
-      fi
-      ;;
-
-    irix5* | irix6* | nonstopux*)
-      if test "$GCC" = yes; then
-       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
-       # Try to use the -exported_symbol ld option, if it does not
-       # work, assume that -exports_file does not work either and
-       # implicitly export all symbols.
-       # This should be the same for all languages, so no per-tag cache variable.
-       AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol],
-         [lt_cv_irix_exported_symbol],
-         [save_LDFLAGS="$LDFLAGS"
-          LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null"
-          AC_LINK_IFELSE(
-            [AC_LANG_SOURCE(
-               [AC_LANG_CASE([C], [[int foo (void) { return 0; }]],
-                             [C++], [[int foo (void) { return 0; }]],
-                             [Fortran 77], [[
-      subroutine foo
-      end]],
-                             [Fortran], [[
-      subroutine foo
-      end]])])],
-             [lt_cv_irix_exported_symbol=yes],
-             [lt_cv_irix_exported_symbol=no])
-           LDFLAGS="$save_LDFLAGS"])
-       if test "$lt_cv_irix_exported_symbol" = yes; then
-          _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib'
-       fi
-      else
-       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
-       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib'
-      fi
-      _LT_TAGVAR(archive_cmds_need_lc, $1)='no'
-      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
-      _LT_TAGVAR(hardcode_libdir_separator, $1)=:
-      _LT_TAGVAR(inherit_rpath, $1)=yes
-      _LT_TAGVAR(link_all_deplibs, $1)=yes
-      ;;
-
-    netbsd* | netbsdelf*-gnu)
-      if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
-       _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out
-      else
-       _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags'      # ELF
-      fi
-      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
-      _LT_TAGVAR(hardcode_direct, $1)=yes
-      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
-      ;;
-
-    newsos6)
-      _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
-      _LT_TAGVAR(hardcode_direct, $1)=yes
-      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
-      _LT_TAGVAR(hardcode_libdir_separator, $1)=:
-      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
-      ;;
-
-    *nto* | *qnx*)
-      ;;
-
-    openbsd*)
-      if test -f /usr/libexec/ld.so; then
-       _LT_TAGVAR(hardcode_direct, $1)=yes
-       _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
-       _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
-       if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
-         _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
-         _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols'
-         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
-         _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
-       else
-         case $host_os in
-          openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*)
-            _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
-            _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
-            ;;
-          *)
-            _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
-            _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
-            ;;
-         esac
-       fi
-      else
-       _LT_TAGVAR(ld_shlibs, $1)=no
-      fi
-      ;;
-
-    os2*)
-      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
-      _LT_TAGVAR(hardcode_minus_L, $1)=yes
-      _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
-      _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def'
-      _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def'
-      ;;
-
-    osf3*)
-      if test "$GCC" = yes; then
-       _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
-       _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
-      else
-       _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
-       _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
-      fi
-      _LT_TAGVAR(archive_cmds_need_lc, $1)='no'
-      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
-      _LT_TAGVAR(hardcode_libdir_separator, $1)=:
-      ;;
-
-    osf4* | osf5*)     # as osf3* with the addition of -msym flag
-      if test "$GCC" = yes; then
-       _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
-       _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
-       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
-      else
-       _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
-       _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
-       _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~
-       $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp'
-
-       # Both c and cxx compiler support -rpath directly
-       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
-      fi
-      _LT_TAGVAR(archive_cmds_need_lc, $1)='no'
-      _LT_TAGVAR(hardcode_libdir_separator, $1)=:
-      ;;
-
-    solaris*)
-      _LT_TAGVAR(no_undefined_flag, $1)=' -z defs'
-      if test "$GCC" = yes; then
-       wlarc='${wl}'
-       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
-       _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
-         $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'
-      else
-       case `$CC -V 2>&1` in
-       *"Compilers 5.0"*)
-         wlarc=''
-         _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'
-         _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
-         $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp'
-         ;;
-       *)
-         wlarc='${wl}'
-         _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags'
-         _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
-         $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'
-         ;;
-       esac
-      fi
-      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
-      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
-      case $host_os in
-      solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
-      *)
-       # The compiler driver will combine and reorder linker options,
-       # but understands `-z linker_flag'.  GCC discards it without `$wl',
-       # but is careful enough not to reorder.
-       # Supported since Solaris 2.6 (maybe 2.5.1?)
-       if test "$GCC" = yes; then
-         _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'
-       else
-         _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract'
-       fi
-       ;;
-      esac
-      _LT_TAGVAR(link_all_deplibs, $1)=yes
-      ;;
-
-    sunos4*)
-      if test "x$host_vendor" = xsequent; then
-       # Use $CC to link under sequent, because it throws in some extra .o
-       # files that make .init and .fini sections work.
-       _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags'
-      else
-       _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags'
-      fi
-      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
-      _LT_TAGVAR(hardcode_direct, $1)=yes
-      _LT_TAGVAR(hardcode_minus_L, $1)=yes
-      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
-      ;;
-
-    sysv4)
-      case $host_vendor in
-       sni)
-         _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
-         _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true???
-       ;;
-       siemens)
-         ## LD is ld it makes a PLAMLIB
-         ## CC just makes a GrossModule.
-         _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags'
-         _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs'
-         _LT_TAGVAR(hardcode_direct, $1)=no
-        ;;
-       motorola)
-         _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
-         _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie
-       ;;
-      esac
-      runpath_var='LD_RUN_PATH'
-      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
-      ;;
-
-    sysv4.3*)
-      _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
-      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
-      _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport'
-      ;;
-
-    sysv4*MP*)
-      if test -d /usr/nec; then
-       _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
-       _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
-       runpath_var=LD_RUN_PATH
-       hardcode_runpath_var=yes
-       _LT_TAGVAR(ld_shlibs, $1)=yes
-      fi
-      ;;
-
-    sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*)
-      _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
-      _LT_TAGVAR(archive_cmds_need_lc, $1)=no
-      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
-      runpath_var='LD_RUN_PATH'
-
-      if test "$GCC" = yes; then
-       _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
-       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
-      else
-       _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
-       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
-      fi
-      ;;
-
-    sysv5* | sco3.2v5* | sco5v6*)
-      # Note: We can NOT use -z defs as we might desire, because we do not
-      # link with -lc, and that would cause any symbols used from libc to
-      # always be unresolved, which means just about no library would
-      # ever link correctly.  If we're not using GNU ld we use -z text
-      # though, which does catch some bad symbols but isn't as heavy-handed
-      # as -z defs.
-      _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
-      _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs'
-      _LT_TAGVAR(archive_cmds_need_lc, $1)=no
-      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
-      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir'
-      _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
-      _LT_TAGVAR(link_all_deplibs, $1)=yes
-      _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport'
-      runpath_var='LD_RUN_PATH'
-
-      if test "$GCC" = yes; then
-       _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
-       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
-      else
-       _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
-       _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
-      fi
-      ;;
-
-    uts4*)
-      _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
-      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
-      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
-      ;;
-
-    *)
-      _LT_TAGVAR(ld_shlibs, $1)=no
-      ;;
-    esac
-
-    if test x$host_vendor = xsni; then
-      case $host in
-      sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
-       _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym'
-       ;;
-      esac
-    fi
-  fi
-])
-AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)])
-test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no
-
-_LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld
-
-_LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl
-_LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl
-_LT_DECL([], [extract_expsyms_cmds], [2],
-    [The commands to extract the exported symbol list from a shared archive])
-
-#
-# Do we need to explicitly link libc?
-#
-case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in
-x|xyes)
-  # Assume -lc should be added
-  _LT_TAGVAR(archive_cmds_need_lc, $1)=yes
-
-  if test "$enable_shared" = yes && test "$GCC" = yes; then
-    case $_LT_TAGVAR(archive_cmds, $1) in
-    *'~'*)
-      # FIXME: we may have to deal with multi-command sequences.
-      ;;
-    '$CC '*)
-      # Test whether the compiler implicitly links with -lc since on some
-      # systems, -lgcc has to come before -lc. If gcc already passes -lc
-      # to ld, don't add -lc before -lgcc.
-      AC_CACHE_CHECK([whether -lc should be explicitly linked in],
-       [lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1),
-       [$RM conftest*
-       echo "$lt_simple_compile_test_code" > conftest.$ac_ext
-
-       if AC_TRY_EVAL(ac_compile) 2>conftest.err; then
-         soname=conftest
-         lib=conftest
-         libobjs=conftest.$ac_objext
-         deplibs=
-         wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1)
-         pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1)
-         compiler_flags=-v
-         linker_flags=-v
-         verstring=
-         output_objdir=.
-         libname=conftest
-         lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1)
-         _LT_TAGVAR(allow_undefined_flag, $1)=
-         if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1)
-         then
-           lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no
-         else
-           lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes
-         fi
-         _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag
-       else
-         cat conftest.err 1>&5
-       fi
-       $RM conftest*
-       ])
-      _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)
-      ;;
-    esac
-  fi
-  ;;
-esac
-
-_LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0],
-    [Whether or not to add -lc for building shared libraries])
-_LT_TAGDECL([allow_libtool_libs_with_static_runtimes],
-    [enable_shared_with_static_runtimes], [0],
-    [Whether or not to disallow shared libs when runtime libs are static])
-_LT_TAGDECL([], [export_dynamic_flag_spec], [1],
-    [Compiler flag to allow reflexive dlopens])
-_LT_TAGDECL([], [whole_archive_flag_spec], [1],
-    [Compiler flag to generate shared objects directly from archives])
-_LT_TAGDECL([], [compiler_needs_object], [1],
-    [Whether the compiler copes with passing no objects directly])
-_LT_TAGDECL([], [old_archive_from_new_cmds], [2],
-    [Create an old-style archive from a shared archive])
-_LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2],
-    [Create a temporary old-style archive to link instead of a shared archive])
-_LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive])
-_LT_TAGDECL([], [archive_expsym_cmds], [2])
-_LT_TAGDECL([], [module_cmds], [2],
-    [Commands used to build a loadable module if different from building
-    a shared archive.])
-_LT_TAGDECL([], [module_expsym_cmds], [2])
-_LT_TAGDECL([], [with_gnu_ld], [1],
-    [Whether we are building with GNU ld or not])
-_LT_TAGDECL([], [allow_undefined_flag], [1],
-    [Flag that allows shared libraries with undefined symbols to be built])
-_LT_TAGDECL([], [no_undefined_flag], [1],
-    [Flag that enforces no undefined symbols])
-_LT_TAGDECL([], [hardcode_libdir_flag_spec], [1],
-    [Flag to hardcode $libdir into a binary during linking.
-    This must work even if $libdir does not exist])
-_LT_TAGDECL([], [hardcode_libdir_separator], [1],
-    [Whether we need a single "-rpath" flag with a separated argument])
-_LT_TAGDECL([], [hardcode_direct], [0],
-    [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes
-    DIR into the resulting binary])
-_LT_TAGDECL([], [hardcode_direct_absolute], [0],
-    [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes
-    DIR into the resulting binary and the resulting library dependency is
-    "absolute", i.e impossible to change by setting ${shlibpath_var} if the
-    library is relocated])
-_LT_TAGDECL([], [hardcode_minus_L], [0],
-    [Set to "yes" if using the -LDIR flag during linking hardcodes DIR
-    into the resulting binary])
-_LT_TAGDECL([], [hardcode_shlibpath_var], [0],
-    [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
-    into the resulting binary])
-_LT_TAGDECL([], [hardcode_automatic], [0],
-    [Set to "yes" if building a shared library automatically hardcodes DIR
-    into the library and all subsequent libraries and executables linked
-    against it])
-_LT_TAGDECL([], [inherit_rpath], [0],
-    [Set to yes if linker adds runtime paths of dependent libraries
-    to runtime path list])
-_LT_TAGDECL([], [link_all_deplibs], [0],
-    [Whether libtool must link a program against all its dependency libraries])
-_LT_TAGDECL([], [always_export_symbols], [0],
-    [Set to "yes" if exported symbols are required])
-_LT_TAGDECL([], [export_symbols_cmds], [2],
-    [The commands to list exported symbols])
-_LT_TAGDECL([], [exclude_expsyms], [1],
-    [Symbols that should not be listed in the preloaded symbols])
-_LT_TAGDECL([], [include_expsyms], [1],
-    [Symbols that must always be exported])
-_LT_TAGDECL([], [prelink_cmds], [2],
-    [Commands necessary for linking programs (against libraries) with templates])
-_LT_TAGDECL([], [postlink_cmds], [2],
-    [Commands necessary for finishing linking programs])
-_LT_TAGDECL([], [file_list_spec], [1],
-    [Specify filename containing input files])
-dnl FIXME: Not yet implemented
-dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1],
-dnl    [Compiler flag to generate thread safe objects])
-])# _LT_LINKER_SHLIBS
-
-
-# _LT_LANG_C_CONFIG([TAG])
-# ------------------------
-# Ensure that the configuration variables for a C compiler are suitably
-# defined.  These variables are subsequently used by _LT_CONFIG to write
-# the compiler configuration to `libtool'.
-m4_defun([_LT_LANG_C_CONFIG],
-[m4_require([_LT_DECL_EGREP])dnl
-lt_save_CC="$CC"
-AC_LANG_PUSH(C)
-
-# Source file extension for C test sources.
-ac_ext=c
-
-# Object file extension for compiled C test sources.
-objext=o
-_LT_TAGVAR(objext, $1)=$objext
-
-# Code to be used in simple compile tests
-lt_simple_compile_test_code="int some_variable = 0;"
-
-# Code to be used in simple link tests
-lt_simple_link_test_code='int main(){return(0);}'
-
-_LT_TAG_COMPILER
-# Save the default compiler, since it gets overwritten when the other
-# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP.
-compiler_DEFAULT=$CC
-
-# save warnings/boilerplate of simple test code
-_LT_COMPILER_BOILERPLATE
-_LT_LINKER_BOILERPLATE
-
-## CAVEAT EMPTOR:
-## There is no encapsulation within the following macros, do not change
-## the running order or otherwise move them around unless you know exactly
-## what you are doing...
-if test -n "$compiler"; then
-  _LT_COMPILER_NO_RTTI($1)
-  _LT_COMPILER_PIC($1)
-  _LT_COMPILER_C_O($1)
-  _LT_COMPILER_FILE_LOCKS($1)
-  _LT_LINKER_SHLIBS($1)
-  _LT_SYS_DYNAMIC_LINKER($1)
-  _LT_LINKER_HARDCODE_LIBPATH($1)
-  LT_SYS_DLOPEN_SELF
-  _LT_CMD_STRIPLIB
-
-  # Report which library types will actually be built
-  AC_MSG_CHECKING([if libtool supports shared libraries])
-  AC_MSG_RESULT([$can_build_shared])
-
-  AC_MSG_CHECKING([whether to build shared libraries])
-  test "$can_build_shared" = "no" && enable_shared=no
-
-  # On AIX, shared libraries and static libraries use the same namespace, and
-  # are all built from PIC.
-  case $host_os in
-  aix3*)
-    test "$enable_shared" = yes && enable_static=no
-    if test -n "$RANLIB"; then
-      archive_cmds="$archive_cmds~\$RANLIB \$lib"
-      postinstall_cmds='$RANLIB $lib'
-    fi
-    ;;
-
-  aix[[4-9]]*)
-    if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
-      test "$enable_shared" = yes && enable_static=no
-    fi
-    ;;
-  esac
-  AC_MSG_RESULT([$enable_shared])
-
-  AC_MSG_CHECKING([whether to build static libraries])
-  # Make sure either enable_shared or enable_static is yes.
-  test "$enable_shared" = yes || enable_static=yes
-  AC_MSG_RESULT([$enable_static])
-
-  _LT_CONFIG($1)
-fi
-AC_LANG_POP
-CC="$lt_save_CC"
-])# _LT_LANG_C_CONFIG
-
-
-# _LT_LANG_CXX_CONFIG([TAG])
-# --------------------------
-# Ensure that the configuration variables for a C++ compiler are suitably
-# defined.  These variables are subsequently used by _LT_CONFIG to write
-# the compiler configuration to `libtool'.
-m4_defun([_LT_LANG_CXX_CONFIG],
-[m4_require([_LT_FILEUTILS_DEFAULTS])dnl
-m4_require([_LT_DECL_EGREP])dnl
-m4_require([_LT_PATH_MANIFEST_TOOL])dnl
-if test -n "$CXX" && ( test "X$CXX" != "Xno" &&
-    ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) ||
-    (test "X$CXX" != "Xg++"))) ; then
-  AC_PROG_CXXCPP
-else
-  _lt_caught_CXX_error=yes
-fi
-
-AC_LANG_PUSH(C++)
-_LT_TAGVAR(archive_cmds_need_lc, $1)=no
-_LT_TAGVAR(allow_undefined_flag, $1)=
-_LT_TAGVAR(always_export_symbols, $1)=no
-_LT_TAGVAR(archive_expsym_cmds, $1)=
-_LT_TAGVAR(compiler_needs_object, $1)=no
-_LT_TAGVAR(export_dynamic_flag_spec, $1)=
-_LT_TAGVAR(hardcode_direct, $1)=no
-_LT_TAGVAR(hardcode_direct_absolute, $1)=no
-_LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
-_LT_TAGVAR(hardcode_libdir_separator, $1)=
-_LT_TAGVAR(hardcode_minus_L, $1)=no
-_LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
-_LT_TAGVAR(hardcode_automatic, $1)=no
-_LT_TAGVAR(inherit_rpath, $1)=no
-_LT_TAGVAR(module_cmds, $1)=
-_LT_TAGVAR(module_expsym_cmds, $1)=
-_LT_TAGVAR(link_all_deplibs, $1)=unknown
-_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
-_LT_TAGVAR(reload_flag, $1)=$reload_flag
-_LT_TAGVAR(reload_cmds, $1)=$reload_cmds
-_LT_TAGVAR(no_undefined_flag, $1)=
-_LT_TAGVAR(whole_archive_flag_spec, $1)=
-_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no
-
-# Source file extension for C++ test sources.
-ac_ext=cpp
-
-# Object file extension for compiled C++ test sources.
-objext=o
-_LT_TAGVAR(objext, $1)=$objext
-
-# No sense in running all these tests if we already determined that
-# the CXX compiler isn't working.  Some variables (like enable_shared)
-# are currently assumed to apply to all compilers on this platform,
-# and will be corrupted by setting them based on a non-working compiler.
-if test "$_lt_caught_CXX_error" != yes; then
-  # Code to be used in simple compile tests
-  lt_simple_compile_test_code="int some_variable = 0;"
-
-  # Code to be used in simple link tests
-  lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }'
-
-  # ltmain only uses $CC for tagged configurations so make sure $CC is set.
-  _LT_TAG_COMPILER
-
-  # save warnings/boilerplate of simple test code
-  _LT_COMPILER_BOILERPLATE
-  _LT_LINKER_BOILERPLATE
-
-  # Allow CC to be a program name with arguments.
-  lt_save_CC=$CC
-  lt_save_CFLAGS=$CFLAGS
-  lt_save_LD=$LD
-  lt_save_GCC=$GCC
-  GCC=$GXX
-  lt_save_with_gnu_ld=$with_gnu_ld
-  lt_save_path_LD=$lt_cv_path_LD
-  if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then
-    lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx
-  else
-    $as_unset lt_cv_prog_gnu_ld
-  fi
-  if test -n "${lt_cv_path_LDCXX+set}"; then
-    lt_cv_path_LD=$lt_cv_path_LDCXX
-  else
-    $as_unset lt_cv_path_LD
-  fi
-  test -z "${LDCXX+set}" || LD=$LDCXX
-  CC=${CXX-"c++"}
-  CFLAGS=$CXXFLAGS
-  compiler=$CC
-  _LT_TAGVAR(compiler, $1)=$CC
-  _LT_CC_BASENAME([$compiler])
-
-  if test -n "$compiler"; then
-    # We don't want -fno-exception when compiling C++ code, so set the
-    # no_builtin_flag separately
-    if test "$GXX" = yes; then
-      _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin'
-    else
-      _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
-    fi
-
-    if test "$GXX" = yes; then
-      # Set up default GNU C++ configuration
-
-      LT_PATH_LD
-
-      # Check if GNU C++ uses GNU ld as the underlying linker, since the
-      # archiving commands below assume that GNU ld is being used.
-      if test "$with_gnu_ld" = yes; then
-        _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
-        _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
-
-        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
-        _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
-
-        # If archive_cmds runs LD, not CC, wlarc should be empty
-        # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to
-        #     investigate it a little bit more. (MM)
-        wlarc='${wl}'
-
-        # ancient GNU ld didn't support --whole-archive et. al.
-        if eval "`$CC -print-prog-name=ld` --help 2>&1" |
-         $GREP 'no-whole-archive' > /dev/null; then
-          _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
-        else
-          _LT_TAGVAR(whole_archive_flag_spec, $1)=
-        fi
-      else
-        with_gnu_ld=no
-        wlarc=
-
-        # A generic and very simple default shared library creation
-        # command for GNU C++ for the case where it uses the native
-        # linker, instead of GNU ld.  If possible, this setting should
-        # overridden to take advantage of the native linker features on
-        # the platform it is being used on.
-        _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
-      fi
-
-      # Commands to make compiler produce verbose output that lists
-      # what "hidden" libraries, object files and flags are used when
-      # linking a shared library.
-      output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
-
-    else
-      GXX=no
-      with_gnu_ld=no
-      wlarc=
-    fi
-
-    # PORTME: fill in a description of your system's C++ link characteristics
-    AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])
-    _LT_TAGVAR(ld_shlibs, $1)=yes
-    case $host_os in
-      aix3*)
-        # FIXME: insert proper C++ library support
-        _LT_TAGVAR(ld_shlibs, $1)=no
-        ;;
-      aix[[4-9]]*)
-        if test "$host_cpu" = ia64; then
-          # On IA64, the linker does run time linking by default, so we don't
-          # have to do anything special.
-          aix_use_runtimelinking=no
-          exp_sym_flag='-Bexport'
-          no_entry_flag=""
-        else
-          aix_use_runtimelinking=no
-
-          # Test if we are trying to use run time linking or normal
-          # AIX style linking. If -brtl is somewhere in LDFLAGS, we
-          # need to do runtime linking.
-          case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*)
-           for ld_flag in $LDFLAGS; do
-             case $ld_flag in
-             *-brtl*)
-               aix_use_runtimelinking=yes
-               break
-               ;;
-             esac
-           done
-           ;;
-          esac
-
-          exp_sym_flag='-bexport'
-          no_entry_flag='-bnoentry'
-        fi
-
-        # When large executables or shared objects are built, AIX ld can
-        # have problems creating the table of contents.  If linking a library
-        # or program results in "error TOC overflow" add -mminimal-toc to
-        # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
-        # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
-
-        _LT_TAGVAR(archive_cmds, $1)=''
-        _LT_TAGVAR(hardcode_direct, $1)=yes
-        _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
-        _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
-        _LT_TAGVAR(link_all_deplibs, $1)=yes
-        _LT_TAGVAR(file_list_spec, $1)='${wl}-f,'
-
-        if test "$GXX" = yes; then
-          case $host_os in aix4.[[012]]|aix4.[[012]].*)
-          # We only want to do this on AIX 4.2 and lower, the check
-          # below for broken collect2 doesn't work under 4.3+
-         collect2name=`${CC} -print-prog-name=collect2`
-         if test -f "$collect2name" &&
-            strings "$collect2name" | $GREP resolve_lib_name >/dev/null
-         then
-           # We have reworked collect2
-           :
-         else
-           # We have old collect2
-           _LT_TAGVAR(hardcode_direct, $1)=unsupported
-           # It fails to find uninstalled libraries when the uninstalled
-           # path is not listed in the libpath.  Setting hardcode_minus_L
-           # to unsupported forces relinking
-           _LT_TAGVAR(hardcode_minus_L, $1)=yes
-           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
-           _LT_TAGVAR(hardcode_libdir_separator, $1)=
-         fi
-          esac
-          shared_flag='-shared'
-         if test "$aix_use_runtimelinking" = yes; then
-           shared_flag="$shared_flag "'${wl}-G'
-         fi
-        else
-          # not using gcc
-          if test "$host_cpu" = ia64; then
-         # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
-         # chokes on -Wl,-G. The following line is correct:
-         shared_flag='-G'
-          else
-           if test "$aix_use_runtimelinking" = yes; then
-             shared_flag='${wl}-G'
-           else
-             shared_flag='${wl}-bM:SRE'
-           fi
-          fi
-        fi
-
-        _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall'
-        # It seems that -bexpall does not export symbols beginning with
-        # underscore (_), so it is better to generate a list of symbols to
-       # export.
-        _LT_TAGVAR(always_export_symbols, $1)=yes
-        if test "$aix_use_runtimelinking" = yes; then
-          # Warning - without using the other runtime loading flags (-brtl),
-          # -berok will link without error, but may produce a broken library.
-          _LT_TAGVAR(allow_undefined_flag, $1)='-berok'
-          # Determine the default libpath from the value encoded in an empty
-          # executable.
-          _LT_SYS_MODULE_PATH_AIX([$1])
-          _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
-
-          _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
-        else
-          if test "$host_cpu" = ia64; then
-           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'
-           _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
-           _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols"
-          else
-           # Determine the default libpath from the value encoded in an
-           # empty executable.
-           _LT_SYS_MODULE_PATH_AIX([$1])
-           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
-           # Warning - without using the other run time loading flags,
-           # -berok will link without error, but may produce a broken library.
-           _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'
-           _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'
-           if test "$with_gnu_ld" = yes; then
-             # We only use this code for GNU lds that support --whole-archive.
-             _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
-           else
-             # Exported symbols can be pulled into shared objects from archives
-             _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience'
-           fi
-           _LT_TAGVAR(archive_cmds_need_lc, $1)=yes
-           # This is similar to how AIX traditionally builds its shared
-           # libraries.
-           _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
-          fi
-        fi
-        ;;
-
-      beos*)
-       if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
-         _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
-         # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
-         # support --undefined.  This deserves some investigation.  FIXME
-         _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
-       else
-         _LT_TAGVAR(ld_shlibs, $1)=no
-       fi
-       ;;
-
-      chorus*)
-        case $cc_basename in
-          *)
-         # FIXME: insert proper C++ library support
-         _LT_TAGVAR(ld_shlibs, $1)=no
-         ;;
-        esac
-        ;;
-
-      cygwin* | mingw* | pw32* | cegcc*)
-       case $GXX,$cc_basename in
-       ,cl* | no,cl*)
-         # Native MSVC
-         # hardcode_libdir_flag_spec is actually meaningless, as there is
-         # no search path for DLLs.
-         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' '
-         _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
-         _LT_TAGVAR(always_export_symbols, $1)=yes
-         _LT_TAGVAR(file_list_spec, $1)='@'
-         # Tell ltmain to make .lib files, not .a files.
-         libext=lib
-         # Tell ltmain to make .dll files, not .so files.
-         shrext_cmds=".dll"
-         # FIXME: Setting linknames here is a bad hack.
-         _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames='
-         _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
-             $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp;
-           else
-             $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp;
-           fi~
-           $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~
-           linknames='
-         # The linker will not automatically build a static lib if we build a DLL.
-         # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true'
-         _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
-         # Don't use ranlib
-         _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib'
-         _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~
-           lt_tool_outputfile="@TOOL_OUTPUT@"~
-           case $lt_outputfile in
-             *.exe|*.EXE) ;;
-             *)
-               lt_outputfile="$lt_outputfile.exe"
-               lt_tool_outputfile="$lt_tool_outputfile.exe"
-               ;;
-           esac~
-           func_to_tool_file "$lt_outputfile"~
-           if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then
-             $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1;
-             $RM "$lt_outputfile.manifest";
-           fi'
-         ;;
-       *)
-         # g++
-         # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
-         # as there is no search path for DLLs.
-         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
-         _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols'
-         _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
-         _LT_TAGVAR(always_export_symbols, $1)=no
-         _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
-
-         if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then
-           _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
-           # If the export-symbols file already is a .def file (1st line
-           # is EXPORTS), use it as is; otherwise, prepend...
-           _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
-             cp $export_symbols $output_objdir/$soname.def;
-           else
-             echo EXPORTS > $output_objdir/$soname.def;
-             cat $export_symbols >> $output_objdir/$soname.def;
-           fi~
-           $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
-         else
-           _LT_TAGVAR(ld_shlibs, $1)=no
-         fi
-         ;;
-       esac
-       ;;
-      darwin* | rhapsody*)
-        _LT_DARWIN_LINKER_FEATURES($1)
-       ;;
-
-      dgux*)
-        case $cc_basename in
-          ec++*)
-           # FIXME: insert proper C++ library support
-           _LT_TAGVAR(ld_shlibs, $1)=no
-           ;;
-          ghcx*)
-           # Green Hills C++ Compiler
-           # FIXME: insert proper C++ library support
-           _LT_TAGVAR(ld_shlibs, $1)=no
-           ;;
-          *)
-           # FIXME: insert proper C++ library support
-           _LT_TAGVAR(ld_shlibs, $1)=no
-           ;;
-        esac
-        ;;
-
-      freebsd2.*)
-        # C++ shared libraries reported to be fairly broken before
-       # switch to ELF
-        _LT_TAGVAR(ld_shlibs, $1)=no
-        ;;
-
-      freebsd-elf*)
-        _LT_TAGVAR(archive_cmds_need_lc, $1)=no
-        ;;
-
-      freebsd* | dragonfly*)
-        # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF
-        # conventions
-        _LT_TAGVAR(ld_shlibs, $1)=yes
-        ;;
-
-      haiku*)
-        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
-        _LT_TAGVAR(link_all_deplibs, $1)=yes
-        ;;
-
-      hpux9*)
-        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
-        _LT_TAGVAR(hardcode_libdir_separator, $1)=:
-        _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
-        _LT_TAGVAR(hardcode_direct, $1)=yes
-        _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
-                                            # but as the default
-                                            # location of the library.
-
-        case $cc_basename in
-          CC*)
-            # FIXME: insert proper C++ library support
-            _LT_TAGVAR(ld_shlibs, $1)=no
-            ;;
-          aCC*)
-            _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
-            # Commands to make compiler produce verbose output that lists
-            # what "hidden" libraries, object files and flags are used when
-            # linking a shared library.
-            #
-            # There doesn't appear to be a way to prevent this compiler from
-            # explicitly linking system object files so we need to strip them
-            # from the output so that they don't get included in the library
-            # dependencies.
-            output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
-            ;;
-          *)
-            if test "$GXX" = yes; then
-              _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
-            else
-              # FIXME: insert proper C++ library support
-              _LT_TAGVAR(ld_shlibs, $1)=no
-            fi
-            ;;
-        esac
-        ;;
-
-      hpux10*|hpux11*)
-        if test $with_gnu_ld = no; then
-         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
-         _LT_TAGVAR(hardcode_libdir_separator, $1)=:
-
-          case $host_cpu in
-            hppa*64*|ia64*)
-              ;;
-            *)
-             _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
-              ;;
-          esac
-        fi
-        case $host_cpu in
-          hppa*64*|ia64*)
-            _LT_TAGVAR(hardcode_direct, $1)=no
-            _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
-            ;;
-          *)
-            _LT_TAGVAR(hardcode_direct, $1)=yes
-            _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
-            _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
-                                                # but as the default
-                                                # location of the library.
-            ;;
-        esac
-
-        case $cc_basename in
-          CC*)
-           # FIXME: insert proper C++ library support
-           _LT_TAGVAR(ld_shlibs, $1)=no
-           ;;
-          aCC*)
-           case $host_cpu in
-             hppa*64*)
-               _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
-               ;;
-             ia64*)
-               _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
-               ;;
-             *)
-               _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
-               ;;
-           esac
-           # Commands to make compiler produce verbose output that lists
-           # what "hidden" libraries, object files and flags are used when
-           # linking a shared library.
-           #
-           # There doesn't appear to be a way to prevent this compiler from
-           # explicitly linking system object files so we need to strip them
-           # from the output so that they don't get included in the library
-           # dependencies.
-           output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
-           ;;
-          *)
-           if test "$GXX" = yes; then
-             if test $with_gnu_ld = no; then
-               case $host_cpu in
-                 hppa*64*)
-                   _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
-                   ;;
-                 ia64*)
-                   _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
-                   ;;
-                 *)
-                   _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
-                   ;;
-               esac
-             fi
-           else
-             # FIXME: insert proper C++ library support
-             _LT_TAGVAR(ld_shlibs, $1)=no
-           fi
-           ;;
-        esac
-        ;;
-
-      interix[[3-9]]*)
-       _LT_TAGVAR(hardcode_direct, $1)=no
-       _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
-       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
-       _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
-       # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.
-       # Instead, shared libraries are loaded at an image base (0x10000000 by
-       # default) and relocated if they conflict, which is a slow very memory
-       # consuming and fragmenting process.  To avoid this, we pick a random,
-       # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
-       # time.  Moving up from 0x10000000 also allows more sbrk(2) space.
-       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
-       _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
-       ;;
-      irix5* | irix6*)
-        case $cc_basename in
-          CC*)
-           # SGI C++
-           _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
-
-           # Archives containing C++ object files must be created using
-           # "CC -ar", where "CC" is the IRIX C++ compiler.  This is
-           # necessary to make sure instantiated templates are included
-           # in the archive.
-           _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs'
-           ;;
-          *)
-           if test "$GXX" = yes; then
-             if test "$with_gnu_ld" = no; then
-               _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
-             else
-               _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib'
-             fi
-           fi
-           _LT_TAGVAR(link_all_deplibs, $1)=yes
-           ;;
-        esac
-        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
-        _LT_TAGVAR(hardcode_libdir_separator, $1)=:
-        _LT_TAGVAR(inherit_rpath, $1)=yes
-        ;;
-
-      linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
-        case $cc_basename in
-          KCC*)
-           # Kuck and Associates, Inc. (KAI) C++ Compiler
-
-           # KCC will only create a shared library if the output file
-           # ends with ".so" (or ".sl" for HP-UX), so rename the library
-           # to its proper name (with version) after linking.
-           _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
-           _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib'
-           # Commands to make compiler produce verbose output that lists
-           # what "hidden" libraries, object files and flags are used when
-           # linking a shared library.
-           #
-           # There doesn't appear to be a way to prevent this compiler from
-           # explicitly linking system object files so we need to strip them
-           # from the output so that they don't get included in the library
-           # dependencies.
-           output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
-
-           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
-           _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
-
-           # Archives containing C++ object files must be created using
-           # "CC -Bstatic", where "CC" is the KAI C++ compiler.
-           _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs'
-           ;;
-         icpc* | ecpc* )
-           # Intel C++
-           with_gnu_ld=yes
-           # version 8.0 and above of icpc choke on multiply defined symbols
-           # if we add $predep_objects and $postdep_objects, however 7.1 and
-           # earlier do not add the objects themselves.
-           case `$CC -V 2>&1` in
-             *"Version 7."*)
-               _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
-               _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
-               ;;
-             *)  # Version 8.0 or newer
-               tmp_idyn=
-               case $host_cpu in
-                 ia64*) tmp_idyn=' -i_dynamic';;
-               esac
-               _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
-               _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
-               ;;
-           esac
-           _LT_TAGVAR(archive_cmds_need_lc, $1)=no
-           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
-           _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
-           _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
-           ;;
-          pgCC* | pgcpp*)
-            # Portland Group C++ compiler
-           case `$CC -V` in
-           *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*)
-             _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~
-               rm -rf $tpldir~
-               $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~
-               compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"'
-             _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~
-               rm -rf $tpldir~
-               $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~
-               $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~
-               $RANLIB $oldlib'
-             _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~
-               rm -rf $tpldir~
-               $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~
-               $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'
-             _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~
-               rm -rf $tpldir~
-               $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~
-               $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib'
-             ;;
-           *) # Version 6 and above use weak symbols
-             _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'
-             _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib'
-             ;;
-           esac
-
-           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir'
-           _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
-           _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
-            ;;
-         cxx*)
-           # Compaq C++
-           _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
-           _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname  -o $lib ${wl}-retain-symbols-file $wl$export_symbols'
-
-           runpath_var=LD_RUN_PATH
-           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
-           _LT_TAGVAR(hardcode_libdir_separator, $1)=:
-
-           # Commands to make compiler produce verbose output that lists
-           # what "hidden" libraries, object files and flags are used when
-           # linking a shared library.
-           #
-           # There doesn't appear to be a way to prevent this compiler from
-           # explicitly linking system object files so we need to strip them
-           # from the output so that they don't get included in the library
-           # dependencies.
-           output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed'
-           ;;
-         xl* | mpixl* | bgxl*)
-           # IBM XL 8.0 on PPC, with GNU ld
-           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
-           _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
-           _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
-           if test "x$supports_anon_versioning" = xyes; then
-             _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~
-               cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
-               echo "local: *; };" >> $output_objdir/$libname.ver~
-               $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
-           fi
-           ;;
-         *)
-           case `$CC -V 2>&1 | sed 5q` in
-           *Sun\ C*)
-             # Sun C++ 5.9
-             _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs'
-             _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
-             _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols'
-             _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
-             _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
-             _LT_TAGVAR(compiler_needs_object, $1)=yes
-
-             # Not sure whether something based on
-             # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1
-             # would be better.
-             output_verbose_link_cmd='func_echo_all'
-
-             # Archives containing C++ object files must be created using
-             # "CC -xar", where "CC" is the Sun C++ compiler.  This is
-             # necessary to make sure instantiated templates are included
-             # in the archive.
-             _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs'
-             ;;
-           esac
-           ;;
-       esac
-       ;;
-
-      lynxos*)
-        # FIXME: insert proper C++ library support
-       _LT_TAGVAR(ld_shlibs, $1)=no
-       ;;
-
-      m88k*)
-        # FIXME: insert proper C++ library support
-        _LT_TAGVAR(ld_shlibs, $1)=no
-       ;;
-
-      mvs*)
-        case $cc_basename in
-          cxx*)
-           # FIXME: insert proper C++ library support
-           _LT_TAGVAR(ld_shlibs, $1)=no
-           ;;
-         *)
-           # FIXME: insert proper C++ library support
-           _LT_TAGVAR(ld_shlibs, $1)=no
-           ;;
-       esac
-       ;;
-
-      netbsd*)
-        if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
-         _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable  -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags'
-         wlarc=
-         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
-         _LT_TAGVAR(hardcode_direct, $1)=yes
-         _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
-       fi
-       # Workaround some broken pre-1.5 toolchains
-       output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"'
-       ;;
-
-      *nto* | *qnx*)
-        _LT_TAGVAR(ld_shlibs, $1)=yes
-       ;;
-
-      openbsd2*)
-        # C++ shared libraries are fairly broken
-       _LT_TAGVAR(ld_shlibs, $1)=no
-       ;;
-
-      openbsd*)
-       if test -f /usr/libexec/ld.so; then
-         _LT_TAGVAR(hardcode_direct, $1)=yes
-         _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
-         _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
-         _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
-         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
-         if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
-           _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib'
-           _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
-           _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
-         fi
-         output_verbose_link_cmd=func_echo_all
-       else
-         _LT_TAGVAR(ld_shlibs, $1)=no
-       fi
-       ;;
-
-      osf3* | osf4* | osf5*)
-        case $cc_basename in
-          KCC*)
-           # Kuck and Associates, Inc. (KAI) C++ Compiler
-
-           # KCC will only create a shared library if the output file
-           # ends with ".so" (or ".sl" for HP-UX), so rename the library
-           # to its proper name (with version) after linking.
-           _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
-
-           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
-           _LT_TAGVAR(hardcode_libdir_separator, $1)=:
-
-           # Archives containing C++ object files must be created using
-           # the KAI C++ compiler.
-           case $host in
-             osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;;
-             *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;;
-           esac
-           ;;
-          RCC*)
-           # Rational C++ 2.4.1
-           # FIXME: insert proper C++ library support
-           _LT_TAGVAR(ld_shlibs, $1)=no
-           ;;
-          cxx*)
-           case $host in
-             osf3*)
-               _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
-               _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
-               _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
-               ;;
-             *)
-               _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
-               _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
-               _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~
-                 echo "-hidden">> $lib.exp~
-                 $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp  `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~
-                 $RM $lib.exp'
-               _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
-               ;;
-           esac
-
-           _LT_TAGVAR(hardcode_libdir_separator, $1)=:
-
-           # Commands to make compiler produce verbose output that lists
-           # what "hidden" libraries, object files and flags are used when
-           # linking a shared library.
-           #
-           # There doesn't appear to be a way to prevent this compiler from
-           # explicitly linking system object files so we need to strip them
-           # from the output so that they don't get included in the library
-           # dependencies.
-           output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
-           ;;
-         *)
-           if test "$GXX" = yes && test "$with_gnu_ld" = no; then
-             _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
-             case $host in
-               osf3*)
-                 _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
-                 ;;
-               *)
-                 _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
-                 ;;
-             esac
-
-             _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
-             _LT_TAGVAR(hardcode_libdir_separator, $1)=:
-
-             # Commands to make compiler produce verbose output that lists
-             # what "hidden" libraries, object files and flags are used when
-             # linking a shared library.
-             output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
-
-           else
-             # FIXME: insert proper C++ library support
-             _LT_TAGVAR(ld_shlibs, $1)=no
-           fi
-           ;;
-        esac
-        ;;
-
-      psos*)
-        # FIXME: insert proper C++ library support
-        _LT_TAGVAR(ld_shlibs, $1)=no
-        ;;
-
-      sunos4*)
-        case $cc_basename in
-          CC*)
-           # Sun C++ 4.x
-           # FIXME: insert proper C++ library support
-           _LT_TAGVAR(ld_shlibs, $1)=no
-           ;;
-          lcc*)
-           # Lucid
-           # FIXME: insert proper C++ library support
-           _LT_TAGVAR(ld_shlibs, $1)=no
-           ;;
-          *)
-           # FIXME: insert proper C++ library support
-           _LT_TAGVAR(ld_shlibs, $1)=no
-           ;;
-        esac
-        ;;
-
-      solaris*)
-        case $cc_basename in
-          CC* | sunCC*)
-           # Sun C++ 4.2, 5.x and Centerline C++
-            _LT_TAGVAR(archive_cmds_need_lc,$1)=yes
-           _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs'
-           _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag}  -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
-           _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
-             $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'
-
-           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
-           _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
-           case $host_os in
-             solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
-             *)
-               # The compiler driver will combine and reorder linker options,
-               # but understands `-z linker_flag'.
-               # Supported since Solaris 2.6 (maybe 2.5.1?)
-               _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract'
-               ;;
-           esac
-           _LT_TAGVAR(link_all_deplibs, $1)=yes
-
-           output_verbose_link_cmd='func_echo_all'
-
-           # Archives containing C++ object files must be created using
-           # "CC -xar", where "CC" is the Sun C++ compiler.  This is
-           # necessary to make sure instantiated templates are included
-           # in the archive.
-           _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs'
-           ;;
-          gcx*)
-           # Green Hills C++ Compiler
-           _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
-
-           # The C++ compiler must be used to create the archive.
-           _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs'
-           ;;
-          *)
-           # GNU C++ compiler with Solaris linker
-           if test "$GXX" = yes && test "$with_gnu_ld" = no; then
-             _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs'
-             if $CC --version | $GREP -v '^2\.7' > /dev/null; then
-               _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
-               _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
-                 $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'
-
-               # Commands to make compiler produce verbose output that lists
-               # what "hidden" libraries, object files and flags are used when
-               # linking a shared library.
-               output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
-             else
-               # g++ 2.7 appears to require `-G' NOT `-shared' on this
-               # platform.
-               _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
-               _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
-                 $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'
-
-               # Commands to make compiler produce verbose output that lists
-               # what "hidden" libraries, object files and flags are used when
-               # linking a shared library.
-               output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
-             fi
-
-             _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir'
-             case $host_os in
-               solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
-               *)
-                 _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'
-                 ;;
-             esac
-           fi
-           ;;
-        esac
-        ;;
-
-    sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*)
-      _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
-      _LT_TAGVAR(archive_cmds_need_lc, $1)=no
-      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
-      runpath_var='LD_RUN_PATH'
-
-      case $cc_basename in
-        CC*)
-         _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
-         _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
-         ;;
-       *)
-         _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
-         _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
-         ;;
-      esac
-      ;;
-
-      sysv5* | sco3.2v5* | sco5v6*)
-       # Note: We can NOT use -z defs as we might desire, because we do not
-       # link with -lc, and that would cause any symbols used from libc to
-       # always be unresolved, which means just about no library would
-       # ever link correctly.  If we're not using GNU ld we use -z text
-       # though, which does catch some bad symbols but isn't as heavy-handed
-       # as -z defs.
-       _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
-       _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs'
-       _LT_TAGVAR(archive_cmds_need_lc, $1)=no
-       _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
-       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir'
-       _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
-       _LT_TAGVAR(link_all_deplibs, $1)=yes
-       _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport'
-       runpath_var='LD_RUN_PATH'
-
-       case $cc_basename in
-          CC*)
-           _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
-           _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
-           _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~
-             '"$_LT_TAGVAR(old_archive_cmds, $1)"
-           _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~
-             '"$_LT_TAGVAR(reload_cmds, $1)"
-           ;;
-         *)
-           _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
-           _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
-           ;;
-       esac
-      ;;
-
-      tandem*)
-        case $cc_basename in
-          NCC*)
-           # NonStop-UX NCC 3.20
-           # FIXME: insert proper C++ library support
-           _LT_TAGVAR(ld_shlibs, $1)=no
-           ;;
-          *)
-           # FIXME: insert proper C++ library support
-           _LT_TAGVAR(ld_shlibs, $1)=no
-           ;;
-        esac
-        ;;
-
-      vxworks*)
-        # FIXME: insert proper C++ library support
-        _LT_TAGVAR(ld_shlibs, $1)=no
-        ;;
-
-      *)
-        # FIXME: insert proper C++ library support
-        _LT_TAGVAR(ld_shlibs, $1)=no
-        ;;
-    esac
-
-    AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)])
-    test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no
-
-    _LT_TAGVAR(GCC, $1)="$GXX"
-    _LT_TAGVAR(LD, $1)="$LD"
-
-    ## CAVEAT EMPTOR:
-    ## There is no encapsulation within the following macros, do not change
-    ## the running order or otherwise move them around unless you know exactly
-    ## what you are doing...
-    _LT_SYS_HIDDEN_LIBDEPS($1)
-    _LT_COMPILER_PIC($1)
-    _LT_COMPILER_C_O($1)
-    _LT_COMPILER_FILE_LOCKS($1)
-    _LT_LINKER_SHLIBS($1)
-    _LT_SYS_DYNAMIC_LINKER($1)
-    _LT_LINKER_HARDCODE_LIBPATH($1)
-
-    _LT_CONFIG($1)
-  fi # test -n "$compiler"
-
-  CC=$lt_save_CC
-  CFLAGS=$lt_save_CFLAGS
-  LDCXX=$LD
-  LD=$lt_save_LD
-  GCC=$lt_save_GCC
-  with_gnu_ld=$lt_save_with_gnu_ld
-  lt_cv_path_LDCXX=$lt_cv_path_LD
-  lt_cv_path_LD=$lt_save_path_LD
-  lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld
-  lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld
-fi # test "$_lt_caught_CXX_error" != yes
-
-AC_LANG_POP
-])# _LT_LANG_CXX_CONFIG
-
-
-# _LT_FUNC_STRIPNAME_CNF
-# ----------------------
-# func_stripname_cnf prefix suffix name
-# strip PREFIX and SUFFIX off of NAME.
-# PREFIX and SUFFIX must not contain globbing or regex special
-# characters, hashes, percent signs, but SUFFIX may contain a leading
-# dot (in which case that matches only a dot).
-#
-# This function is identical to the (non-XSI) version of func_stripname,
-# except this one can be used by m4 code that may be executed by configure,
-# rather than the libtool script.
-m4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl
-AC_REQUIRE([_LT_DECL_SED])
-AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])
-func_stripname_cnf ()
-{
-  case ${2} in
-  .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;;
-  *)  func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;;
-  esac
-} # func_stripname_cnf
-])# _LT_FUNC_STRIPNAME_CNF
-
-# _LT_SYS_HIDDEN_LIBDEPS([TAGNAME])
-# ---------------------------------
-# Figure out "hidden" library dependencies from verbose
-# compiler output when linking a shared library.
-# Parse the compiler output and extract the necessary
-# objects, libraries and library flags.
-m4_defun([_LT_SYS_HIDDEN_LIBDEPS],
-[m4_require([_LT_FILEUTILS_DEFAULTS])dnl
-AC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl
-# Dependencies to place before and after the object being linked:
-_LT_TAGVAR(predep_objects, $1)=
-_LT_TAGVAR(postdep_objects, $1)=
-_LT_TAGVAR(predeps, $1)=
-_LT_TAGVAR(postdeps, $1)=
-_LT_TAGVAR(compiler_lib_search_path, $1)=
-
-dnl we can't use the lt_simple_compile_test_code here,
-dnl because it contains code intended for an executable,
-dnl not a library.  It's possible we should let each
-dnl tag define a new lt_????_link_test_code variable,
-dnl but it's only used here...
-m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF
-int a;
-void foo (void) { a = 0; }
-_LT_EOF
-], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF
-class Foo
-{
-public:
-  Foo (void) { a = 0; }
-private:
-  int a;
-};
-_LT_EOF
-], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF
-      subroutine foo
-      implicit none
-      integer*4 a
-      a=0
-      return
-      end
-_LT_EOF
-], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF
-      subroutine foo
-      implicit none
-      integer a
-      a=0
-      return
-      end
-_LT_EOF
-], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF
-public class foo {
-  private int a;
-  public void bar (void) {
-    a = 0;
-  }
-};
-_LT_EOF
-], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF
-package foo
-func foo() {
-}
-_LT_EOF
-])
-
-_lt_libdeps_save_CFLAGS=$CFLAGS
-case "$CC $CFLAGS " in #(
-*\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;;
-*\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;;
-*\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;;
-esac
-
-dnl Parse the compiler output and extract the necessary
-dnl objects, libraries and library flags.
-if AC_TRY_EVAL(ac_compile); then
-  # Parse the compiler output and extract the necessary
-  # objects, libraries and library flags.
-
-  # Sentinel used to keep track of whether or not we are before
-  # the conftest object file.
-  pre_test_object_deps_done=no
-
-  for p in `eval "$output_verbose_link_cmd"`; do
-    case ${prev}${p} in
-
-    -L* | -R* | -l*)
-       # Some compilers place space between "-{L,R}" and the path.
-       # Remove the space.
-       if test $p = "-L" ||
-          test $p = "-R"; then
-        prev=$p
-        continue
-       fi
-
-       # Expand the sysroot to ease extracting the directories later.
-       if test -z "$prev"; then
-         case $p in
-         -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;;
-         -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;;
-         -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;;
-         esac
-       fi
-       case $p in
-       =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;;
-       esac
-       if test "$pre_test_object_deps_done" = no; then
-        case ${prev} in
-        -L | -R)
-          # Internal compiler library paths should come after those
-          # provided the user.  The postdeps already come after the
-          # user supplied libs so there is no need to process them.
-          if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then
-            _LT_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}"
-          else
-            _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}"
-          fi
-          ;;
-        # The "-l" case would never come before the object being
-        # linked, so don't bother handling this case.
-        esac
-       else
-        if test -z "$_LT_TAGVAR(postdeps, $1)"; then
-          _LT_TAGVAR(postdeps, $1)="${prev}${p}"
-        else
-          _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}"
-        fi
-       fi
-       prev=
-       ;;
-
-    *.lto.$objext) ;; # Ignore GCC LTO objects
-    *.$objext)
-       # This assumes that the test object file only shows up
-       # once in the compiler output.
-       if test "$p" = "conftest.$objext"; then
-        pre_test_object_deps_done=yes
-        continue
-       fi
-
-       if test "$pre_test_object_deps_done" = no; then
-        if test -z "$_LT_TAGVAR(predep_objects, $1)"; then
-          _LT_TAGVAR(predep_objects, $1)="$p"
-        else
-          _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p"
-        fi
-       else
-        if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then
-          _LT_TAGVAR(postdep_objects, $1)="$p"
-        else
-          _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p"
-        fi
-       fi
-       ;;
-
-    *) ;; # Ignore the rest.
-
-    esac
-  done
-
-  # Clean up.
-  rm -f a.out a.exe
-else
-  echo "libtool.m4: error: problem compiling $1 test program"
-fi
-
-$RM -f confest.$objext
-CFLAGS=$_lt_libdeps_save_CFLAGS
-
-# PORTME: override above test on systems where it is broken
-m4_if([$1], [CXX],
-[case $host_os in
-interix[[3-9]]*)
-  # Interix 3.5 installs completely hosed .la files for C++, so rather than
-  # hack all around it, let's just trust "g++" to DTRT.
-  _LT_TAGVAR(predep_objects,$1)=
-  _LT_TAGVAR(postdep_objects,$1)=
-  _LT_TAGVAR(postdeps,$1)=
-  ;;
-
-linux*)
-  case `$CC -V 2>&1 | sed 5q` in
-  *Sun\ C*)
-    # Sun C++ 5.9
-
-    # The more standards-conforming stlport4 library is
-    # incompatible with the Cstd library. Avoid specifying
-    # it if it's in CXXFLAGS. Ignore libCrun as
-    # -library=stlport4 depends on it.
-    case " $CXX $CXXFLAGS " in
-    *" -library=stlport4 "*)
-      solaris_use_stlport4=yes
-      ;;
-    esac
-
-    if test "$solaris_use_stlport4" != yes; then
-      _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun'
-    fi
-    ;;
-  esac
-  ;;
-
-solaris*)
-  case $cc_basename in
-  CC* | sunCC*)
-    # The more standards-conforming stlport4 library is
-    # incompatible with the Cstd library. Avoid specifying
-    # it if it's in CXXFLAGS. Ignore libCrun as
-    # -library=stlport4 depends on it.
-    case " $CXX $CXXFLAGS " in
-    *" -library=stlport4 "*)
-      solaris_use_stlport4=yes
-      ;;
-    esac
-
-    # Adding this requires a known-good setup of shared libraries for
-    # Sun compiler versions before 5.6, else PIC objects from an old
-    # archive will be linked into the output, leading to subtle bugs.
-    if test "$solaris_use_stlport4" != yes; then
-      _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun'
-    fi
-    ;;
-  esac
-  ;;
-esac
-])
-
-case " $_LT_TAGVAR(postdeps, $1) " in
-*" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;;
-esac
- _LT_TAGVAR(compiler_lib_search_dirs, $1)=
-if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then
- _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'`
-fi
-_LT_TAGDECL([], [compiler_lib_search_dirs], [1],
-    [The directories searched by this compiler when creating a shared library])
-_LT_TAGDECL([], [predep_objects], [1],
-    [Dependencies to place before and after the objects being linked to
-    create a shared library])
-_LT_TAGDECL([], [postdep_objects], [1])
-_LT_TAGDECL([], [predeps], [1])
-_LT_TAGDECL([], [postdeps], [1])
-_LT_TAGDECL([], [compiler_lib_search_path], [1],
-    [The library search path used internally by the compiler when linking
-    a shared library])
-])# _LT_SYS_HIDDEN_LIBDEPS
-
-
-# _LT_LANG_F77_CONFIG([TAG])
-# --------------------------
-# Ensure that the configuration variables for a Fortran 77 compiler are
-# suitably defined.  These variables are subsequently used by _LT_CONFIG
-# to write the compiler configuration to `libtool'.
-m4_defun([_LT_LANG_F77_CONFIG],
-[AC_LANG_PUSH(Fortran 77)
-if test -z "$F77" || test "X$F77" = "Xno"; then
-  _lt_disable_F77=yes
-fi
-
-_LT_TAGVAR(archive_cmds_need_lc, $1)=no
-_LT_TAGVAR(allow_undefined_flag, $1)=
-_LT_TAGVAR(always_export_symbols, $1)=no
-_LT_TAGVAR(archive_expsym_cmds, $1)=
-_LT_TAGVAR(export_dynamic_flag_spec, $1)=
-_LT_TAGVAR(hardcode_direct, $1)=no
-_LT_TAGVAR(hardcode_direct_absolute, $1)=no
-_LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
-_LT_TAGVAR(hardcode_libdir_separator, $1)=
-_LT_TAGVAR(hardcode_minus_L, $1)=no
-_LT_TAGVAR(hardcode_automatic, $1)=no
-_LT_TAGVAR(inherit_rpath, $1)=no
-_LT_TAGVAR(module_cmds, $1)=
-_LT_TAGVAR(module_expsym_cmds, $1)=
-_LT_TAGVAR(link_all_deplibs, $1)=unknown
-_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
-_LT_TAGVAR(reload_flag, $1)=$reload_flag
-_LT_TAGVAR(reload_cmds, $1)=$reload_cmds
-_LT_TAGVAR(no_undefined_flag, $1)=
-_LT_TAGVAR(whole_archive_flag_spec, $1)=
-_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no
-
-# Source file extension for f77 test sources.
-ac_ext=f
-
-# Object file extension for compiled f77 test sources.
-objext=o
-_LT_TAGVAR(objext, $1)=$objext
-
-# No sense in running all these tests if we already determined that
-# the F77 compiler isn't working.  Some variables (like enable_shared)
-# are currently assumed to apply to all compilers on this platform,
-# and will be corrupted by setting them based on a non-working compiler.
-if test "$_lt_disable_F77" != yes; then
-  # Code to be used in simple compile tests
-  lt_simple_compile_test_code="\
-      subroutine t
-      return
-      end
-"
-
-  # Code to be used in simple link tests
-  lt_simple_link_test_code="\
-      program t
-      end
-"
-
-  # ltmain only uses $CC for tagged configurations so make sure $CC is set.
-  _LT_TAG_COMPILER
-
-  # save warnings/boilerplate of simple test code
-  _LT_COMPILER_BOILERPLATE
-  _LT_LINKER_BOILERPLATE
-
-  # Allow CC to be a program name with arguments.
-  lt_save_CC="$CC"
-  lt_save_GCC=$GCC
-  lt_save_CFLAGS=$CFLAGS
-  CC=${F77-"f77"}
-  CFLAGS=$FFLAGS
-  compiler=$CC
-  _LT_TAGVAR(compiler, $1)=$CC
-  _LT_CC_BASENAME([$compiler])
-  GCC=$G77
-  if test -n "$compiler"; then
-    AC_MSG_CHECKING([if libtool supports shared libraries])
-    AC_MSG_RESULT([$can_build_shared])
-
-    AC_MSG_CHECKING([whether to build shared libraries])
-    test "$can_build_shared" = "no" && enable_shared=no
-
-    # On AIX, shared libraries and static libraries use the same namespace, and
-    # are all built from PIC.
-    case $host_os in
-      aix3*)
-        test "$enable_shared" = yes && enable_static=no
-        if test -n "$RANLIB"; then
-          archive_cmds="$archive_cmds~\$RANLIB \$lib"
-          postinstall_cmds='$RANLIB $lib'
-        fi
-        ;;
-      aix[[4-9]]*)
-       if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
-         test "$enable_shared" = yes && enable_static=no
-       fi
-        ;;
-    esac
-    AC_MSG_RESULT([$enable_shared])
-
-    AC_MSG_CHECKING([whether to build static libraries])
-    # Make sure either enable_shared or enable_static is yes.
-    test "$enable_shared" = yes || enable_static=yes
-    AC_MSG_RESULT([$enable_static])
-
-    _LT_TAGVAR(GCC, $1)="$G77"
-    _LT_TAGVAR(LD, $1)="$LD"
-
-    ## CAVEAT EMPTOR:
-    ## There is no encapsulation within the following macros, do not change
-    ## the running order or otherwise move them around unless you know exactly
-    ## what you are doing...
-    _LT_COMPILER_PIC($1)
-    _LT_COMPILER_C_O($1)
-    _LT_COMPILER_FILE_LOCKS($1)
-    _LT_LINKER_SHLIBS($1)
-    _LT_SYS_DYNAMIC_LINKER($1)
-    _LT_LINKER_HARDCODE_LIBPATH($1)
-
-    _LT_CONFIG($1)
-  fi # test -n "$compiler"
-
-  GCC=$lt_save_GCC
-  CC="$lt_save_CC"
-  CFLAGS="$lt_save_CFLAGS"
-fi # test "$_lt_disable_F77" != yes
-
-AC_LANG_POP
-])# _LT_LANG_F77_CONFIG
-
-
-# _LT_LANG_FC_CONFIG([TAG])
-# -------------------------
-# Ensure that the configuration variables for a Fortran compiler are
-# suitably defined.  These variables are subsequently used by _LT_CONFIG
-# to write the compiler configuration to `libtool'.
-m4_defun([_LT_LANG_FC_CONFIG],
-[AC_LANG_PUSH(Fortran)
-
-if test -z "$FC" || test "X$FC" = "Xno"; then
-  _lt_disable_FC=yes
-fi
-
-_LT_TAGVAR(archive_cmds_need_lc, $1)=no
-_LT_TAGVAR(allow_undefined_flag, $1)=
-_LT_TAGVAR(always_export_symbols, $1)=no
-_LT_TAGVAR(archive_expsym_cmds, $1)=
-_LT_TAGVAR(export_dynamic_flag_spec, $1)=
-_LT_TAGVAR(hardcode_direct, $1)=no
-_LT_TAGVAR(hardcode_direct_absolute, $1)=no
-_LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
-_LT_TAGVAR(hardcode_libdir_separator, $1)=
-_LT_TAGVAR(hardcode_minus_L, $1)=no
-_LT_TAGVAR(hardcode_automatic, $1)=no
-_LT_TAGVAR(inherit_rpath, $1)=no
-_LT_TAGVAR(module_cmds, $1)=
-_LT_TAGVAR(module_expsym_cmds, $1)=
-_LT_TAGVAR(link_all_deplibs, $1)=unknown
-_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
-_LT_TAGVAR(reload_flag, $1)=$reload_flag
-_LT_TAGVAR(reload_cmds, $1)=$reload_cmds
-_LT_TAGVAR(no_undefined_flag, $1)=
-_LT_TAGVAR(whole_archive_flag_spec, $1)=
-_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no
-
-# Source file extension for fc test sources.
-ac_ext=${ac_fc_srcext-f}
-
-# Object file extension for compiled fc test sources.
-objext=o
-_LT_TAGVAR(objext, $1)=$objext
-
-# No sense in running all these tests if we already determined that
-# the FC compiler isn't working.  Some variables (like enable_shared)
-# are currently assumed to apply to all compilers on this platform,
-# and will be corrupted by setting them based on a non-working compiler.
-if test "$_lt_disable_FC" != yes; then
-  # Code to be used in simple compile tests
-  lt_simple_compile_test_code="\
-      subroutine t
-      return
-      end
-"
-
-  # Code to be used in simple link tests
-  lt_simple_link_test_code="\
-      program t
-      end
-"
-
-  # ltmain only uses $CC for tagged configurations so make sure $CC is set.
-  _LT_TAG_COMPILER
-
-  # save warnings/boilerplate of simple test code
-  _LT_COMPILER_BOILERPLATE
-  _LT_LINKER_BOILERPLATE
-
-  # Allow CC to be a program name with arguments.
-  lt_save_CC="$CC"
-  lt_save_GCC=$GCC
-  lt_save_CFLAGS=$CFLAGS
-  CC=${FC-"f95"}
-  CFLAGS=$FCFLAGS
-  compiler=$CC
-  GCC=$ac_cv_fc_compiler_gnu
-
-  _LT_TAGVAR(compiler, $1)=$CC
-  _LT_CC_BASENAME([$compiler])
-
-  if test -n "$compiler"; then
-    AC_MSG_CHECKING([if libtool supports shared libraries])
-    AC_MSG_RESULT([$can_build_shared])
-
-    AC_MSG_CHECKING([whether to build shared libraries])
-    test "$can_build_shared" = "no" && enable_shared=no
-
-    # On AIX, shared libraries and static libraries use the same namespace, and
-    # are all built from PIC.
-    case $host_os in
-      aix3*)
-        test "$enable_shared" = yes && enable_static=no
-        if test -n "$RANLIB"; then
-          archive_cmds="$archive_cmds~\$RANLIB \$lib"
-          postinstall_cmds='$RANLIB $lib'
-        fi
-        ;;
-      aix[[4-9]]*)
-       if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
-         test "$enable_shared" = yes && enable_static=no
-       fi
-        ;;
-    esac
-    AC_MSG_RESULT([$enable_shared])
-
-    AC_MSG_CHECKING([whether to build static libraries])
-    # Make sure either enable_shared or enable_static is yes.
-    test "$enable_shared" = yes || enable_static=yes
-    AC_MSG_RESULT([$enable_static])
-
-    _LT_TAGVAR(GCC, $1)="$ac_cv_fc_compiler_gnu"
-    _LT_TAGVAR(LD, $1)="$LD"
-
-    ## CAVEAT EMPTOR:
-    ## There is no encapsulation within the following macros, do not change
-    ## the running order or otherwise move them around unless you know exactly
-    ## what you are doing...
-    _LT_SYS_HIDDEN_LIBDEPS($1)
-    _LT_COMPILER_PIC($1)
-    _LT_COMPILER_C_O($1)
-    _LT_COMPILER_FILE_LOCKS($1)
-    _LT_LINKER_SHLIBS($1)
-    _LT_SYS_DYNAMIC_LINKER($1)
-    _LT_LINKER_HARDCODE_LIBPATH($1)
-
-    _LT_CONFIG($1)
-  fi # test -n "$compiler"
-
-  GCC=$lt_save_GCC
-  CC=$lt_save_CC
-  CFLAGS=$lt_save_CFLAGS
-fi # test "$_lt_disable_FC" != yes
-
-AC_LANG_POP
-])# _LT_LANG_FC_CONFIG
-
-
-# _LT_LANG_GCJ_CONFIG([TAG])
-# --------------------------
-# Ensure that the configuration variables for the GNU Java Compiler compiler
-# are suitably defined.  These variables are subsequently used by _LT_CONFIG
-# to write the compiler configuration to `libtool'.
-m4_defun([_LT_LANG_GCJ_CONFIG],
-[AC_REQUIRE([LT_PROG_GCJ])dnl
-AC_LANG_SAVE
-
-# Source file extension for Java test sources.
-ac_ext=java
-
-# Object file extension for compiled Java test sources.
-objext=o
-_LT_TAGVAR(objext, $1)=$objext
-
-# Code to be used in simple compile tests
-lt_simple_compile_test_code="class foo {}"
-
-# Code to be used in simple link tests
-lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }'
-
-# ltmain only uses $CC for tagged configurations so make sure $CC is set.
-_LT_TAG_COMPILER
-
-# save warnings/boilerplate of simple test code
-_LT_COMPILER_BOILERPLATE
-_LT_LINKER_BOILERPLATE
-
-# Allow CC to be a program name with arguments.
-lt_save_CC=$CC
-lt_save_CFLAGS=$CFLAGS
-lt_save_GCC=$GCC
-GCC=yes
-CC=${GCJ-"gcj"}
-CFLAGS=$GCJFLAGS
-compiler=$CC
-_LT_TAGVAR(compiler, $1)=$CC
-_LT_TAGVAR(LD, $1)="$LD"
-_LT_CC_BASENAME([$compiler])
-
-# GCJ did not exist at the time GCC didn't implicitly link libc in.
-_LT_TAGVAR(archive_cmds_need_lc, $1)=no
-
-_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
-_LT_TAGVAR(reload_flag, $1)=$reload_flag
-_LT_TAGVAR(reload_cmds, $1)=$reload_cmds
-
-## CAVEAT EMPTOR:
-## There is no encapsulation within the following macros, do not change
-## the running order or otherwise move them around unless you know exactly
-## what you are doing...
-if test -n "$compiler"; then
-  _LT_COMPILER_NO_RTTI($1)
-  _LT_COMPILER_PIC($1)
-  _LT_COMPILER_C_O($1)
-  _LT_COMPILER_FILE_LOCKS($1)
-  _LT_LINKER_SHLIBS($1)
-  _LT_LINKER_HARDCODE_LIBPATH($1)
-
-  _LT_CONFIG($1)
-fi
-
-AC_LANG_RESTORE
-
-GCC=$lt_save_GCC
-CC=$lt_save_CC
-CFLAGS=$lt_save_CFLAGS
-])# _LT_LANG_GCJ_CONFIG
-
-
-# _LT_LANG_GO_CONFIG([TAG])
-# --------------------------
-# Ensure that the configuration variables for the GNU Go compiler
-# are suitably defined.  These variables are subsequently used by _LT_CONFIG
-# to write the compiler configuration to `libtool'.
-m4_defun([_LT_LANG_GO_CONFIG],
-[AC_REQUIRE([LT_PROG_GO])dnl
-AC_LANG_SAVE
-
-# Source file extension for Go test sources.
-ac_ext=go
-
-# Object file extension for compiled Go test sources.
-objext=o
-_LT_TAGVAR(objext, $1)=$objext
-
-# Code to be used in simple compile tests
-lt_simple_compile_test_code="package main; func main() { }"
-
-# Code to be used in simple link tests
-lt_simple_link_test_code='package main; func main() { }'
-
-# ltmain only uses $CC for tagged configurations so make sure $CC is set.
-_LT_TAG_COMPILER
-
-# save warnings/boilerplate of simple test code
-_LT_COMPILER_BOILERPLATE
-_LT_LINKER_BOILERPLATE
-
-# Allow CC to be a program name with arguments.
-lt_save_CC=$CC
-lt_save_CFLAGS=$CFLAGS
-lt_save_GCC=$GCC
-GCC=yes
-CC=${GOC-"gccgo"}
-CFLAGS=$GOFLAGS
-compiler=$CC
-_LT_TAGVAR(compiler, $1)=$CC
-_LT_TAGVAR(LD, $1)="$LD"
-_LT_CC_BASENAME([$compiler])
-
-# Go did not exist at the time GCC didn't implicitly link libc in.
-_LT_TAGVAR(archive_cmds_need_lc, $1)=no
-
-_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
-_LT_TAGVAR(reload_flag, $1)=$reload_flag
-_LT_TAGVAR(reload_cmds, $1)=$reload_cmds
-
-## CAVEAT EMPTOR:
-## There is no encapsulation within the following macros, do not change
-## the running order or otherwise move them around unless you know exactly
-## what you are doing...
-if test -n "$compiler"; then
-  _LT_COMPILER_NO_RTTI($1)
-  _LT_COMPILER_PIC($1)
-  _LT_COMPILER_C_O($1)
-  _LT_COMPILER_FILE_LOCKS($1)
-  _LT_LINKER_SHLIBS($1)
-  _LT_LINKER_HARDCODE_LIBPATH($1)
-
-  _LT_CONFIG($1)
-fi
-
-AC_LANG_RESTORE
-
-GCC=$lt_save_GCC
-CC=$lt_save_CC
-CFLAGS=$lt_save_CFLAGS
-])# _LT_LANG_GO_CONFIG
-
-
-# _LT_LANG_RC_CONFIG([TAG])
-# -------------------------
-# Ensure that the configuration variables for the Windows resource compiler
-# are suitably defined.  These variables are subsequently used by _LT_CONFIG
-# to write the compiler configuration to `libtool'.
-m4_defun([_LT_LANG_RC_CONFIG],
-[AC_REQUIRE([LT_PROG_RC])dnl
-AC_LANG_SAVE
-
-# Source file extension for RC test sources.
-ac_ext=rc
-
-# Object file extension for compiled RC test sources.
-objext=o
-_LT_TAGVAR(objext, $1)=$objext
-
-# Code to be used in simple compile tests
-lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }'
-
-# Code to be used in simple link tests
-lt_simple_link_test_code="$lt_simple_compile_test_code"
-
-# ltmain only uses $CC for tagged configurations so make sure $CC is set.
-_LT_TAG_COMPILER
-
-# save warnings/boilerplate of simple test code
-_LT_COMPILER_BOILERPLATE
-_LT_LINKER_BOILERPLATE
-
-# Allow CC to be a program name with arguments.
-lt_save_CC="$CC"
-lt_save_CFLAGS=$CFLAGS
-lt_save_GCC=$GCC
-GCC=
-CC=${RC-"windres"}
-CFLAGS=
-compiler=$CC
-_LT_TAGVAR(compiler, $1)=$CC
-_LT_CC_BASENAME([$compiler])
-_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes
-
-if test -n "$compiler"; then
-  :
-  _LT_CONFIG($1)
-fi
-
-GCC=$lt_save_GCC
-AC_LANG_RESTORE
-CC=$lt_save_CC
-CFLAGS=$lt_save_CFLAGS
-])# _LT_LANG_RC_CONFIG
-
-
-# LT_PROG_GCJ
-# -----------
-AC_DEFUN([LT_PROG_GCJ],
-[m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ],
-  [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ],
-    [AC_CHECK_TOOL(GCJ, gcj,)
-      test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2"
-      AC_SUBST(GCJFLAGS)])])[]dnl
-])
-
-# Old name:
-AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ])
-dnl aclocal-1.4 backwards compatibility:
-dnl AC_DEFUN([LT_AC_PROG_GCJ], [])
-
-
-# LT_PROG_GO
-# ----------
-AC_DEFUN([LT_PROG_GO],
-[AC_CHECK_TOOL(GOC, gccgo,)
-])
-
-
-# LT_PROG_RC
-# ----------
-AC_DEFUN([LT_PROG_RC],
-[AC_CHECK_TOOL(RC, windres,)
-])
-
-# Old name:
-AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC])
-dnl aclocal-1.4 backwards compatibility:
-dnl AC_DEFUN([LT_AC_PROG_RC], [])
-
-
-# _LT_DECL_EGREP
-# --------------
-# If we don't have a new enough Autoconf to choose the best grep
-# available, choose the one first in the user's PATH.
-m4_defun([_LT_DECL_EGREP],
-[AC_REQUIRE([AC_PROG_EGREP])dnl
-AC_REQUIRE([AC_PROG_FGREP])dnl
-test -z "$GREP" && GREP=grep
-_LT_DECL([], [GREP], [1], [A grep program that handles long lines])
-_LT_DECL([], [EGREP], [1], [An ERE matcher])
-_LT_DECL([], [FGREP], [1], [A literal string matcher])
-dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too
-AC_SUBST([GREP])
-])
-
-
-# _LT_DECL_OBJDUMP
-# --------------
-# If we don't have a new enough Autoconf to choose the best objdump
-# available, choose the one first in the user's PATH.
-m4_defun([_LT_DECL_OBJDUMP],
-[AC_CHECK_TOOL(OBJDUMP, objdump, false)
-test -z "$OBJDUMP" && OBJDUMP=objdump
-_LT_DECL([], [OBJDUMP], [1], [An object symbol dumper])
-AC_SUBST([OBJDUMP])
-])
-
-# _LT_DECL_DLLTOOL
-# ----------------
-# Ensure DLLTOOL variable is set.
-m4_defun([_LT_DECL_DLLTOOL],
-[AC_CHECK_TOOL(DLLTOOL, dlltool, false)
-test -z "$DLLTOOL" && DLLTOOL=dlltool
-_LT_DECL([], [DLLTOOL], [1], [DLL creation program])
-AC_SUBST([DLLTOOL])
-])
-
-# _LT_DECL_SED
-# ------------
-# Check for a fully-functional sed program, that truncates
-# as few characters as possible.  Prefer GNU sed if found.
-m4_defun([_LT_DECL_SED],
-[AC_PROG_SED
-test -z "$SED" && SED=sed
-Xsed="$SED -e 1s/^X//"
-_LT_DECL([], [SED], [1], [A sed program that does not truncate output])
-_LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"],
-    [Sed that helps us avoid accidentally triggering echo(1) options like -n])
-])# _LT_DECL_SED
-
-m4_ifndef([AC_PROG_SED], [
-############################################################
-# NOTE: This macro has been submitted for inclusion into   #
-#  GNU Autoconf as AC_PROG_SED.  When it is available in   #
-#  a released version of Autoconf we should remove this    #
-#  macro and use it instead.                               #
-############################################################
-
-m4_defun([AC_PROG_SED],
-[AC_MSG_CHECKING([for a sed that does not truncate output])
-AC_CACHE_VAL(lt_cv_path_SED,
-[# Loop through the user's path and test for sed and gsed.
-# Then use that list of sed's as ones to test for truncation.
-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
-  IFS=$as_save_IFS
-  test -z "$as_dir" && as_dir=.
-  for lt_ac_prog in sed gsed; do
-    for ac_exec_ext in '' $ac_executable_extensions; do
-      if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then
-        lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext"
-      fi
-    done
-  done
-done
-IFS=$as_save_IFS
-lt_ac_max=0
-lt_ac_count=0
-# Add /usr/xpg4/bin/sed as it is typically found on Solaris
-# along with /bin/sed that truncates output.
-for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do
-  test ! -f $lt_ac_sed && continue
-  cat /dev/null > conftest.in
-  lt_ac_count=0
-  echo $ECHO_N "0123456789$ECHO_C" >conftest.in
-  # Check for GNU sed and select it if it is found.
-  if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then
-    lt_cv_path_SED=$lt_ac_sed
-    break
-  fi
-  while true; do
-    cat conftest.in conftest.in >conftest.tmp
-    mv conftest.tmp conftest.in
-    cp conftest.in conftest.nl
-    echo >>conftest.nl
-    $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break
-    cmp -s conftest.out conftest.nl || break
-    # 10000 chars as input seems more than enough
-    test $lt_ac_count -gt 10 && break
-    lt_ac_count=`expr $lt_ac_count + 1`
-    if test $lt_ac_count -gt $lt_ac_max; then
-      lt_ac_max=$lt_ac_count
-      lt_cv_path_SED=$lt_ac_sed
-    fi
-  done
-done
-])
-SED=$lt_cv_path_SED
-AC_SUBST([SED])
-AC_MSG_RESULT([$SED])
-])#AC_PROG_SED
-])#m4_ifndef
-
-# Old name:
-AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED])
-dnl aclocal-1.4 backwards compatibility:
-dnl AC_DEFUN([LT_AC_PROG_SED], [])
-
-
-# _LT_CHECK_SHELL_FEATURES
-# ------------------------
-# Find out whether the shell is Bourne or XSI compatible,
-# or has some other useful features.
-m4_defun([_LT_CHECK_SHELL_FEATURES],
-[AC_MSG_CHECKING([whether the shell understands some XSI constructs])
-# Try some XSI features
-xsi_shell=no
-( _lt_dummy="a/b/c"
-  test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \
-      = c,a/b,b/c, \
-    && eval 'test $(( 1 + 1 )) -eq 2 \
-    && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \
-  && xsi_shell=yes
-AC_MSG_RESULT([$xsi_shell])
-_LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell'])
-
-AC_MSG_CHECKING([whether the shell understands "+="])
-lt_shell_append=no
-( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \
-    >/dev/null 2>&1 \
-  && lt_shell_append=yes
-AC_MSG_RESULT([$lt_shell_append])
-_LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append'])
-
-if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
-  lt_unset=unset
-else
-  lt_unset=false
-fi
-_LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl
-
-# test EBCDIC or ASCII
-case `echo X|tr X '\101'` in
- A) # ASCII based system
-    # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr
-  lt_SP2NL='tr \040 \012'
-  lt_NL2SP='tr \015\012 \040\040'
-  ;;
- *) # EBCDIC based system
-  lt_SP2NL='tr \100 \n'
-  lt_NL2SP='tr \r\n \100\100'
-  ;;
-esac
-_LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl
-_LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl
-])# _LT_CHECK_SHELL_FEATURES
-
-
-# _LT_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY)
-# ------------------------------------------------------
-# In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and
-# '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY.
-m4_defun([_LT_PROG_FUNCTION_REPLACE],
-[dnl {
-sed -e '/^$1 ()$/,/^} # $1 /c\
-$1 ()\
-{\
-m4_bpatsubsts([$2], [$], [\\], [^\([    ]\)], [\\\1])
-} # Extended-shell $1 implementation' "$cfgfile" > $cfgfile.tmp \
-  && mv -f "$cfgfile.tmp" "$cfgfile" \
-    || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
-test 0 -eq $? || _lt_function_replace_fail=:
-])
-
-
-# _LT_PROG_REPLACE_SHELLFNS
-# -------------------------
-# Replace existing portable implementations of several shell functions with
-# equivalent extended shell implementations where those features are available..
-m4_defun([_LT_PROG_REPLACE_SHELLFNS],
-[if test x"$xsi_shell" = xyes; then
-  _LT_PROG_FUNCTION_REPLACE([func_dirname], [dnl
-    case ${1} in
-      */*) func_dirname_result="${1%/*}${2}" ;;
-      *  ) func_dirname_result="${3}" ;;
-    esac])
-
-  _LT_PROG_FUNCTION_REPLACE([func_basename], [dnl
-    func_basename_result="${1##*/}"])
-
-  _LT_PROG_FUNCTION_REPLACE([func_dirname_and_basename], [dnl
-    case ${1} in
-      */*) func_dirname_result="${1%/*}${2}" ;;
-      *  ) func_dirname_result="${3}" ;;
-    esac
-    func_basename_result="${1##*/}"])
-
-  _LT_PROG_FUNCTION_REPLACE([func_stripname], [dnl
-    # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are
-    # positional parameters, so assign one to ordinary parameter first.
-    func_stripname_result=${3}
-    func_stripname_result=${func_stripname_result#"${1}"}
-    func_stripname_result=${func_stripname_result%"${2}"}])
-
-  _LT_PROG_FUNCTION_REPLACE([func_split_long_opt], [dnl
-    func_split_long_opt_name=${1%%=*}
-    func_split_long_opt_arg=${1#*=}])
-
-  _LT_PROG_FUNCTION_REPLACE([func_split_short_opt], [dnl
-    func_split_short_opt_arg=${1#??}
-    func_split_short_opt_name=${1%"$func_split_short_opt_arg"}])
-
-  _LT_PROG_FUNCTION_REPLACE([func_lo2o], [dnl
-    case ${1} in
-      *.lo) func_lo2o_result=${1%.lo}.${objext} ;;
-      *)    func_lo2o_result=${1} ;;
-    esac])
-
-  _LT_PROG_FUNCTION_REPLACE([func_xform], [    func_xform_result=${1%.*}.lo])
-
-  _LT_PROG_FUNCTION_REPLACE([func_arith], [    func_arith_result=$(( $[*] ))])
-
-  _LT_PROG_FUNCTION_REPLACE([func_len], [    func_len_result=${#1}])
-fi
-
-if test x"$lt_shell_append" = xyes; then
-  _LT_PROG_FUNCTION_REPLACE([func_append], [    eval "${1}+=\\${2}"])
-
-  _LT_PROG_FUNCTION_REPLACE([func_append_quoted], [dnl
-    func_quote_for_eval "${2}"
-dnl m4 expansion turns \\\\ into \\, and then the shell eval turns that into \
-    eval "${1}+=\\\\ \\$func_quote_for_eval_result"])
-
-  # Save a `func_append' function call where possible by direct use of '+='
-  sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \
-    && mv -f "$cfgfile.tmp" "$cfgfile" \
-      || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
-  test 0 -eq $? || _lt_function_replace_fail=:
-else
-  # Save a `func_append' function call even when '+=' is not available
-  sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \
-    && mv -f "$cfgfile.tmp" "$cfgfile" \
-      || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
-  test 0 -eq $? || _lt_function_replace_fail=:
-fi
-
-if test x"$_lt_function_replace_fail" = x":"; then
-  AC_MSG_WARN([Unable to substitute extended shell functions in $ofile])
-fi
-])
-
-# _LT_PATH_CONVERSION_FUNCTIONS
-# -----------------------------
-# Determine which file name conversion functions should be used by
-# func_to_host_file (and, implicitly, by func_to_host_path).  These are needed
-# for certain cross-compile configurations and native mingw.
-m4_defun([_LT_PATH_CONVERSION_FUNCTIONS],
-[AC_REQUIRE([AC_CANONICAL_HOST])dnl
-AC_REQUIRE([AC_CANONICAL_BUILD])dnl
-AC_MSG_CHECKING([how to convert $build file names to $host format])
-AC_CACHE_VAL(lt_cv_to_host_file_cmd,
-[case $host in
-  *-*-mingw* )
-    case $build in
-      *-*-mingw* ) # actually msys
-        lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32
-        ;;
-      *-*-cygwin* )
-        lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32
-        ;;
-      * ) # otherwise, assume *nix
-        lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32
-        ;;
-    esac
-    ;;
-  *-*-cygwin* )
-    case $build in
-      *-*-mingw* ) # actually msys
-        lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin
-        ;;
-      *-*-cygwin* )
-        lt_cv_to_host_file_cmd=func_convert_file_noop
-        ;;
-      * ) # otherwise, assume *nix
-        lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin
-        ;;
-    esac
-    ;;
-  * ) # unhandled hosts (and "normal" native builds)
-    lt_cv_to_host_file_cmd=func_convert_file_noop
-    ;;
-esac
-])
-to_host_file_cmd=$lt_cv_to_host_file_cmd
-AC_MSG_RESULT([$lt_cv_to_host_file_cmd])
-_LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd],
-         [0], [convert $build file names to $host format])dnl
-
-AC_MSG_CHECKING([how to convert $build file names to toolchain format])
-AC_CACHE_VAL(lt_cv_to_tool_file_cmd,
-[#assume ordinary cross tools, or native build.
-lt_cv_to_tool_file_cmd=func_convert_file_noop
-case $host in
-  *-*-mingw* )
-    case $build in
-      *-*-mingw* ) # actually msys
-        lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32
-        ;;
-    esac
-    ;;
-esac
-])
-to_tool_file_cmd=$lt_cv_to_tool_file_cmd
-AC_MSG_RESULT([$lt_cv_to_tool_file_cmd])
-_LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd],
-         [0], [convert $build files to toolchain format])dnl
-])# _LT_PATH_CONVERSION_FUNCTIONS
diff --git a/m4/ltoptions.m4 b/m4/ltoptions.m4
deleted file mode 100644 (file)
index 5d9acd8..0000000
+++ /dev/null
@@ -1,384 +0,0 @@
-# Helper functions for option handling.                    -*- Autoconf -*-
-#
-#   Copyright (C) 2004, 2005, 2007, 2008, 2009 Free Software Foundation,
-#   Inc.
-#   Written by Gary V. Vaughan, 2004
-#
-# This file is free software; the Free Software Foundation gives
-# unlimited permission to copy and/or distribute it, with or without
-# modifications, as long as this notice is preserved.
-
-# serial 7 ltoptions.m4
-
-# This is to help aclocal find these macros, as it can't see m4_define.
-AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])
-
-
-# _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME)
-# ------------------------------------------
-m4_define([_LT_MANGLE_OPTION],
-[[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])])
-
-
-# _LT_SET_OPTION(MACRO-NAME, OPTION-NAME)
-# ---------------------------------------
-# Set option OPTION-NAME for macro MACRO-NAME, and if there is a
-# matching handler defined, dispatch to it.  Other OPTION-NAMEs are
-# saved as a flag.
-m4_define([_LT_SET_OPTION],
-[m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl
-m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]),
-        _LT_MANGLE_DEFUN([$1], [$2]),
-    [m4_warning([Unknown $1 option `$2'])])[]dnl
-])
-
-
-# _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET])
-# ------------------------------------------------------------
-# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
-m4_define([_LT_IF_OPTION],
-[m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])])
-
-
-# _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET)
-# -------------------------------------------------------
-# Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME
-# are set.
-m4_define([_LT_UNLESS_OPTIONS],
-[m4_foreach([_LT_Option], m4_split(m4_normalize([$2])),
-           [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option),
-                     [m4_define([$0_found])])])[]dnl
-m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3
-])[]dnl
-])
-
-
-# _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST)
-# ----------------------------------------
-# OPTION-LIST is a space-separated list of Libtool options associated
-# with MACRO-NAME.  If any OPTION has a matching handler declared with
-# LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about
-# the unknown option and exit.
-m4_defun([_LT_SET_OPTIONS],
-[# Set options
-m4_foreach([_LT_Option], m4_split(m4_normalize([$2])),
-    [_LT_SET_OPTION([$1], _LT_Option)])
-
-m4_if([$1],[LT_INIT],[
-  dnl
-  dnl Simply set some default values (i.e off) if boolean options were not
-  dnl specified:
-  _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no
-  ])
-  _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no
-  ])
-  dnl
-  dnl If no reference was made to various pairs of opposing options, then
-  dnl we run the default mode handler for the pair.  For example, if neither
-  dnl `shared' nor `disable-shared' was passed, we enable building of shared
-  dnl archives by default:
-  _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED])
-  _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC])
-  _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC])
-  _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install],
-                  [_LT_ENABLE_FAST_INSTALL])
-  ])
-])# _LT_SET_OPTIONS
-
-
-## --------------------------------- ##
-## Macros to handle LT_INIT options. ##
-## --------------------------------- ##
-
-# _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME)
-# -----------------------------------------
-m4_define([_LT_MANGLE_DEFUN],
-[[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])])
-
-
-# LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE)
-# -----------------------------------------------
-m4_define([LT_OPTION_DEFINE],
-[m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl
-])# LT_OPTION_DEFINE
-
-
-# dlopen
-# ------
-LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes
-])
-
-AU_DEFUN([AC_LIBTOOL_DLOPEN],
-[_LT_SET_OPTION([LT_INIT], [dlopen])
-AC_DIAGNOSE([obsolete],
-[$0: Remove this warning and the call to _LT_SET_OPTION when you
-put the `dlopen' option into LT_INIT's first parameter.])
-])
-
-dnl aclocal-1.4 backwards compatibility:
-dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], [])
-
-
-# win32-dll
-# ---------
-# Declare package support for building win32 dll's.
-LT_OPTION_DEFINE([LT_INIT], [win32-dll],
-[enable_win32_dll=yes
-
-case $host in
-*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*)
-  AC_CHECK_TOOL(AS, as, false)
-  AC_CHECK_TOOL(DLLTOOL, dlltool, false)
-  AC_CHECK_TOOL(OBJDUMP, objdump, false)
-  ;;
-esac
-
-test -z "$AS" && AS=as
-_LT_DECL([], [AS],      [1], [Assembler program])dnl
-
-test -z "$DLLTOOL" && DLLTOOL=dlltool
-_LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl
-
-test -z "$OBJDUMP" && OBJDUMP=objdump
-_LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl
-])# win32-dll
-
-AU_DEFUN([AC_LIBTOOL_WIN32_DLL],
-[AC_REQUIRE([AC_CANONICAL_HOST])dnl
-_LT_SET_OPTION([LT_INIT], [win32-dll])
-AC_DIAGNOSE([obsolete],
-[$0: Remove this warning and the call to _LT_SET_OPTION when you
-put the `win32-dll' option into LT_INIT's first parameter.])
-])
-
-dnl aclocal-1.4 backwards compatibility:
-dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [])
-
-
-# _LT_ENABLE_SHARED([DEFAULT])
-# ----------------------------
-# implement the --enable-shared flag, and supports the `shared' and
-# `disable-shared' LT_INIT options.
-# DEFAULT is either `yes' or `no'.  If omitted, it defaults to `yes'.
-m4_define([_LT_ENABLE_SHARED],
-[m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl
-AC_ARG_ENABLE([shared],
-    [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@],
-       [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])],
-    [p=${PACKAGE-default}
-    case $enableval in
-    yes) enable_shared=yes ;;
-    no) enable_shared=no ;;
-    *)
-      enable_shared=no
-      # Look at the argument we got.  We use all the common list separators.
-      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
-      for pkg in $enableval; do
-       IFS="$lt_save_ifs"
-       if test "X$pkg" = "X$p"; then
-         enable_shared=yes
-       fi
-      done
-      IFS="$lt_save_ifs"
-      ;;
-    esac],
-    [enable_shared=]_LT_ENABLE_SHARED_DEFAULT)
-
-    _LT_DECL([build_libtool_libs], [enable_shared], [0],
-       [Whether or not to build shared libraries])
-])# _LT_ENABLE_SHARED
-
-LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])])
-LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])])
-
-# Old names:
-AC_DEFUN([AC_ENABLE_SHARED],
-[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared])
-])
-
-AC_DEFUN([AC_DISABLE_SHARED],
-[_LT_SET_OPTION([LT_INIT], [disable-shared])
-])
-
-AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])
-AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
-
-dnl aclocal-1.4 backwards compatibility:
-dnl AC_DEFUN([AM_ENABLE_SHARED], [])
-dnl AC_DEFUN([AM_DISABLE_SHARED], [])
-
-
-
-# _LT_ENABLE_STATIC([DEFAULT])
-# ----------------------------
-# implement the --enable-static flag, and support the `static' and
-# `disable-static' LT_INIT options.
-# DEFAULT is either `yes' or `no'.  If omitted, it defaults to `yes'.
-m4_define([_LT_ENABLE_STATIC],
-[m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl
-AC_ARG_ENABLE([static],
-    [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@],
-       [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])],
-    [p=${PACKAGE-default}
-    case $enableval in
-    yes) enable_static=yes ;;
-    no) enable_static=no ;;
-    *)
-     enable_static=no
-      # Look at the argument we got.  We use all the common list separators.
-      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
-      for pkg in $enableval; do
-       IFS="$lt_save_ifs"
-       if test "X$pkg" = "X$p"; then
-         enable_static=yes
-       fi
-      done
-      IFS="$lt_save_ifs"
-      ;;
-    esac],
-    [enable_static=]_LT_ENABLE_STATIC_DEFAULT)
-
-    _LT_DECL([build_old_libs], [enable_static], [0],
-       [Whether or not to build static libraries])
-])# _LT_ENABLE_STATIC
-
-LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])])
-LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])])
-
-# Old names:
-AC_DEFUN([AC_ENABLE_STATIC],
-[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static])
-])
-
-AC_DEFUN([AC_DISABLE_STATIC],
-[_LT_SET_OPTION([LT_INIT], [disable-static])
-])
-
-AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
-AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
-
-dnl aclocal-1.4 backwards compatibility:
-dnl AC_DEFUN([AM_ENABLE_STATIC], [])
-dnl AC_DEFUN([AM_DISABLE_STATIC], [])
-
-
-
-# _LT_ENABLE_FAST_INSTALL([DEFAULT])
-# ----------------------------------
-# implement the --enable-fast-install flag, and support the `fast-install'
-# and `disable-fast-install' LT_INIT options.
-# DEFAULT is either `yes' or `no'.  If omitted, it defaults to `yes'.
-m4_define([_LT_ENABLE_FAST_INSTALL],
-[m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl
-AC_ARG_ENABLE([fast-install],
-    [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@],
-    [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])],
-    [p=${PACKAGE-default}
-    case $enableval in
-    yes) enable_fast_install=yes ;;
-    no) enable_fast_install=no ;;
-    *)
-      enable_fast_install=no
-      # Look at the argument we got.  We use all the common list separators.
-      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
-      for pkg in $enableval; do
-       IFS="$lt_save_ifs"
-       if test "X$pkg" = "X$p"; then
-         enable_fast_install=yes
-       fi
-      done
-      IFS="$lt_save_ifs"
-      ;;
-    esac],
-    [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT)
-
-_LT_DECL([fast_install], [enable_fast_install], [0],
-        [Whether or not to optimize for fast installation])dnl
-])# _LT_ENABLE_FAST_INSTALL
-
-LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])])
-LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])])
-
-# Old names:
-AU_DEFUN([AC_ENABLE_FAST_INSTALL],
-[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
-AC_DIAGNOSE([obsolete],
-[$0: Remove this warning and the call to _LT_SET_OPTION when you put
-the `fast-install' option into LT_INIT's first parameter.])
-])
-
-AU_DEFUN([AC_DISABLE_FAST_INSTALL],
-[_LT_SET_OPTION([LT_INIT], [disable-fast-install])
-AC_DIAGNOSE([obsolete],
-[$0: Remove this warning and the call to _LT_SET_OPTION when you put
-the `disable-fast-install' option into LT_INIT's first parameter.])
-])
-
-dnl aclocal-1.4 backwards compatibility:
-dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], [])
-dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], [])
-
-
-# _LT_WITH_PIC([MODE])
-# --------------------
-# implement the --with-pic flag, and support the `pic-only' and `no-pic'
-# LT_INIT options.
-# MODE is either `yes' or `no'.  If omitted, it defaults to `both'.
-m4_define([_LT_WITH_PIC],
-[AC_ARG_WITH([pic],
-    [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@],
-       [try to use only PIC/non-PIC objects @<:@default=use both@:>@])],
-    [lt_p=${PACKAGE-default}
-    case $withval in
-    yes|no) pic_mode=$withval ;;
-    *)
-      pic_mode=default
-      # Look at the argument we got.  We use all the common list separators.
-      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
-      for lt_pkg in $withval; do
-       IFS="$lt_save_ifs"
-       if test "X$lt_pkg" = "X$lt_p"; then
-         pic_mode=yes
-       fi
-      done
-      IFS="$lt_save_ifs"
-      ;;
-    esac],
-    [pic_mode=default])
-
-test -z "$pic_mode" && pic_mode=m4_default([$1], [default])
-
-_LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl
-])# _LT_WITH_PIC
-
-LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])])
-LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])])
-
-# Old name:
-AU_DEFUN([AC_LIBTOOL_PICMODE],
-[_LT_SET_OPTION([LT_INIT], [pic-only])
-AC_DIAGNOSE([obsolete],
-[$0: Remove this warning and the call to _LT_SET_OPTION when you
-put the `pic-only' option into LT_INIT's first parameter.])
-])
-
-dnl aclocal-1.4 backwards compatibility:
-dnl AC_DEFUN([AC_LIBTOOL_PICMODE], [])
-
-## ----------------- ##
-## LTDL_INIT Options ##
-## ----------------- ##
-
-m4_define([_LTDL_MODE], [])
-LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive],
-                [m4_define([_LTDL_MODE], [nonrecursive])])
-LT_OPTION_DEFINE([LTDL_INIT], [recursive],
-                [m4_define([_LTDL_MODE], [recursive])])
-LT_OPTION_DEFINE([LTDL_INIT], [subproject],
-                [m4_define([_LTDL_MODE], [subproject])])
-
-m4_define([_LTDL_TYPE], [])
-LT_OPTION_DEFINE([LTDL_INIT], [installable],
-                [m4_define([_LTDL_TYPE], [installable])])
-LT_OPTION_DEFINE([LTDL_INIT], [convenience],
-                [m4_define([_LTDL_TYPE], [convenience])])
diff --git a/m4/ltsugar.m4 b/m4/ltsugar.m4
deleted file mode 100644 (file)
index 9000a05..0000000
+++ /dev/null
@@ -1,123 +0,0 @@
-# ltsugar.m4 -- libtool m4 base layer.                         -*-Autoconf-*-
-#
-# Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc.
-# Written by Gary V. Vaughan, 2004
-#
-# This file is free software; the Free Software Foundation gives
-# unlimited permission to copy and/or distribute it, with or without
-# modifications, as long as this notice is preserved.
-
-# serial 6 ltsugar.m4
-
-# This is to help aclocal find these macros, as it can't see m4_define.
-AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])])
-
-
-# lt_join(SEP, ARG1, [ARG2...])
-# -----------------------------
-# Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their
-# associated separator.
-# Needed until we can rely on m4_join from Autoconf 2.62, since all earlier
-# versions in m4sugar had bugs.
-m4_define([lt_join],
-[m4_if([$#], [1], [],
-       [$#], [2], [[$2]],
-       [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])])
-m4_define([_lt_join],
-[m4_if([$#$2], [2], [],
-       [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])])
-
-
-# lt_car(LIST)
-# lt_cdr(LIST)
-# ------------
-# Manipulate m4 lists.
-# These macros are necessary as long as will still need to support
-# Autoconf-2.59 which quotes differently.
-m4_define([lt_car], [[$1]])
-m4_define([lt_cdr],
-[m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])],
-       [$#], 1, [],
-       [m4_dquote(m4_shift($@))])])
-m4_define([lt_unquote], $1)
-
-
-# lt_append(MACRO-NAME, STRING, [SEPARATOR])
-# ------------------------------------------
-# Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'.
-# Note that neither SEPARATOR nor STRING are expanded; they are appended
-# to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked).
-# No SEPARATOR is output if MACRO-NAME was previously undefined (different
-# than defined and empty).
-#
-# This macro is needed until we can rely on Autoconf 2.62, since earlier
-# versions of m4sugar mistakenly expanded SEPARATOR but not STRING.
-m4_define([lt_append],
-[m4_define([$1],
-          m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])])
-
-
-
-# lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...])
-# ----------------------------------------------------------
-# Produce a SEP delimited list of all paired combinations of elements of
-# PREFIX-LIST with SUFFIX1 through SUFFIXn.  Each element of the list
-# has the form PREFIXmINFIXSUFFIXn.
-# Needed until we can rely on m4_combine added in Autoconf 2.62.
-m4_define([lt_combine],
-[m4_if(m4_eval([$# > 3]), [1],
-       [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl
-[[m4_foreach([_Lt_prefix], [$2],
-            [m4_foreach([_Lt_suffix],
-               ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[,
-       [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])])
-
-
-# lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ])
-# -----------------------------------------------------------------------
-# Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited
-# by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ.
-m4_define([lt_if_append_uniq],
-[m4_ifdef([$1],
-         [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1],
-                [lt_append([$1], [$2], [$3])$4],
-                [$5])],
-         [lt_append([$1], [$2], [$3])$4])])
-
-
-# lt_dict_add(DICT, KEY, VALUE)
-# -----------------------------
-m4_define([lt_dict_add],
-[m4_define([$1($2)], [$3])])
-
-
-# lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE)
-# --------------------------------------------
-m4_define([lt_dict_add_subkey],
-[m4_define([$1($2:$3)], [$4])])
-
-
-# lt_dict_fetch(DICT, KEY, [SUBKEY])
-# ----------------------------------
-m4_define([lt_dict_fetch],
-[m4_ifval([$3],
-       m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]),
-    m4_ifdef([$1($2)], [m4_defn([$1($2)])]))])
-
-
-# lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE])
-# -----------------------------------------------------------------
-m4_define([lt_if_dict_fetch],
-[m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4],
-       [$5],
-    [$6])])
-
-
-# lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...])
-# --------------------------------------------------------------
-m4_define([lt_dict_filter],
-[m4_if([$5], [], [],
-  [lt_join(m4_quote(m4_default([$4], [[, ]])),
-           lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]),
-                     [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl
-])
diff --git a/m4/ltversion.m4 b/m4/ltversion.m4
deleted file mode 100644 (file)
index 07a8602..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-# ltversion.m4 -- version numbers                      -*- Autoconf -*-
-#
-#   Copyright (C) 2004 Free Software Foundation, Inc.
-#   Written by Scott James Remnant, 2004
-#
-# This file is free software; the Free Software Foundation gives
-# unlimited permission to copy and/or distribute it, with or without
-# modifications, as long as this notice is preserved.
-
-# @configure_input@
-
-# serial 3337 ltversion.m4
-# This file is part of GNU Libtool
-
-m4_define([LT_PACKAGE_VERSION], [2.4.2])
-m4_define([LT_PACKAGE_REVISION], [1.3337])
-
-AC_DEFUN([LTVERSION_VERSION],
-[macro_version='2.4.2'
-macro_revision='1.3337'
-_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
-_LT_DECL(, macro_revision, 0)
-])
diff --git a/m4/lt~obsolete.m4 b/m4/lt~obsolete.m4
deleted file mode 100644 (file)
index c573da9..0000000
+++ /dev/null
@@ -1,98 +0,0 @@
-# lt~obsolete.m4 -- aclocal satisfying obsolete definitions.    -*-Autoconf-*-
-#
-#   Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc.
-#   Written by Scott James Remnant, 2004.
-#
-# This file is free software; the Free Software Foundation gives
-# unlimited permission to copy and/or distribute it, with or without
-# modifications, as long as this notice is preserved.
-
-# serial 5 lt~obsolete.m4
-
-# These exist entirely to fool aclocal when bootstrapping libtool.
-#
-# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN)
-# which have later been changed to m4_define as they aren't part of the
-# exported API, or moved to Autoconf or Automake where they belong.
-#
-# The trouble is, aclocal is a bit thick.  It'll see the old AC_DEFUN
-# in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us
-# using a macro with the same name in our local m4/libtool.m4 it'll
-# pull the old libtool.m4 in (it doesn't see our shiny new m4_define
-# and doesn't know about Autoconf macros at all.)
-#
-# So we provide this file, which has a silly filename so it's always
-# included after everything else.  This provides aclocal with the
-# AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything
-# because those macros already exist, or will be overwritten later.
-# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. 
-#
-# Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here.
-# Yes, that means every name once taken will need to remain here until
-# we give up compatibility with versions before 1.7, at which point
-# we need to keep only those names which we still refer to.
-
-# This is to help aclocal find these macros, as it can't see m4_define.
-AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])])
-
-m4_ifndef([AC_LIBTOOL_LINKER_OPTION],  [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])])
-m4_ifndef([AC_PROG_EGREP],             [AC_DEFUN([AC_PROG_EGREP])])
-m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH],        [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])])
-m4_ifndef([_LT_AC_SHELL_INIT],         [AC_DEFUN([_LT_AC_SHELL_INIT])])
-m4_ifndef([_LT_AC_SYS_LIBPATH_AIX],    [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])])
-m4_ifndef([_LT_PROG_LTMAIN],           [AC_DEFUN([_LT_PROG_LTMAIN])])
-m4_ifndef([_LT_AC_TAGVAR],             [AC_DEFUN([_LT_AC_TAGVAR])])
-m4_ifndef([AC_LTDL_ENABLE_INSTALL],    [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])])
-m4_ifndef([AC_LTDL_PREOPEN],           [AC_DEFUN([AC_LTDL_PREOPEN])])
-m4_ifndef([_LT_AC_SYS_COMPILER],       [AC_DEFUN([_LT_AC_SYS_COMPILER])])
-m4_ifndef([_LT_AC_LOCK],               [AC_DEFUN([_LT_AC_LOCK])])
-m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE],        [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])])
-m4_ifndef([_LT_AC_TRY_DLOPEN_SELF],    [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])])
-m4_ifndef([AC_LIBTOOL_PROG_CC_C_O],    [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])])
-m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])])
-m4_ifndef([AC_LIBTOOL_OBJDIR],         [AC_DEFUN([AC_LIBTOOL_OBJDIR])])
-m4_ifndef([AC_LTDL_OBJDIR],            [AC_DEFUN([AC_LTDL_OBJDIR])])
-m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])])
-m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP],  [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])])
-m4_ifndef([AC_PATH_MAGIC],             [AC_DEFUN([AC_PATH_MAGIC])])
-m4_ifndef([AC_PROG_LD_GNU],            [AC_DEFUN([AC_PROG_LD_GNU])])
-m4_ifndef([AC_PROG_LD_RELOAD_FLAG],    [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])])
-m4_ifndef([AC_DEPLIBS_CHECK_METHOD],   [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])])
-m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])])
-m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])])
-m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])])
-m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])])
-m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])])
-m4_ifndef([LT_AC_PROG_EGREP],          [AC_DEFUN([LT_AC_PROG_EGREP])])
-m4_ifndef([LT_AC_PROG_SED],            [AC_DEFUN([LT_AC_PROG_SED])])
-m4_ifndef([_LT_CC_BASENAME],           [AC_DEFUN([_LT_CC_BASENAME])])
-m4_ifndef([_LT_COMPILER_BOILERPLATE],  [AC_DEFUN([_LT_COMPILER_BOILERPLATE])])
-m4_ifndef([_LT_LINKER_BOILERPLATE],    [AC_DEFUN([_LT_LINKER_BOILERPLATE])])
-m4_ifndef([_AC_PROG_LIBTOOL],          [AC_DEFUN([_AC_PROG_LIBTOOL])])
-m4_ifndef([AC_LIBTOOL_SETUP],          [AC_DEFUN([AC_LIBTOOL_SETUP])])
-m4_ifndef([_LT_AC_CHECK_DLFCN],                [AC_DEFUN([_LT_AC_CHECK_DLFCN])])
-m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER],     [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])])
-m4_ifndef([_LT_AC_TAGCONFIG],          [AC_DEFUN([_LT_AC_TAGCONFIG])])
-m4_ifndef([AC_DISABLE_FAST_INSTALL],   [AC_DEFUN([AC_DISABLE_FAST_INSTALL])])
-m4_ifndef([_LT_AC_LANG_CXX],           [AC_DEFUN([_LT_AC_LANG_CXX])])
-m4_ifndef([_LT_AC_LANG_F77],           [AC_DEFUN([_LT_AC_LANG_F77])])
-m4_ifndef([_LT_AC_LANG_GCJ],           [AC_DEFUN([_LT_AC_LANG_GCJ])])
-m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG],  [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])])
-m4_ifndef([_LT_AC_LANG_C_CONFIG],      [AC_DEFUN([_LT_AC_LANG_C_CONFIG])])
-m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG],        [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])])
-m4_ifndef([_LT_AC_LANG_CXX_CONFIG],    [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])])
-m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG],        [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])])
-m4_ifndef([_LT_AC_LANG_F77_CONFIG],    [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])])
-m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG],        [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])])
-m4_ifndef([_LT_AC_LANG_GCJ_CONFIG],    [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])])
-m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])])
-m4_ifndef([_LT_AC_LANG_RC_CONFIG],     [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])])
-m4_ifndef([AC_LIBTOOL_CONFIG],         [AC_DEFUN([AC_LIBTOOL_CONFIG])])
-m4_ifndef([_LT_AC_FILE_LTDLL_C],       [AC_DEFUN([_LT_AC_FILE_LTDLL_C])])
-m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS],        [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])])
-m4_ifndef([_LT_AC_PROG_CXXCPP],                [AC_DEFUN([_LT_AC_PROG_CXXCPP])])
-m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS],        [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])])
-m4_ifndef([_LT_PROG_ECHO_BACKSLASH],   [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])])
-m4_ifndef([_LT_PROG_F77],              [AC_DEFUN([_LT_PROG_F77])])
-m4_ifndef([_LT_PROG_FC],               [AC_DEFUN([_LT_PROG_FC])])
-m4_ifndef([_LT_PROG_CXX],              [AC_DEFUN([_LT_PROG_CXX])])
index 5cd2b95..7a619bf 100644 (file)
@@ -87,7 +87,6 @@ EXTRA_DIST = \
        test_glib.py \
        test_gobject.py \
        test_interface.py \
-       test_iochannel.py \
        test_mainloop.py \
        test_option.py \
        test_properties.py \
index e5033c5..9993ec7 100644 (file)
@@ -59,10 +59,8 @@ subdir = tests
 DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/m4/as-ac-expand.m4 \
-       $(top_srcdir)/m4/jhflags.m4 $(top_srcdir)/m4/libtool.m4 \
-       $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
-       $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
-       $(top_srcdir)/m4/python.m4 $(top_srcdir)/configure.ac
+       $(top_srcdir)/m4/jhflags.m4 $(top_srcdir)/m4/python.m4 \
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(install_sh) -d
@@ -329,7 +327,6 @@ EXTRA_DIST = \
        test_glib.py \
        test_gobject.py \
        test_interface.py \
-       test_iochannel.py \
        test_mainloop.py \
        test_option.py \
        test_properties.py \
index 600edbf..4c4535f 100644 (file)
@@ -287,7 +287,7 @@ class TestNullableArgs(unittest.TestCase):
 @unittest.skipUnless(has_cairo, 'built without cairo support')
 class TestCallbacks(unittest.TestCase):
     called = False
-    main_loop = GObject.MainLoop()
+    main_loop = GLib.MainLoop()
 
     def test_callback(self):
         TestCallbacks.called = False
@@ -398,7 +398,7 @@ class TestCallbacks(unittest.TestCase):
 
     def test_async_ready_callback(self):
         TestCallbacks.called = False
-        TestCallbacks.main_loop = GObject.MainLoop()
+        TestCallbacks.main_loop = GLib.MainLoop()
 
         def callback(obj, result, user_data):
             TestCallbacks.main_loop.quit()
index b129419..bb5f2d9 100644 (file)
@@ -3,7 +3,6 @@
 
 import unittest
 
-from gi.repository import GObject
 from gi.repository import GLib
 from gi.repository import Gio
 
@@ -68,7 +67,7 @@ class TestGDBusClient(unittest.TestCase):
             finally:
                 user_data['main_loop'].quit()
 
-        main_loop = GObject.MainLoop()
+        main_loop = GLib.MainLoop()
         data = {'main_loop': main_loop}
         self.dbus_proxy.call('ListNames', None,
                              Gio.DBusCallFlags.NO_AUTO_START, 500, None,
@@ -90,7 +89,7 @@ class TestGDBusClient(unittest.TestCase):
             finally:
                 user_data['main_loop'].quit()
 
-        main_loop = GObject.MainLoop()
+        main_loop = GLib.MainLoop()
         data = {'main_loop': main_loop}
         self.dbus_proxy.call('UnknownMethod', None,
                              Gio.DBusCallFlags.NO_AUTO_START, 500, None,
@@ -162,7 +161,7 @@ class TestGDBusClient(unittest.TestCase):
             user_data['result'] = result
             user_data['main_loop'].quit()
 
-        main_loop = GObject.MainLoop()
+        main_loop = GLib.MainLoop()
         data = {'main_loop': main_loop}
         self.dbus_proxy.ListNames('()', result_handler=call_done, user_data=data)
         main_loop.run()
@@ -178,7 +177,7 @@ class TestGDBusClient(unittest.TestCase):
             user_data['result'] = result
             user_data['main_loop'].quit()
 
-        main_loop = GObject.MainLoop()
+        main_loop = GLib.MainLoop()
         data = {'main_loop': main_loop}
         self.dbus_proxy.ListNames('(s)', 'invalid_argument',
                                   result_handler=call_done, user_data=data)
@@ -197,7 +196,7 @@ class TestGDBusClient(unittest.TestCase):
             user_data['error'] = error
             user_data['main_loop'].quit()
 
-        main_loop = GObject.MainLoop()
+        main_loop = GLib.MainLoop()
         data = {'main_loop': main_loop}
         self.dbus_proxy.ListNames('(s)', 'invalid_argument',
                                   result_handler=call_done,
index 315867a..51cb6f9 100644 (file)
@@ -64,15 +64,6 @@ class TestConstant(unittest.TestCase):
     def test_constant_number(self):
         self.assertEqual(CONSTANT_NUMBER, GIMarshallingTests.CONSTANT_NUMBER)
 
-    def test_min_max_int(self):
-        self.assertEqual(GLib.MAXINT32, 2 ** 31 - 1)
-        self.assertEqual(GLib.MININT32, -2 ** 31)
-        self.assertEqual(GLib.MAXUINT32, 2 ** 32 - 1)
-
-        self.assertEqual(GLib.MAXINT64, 2 ** 63 - 1)
-        self.assertEqual(GLib.MININT64, -2 ** 63)
-        self.assertEqual(GLib.MAXUINT64, 2 ** 64 - 1)
-
 
 class TestBoolean(unittest.TestCase):
 
diff --git a/tests/test_iochannel.py b/tests/test_iochannel.py
deleted file mode 100644 (file)
index 8c035e9..0000000
+++ /dev/null
@@ -1,259 +0,0 @@
-# -*- Mode: Python -*-
-# encoding: UTF-8
-
-import unittest
-import tempfile
-import os.path
-import fcntl
-import shutil
-
-from gi.repository import GLib
-
-
-class IOChannel(unittest.TestCase):
-    def setUp(self):
-        self.workdir = tempfile.mkdtemp()
-
-        self.testutf8 = os.path.join(self.workdir, 'testutf8.txt')
-        with open(self.testutf8, 'wb') as f:
-            f.write('''hello ♥ world
-second line
-
-À demain!'''.encode('UTF-8'))
-
-        self.testlatin1 = os.path.join(self.workdir, 'testlatin1.txt')
-        with open(self.testlatin1, 'wb') as f:
-            f.write(b'''hell\xf8 world
-second line
-
-\xc0 demain!''')
-
-        self.testout = os.path.join(self.workdir, 'testout.txt')
-
-    def tearDown(self):
-        shutil.rmtree(self.workdir)
-
-    def test_file_readline_utf8(self):
-        ch = GLib.IOChannel(filename=self.testutf8)
-        self.assertEqual(ch.get_encoding(), 'UTF-8')
-        self.assertTrue(ch.get_close_on_unref())
-        self.assertEqual(ch.readline(), 'hello ♥ world\n')
-        self.assertEqual(ch.get_buffer_condition(), GLib.IOCondition.IN)
-        self.assertEqual(ch.readline(), 'second line\n')
-        self.assertEqual(ch.readline(), '\n')
-        self.assertEqual(ch.readline(), 'À demain!')
-        self.assertEqual(ch.get_buffer_condition(), 0)
-        self.assertEqual(ch.readline(), '')
-        ch.close()
-
-    def test_file_readline_latin1(self):
-        ch = GLib.IOChannel(filename=self.testlatin1, mode='r')
-        ch.set_encoding('latin1')
-        self.assertEqual(ch.get_encoding(), 'latin1')
-        self.assertEqual(ch.readline(), 'hellø world\n')
-        self.assertEqual(ch.readline(), 'second line\n')
-        self.assertEqual(ch.readline(), '\n')
-        self.assertEqual(ch.readline(), 'À demain!')
-        ch.close()
-
-    def test_file_iter(self):
-        items = []
-        ch = GLib.IOChannel(filename=self.testutf8)
-        for item in ch:
-            items.append(item)
-        self.assertEqual(len(items), 4)
-        self.assertEqual(items[0], 'hello ♥ world\n')
-        ch.close()
-
-    def test_file_readlines(self):
-        ch = GLib.IOChannel(filename=self.testutf8)
-        lines = ch.readlines()
-        # Note, this really ought to be 4, but the static bindings add an extra
-        # empty one
-        self.assertGreaterEqual(len(lines), 4)
-        self.assertLessEqual(len(lines), 5)
-        self.assertEqual(lines[0], 'hello ♥ world\n')
-        self.assertEqual(lines[3], 'À demain!')
-        if len(lines) == 4:
-            self.assertEqual(lines[4], '')
-
-    def test_file_read(self):
-        ch = GLib.IOChannel(filename=self.testutf8)
-        with open(self.testutf8, 'rb') as f:
-            self.assertEqual(ch.read(), f.read())
-
-        ch = GLib.IOChannel(filename=self.testutf8)
-        with open(self.testutf8, 'rb') as f:
-            self.assertEqual(ch.read(10), f.read(10))
-
-        ch = GLib.IOChannel(filename=self.testutf8)
-        with open(self.testutf8, 'rb') as f:
-            self.assertEqual(ch.read(max_count=15), f.read(15))
-
-    def test_seek(self):
-        ch = GLib.IOChannel(filename=self.testutf8)
-        ch.seek(2)
-        self.assertEqual(ch.read(3), b'llo')
-
-        ch.seek(2, 0)  # SEEK_SET
-        self.assertEqual(ch.read(3), b'llo')
-
-        ch.seek(1, 1)  # SEEK_CUR, skip the space
-        self.assertEqual(ch.read(3), b'\xe2\x99\xa5')
-
-        ch.seek(2, 2)  # SEEK_END
-        # FIXME: does not work currently
-        #self.assertEqual(ch.read(2), b'n!')
-
-        # invalid whence value
-        self.assertRaises(ValueError, ch.seek, 0, 3)
-
-    def test_file_write(self):
-        ch = GLib.IOChannel(filename=self.testout, mode='w')
-        ch.set_encoding('latin1')
-        ch.write('hellø world\n')
-        ch.close()
-        ch = GLib.IOChannel(filename=self.testout, mode='a')
-        ch.set_encoding('latin1')
-        ch.write('À demain!')
-        ch.close()
-
-        with open(self.testout, 'rb') as f:
-            self.assertEqual(f.read().decode('latin1'), 'hellø world\nÀ demain!')
-
-    def test_file_writelines(self):
-        ch = GLib.IOChannel(filename=self.testout, mode='w')
-        ch.writelines(['foo', 'bar\n', 'baz\n', 'end'])
-        ch.close()
-
-        with open(self.testout, 'r') as f:
-            self.assertEqual(f.read(), 'foobar\nbaz\nend')
-
-    def test_buffering(self):
-        writer = GLib.IOChannel(filename=self.testout, mode='w')
-        writer.set_encoding(None)
-        self.assertTrue(writer.get_buffered())
-        self.assertGreater(writer.get_buffer_size(), 10)
-
-        reader = GLib.IOChannel(filename=self.testout, mode='r')
-
-        # does not get written immediately on buffering
-        writer.write('abc')
-        self.assertEqual(reader.read(), b'')
-        writer.flush()
-        self.assertEqual(reader.read(), b'abc')
-
-        # does get written immediately without buffering
-        writer.set_buffered(False)
-        writer.write('def')
-        self.assertEqual(reader.read(), b'def')
-
-        # writes after buffer overflow
-        writer.set_buffer_size(10)
-        writer.write('0123456789012')
-        self.assertTrue(reader.read().startswith(b'012'))
-        writer.flush()
-        reader.read()  # ignore bits written after flushing
-
-        # closing flushes
-        writer.set_buffered(True)
-        writer.write('ghi')
-        writer.close()
-        self.assertEqual(reader.read(), b'ghi')
-        reader.close()
-
-    def test_fd_read(self):
-        (r, w) = os.pipe()
-
-        ch = GLib.IOChannel(filedes=r)
-        ch.set_encoding(None)
-        ch.set_flags(ch.get_flags() | GLib.IOFlags.NONBLOCK)
-        self.assertNotEqual(ch.get_flags() | GLib.IOFlags.NONBLOCK, 0)
-        self.assertEqual(ch.read(), b'')
-        os.write(w, b'\x01\x02')
-        self.assertEqual(ch.read(), b'\x01\x02')
-
-        # now test blocking case, after closing the write end
-        ch.set_flags(ch.get_flags() & ~GLib.IOFlags.NONBLOCK)
-        os.write(w, b'\x03\x04')
-        os.close(w)
-        self.assertEqual(ch.read(), b'\x03\x04')
-
-        ch.close()
-
-    def test_fd_write(self):
-        (r, w) = os.pipe()
-        fcntl.fcntl(r, fcntl.F_SETFL, fcntl.fcntl(r, fcntl.F_GETFL) | os.O_NONBLOCK)
-
-        ch = GLib.IOChannel(filedes=w, mode='w')
-        ch.set_encoding(None)
-        ch.set_buffered(False)
-        ch.write(b'\x01\x02')
-        self.assertEqual(os.read(r, 10), b'\x01\x02')
-
-        # now test blocking case, after closing the write end
-        fcntl.fcntl(r, fcntl.F_SETFL, fcntl.fcntl(r, fcntl.F_GETFL) & ~os.O_NONBLOCK)
-        ch.write(b'\x03\x04')
-        ch.close()
-        self.assertEqual(os.read(r, 10), b'\x03\x04')
-        os.close(r)
-
-    def test_add_watch_no_data(self):
-        (r, w) = os.pipe()
-
-        ch = GLib.IOChannel(filedes=r)
-        ch.set_encoding(None)
-        ch.set_flags(ch.get_flags() | GLib.IOFlags.NONBLOCK)
-
-        cb_reads = []
-
-        def cb(channel, condition):
-            self.assertEqual(channel, ch)
-            self.assertEqual(condition, GLib.IOCondition.IN)
-            cb_reads.append(channel.read())
-            return True
-
-        ch.add_watch(GLib.IOCondition.IN, cb)
-
-        ml = GLib.MainLoop()
-
-        GLib.timeout_add(10, lambda: os.write(w, b'a') and False)
-        GLib.timeout_add(100, lambda: os.write(w, b'b') and False)
-        GLib.timeout_add(200, ml.quit)
-        ml.run()
-
-        self.assertEqual(cb_reads, [b'a', b'b'])
-
-    def test_add_watch_data_priority(self):
-        (r, w) = os.pipe()
-
-        ch = GLib.IOChannel(filedes=r)
-        ch.set_encoding(None)
-        ch.set_flags(ch.get_flags() | GLib.IOFlags.NONBLOCK)
-
-        cb_reads = []
-
-        def cb(channel, condition, data):
-            self.assertEqual(channel, ch)
-            self.assertEqual(condition, GLib.IOCondition.IN)
-            self.assertEqual(data, 'hello')
-            cb_reads.append(channel.read())
-            return True
-
-        ml = GLib.MainLoop()
-        ch.add_watch(GLib.IOCondition.IN, cb, 'hello', GLib.PRIORITY_HIGH)
-
-        GLib.timeout_add(10, lambda: os.write(w, b'a') and False)
-        GLib.timeout_add(100, lambda: os.write(w, b'b') and False)
-        GLib.timeout_add(200, ml.quit)
-        ml.run()
-
-        self.assertEqual(cb_reads, [b'a', b'b'])
-
-    def test_backwards_compat_flags(self):
-        self.assertEqual(GLib.IOCondition.IN, GLib.IO_IN)
-        self.assertEqual(GLib.IOFlags.NONBLOCK, GLib.IO_FLAG_NONBLOCK)
-        self.assertEqual(GLib.IOFlags.IS_SEEKABLE, GLib.IO_FLAG_IS_SEEKABLE)
-
-if __name__ == '__main__':
-    unittest.main()
index 4c7794a..408a123 100644 (file)
@@ -41,23 +41,24 @@ class TestMainLoop(unittest.TestCase):
         os.close(pipe_w)
 
         def excepthook(type, value, traceback):
-            assert type is Exception
-            assert value.args[0] == "deadbabe"
+            self.assertTrue(type is Exception)
+            self.assertEqual(value.args[0], "deadbabe")
         sys.excepthook = excepthook
-
-        got_exception = False
         try:
-            loop.run()
-        except:
-            got_exception = True
+            got_exception = False
+            try:
+                loop.run()
+            except:
+                got_exception = True
+        finally:
+            sys.excepthook = sys.__excepthook__
 
         #
         # The exception should be handled (by printing it)
         # immediately on return from child_died() rather
         # than here. See bug #303573
         #
-        sys.excepthook = sys.__excepthook__
-        assert not got_exception
+        self.assertFalse(got_exception)
 
     def test_concurrency(self):
         def on_usr1(signum, frame):
index 405375d..490b1ae 100644 (file)
@@ -21,6 +21,7 @@ from gi.repository.GObject import \
 from gi.repository import Gio
 from gi.repository import GLib
 from gi.repository import GIMarshallingTests
+from gi._gobject import propertyhelper
 
 if sys.version_info < (3, 0):
     TEST_UTF8 = "\xe2\x99\xa5"
@@ -722,5 +723,69 @@ class TestProperty(unittest.TestCase):
 
         self.assertRaises(TypeError, tester._type_from_python, types.CodeType)
 
+
+class TestInstallProperties(unittest.TestCase):
+    # These tests only test how signalhelper.install_signals works
+    # with the __gsignals__ dict and therefore does not need to use
+    # GObject as a base class because that would automatically call
+    # install_signals within the meta-class.
+    class Base(object):
+        __gproperties__ = {'test': (0, '', '', 0, 0, 0, 0)}
+
+    class Sub1(Base):
+        pass
+
+    class Sub2(Base):
+        @GObject.Property(type=int)
+        def sub2test(self):
+            return 123
+
+    class ClassWithPropertyAndGetterVFunc(object):
+        @GObject.Property(type=int)
+        def sub2test(self):
+            return 123
+
+        def do_get_property(self, name):
+            return 321
+
+    class ClassWithPropertyRedefined(object):
+        __gproperties__ = {'test': (0, '', '', 0, 0, 0, 0)}
+        test = GObject.Property(type=int)
+
+    def setUp(self):
+        self.assertEqual(len(self.Base.__gproperties__), 1)
+        propertyhelper.install_properties(self.Base)
+        self.assertEqual(len(self.Base.__gproperties__), 1)
+
+    def test_subclass_without_properties_is_not_modified(self):
+        self.assertFalse('__gproperties__' in self.Sub1.__dict__)
+        propertyhelper.install_properties(self.Sub1)
+        self.assertFalse('__gproperties__' in self.Sub1.__dict__)
+
+    def test_subclass_with_decorator_gets_gproperties_dict(self):
+        # Sub2 has Property instances but will not have a __gproperties__
+        # until install_properties is called
+        self.assertFalse('__gproperties__' in self.Sub2.__dict__)
+        self.assertFalse('do_get_property' in self.Sub2.__dict__)
+        self.assertFalse('do_set_property' in self.Sub2.__dict__)
+
+        propertyhelper.install_properties(self.Sub2)
+        self.assertTrue('__gproperties__' in self.Sub2.__dict__)
+        self.assertEqual(len(self.Base.__gproperties__), 1)
+        self.assertEqual(len(self.Sub2.__gproperties__), 1)
+        self.assertTrue('sub2test' in self.Sub2.__gproperties__)
+
+        # get/set vfuncs should have been added
+        self.assertTrue('do_get_property' in self.Sub2.__dict__)
+        self.assertTrue('do_set_property' in self.Sub2.__dict__)
+
+    def test_object_with_property_and_do_get_property_vfunc_raises(self):
+        self.assertRaises(TypeError, propertyhelper.install_properties,
+                          self.ClassWithPropertyAndGetterVFunc)
+
+    def test_same_name_property_definitions_raises(self):
+        self.assertRaises(ValueError, propertyhelper.install_properties,
+                          self.ClassWithPropertyRedefined)
+
 if __name__ == '__main__':
     unittest.main()
index 6e497e1..fe674cd 100644 (file)
@@ -2,7 +2,7 @@
 
 import unittest
 
-from gi.repository import GLib, GObject
+from gi.repository import GLib
 
 
 class Idle(GLib.Idle):
@@ -113,17 +113,6 @@ class TestSource(unittest.TestCase):
         s = f()
         self.assertTrue(s.is_destroyed())
 
-    def testRemove(self):
-        s = GLib.idle_add(dir)
-        self.assertEqual(GLib.source_remove(s), True)
-        # s is now removed, should fail now
-        self.assertEqual(GLib.source_remove(s), False)
-
-        # accepts large source IDs (they are unsigned)
-        self.assertEqual(GLib.source_remove(GObject.G_MAXINT32), False)
-        self.assertEqual(GLib.source_remove(GObject.G_MAXINT32 + 1), False)
-        self.assertEqual(GLib.source_remove(GObject.G_MAXUINT32), False)
-
 
 class TestTimeout(unittest.TestCase):
     def test504337(self):