diff options
author | Hans Breuer <hans@breuer.org> | 2001-07-28 23:02:02 +0000 |
---|---|---|
committer | Hans Breuer <hans@src.gnome.org> | 2001-07-28 23:02:02 +0000 |
commit | da155bb731639043abe99ac3b0c1dc32012dc87e (patch) | |
tree | 3fdd650ea8d087a62a85a284eb716e0b99095630 /gdk/makefile.msc | |
parent | 2d6add1880b0a0b94c8bf31d1097b0b2397d0a14 (diff) | |
download | gtk+-da155bb731639043abe99ac3b0c1dc32012dc87e.tar.gz |
build in the backend dir after auto-generating files
2001-07-29 Hans Breuer <hans@breuer.org>
* gdk/makefile.msc : build in the backend dir after
auto-generating files
* gdk/win32/gdkfont-win32.c (gdk_font_load) : reimplement
with code from win32-production-branch.
* gdk/win32/gdkwindow-win32.c : set the private->destroyed flag
before calling DestroyWindow, which indirectly calls
gdk_window_destroy_notify ()
(performance patch merged from win32-production-branch)
* gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_segments):
Use PatBlt() instead of LineTo() when possible (solid single-pixel pen,
R2_COPYPEN rop). It is claimed to be much faster.
Diffstat (limited to 'gdk/makefile.msc')
-rw-r--r-- | gdk/makefile.msc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdk/makefile.msc b/gdk/makefile.msc index 7866cd2455..dd6c377fc6 100644 --- a/gdk/makefile.msc +++ b/gdk/makefile.msc @@ -45,11 +45,17 @@ CFLAGS = -I . -I .. $(GLIB_CFLAGS) $(PANGO_CFLAGS) -I ../gdk-pixbuf \ EXTRALIBS = $(WTKIT)\lib\i386\wntab32x.lib $(GLIB_LIBS) \ ..\gdk-pixbuf\gdk_pixbuf-$(GDK_PIXBUF_VER).lib $(PANGOWIN32_LIBS) +gdk-win32-backend : + cd win32 + nmake -nologo -f makefile.msc + cd .. + all: \ ..\config.h \ gdkconfig.h \ gdkenumtypes.h \ gdkenumtypes.c \ + gdk-win32-backend \ gdk-win32-$(GTK_VER).dll \ testgdk.exe |