forked from AuroraMiddleware/gtk
fix typo for GTK_VER; define HAVE_CONFIG_H cause gtkprogressbar.c has
2005-09-18 Hans Breuer <hans@breuer.org> * gtk/makefile.msc.in : fix typo for GTK_VER; define HAVE_CONFIG_H cause gtkprogressbar.c has #include <config.h> conditionally; less noise from generated gtk.def * gtk/stock-icons/makefile.msc gdk/makefile.msc tests/makefile.msc : updated * gtk/gtktrayicon-win32.c : dummy implmentation to make gtk compile. For me it works as well as the *NIX implemenation, that is not at all. * gdk/win32/gdkproperty-win32.c : implement gdk_atom_intern_static_string() * gdk/win32/gdkwindow-win32.c(gdk_window_set_urgency_hint) : only use only use (WINVER >= 0x0500) when available from the SDK. Otherwise fall back to true dynamic linking of FlashWindowEx. Makes gtk+ work on NT4.0 again - if compiled properly. * tests/teststatusicon.c : don't use GNOME icons for testing, but icons already coming with Gtk+. Makes it compile on win32.
This commit is contained in:
parent
baf847bd1f
commit
1127a03f71
@ -10,7 +10,7 @@ TOP = ..\..
|
|||||||
################################################################
|
################################################################
|
||||||
|
|
||||||
# Not the real version but the one used in the DLL names
|
# Not the real version but the one used in the DLL names
|
||||||
GTK_VER = 2,0
|
GTK_VER = 2.0
|
||||||
GDK_PIXBUF_VER = 2.0
|
GDK_PIXBUF_VER = 2.0
|
||||||
|
|
||||||
|
|
||||||
@ -31,7 +31,9 @@ DEPCFLAGS = $(PANGO_CFLAGS) $(GLIB_CFLAGS) $(LIBICONV_CFLAGS) \
|
|||||||
LDFLAGS = $(ATK_LIBS) /link /machine:ix86 $(LINKDEBUG)
|
LDFLAGS = $(ATK_LIBS) /link /machine:ix86 $(LINKDEBUG)
|
||||||
# Some files use near as an identifier
|
# Some files use near as an identifier
|
||||||
# Don't define GTK_COMPILATION here, because it's for gtk-x.x.dll only
|
# Don't define GTK_COMPILATION here, because it's for gtk-x.x.dll only
|
||||||
DEFINES = $(G_DEBUGGING) -DGTK_DISABLE_COMPAT_H -DG_LOG_DOMAIN=\"Gtk\" -Dnear=xxnear \
|
DEFINES = \
|
||||||
|
-DHAVE_CONFIG_H \
|
||||||
|
$(G_DEBUGGING) -DGTK_DISABLE_COMPAT_H -DG_LOG_DOMAIN=\"Gtk\" -Dnear=xxnear \
|
||||||
-DPANGO_ENABLE_BACKEND \
|
-DPANGO_ENABLE_BACKEND \
|
||||||
-DGTK_VERSION=\"$(GTK_VER)\" -DGTK_BINARY_VERSION=\"$(GTK_BINARY_VERSION)\" \
|
-DGTK_VERSION=\"$(GTK_VER)\" -DGTK_BINARY_VERSION=\"$(GTK_BINARY_VERSION)\" \
|
||||||
-DGTK_HOST=\"win32\" \
|
-DGTK_HOST=\"win32\" \
|
||||||
@ -196,6 +198,7 @@ gtk_OBJECTS = \
|
|||||||
gtksocket.obj \
|
gtksocket.obj \
|
||||||
gtksocket-win32.obj \
|
gtksocket-win32.obj \
|
||||||
gtkspinbutton.obj \
|
gtkspinbutton.obj \
|
||||||
|
gtkstatusicon.obj \
|
||||||
gtkstyle.obj \
|
gtkstyle.obj \
|
||||||
gtkstatusbar.obj \
|
gtkstatusbar.obj \
|
||||||
gtkstock.obj \
|
gtkstock.obj \
|
||||||
@ -224,6 +227,7 @@ gtk_OBJECTS = \
|
|||||||
gtktoolbutton.obj \
|
gtktoolbutton.obj \
|
||||||
gtktoolitem.obj \
|
gtktoolitem.obj \
|
||||||
gtktooltips.obj \
|
gtktooltips.obj \
|
||||||
|
gtktrayicon-win32.obj \
|
||||||
gtktree.obj \
|
gtktree.obj \
|
||||||
gtktreedatalist.obj \
|
gtktreedatalist.obj \
|
||||||
gtktreednd.obj \
|
gtktreednd.obj \
|
||||||
@ -276,6 +280,7 @@ gtk_public_h_sources = \
|
|||||||
gtkcelllayout.h \
|
gtkcelllayout.h \
|
||||||
gtkcellrenderer.h \
|
gtkcellrenderer.h \
|
||||||
gtkcellrendererpixbuf.h \
|
gtkcellrendererpixbuf.h \
|
||||||
|
gtkcellrendererkeys.h \
|
||||||
gtkcellrenderertext.h \
|
gtkcellrenderertext.h \
|
||||||
gtkcellrenderertoggle.h \
|
gtkcellrenderertoggle.h \
|
||||||
gtkcellview.h \
|
gtkcellview.h \
|
||||||
@ -322,6 +327,7 @@ gtk_public_h_sources = \
|
|||||||
gtkhscale.h \
|
gtkhscale.h \
|
||||||
gtkhscrollbar.h \
|
gtkhscrollbar.h \
|
||||||
gtkhseparator.h \
|
gtkhseparator.h \
|
||||||
|
gtkstatusicon.h \
|
||||||
gtkhsv.h \
|
gtkhsv.h \
|
||||||
gtkiconfactory.h \
|
gtkiconfactory.h \
|
||||||
gtkicontheme.h \
|
gtkicontheme.h \
|
||||||
|
Loading…
Reference in New Issue
Block a user