diff options
author | Anders Carlsson <andersca@luminoth.local> | 2006-03-13 08:40:54 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@src.gnome.org> | 2006-03-13 08:40:54 +0000 |
commit | 8a51746479760a6624ed9e5ea7200856608621c0 (patch) | |
tree | 34a797fd8977a350554eebeb96d3e2783568b16d | |
parent | 96d6540007ac0a16d9a974462e84dea95e6a18fe (diff) |
Revert fix for #322476, it breaks module loading since libtool on darwin
2006-03-13 Anders Carlsson <andersca@luminoth.local>
* configure.in: Revert fix for #322476, it breaks module loading
since libtool on darwin makes shared modules use .so and shared
libraries use .dylib. The fix breaks shared module loading everywhere
in GTK+.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | ChangeLog.pre-2-10 | 7 | ||||
-rw-r--r-- | ChangeLog.pre-2-12 | 7 | ||||
-rw-r--r-- | configure.in | 3 |
4 files changed, 21 insertions, 3 deletions
@@ -1,3 +1,10 @@ +2006-03-13 Anders Carlsson <andersca@luminoth.local> + + * configure.in: Revert fix for #322476, it breaks module loading + since libtool on darwin makes shared modules use .so and shared + libraries use .dylib. The fix breaks shared module loading everywhere + in GTK+. + 2006-03-02 Marcus Brinkmann <mb@g10code.de> Implement watches for GIOChannels for write file descriptors on diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index b8bdfc306..debb4d67f 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,10 @@ +2006-03-13 Anders Carlsson <andersca@luminoth.local> + + * configure.in: Revert fix for #322476, it breaks module loading + since libtool on darwin makes shared modules use .so and shared + libraries use .dylib. The fix breaks shared module loading everywhere + in GTK+. + 2006-03-02 Marcus Brinkmann <mb@g10code.de> Implement watches for GIOChannels for write file descriptors on diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index b8bdfc306..debb4d67f 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,10 @@ +2006-03-13 Anders Carlsson <andersca@luminoth.local> + + * configure.in: Revert fix for #322476, it breaks module loading + since libtool on darwin makes shared modules use .so and shared + libraries use .dylib. The fix breaks shared module loading everywhere + in GTK+. + 2006-03-02 Marcus Brinkmann <mb@g10code.de> Implement watches for GIOChannels for write file descriptors on diff --git a/configure.in b/configure.in index fa18ce438..bbad989f9 100644 --- a/configure.in +++ b/configure.in @@ -1322,9 +1322,6 @@ case "$host_os" in aix*) glib_gmodule_suffix='a' ;; - darwin*) - glib_gmodule_suffix='dylib' - ;; *) glib_gmodule_suffix='so' ;; |