forked from AuroraMiddleware/gtk
be3809f0ba
2001-10-28 Hans Breuer <hans@breuer.org> * gtk/gtkfontsel.c : use g_strcasecmp(), some poor platforms don't have strcasecmp() * gtk/gtktextview.c : to fix crashing on e.g. TextView::find need to remove the idle funcs in gtk_text_view_destroy (). To reduce code duplication wrap it in its own function and use it in gtk_text_view_unrealize () and gtk_text_view_destroy_layout () * gdk/win32/gdkdrawable-win32.c : implement the finalize method like the X11 version does, allow to set_colormap NULL * gdk/win32/gdkwindow-win32.c : adapt GdkWindowImplWin32:: set_colormap, also some adaption to X11 version : (gdk_window_hide) call _gdk_window_clear_update_area (gdk_window_reparent) call _gdk_window_init_position * gdk/win32/gdkwindow-win32.c (gdk_window_set_geometry_hints) : call gdk_window_resize() after all hints are set, because the window resizing process (WM_GETMINMAXINFO) takes all of them into account * gdk/win32/gdkfont-win32.c : make gdk_font_equal return a gboolean * gdk/win32/gdkvisual-win32.c : register GdkVisual with sizeof (GdkVisualPrivate) * gdk/gdk.def gtk/gtk.def : upated externals * gdk/makefile.msc gdk/win32/makefile.msc gdk-pixbuf/makefile.msc gdk-pixbuf/pixops/makefile.msc gtk/makefile.msc.in tests/makefile.msc : from now on use make.msc from $(TOP)/glib/build/win32 * gtk/stock-icons/makefile.msc : add stock_missing_image
148 lines
3.5 KiB
Plaintext
148 lines
3.5 KiB
Plaintext
## Makefile for building the GDK DLL with Microsoft C
|
|
## Use: nmake -f makefile.msc
|
|
|
|
## You must first build the Win32-dependent sources in the win32 subdirectory.
|
|
|
|
## There is no install target, you have to decide where and
|
|
## how to install for yourself.
|
|
|
|
TOP = ../..
|
|
!INCLUDE $(TOP)/glib/build/win32/make.msc
|
|
|
|
# Location of the Wintab toolkit. Downloadable from http://www.pointing.com.
|
|
# definition should possibly go to build/win32/module.def, too.
|
|
WTKIT = ..\..\wtkit126
|
|
|
|
###############################################################
|
|
|
|
# Nothing much configurable below
|
|
|
|
!IFNDEF DEBUG
|
|
# Full optimization:
|
|
OPTIMIZE = -Ox -MD -Zi
|
|
LINKDEBUG = /nodefaultlib:libc.lib
|
|
!ELSE
|
|
# Debugging:
|
|
OPTIMIZE = -Zi -MDd
|
|
LINKDEBUG = /nodefaultlib:libcd.lib /nodefaultlib:libc.lib /debug
|
|
!ENDIF
|
|
|
|
# cl -? describes the options
|
|
CC = cl -G5 -GF $(OPTIMIZE) -W3 -nologo
|
|
|
|
LDFLAGS = /link $(LINKDEBUG)
|
|
|
|
# overwrite version?
|
|
GTK_VER=1.3
|
|
GDK_PIXBUF_VER=$(GTK_VER)
|
|
|
|
!IFNDEF PERL
|
|
PERL = perl
|
|
!ENDIF
|
|
|
|
CFLAGS = -I . -I .. $(GLIB_CFLAGS) $(PANGO_CFLAGS) -I ../gdk-pixbuf \
|
|
$(G_DEBUGGING) -DHAVE_CONFIG_H -DGDK_ENABLE_BROKEN -DGDK_VERSION=\"$(GTK_VER)\"
|
|
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 \
|
|
gdk-win32-$(GTK_VER)s.lib \
|
|
# gdk-x11-$(GTK_VER).dll \
|
|
|
|
gdk_OBJECTS = \
|
|
gdk.obj \
|
|
gdkcolor.obj \
|
|
gdkcursor.obj \
|
|
gdkdraw.obj \
|
|
gdkenumtypes.obj \
|
|
gdkevents.obj \
|
|
gdkfont.obj \
|
|
gdkgc.obj \
|
|
gdkglobals.obj \
|
|
gdkimage.obj \
|
|
gdkkeys.obj \
|
|
gdkkeyuni.obj \
|
|
gdkpango.obj \
|
|
gdkpixbuf-drawable.obj \
|
|
gdkpixbuf-render.obj \
|
|
gdkpixmap.obj \
|
|
gdkpolyreg-generic.obj \
|
|
gdkrectangle.obj \
|
|
gdkregion-generic.obj \
|
|
gdkrgb.obj \
|
|
gdkwindow.obj
|
|
|
|
gdk_public_h_sources = \
|
|
gdk.h \
|
|
gdkcolor.h \
|
|
gdkcursor.h \
|
|
gdkcursors.h \
|
|
gdkdnd.h \
|
|
gdkdrawable.h \
|
|
gdkevents.h \
|
|
gdkfont.h \
|
|
gdkgc.h \
|
|
gdkkeysyms.h \
|
|
gdki18n.h \
|
|
gdkimage.h \
|
|
gdkinput.h \
|
|
gdkkeys.h \
|
|
gdkpango.h \
|
|
gdkpixbuf.h \
|
|
gdkpixmap.h \
|
|
gdkproperty.h \
|
|
gdkregion.h \
|
|
gdkrgb.h \
|
|
gdkselection.h \
|
|
gdktypes.h \
|
|
gdkvisual.h \
|
|
gdkwindow.h \
|
|
|
|
gdkenumtypes.h: $(gdk_public_h_sources) makeenums.pl
|
|
$(PERL) makeenums.pl include $(gdk_public_h_sources) > gdkenumtypes.h
|
|
|
|
gdkenumtypes.c: $(gdk_public_h_sources) makeenums.pl
|
|
$(PERL) makeenums.pl cfile $(gdk_public_h_sources) > gdkenumtypes.c
|
|
|
|
..\config.h : ..\config.h.win32
|
|
copy ..\config.h.win32 ..\config.h
|
|
|
|
gdkconfig.h : gdkconfig.h.win32
|
|
copy gdkconfig.h.win32 gdkconfig.h
|
|
|
|
gdk-win32-$(GTK_VER).dll : $(gdk_OBJECTS) gdk.def win32\gdk-win32.lib
|
|
$(CC) $(CFLAGS) -LD -Fegdk-win32-$(GTK_VER).dll $(gdk_OBJECTS) win32\gdk-win32.lib $(EXTRALIBS) gdi32.lib user32.lib imm32.lib shell32.lib ole32.lib uuid.lib win32\gdk.res $(LDFLAGS) /def:gdk.def
|
|
|
|
gdk-win32-$(GTK_VER)s.lib : $(gdk_OBJECTS)
|
|
lib /out:gdk-win32-$(GTK_VER)s.lib $(gdk_OBJECTS) win32\gdk-win32.lib
|
|
|
|
gdk-x11-$(GTK_VER).dll : $(gdk_OBJECTS) gdk.def x11\gdk-x11.lib
|
|
$(CC) $(CFLAGS) -LD -Fegdk-x11-$(GTK_VER).dll $(gdk_OBJECTS) \
|
|
$(PANGO)\pango\pangox-$(PANGO_VER).lib \
|
|
x11\gdk-x11.lib $(X11_LIBS) $(EXTRALIBS) user32.lib $(LDFLAGS) /def:gdk.def
|
|
|
|
testgdk.exe : gdk-win32-$(GTK_VER).dll testgdk.obj
|
|
$(CC) -Fetestgdk.exe testgdk.obj gdk-win32-$(GTK_VER).lib $(EXTRALIBS) $(LDFLAGS)
|
|
|
|
.c.obj :
|
|
$(CC) $(CFLAGS) -GD -c -DGDK_COMPILATION -DG_LOG_DOMAIN=\"Gdk\" $<
|
|
|
|
clean::
|
|
del *.dll
|
|
del *.obj
|
|
del *.lib
|
|
del *.err
|
|
del *.res
|