diff options
author | Hans Breuer <hans@breuer.org> | 2003-11-15 20:35:55 +0000 |
---|---|---|
committer | Hans Breuer <hans@src.gnome.org> | 2003-11-15 20:35:55 +0000 |
commit | 947b32b7dcaf233f3c2bb9a38fb07c2c64a1ee0b (patch) | |
tree | 291ecb13f1f016b39addcbe1d9f84c551f5d982e /gdk/makefile.msc | |
parent | 9e831c8b8ea506d02e31d4aefa86f49a29a395a6 (diff) | |
download | gtk+-947b32b7dcaf233f3c2bb9a38fb07c2c64a1ee0b.tar.gz |
updated added all the new tests
2003-11-15 Hans Breuer <hans@breuer.org>
* gdk/makefile.msc gdk/gdk.def
gtk/gtk.def gtk/makefile.msc.in : updated
* tests/makefile.msc : added all the new tests
* gtk/gtkfilefilter.c(finalize) : initialize filter
from object not from itself
* gtk/gtkfilesystemwin32.[hc] : copied from gtkfilesystemunix.[hc]
modified as less as posible to have aworking implementation
on win32. There maybe the desire to merge the unchanged pats into
a common base class.
Also implemented a simple glib based bookmark handling, which
is currently missing in gtkfilesystemunix.[hc] but can be copied
over there.
* gtk/gtkfilechooserwidget.c : conditional include gtkfilesystemwin32.h
* gdk/win32/gdkwindow-win32.c : implement
gdk_window_set_keep_above() and gdk_window_set_keep_below()
* tests/testmerge.c : don't include unistd.h unconditionally,
#define STDOUT_FILENO if it isn't defined
* tests/testfilechooser.c : make it compile on win32
Diffstat (limited to 'gdk/makefile.msc')
-rw-r--r-- | gdk/makefile.msc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gdk/makefile.msc b/gdk/makefile.msc index cf20dcf5f0..8baf968186 100644 --- a/gdk/makefile.msc +++ b/gdk/makefile.msc @@ -42,7 +42,10 @@ PERL = perl CFLAGS = -FImsvc_recommended_pragmas.h -I . -I .. \ $(GLIB_CFLAGS) $(PANGO_CFLAGS) -I ../gdk-pixbuf \ - $(G_DEBUGGING) -DHAVE_CONFIG_H -DGDK_ENABLE_BROKEN -DGDK_VERSION=\"$(GTK_VER)\" + $(G_DEBUGGING) -DHAVE_CONFIG_H -DGDK_ENABLE_BROKEN \ + -DGDK_VERSION=\"$(GTK_VER)\" \ + -DG_LOG_DOMAIN=\"Gdk\" + EXTRALIBS = $(WTKIT)\lib\i386\wntab32x.lib $(GLIB_LIBS) \ ..\gdk-pixbuf\gdk_pixbuf-$(GDK_PIXBUF_VER).lib \ $(PANGOWIN32_LIBS) $(INTL_LIBS) |