Do search GTK_BINARY_VERSION -specific directory on Windows, too (#63759).

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

	* gtk/gtkmain.c (find_module): Do search GTK_BINARY_VERSION
	-specific directory on Windows, too (#63759).
This commit is contained in:
Tor Lillqvist 2001-11-06 00:40:19 +00:00 committed by Tor Lillqvist
parent 5e362e191b
commit 9af1351da5
8 changed files with 35 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2001-11-06 Tor Lillqvist <tml@iki.fi>
* gtk/gtkmain.c (find_module): Do search GTK_BINARY_VERSION
-specific directory on Windows, too (#63759).
Mon Nov 5 12:46:44 2001 Owen Taylor <otaylor@redhat.com>
* gdk/x11/gdkdrawable-x11.[ch] gdk/x11/gdkgc-x11.c

View File

@ -1,3 +1,8 @@
2001-11-06 Tor Lillqvist <tml@iki.fi>
* gtk/gtkmain.c (find_module): Do search GTK_BINARY_VERSION
-specific directory on Windows, too (#63759).
Mon Nov 5 12:46:44 2001 Owen Taylor <otaylor@redhat.com>
* gdk/x11/gdkdrawable-x11.[ch] gdk/x11/gdkgc-x11.c

View File

@ -1,3 +1,8 @@
2001-11-06 Tor Lillqvist <tml@iki.fi>
* gtk/gtkmain.c (find_module): Do search GTK_BINARY_VERSION
-specific directory on Windows, too (#63759).
Mon Nov 5 12:46:44 2001 Owen Taylor <otaylor@redhat.com>
* gdk/x11/gdkdrawable-x11.[ch] gdk/x11/gdkgc-x11.c

View File

@ -1,3 +1,8 @@
2001-11-06 Tor Lillqvist <tml@iki.fi>
* gtk/gtkmain.c (find_module): Do search GTK_BINARY_VERSION
-specific directory on Windows, too (#63759).
Mon Nov 5 12:46:44 2001 Owen Taylor <otaylor@redhat.com>
* gdk/x11/gdkdrawable-x11.[ch] gdk/x11/gdkgc-x11.c

View File

@ -1,3 +1,8 @@
2001-11-06 Tor Lillqvist <tml@iki.fi>
* gtk/gtkmain.c (find_module): Do search GTK_BINARY_VERSION
-specific directory on Windows, too (#63759).
Mon Nov 5 12:46:44 2001 Owen Taylor <otaylor@redhat.com>
* gdk/x11/gdkdrawable-x11.[ch] gdk/x11/gdkgc-x11.c

View File

@ -1,3 +1,8 @@
2001-11-06 Tor Lillqvist <tml@iki.fi>
* gtk/gtkmain.c (find_module): Do search GTK_BINARY_VERSION
-specific directory on Windows, too (#63759).
Mon Nov 5 12:46:44 2001 Owen Taylor <otaylor@redhat.com>
* gdk/x11/gdkdrawable-x11.[ch] gdk/x11/gdkgc-x11.c

View File

@ -1,3 +1,8 @@
2001-11-06 Tor Lillqvist <tml@iki.fi>
* gtk/gtkmain.c (find_module): Do search GTK_BINARY_VERSION
-specific directory on Windows, too (#63759).
Mon Nov 5 12:46:44 2001 Owen Taylor <otaylor@redhat.com>
* gdk/x11/gdkdrawable-x11.[ch] gdk/x11/gdkgc-x11.c

View File

@ -320,7 +320,6 @@ find_module (gchar **module_path,
{
gchar *version_directory;
#ifndef G_OS_WIN32 /* ignoring GTK_BINARY_VERSION elsewhere too */
version_directory = g_build_filename (module_path[i], GTK_BINARY_VERSION, NULL);
module_name = g_module_build_path (version_directory, name);
g_free (version_directory);
@ -333,7 +332,6 @@ find_module (gchar **module_path,
}
g_free (module_name);
#endif
module_name = g_module_build_path (module_path[i], name);