diff options
-rw-r--r-- | gdk-pixbuf/ChangeLog | 7 | ||||
-rw-r--r-- | gdk-pixbuf/gdk_pixbuf.def | 3 | ||||
-rw-r--r-- | gdk-pixbuf/makefile.msc | 3 |
3 files changed, 9 insertions, 4 deletions
diff --git a/gdk-pixbuf/ChangeLog b/gdk-pixbuf/ChangeLog index 390efd9fdc..2abab913c8 100644 --- a/gdk-pixbuf/ChangeLog +++ b/gdk-pixbuf/ChangeLog @@ -1,3 +1,10 @@ +2002-01-04 Hans Breuer <hans@breuer.org> + + * gdk_pixbuf.def : don't export functions prefixed + with underscore + + * makefile.msc : use -FImsvc_recommende_pragmas.h + Thu Jan 3 19:31:58 2002 Owen Taylor <otaylor@redhat.com> * pixops/pixops.c (scale_line_22_33): Fix and uncomment diff --git a/gdk-pixbuf/gdk_pixbuf.def b/gdk-pixbuf/gdk_pixbuf.def index 64e1d72bed..7f4cbb6f9c 100644 --- a/gdk-pixbuf/gdk_pixbuf.def +++ b/gdk-pixbuf/gdk_pixbuf.def @@ -1,7 +1,4 @@ EXPORTS - _gdk_pixbuf_get_module - _gdk_pixbuf_get_named_module - _gdk_pixbuf_load_module gdk_colorspace_get_type gdk_interp_type_get_type gdk_pixbuf_add_alpha diff --git a/gdk-pixbuf/makefile.msc b/gdk-pixbuf/makefile.msc index 5220575b3f..7c1d785738 100644 --- a/gdk-pixbuf/makefile.msc +++ b/gdk-pixbuf/makefile.msc @@ -20,7 +20,8 @@ BUILT_IN_FORMATS = -DINCLUDE_png -DINCLUDE_bmp -DINCLUDE_gif \ -PKG_CFLAGS = -I. -I.. $(GLIB_CFLAGS) \ +PKG_CFLAGS = -FImsvc_recommended_pragmas.h \ + -I. -I.. $(GLIB_CFLAGS) \ $(BUILT_IN_FORMATS) \ $(JPEG_CFLAGS) $(PNG_CFLAGS) $(TIFF_CFLAGS) $(INTL_CFLAGS) \ $(G_DEBUGGING) \ |