mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
6ff97d2e0b
2001-03-31 Hans Breuer <hans@breuer.org> * config.h.win32.in : disable USE_MMX for msvc build cause the assembler doesn't fit and is out of my scope. Disable USE_GMODULE for msvc build as wel. The right way to share binaries on win32 would be to use libtiff.dll etc. To reduce installation hassles IMO it's better to include all fileformats builtin to gdk-pixbuf * gdk-pixbuf/makefile.msc : new file * gdk/gdk.def : updated * gdk/win32/gdkevents-win32.c : don't erase the background if .no_bg is set. It improves the scrolling (e.g. of testgtk main buttons * gdk/win32/gdkgeometry-win32.c : added comment about the above * gdk/win32/gdkwindow-win32.c : added three new functions like the X version. Only one is implemented, because the other two "gdk_window_begin_(resize|move)_drag" got no docs and appear to be default behaviour on win32 anyway ... * gtk/gtk.def : updated * gtk/makefile.msc.in : update for new files, use glib-genmarshal from where it was built and add an additional rule to automagically build gtkmarshal.[hc] * gtk/gtkfilesel.c (open_new_dir) : don't increase n_entries before array access for the current entry isn't finished * gtk/gtktreeitem.c (gtk_tree_item_subtree_button_click) : use g_return_val_if_fail * gtk/testgtk.c (window_controls) : don't use the *wrong* size for the static array, but let the compiler calculate it. It makes me wonder if gcc isn't capable to catch bugs like this ...
90 lines
2.2 KiB
Plaintext
90 lines
2.2 KiB
Plaintext
TOP = ..\..
|
|
PRJ_TOP = ..
|
|
PACKAGE = gdk_pixbuf
|
|
PKG_VER = $(GDK_PIXBUF_VER)
|
|
|
|
!INCLUDE $(TOP)/build/win32/make.msc
|
|
|
|
GDK_PIXBUF_VER = 1.3
|
|
|
|
# force inclusion of gdk-pixbuf-io-include.h
|
|
# to get _working_ include modules ...
|
|
|
|
PKG_CFLAGS = -I. -I.. $(GLIB_CFLAGS) \
|
|
-FIgdk-pixbuf-io-include.h \
|
|
$(JPEG_CFLAGS) $(PNG_CFLAGS) $(TIFF_CFLAGS) $(INTL_CFLAGS) \
|
|
-UUSE_GMODULE # use built-in
|
|
# -DUSE_GMODULE -DPIXBUF_LIBDIR=\".\"
|
|
|
|
|
|
PKG_LINK = $(GLIB_LIBS) \
|
|
$(JPEG_LIBS) $(PNG_LIBS) $(TIFF_LIBS) $(INTL_LIBS) \
|
|
pixops\pixops.lib
|
|
|
|
OBJECTS = \
|
|
gdk-pixbuf-animation.obj \
|
|
gdk-pixbuf-data.obj \
|
|
gdk-pixbuf-io.obj \
|
|
gdk-pixbuf-loader.obj \
|
|
gdk-pixbuf-scale.obj \
|
|
gdk-pixbuf-util.obj \
|
|
gdk-pixbuf.obj \
|
|
io-bmp.obj \
|
|
io-wbmp.obj \
|
|
io-gif.obj \
|
|
io-ico.obj \
|
|
io-png.obj \
|
|
io-pnm.obj \
|
|
io-ras.obj \
|
|
io-tiff.obj \
|
|
io-xpm.obj \
|
|
io-jpeg.obj \
|
|
|
|
gdk-pixbuf-marshal.h: gdk-pixbuf-marshal.list
|
|
..\..\glib\gobject\glib-genmarshal --prefix=gdk_pixbuf_marshal gdk-pixbuf-marshal.list --header >gdk-pixbuf-marshal.h
|
|
|
|
gdk-pixbuf-marshal.c: gdk-pixbuf-marshal.list
|
|
..\..\glib\gobject\glib-genmarshal --prefix=gdk_pixbuf_marshal gdk-pixbuf-marshal.list --body >gdk-pixbuf-marshal.c
|
|
|
|
## common stuff
|
|
|
|
# cl -? describes the options
|
|
CC = cl -G5 -GF $(OPTIMIZE) -W3 -nologo
|
|
|
|
# No general LDFLAGS needed
|
|
LDFLAGS = /link $(LINKDEBUG)
|
|
INSTALL = copy
|
|
|
|
CFLAGS = -I. -DHAVE_CONFIG_H
|
|
|
|
## targets
|
|
all : \
|
|
$(PRJ_TOP)\config.h \
|
|
gdk-pixbuf-marshal.c \
|
|
gdk-pixbuf-marshal.h \
|
|
$(PACKAGE)-$(PKG_VER).dll \
|
|
make-inline-pixbuf.exe \
|
|
test-gdk-pixbuf.exe
|
|
|
|
$(PACKAGE).lib : $(OBJECTS)
|
|
lib /out:$(PACKAGE).lib $(OBJECTS)
|
|
|
|
$(PACKAGE)-$(PKG_VER).dll : $(OBJECTS) $(PACKAGE).def
|
|
$(CC) $(CFLAGS) -LD -Fe$(PACKAGE)-$(PKG_VER).dll $(OBJECTS) $(PKG_LINK) user32.lib advapi32.lib wsock32.lib $(LDFLAGS) /def:$(PACKAGE).def
|
|
|
|
make-inline-pixbuf.exe : make-inline-pixbuf.c
|
|
$(CC) $(PKG_CFLAGS) -Femake-inline-pixbuf.exe make-inline-pixbuf.c $(PKG_LINK) $(PACKAGE)-$(PKG_VER).lib
|
|
|
|
test-gdk-pixbuf.exe : test-gdk-pixbuf.c
|
|
$(CC) $(PKG_CFLAGS) -Fetest-gdk-pixbuf.exe test-gdk-pixbuf.c $(PKG_LINK) $(PACKAGE)-$(PKG_VER).lib
|
|
|
|
$(PRJ_TOP)\config.h: $(PRJ_TOP)\config.h.win32
|
|
copy $(PRJ_TOP)\config.h.win32 $(PRJ_TOP)\config.h
|
|
|
|
.c.obj :
|
|
$(CC) $(CFLAGS) -GD -c $(PKG_CFLAGS) $<
|
|
|
|
clean::
|
|
del config.h
|
|
|