summaryrefslogtreecommitdiff
path: root/gtk/gtkmain.c
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2001-11-06 00:40:19 +0000
committerTor Lillqvist <tml@src.gnome.org>2001-11-06 00:40:19 +0000
commit9af1351da5732a0295e31c7673ec7843ef65efa8 (patch)
treeec52ca8cb596448d0559ee1480c8fd18c925b12a /gtk/gtkmain.c
parent5e362e191bcc6b78bdd8b445ae2285d9eae331bc (diff)
downloadgdk-pixbuf-9af1351da5732a0295e31c7673ec7843ef65efa8.tar.gz
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).
Diffstat (limited to 'gtk/gtkmain.c')
-rw-r--r--gtk/gtkmain.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/gtk/gtkmain.c b/gtk/gtkmain.c
index 9e84e03ac..6e6c9452c 100644
--- a/gtk/gtkmain.c
+++ b/gtk/gtkmain.c
@@ -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);