forked from AuroraMiddleware/gtk
4f0f733060
2000-01-16 Federico Mena Quintero <federico@helixcode.com> * configure.in: Removed the broken --enable-canvas-pixbuf option. Added the stuff necessary to substitute the variables in gnomecanvaspixbufConf.sh.in. * gnomecanvaspixbufConf.sh.in: New gnome-config handler for the tiny gnomecanvaspixbuf library. * Makefile.am: Build gnomecanvaspixbufConf.sh. * gdk-pixbuf/Makefile.am: Create a libgnomecanvaspixbuf and only build it if gdk-pixbuf is being built outside of gnome-libs. * doc/gdk-pixbuf-sections.txt: Added gdk_pixbuf_render_pixmap_and_mask(). * gdk-pixbuf/gdk-pixbuf-render.c (gdk_pixbuf_render_pixmap_and_mask): Renamed from gdk_pixbuf_render_pixmap(). Do not create the mask if it is not needed, and do not use a clipping mask when rendering the pixmap. Tweaked documentation a little. * HACKING: New file with hacking policies for the gdk-pixbuf module. * doc/Makefile.am (tmpl_sources): Added missing backslash. * doc/Makefile.am: Use gnomecanvaspixbuf in gnome-config when scanning for docstrings. * gdk-pixbuf/gdk-pixbuf-util.c (gdk_pixbuf_copy_area): Made sanity checks more stringent. Removed "gint" abominations. Made documentation consistent with the rest of the functions. * doc/gdk-pixbuf-sections.txt: Added gdk_pixbuf_copy_area() to the utilities section.
178 lines
3.7 KiB
Makefile
178 lines
3.7 KiB
Makefile
SUBDIRS = pixops
|
|
|
|
if INSIDE_GNOME_LIBS
|
|
CANVAS_PIXBUF_LIB =
|
|
CANVAS_PIXBUF_HEADERFILES =
|
|
EXTRA_GNOME_LIBS =
|
|
else
|
|
CANVAS_PIXBUF_LIB = libgnomecanvaspixbuf.la
|
|
CANVAS_PIXBUF_HEADERFILES=gnome-canvas-pixbuf.h
|
|
EXTRA_GNOME_LIBS = $(GNOME_LIBS)
|
|
endif
|
|
|
|
lib_LTLIBRARIES = \
|
|
libgdk_pixbuf.la \
|
|
$(CANVAS_PIXBUF_LIB)
|
|
|
|
libgnomecanvaspixbuf_la_SOURCES = gnome-canvas-pixbuf.c
|
|
libgnomecanvaspixbuf_la_LDFLAGS = $(EXTRA_GNOME_LIBS)
|
|
|
|
libexecdir = $(libdir)/gdk-pixbuf/loaders
|
|
|
|
if HAVE_PNG
|
|
PNG_LIB = libpixbuf-png.la
|
|
endif
|
|
|
|
if HAVE_JPEG
|
|
JPEG_LIB = libpixbuf-jpeg.la
|
|
endif
|
|
|
|
GIF_LIB = libpixbuf-gif.la
|
|
|
|
ICO_LIB = libpixbuf-ico.la
|
|
|
|
RAS_LIB = libpixbuf-ras.la
|
|
|
|
if HAVE_TIFF
|
|
TIFF_LIB = libpixbuf-tiff.la
|
|
endif
|
|
|
|
XPM_LIB = libpixbuf-xpm.la
|
|
|
|
PNM_LIB = libpixbuf-pnm.la
|
|
|
|
BMP_LIB = libpixbuf-bmp.la
|
|
|
|
libexec_LTLIBRARIES = \
|
|
$(PNG_LIB) \
|
|
$(JPEG_LIB) \
|
|
$(GIF_LIB) \
|
|
$(ICO_LIB) \
|
|
$(RAS_LIB) \
|
|
$(XPM_LIB) \
|
|
$(TIFF_LIB) \
|
|
$(PNM_LIB) \
|
|
$(BMP_LIB)
|
|
|
|
noinst_PROGRAMS = testpixbuf testpixbuf-drawable testanimation testpixbuf-scale
|
|
|
|
DEPS = libgdk_pixbuf.la
|
|
INCLUDES = -I$(top_srcdir) -I$(top_builddir) \
|
|
-I$(top_srcdir)/gdk-pixbuf \
|
|
-I$(top_builddir)/gdk-pixbuf \
|
|
$(GLIB_CFLAGS) $(LIBART_CFLAGS) $(GTK_CFLAGS)
|
|
AM_CPPFLAGS = "-DPIXBUF_LIBDIR=\"$(libexecdir)\""
|
|
|
|
if INSIDE_GNOME_LIBS
|
|
LDADDS = libgdk_pixbuf.la $(LIBART_LIBS) $(GLIB_LIBS) $(GTK_LIBS)
|
|
else
|
|
LDADDS = libgdk_pixbuf.la libgnomecanvaspixbuf.la $(LIBART_LIBS) $(GLIB_LIBS) $(GTK_LIBS)
|
|
endif
|
|
|
|
if INSIDE_GNOME_LIBS
|
|
testpixbuf_LDADD = $(LDADDS) $(LIBART_LIBS) -lgmodule
|
|
testpixbuf_drawable_LDADD = $(LDADDS)
|
|
testpixbuf_scale_LDADD = $(LDADDS)
|
|
testanimation_LDADD = $(LDADDS) $(LIBART_LIBS) -lgmodule
|
|
else
|
|
testpixbuf_LDADD = $(LDADDS) $(LIBART_LIBS) $(GNOME_LIBS) -lgmodule
|
|
testpixbuf_drawable_LDADD = $(LDADDS) $(GNOME_LIBS)
|
|
testpixbuf_scale_LDADD = $(LDADDS) $(GNOME_LIBS)
|
|
testanimation_LDADD = $(LDADDS) $(LIBART_LIBS) $(GNOME_LIBS) -lgmodule
|
|
endif
|
|
|
|
|
|
GDK_PIXBUF_LIBS = $(LIBART_LIBS) $(GLIB_LIBS) $(GTK_LIBS)
|
|
|
|
#
|
|
# The GdkPixBuf library
|
|
#
|
|
|
|
libgdk_pixbufincludedir = $(includedir)/gdk-pixbuf
|
|
|
|
libgdk_pixbuf_la_SOURCES = \
|
|
gdk-pixbuf.c \
|
|
gdk-pixbuf-animation.c \
|
|
gdk-pixbuf-data.c \
|
|
gdk-pixbuf-drawable.c \
|
|
gdk-pixbuf-io.c \
|
|
gdk-pixbuf-loader.c \
|
|
gdk-pixbuf-render.c \
|
|
gdk-pixbuf-scale.c \
|
|
gdk-pixbuf-util.c
|
|
|
|
libgdk_pixbuf_la_LDFLAGS = -version-info 1:0:0 $(EXTRA_GNOME_LIBS)
|
|
libgdk_pixbuf_la_LIBADD = pixops/libpixops.la
|
|
|
|
libgdk_pixbufinclude_HEADERS = \
|
|
gdk-pixbuf.h \
|
|
gdk-pixbuf-loader.h \
|
|
gdk-pixbuf-features.h \
|
|
$(CANVAS_PIXBUF_HEADERFILES)
|
|
|
|
noinst_HEADERS = \
|
|
gdk-pixbuf-io.h
|
|
|
|
#
|
|
# The PNG plugin.
|
|
#
|
|
libpixbuf_png_la_SOURCES = io-png.c
|
|
libpixbuf_png_la_LDFLAGS = -avoid-version -module
|
|
libpixbuf_png_la_LIBADD = $(LIBPNG)
|
|
|
|
#
|
|
# The JPEG loader
|
|
#
|
|
libpixbuf_jpeg_la_SOURCES = io-jpeg.c
|
|
libpixbuf_jpeg_la_LDFLAGS = -avoid-version -module
|
|
libpixbuf_jpeg_la_LIBADD = $(LIBJPEG)
|
|
|
|
#
|
|
# The XPM loader
|
|
#
|
|
libpixbuf_xpm_la_SOURCES = io-xpm.c
|
|
libpixbuf_xpm_la_LDFLAGS = -avoid-version -module
|
|
libpixbuf_xpm_la_LIBADD =
|
|
|
|
#
|
|
# The GIF loader
|
|
#
|
|
libpixbuf_gif_la_SOURCES = io-gif.c
|
|
libpixbuf_gif_la_LDFLAGS = -avoid-version -module
|
|
libpixbuf_gif_la_LIBADD =
|
|
|
|
#
|
|
# The ICO loader
|
|
#
|
|
libpixbuf_ico_la_SOURCES = io-ico.c
|
|
libpixbuf_ico_la_LDFLAGS = -avoid-version -module
|
|
libpixbuf_ico_la_LIBADD =
|
|
|
|
#
|
|
# The RAS loader
|
|
#
|
|
libpixbuf_ras_la_SOURCES = io-ras.c
|
|
libpixbuf_ras_la_LDFLAGS = -avoid-version -module
|
|
libpixbuf_ras_la_LIBADD =
|
|
|
|
#
|
|
# The TIFF loader
|
|
#
|
|
libpixbuf_tiff_la_SOURCES = io-tiff.c
|
|
libpixbuf_tiff_la_LDFLAGS = -avoid-version -module
|
|
libpixbuf_tiff_la_LIBADD = $(LIBTIFF)
|
|
|
|
#
|
|
# The PNM loader
|
|
#
|
|
libpixbuf_pnm_la_SOURCES = io-pnm.c
|
|
libpixbuf_pnm_la_LDFLAGS = -avoid-version -module
|
|
libpixbuf_pnm_la_LIBADD =
|
|
|
|
#
|
|
# The BMP loader
|
|
#
|
|
libpixbuf_bmp_la_SOURCES = io-bmp.c
|
|
libpixbuf_bmp_la_LDFLAGS = -avoid-version -module
|
|
libpixbuf_bmp_la_LIBADD =
|