summaryrefslogtreecommitdiff
path: root/gtk/gtkthemes.c
diff options
context:
space:
mode:
authorTor Lillqvist <tml@src.gnome.org>1999-07-21 19:27:25 +0000
committerTor Lillqvist <tml@src.gnome.org>1999-07-21 19:27:25 +0000
commit45a3396064873cf248908a0d275caa342a3bc4c1 (patch)
tree76eb1cb0c5371f21113179f1203f474a69fd38cf /gtk/gtkthemes.c
parent0a07d3ba1f9ee29fdf0cc5a145a439df9d1df65c (diff)
downloadgtk+-45a3396064873cf248908a0d275caa342a3bc4c1.tar.gz
Update gcc build instructions. Mention gettext is GPL.
* README.win32: Update gcc build instructions. Mention gettext is GPL. * gdk/win32/gdkcursor.c (gdk_cursor_new_from_pixmap): Get correct supported cursor size with GetSystemMetrics. * gdk/win32/gdkfont.c * gtk/gtkfontsel.c: Guard against some font weight and charset symbols being undefined (in mingw32 headers). * gdk/win32/makefile.cygwin * gtk/makefile.cygwin * gtk/gtkthemes.c: No longer need to have differently named gcc-built DLLs when using gcc-2.95 and -fnative-struct.
Diffstat (limited to 'gtk/gtkthemes.c')
-rw-r--r--gtk/gtkthemes.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/gtk/gtkthemes.c b/gtk/gtkthemes.c
index 6ac188806b..e39646de8e 100644
--- a/gtk/gtkthemes.c
+++ b/gtk/gtkthemes.c
@@ -83,19 +83,7 @@ gtk_theme_engine_get (gchar *name)
GModule *library;
#ifndef __EMX__
-#if defined (NATIVE_WIN32) && defined (__GNUC__)
- {
- /* When built with gcc on Win32, use DLLs named *.gcc.dll,
- * because MSVC-compiled GTK code is not fully binary compatible
- * with gcc-compiled.
- */
- gchar *gccname = g_strconcat (name, ".gcc", NULL);
- fullname = g_module_build_path (NULL, gccname);
- g_free (gccname);
- }
-#else
fullname = g_module_build_path (NULL, name);
-#endif
#else
fullname = g_malloc (13);
gen_8_3_dll_name(name, fullname);